Music
March 20, 2010
wiener - 1 -- [3:31]
March 20, 2010
wiener - 2 -- [3:32]
wiener - 3 -- [5:39]
wiener - 4 -- [4:01]
wiener - 5 -- [5:42]
| << | >> | open webamp |

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