CD Death Watch: Record Store Edition

I’ve made a few posts in the past about the ongoing death of CDs, and, after some haphazard Googling following a bout of watching ‘90s music videos, dug up some news that hits close to home. A music store where I spent a lot of time in college, CD World, recently closed both of its …

Optimization Tradeoffs

This recent post by Raymond Chen highlights some interesting memory optimization scenarios, and the wide-ranging impact of size optimizations. A quick summary: Changing a structure definition such that a bunch of Win32 BOOLs use one bit each saves memory in the struct, because BOOL is typedef’d as an INT. Accessing the bitfield data members requires …