Click here to Skip to main content
15,889,651 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: This is the kind of productivity you get when you pay by lines of code Pin
Bernhard Hiller19-Feb-13 5:05
Bernhard Hiller19-Feb-13 5:05 
GeneralRe: This is the kind of productivity you get when you pay by lines of code Pin
fjdiewornncalwe20-Feb-13 3:13
professionalfjdiewornncalwe20-Feb-13 3:13 
GeneralRe: This is the kind of productivity you get when you pay by lines of code Pin
wout de zeeuw6-Mar-13 14:31
wout de zeeuw6-Mar-13 14:31 
GeneralIF-free codes Pin
SarK0Y15-Feb-13 12:34
SarK0Y15-Feb-13 12:34 
GeneralRe: IF-free codes Pin
Paul Conrad15-Feb-13 12:54
professionalPaul Conrad15-Feb-13 12:54 
GeneralRe: IF-free codes Pin
SarK0Y15-Feb-13 13:06
SarK0Y15-Feb-13 13:06 
GeneralRe: IF-free codes Pin
Gary Wheeler19-Feb-13 0:17
Gary Wheeler19-Feb-13 0:17 
GeneralRe: IF-free codes Pin
Chad3F20-Feb-13 19:03
Chad3F20-Feb-13 19:03 
Especially with moores law hitting the ceiling lately (until someone finds a trick to break through and go up another 100 floors). Can't make it go any faster -- so add more cores. Can't utilize all the cores -- so add more microcode parallelism. Soon they might end up having CPUs that can follow dozens and dozens of branch path pipelines at the same time (until it can prune unused ones). Of course, the information that can be saves during context switches may limit that technique.

On a side note.. Some languages (like Smalltalk) don't actually use branching in "if"'s (well, their equivalent to an if).. what may seem a condition check/branch is really an expression returning a boolean object, and then when asked to _run_ the "ifTrue" conditional code block it either does, if it is a "true" object, or doesn't if a "false" object, without any checks/branching. And the same for the "ifFalse" (aka "else") code blocks, only reversed.
GeneralRe: IF-free codes Pin
dusty_dex19-Feb-13 5:54
dusty_dex19-Feb-13 5:54 
GeneralRe: IF-free codes Pin
DarthDana19-Mar-13 10:09
professionalDarthDana19-Mar-13 10:09 
GeneralRe: IF-free codes Pin
RonDsz19-Feb-13 9:36
RonDsz19-Feb-13 9:36 
JokeRe: IF-free codes Pin
Brisingr Aerowing25-Feb-13 14:58
professionalBrisingr Aerowing25-Feb-13 14:58 
GeneralRe: IF-free codes Pin
PIEBALDconsult15-Feb-13 19:27
mvePIEBALDconsult15-Feb-13 19:27 
JokeRe: IF-free codes Pin
Brisingr Aerowing15-Feb-13 19:47
professionalBrisingr Aerowing15-Feb-13 19:47 
GeneralRe: IF-free codes Pin
Monaco.Bavarian18-Feb-13 19:50
Monaco.Bavarian18-Feb-13 19:50 
GeneralRe: IF-free codes Pin
KP Lee19-Feb-13 11:36
KP Lee19-Feb-13 11:36 
AnswerRe: IF-free codes Pin
Monaco.Bavarian19-Feb-13 19:07
Monaco.Bavarian19-Feb-13 19:07 
GeneralRe: IF-free codes Pin
KP Lee19-Feb-13 21:51
KP Lee19-Feb-13 21:51 
GeneralRe: IF-free codes Pin
Stefan_Lang19-Feb-13 0:30
Stefan_Lang19-Feb-13 0:30 
GeneralRe: IF-free codes Pin
JHubSharp19-Feb-13 4:14
JHubSharp19-Feb-13 4:14 
GeneralRe: IF-free codes Pin
Gary Huck19-Feb-13 5:19
Gary Huck19-Feb-13 5:19 
GeneralRe: IF-free codes Pin
Zan Lynx19-Feb-13 11:10
Zan Lynx19-Feb-13 11:10 
GeneralRe: IF-free codes Pin
5urd19-Feb-13 6:01
5urd19-Feb-13 6:01 
GeneralRe: IF-free codes Pin
Dave Kreskowiak5-Mar-13 3:55
mveDave Kreskowiak5-Mar-13 3:55 
GeneralRe: IF-free codes Pin
RafagaX19-Feb-13 6:22
professionalRafagaX19-Feb-13 6:22 

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.