Wednesday, July 16, 2008

When it's time to take a break

Ugh! Staring at the same code for too long can lead to stupid mistakes. Mistakes like

var a = 0;

if(a == 0){
    a == 1;
} else {
    a == 0;
}

That's when it's time to step away and do something completely different for a while.

0 comments: