Click here to Skip to main content
15,884,472 members

The Weird and The Wonderful

   

The Weird and The Wonderful forum is a place to post Coding Horrors, Worst Practices, and the occasional flash of brilliance.

We all come across code that simply boggles the mind. Lazy kludges, embarrassing mistakes, horrid workarounds and developers just not quite getting it. And then somedays we come across - or write - the truly sublime.

Post your Best, your worst, and your most interesting. But please - no programming questions . This forum is purely for amusement and discussions on code snippets. All actual programming questions will be removed.

 
GeneralRe: Convert.ToInt32 Pin
robocodeboy2-Dec-13 2:16
robocodeboy2-Dec-13 2:16 
GeneralRe: Convert.ToInt32 Pin
JMK896-Dec-13 6:06
professionalJMK896-Dec-13 6:06 
General... WHY?! Pin
Matt U.19-Nov-13 8:09
Matt U.19-Nov-13 8:09 
GeneralRe: ... WHY?! Pin
Brisingr Aerowing19-Nov-13 9:16
professionalBrisingr Aerowing19-Nov-13 9:16 
GeneralRe: ... WHY?! Pin
Matt U.19-Nov-13 9:36
Matt U.19-Nov-13 9:36 
GeneralRe: ... WHY?! Pin
Brisingr Aerowing19-Nov-13 11:09
professionalBrisingr Aerowing19-Nov-13 11:09 
GeneralRe: ... WHY?! Pin
Quirkafleeg25-Nov-13 22:36
Quirkafleeg25-Nov-13 22:36 
GeneralRe: ... WHY?! Pin
Bernhard Hiller19-Nov-13 22:22
Bernhard Hiller19-Nov-13 22:22 
The reason behind that WTF is likely simple: somewhen during development, there was a problem, or an extreme value case had to be tested (width greater than screen width), and a developer decided to replace temporarily
C#
htmlToImageConverter.BrowserWidth = int.Parse(tWidth);

by
C#
htmlToImageConverter.BrowserWidth = int.Parse("1025");

But then forgot to change it back. And nobody complained till you happened to find that WTF...
GeneralRe: ... WHY?! Pin
ZurdoDev20-Nov-13 1:24
professionalZurdoDev20-Nov-13 1:24 
GeneralRe: ... WHY?! Pin
Matt U.20-Nov-13 3:15
Matt U.20-Nov-13 3:15 
GeneralRe: ... WHY?! Pin
Bernhard Hiller20-Nov-13 23:12
Bernhard Hiller20-Nov-13 23:12 
GeneralRe: ... WHY?! Pin
Matt U.21-Nov-13 3:14
Matt U.21-Nov-13 3:14 
GeneralRe: ... WHY?! Pin
Bernhard Hiller21-Nov-13 21:56
Bernhard Hiller21-Nov-13 21:56 
GeneralRe: ... WHY?! Pin
Matt U.22-Nov-13 3:38
Matt U.22-Nov-13 3:38 
JokeRe: ... WHY?! Pin
walterhevedeich25-Nov-13 22:54
professionalwalterhevedeich25-Nov-13 22:54 
GeneralRe: ... WHY?! Pin
Bernhard Hiller25-Nov-13 23:35
Bernhard Hiller25-Nov-13 23:35 
GeneralRe: ... WHY?! Pin
Giuseppe Tollini21-Nov-13 9:33
Giuseppe Tollini21-Nov-13 9:33 
GeneralRe: ... WHY?! Pin
Matt U.21-Nov-13 10:03
Matt U.21-Nov-13 10:03 
GeneralOver-documentation PinPopular
Ron Beyer16-Nov-13 14:46
professionalRon Beyer16-Nov-13 14:46 
GeneralRe: Over-documentation Pin
PIEBALDconsult16-Nov-13 15:15
mvePIEBALDconsult16-Nov-13 15:15 
GeneralRe: Over-documentation Pin
OriginalGriff16-Nov-13 22:20
mveOriginalGriff16-Nov-13 22:20 
GeneralRe: Over-documentation Pin
PIEBALDconsult17-Nov-13 5:26
mvePIEBALDconsult17-Nov-13 5:26 
GeneralRe: Over-documentation Pin
OriginalGriff17-Nov-13 5:42
mveOriginalGriff17-Nov-13 5:42 
GeneralRe: Over-documentation Pin
Max Methot28-Nov-13 5:01
Max Methot28-Nov-13 5:01 
GeneralRe: Over-documentation Pin
PIEBALDconsult28-Nov-13 5:45
mvePIEBALDconsult28-Nov-13 5:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.