- Feature Articles
 - CodeSOD
 - Error'd
 - 
                
                    
Forums
 - 
                Other Articles
                
- Random Article
 - Other Series
 - Alex's Soapbox
 - Announcements
 - Best of…
 - Best of Email
 - Best of the Sidebar
 - Bring Your Own Code
 - Coded Smorgasbord
 - Mandatory Fun Day
 - Off Topic
 - Representative Line
 - News Roundup
 - Editor's Soapbox
 - Software on the Rocks
 - Souvenir Potpourri
 - Sponsor Post
 - Tales from the Interview
 - The Daily WTF: Live
 - Virtudyne
 
 
            
Admin
Your archive link 404s :(
Admin
This comment says something cool -- don't try to understand it.
Admin
I did have a const once called "theCowsComeHome = false", which was used as the end condition of main do{} until() loop....
Admin
Reruns don't count as "on TV"?
Admin
I believe the correct article it references is https://thedailywtf.com/articles/Pointless_Pointless_Pointless_Pointless_Pointless_Pointless_Pointless - it matches the date and references jakeypoo
Admin
More like "when coding standards go wild." This definitely smells of the old "thou shalt comment every method" commandment.
Admin
I always have a function called "theCowsAreHome()" which returns false. That way I can type:
while (!theCowsAreHome()) { // Loop indefinitely }
It lets me see which 'infinite' loops are intentional (normally there's a 'break' in there somewhere).