Friday, March 3, 2006

I've been doing this too long...
You know you've been programming computers a while when you relize that people have to do an endian switch when they do (non-trivial) addition.

Because we read left to right ("big end" style), but we do math starting at the right most digit and going left (calculating the least significant digit first), in "little end" style.

Something To Think about anyway.