See What is creating the generated/autoconf.h? for tips on how to generate autoconf.h for the Linux sources.
Instead of
gunzip < /proc/config.gz > .config
Use
cat /boot/config-$(uname -r) > .config
See What is creating the generated/autoconf.h? for tips on how to generate autoconf.h for the Linux sources.
Instead of
gunzip < /proc/config.gz > .config
Use
cat /boot/config-$(uname -r) > .config
Found an article about the implementation of read-copy update locks in Linux: RCU and Unloadable Modules.
Today I am going to try:
I’m reading Data Cleaning Pocket Primer in which the author mentions the “Four Cs” for code samples: they must be Clear, Concise, Complete, and Correct.
I learned a few things about spreadsheets from You Suck at Excel with Joel Spolsky.
I learned some things I didn’t know about strings in JavaScript over here: How big is a JavaScript string?
This was fun: Every Clojure Talk Ever.
Today I discovered Performance Numbers Worth Knowing. It is what it says on the label.
Today I found myself reading William Kahan’s homepage after having waded through An Interview with the Old Man of Floating-Point.
Was referred to this one by my mate bsandro about how to effectively use pointers to pointers: Two star programming.