Steakum’s House

Posted on February 18, 2003

Here’s old SteakUm’s view of the Blizzard of ot-3.

Computer Chronicle

Posted on February 14, 2003

I remember I used to watch Computer Chronicles every week when I was in high school. It looks like archive.org has amassed a huge collection of the episodes. Very cool.

Valid C Code

Posted on February 04, 2003

I learned yesterday, that the follow C code is perfectly valid.

  int a,b=0;
  a = b=4, ++b;

The variable

a

would be assigned to 5.