Ewen McNeill

Results 16 issues of Ewen McNeill

In the Verilog "Test Pattern" example, the rgb assignment `assign rgb = {b,g,r};` seems somewhat counter intuitive. https://github.com/sehugg/8bitworkshop/blob/03af8c27144380d528f524828e73c966d12ecd35/presets/verilog-vga/test_hvsync.v#L30 The variable naming implies (at least to me) a "r, g, b"...

The `roles/ipaclient/tasks/main.yml` relies on Ansible discovered facts (to figure out which set of variables to load, for packages ot install): https://github.com/freeipa/ansible-freeipa/blob/90e8098bf4ad4272202c7d1a312f699de9b10f5e/roles/ipaclient/tasks/main.yml#L4-L17 which having ensured that those facts have been discovered...

There appears to be an undocumented requirement for the Ansible controller to *itself* be an IPA/IdM client (or maybe IPA/IdM server?) if the IPA Client OTP (One Time Password) enrollment...

JET 4 (or at least recent Access versions) allow the creation of multiple-field relationships between two tables (eg, `foo (a, b) references bar (c,d)`). This appears to be stored in...

bug
CLI

To make it easier for more advanced Python users to know what needs to be installed, add a requirements.txt, and section to the README listing what is needed and why....

(I started writing this as a comment on https://github.com/GlasgowEmbedded/glasgow/issues/312 but it got long, so I've made it its own issue) Re https://glasgow-embedded.org/latest/use/repl-script.html#uart which i had a look at because Attie...

applet

The ch8/ch8-resolve example no longer builds with stable Rust, because the old `socket2` dependency that is pulled in tries to do: ``` mem::transmute::(v4); ``` but that does not work now...

Since Rust 1.59, using `asm!()` (a) is in stable rust, (b) doesn't need the `#!feature(asm)` (and the stable rust compiler will refuse that), and (c) has a slightly different use...

Quote from book (page 358 of PDF): "The following listing focuses on the parse() function. The rest of the code is the same as listing 10.18. You’ll find the code...

At least with Rust 1.66 / Cargo 1.66, embedded newlines are not permitted in inline tables in TOML. This is also [noted in the TOML specification](https://toml.io/en/v1.0.0#inline-table): "No newlines are allowed...