List examples of programmers doing stupid things in their code.
I just came across this little baby in PHP:
if(strpos($row['themename'],"some string") !== false){
This is wrong on so many levels. First, there is the double negation in saying 'not equals false'. Then there's the explicit checking of truth (why not do ($something == false) == true while you're at it?) and finally there's the calling of strpos for a simple string comparison.
I thought it would be fun to see what other examples people can come up with.
