nick black

Results 154 issues of nick black

Very few things here.

Very few edits here. You suddenly start using MiB in 12-5. I'm all for the MB/MiB distinction, but you should probably use it everywhere if you're going to use it...

No real notes. Alderlake is Alder Lake.

Very clean chapter. Some comma splices (as always) and some irregular syntax. * 9-1 p167: "Also, this code example is included in the dep_chains_2[ˆ] lab assignment" ** is there a...

Not too many changes, but I have some notes: * 8-0 algorithmic: maybe also note that by using linear instead of binary search, you needn't keep the data sorted? *...

Mercifully few. No notes.

Some notes: * Listing 6-2: please don't cast the return value of `malloc()`. this is a comp.lang.c FAQ: https://c-faq.com/malloc/mallocnocast.html . If the code is C++, it shouldn't be using `malloc()`....

A lot of numbers here were using apostrophes as their grouping element. I changed those to commas, or removed them entirely when they were literals. Made perf be `perf` everywhere....

disablePersistence() is currently commented as *enabling* a persistent connection, which it does not. Fix the comment.

without initializing these, we assign garbage to the internal `mqtt_client` struct's `lastwill` struct unless `EnableLastWillMessage()` is called. this usually manifests as an IllegalInstruction or ProhibitedLoad exception. probably we ought be...