The memory of Winter.
May 5, 2010
May 5, 2010

Recordings:
freeform jam with brennewtnoj
3 Comments
Some people picked through them for a bit... Then poof, they all
disappeared. Nobody took the sign, though.
4 Comments
CRTs, MHz, megabytes, and Linux. Making usable boxes from junk, to
donate.
8 Comments
#include <stdio.h> struct test1 { double b; }; struct test2 { int a; test1 b; }; test2 foo; int main() { printf("%d\n",(int)&foo.b.b - (int)&foo); return 0; }What does this print? On Windows, it prints 8. On OS X (or linux), it prints 4. Which means, if you access foo.b.b a lot, it will be slow. UGH. I guess that's why there's -malign-double for gcc. Now if I can just figure out how to enable that for Xcode...
Recordings:
freeform jam with brennewtnoj
7 Comments