Click here to Skip to main content
15,905,558 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: _GC pointers Pin
Michael Dunn13-May-07 20:47
sitebuilderMichael Dunn13-May-07 20:47 
GeneralFormatting a "yyyyMMdd" string to "yyyy-MM-dd" in C# Pin
Vikram A Punathambekar10-May-07 20:31
Vikram A Punathambekar10-May-07 20:31 
GeneralRe: Formatting a "yyyyMMdd" string to "yyyy-MM-dd" in C# Pin
Pete O'Hanlon10-May-07 23:33
mvePete O'Hanlon10-May-07 23:33 
GeneralRe: Formatting a "yyyyMMdd" string to "yyyy-MM-dd" in C# Pin
Mike Dimmick11-May-07 0:46
Mike Dimmick11-May-07 0:46 
GeneralRe: Formatting a "yyyyMMdd" string to "yyyy-MM-dd" in C# Pin
PIEBALDconsult11-May-07 6:01
mvePIEBALDconsult11-May-07 6:01 
GeneralRe: Formatting a "yyyyMMdd" string to "yyyy-MM-dd" in C# Pin
peterchen13-May-07 6:44
peterchen13-May-07 6:44 
GeneralRe: Formatting a "yyyyMMdd" string to "yyyy-MM-dd" in C# Pin
Mike Dimmick11-May-07 1:00
Mike Dimmick11-May-07 1:00 
GeneralRe: Formatting a "yyyyMMdd" string to "yyyy-MM-dd" in C# Pin
John R. Shaw12-May-07 12:10
John R. Shaw12-May-07 12:10 
Even ignoring the language, there are too many things wrong. The most important being that the characters are not being gathered based on their value.
while( date[i] == ‘y’ )
    Concat += date[i++];

Or something similar.

I have know idea why the new String is even present, other than to waste time and memory.

The given code is just asking for the call to pass the wrong format, so that it can throw an exception.

In general, this code would receive a ‘D’ at best and an ‘F’ in any production code.


INTP
"Program testing can be used to show the presence of bugs, but never to show their absence."Edsger Dijkstra

GeneralRe: Formatting a "yyyyMMdd" string to "yyyy-MM-dd" in C# Pin
pbraun17-May-07 17:12
pbraun17-May-07 17:12 
GeneralRe: Formatting a "yyyyMMdd" string to "yyyy-MM-dd" in C# Pin
Sylvester george20-Jun-07 3:04
Sylvester george20-Jun-07 3:04 
Generalc++ constructor Pin
vimal_yet9-May-07 23:13
vimal_yet9-May-07 23:13 
GeneralRe: c++ constructor Pin
Kochise10-May-07 2:24
Kochise10-May-07 2:24 
GeneralRe: c++ constructor Pin
Rick York10-May-07 20:23
mveRick York10-May-07 20:23 
GeneralRe: c++ constructor Pin
Kochise10-May-07 21:46
Kochise10-May-07 21:46 
GeneralRe: c++ constructor Pin
XTAL25611-May-07 2:11
XTAL25611-May-07 2:11 
GeneralRe: c++ constructor Pin
Rick York11-May-07 14:39
mveRick York11-May-07 14:39 
GeneralRe: c++ constructor Pin
Paul Conrad13-May-07 9:19
professionalPaul Conrad13-May-07 9:19 
GeneralRe: c++ constructor Pin
Kochise13-May-07 21:03
Kochise13-May-07 21:03 
GeneralWhy do some people code at all? Pin
Optimus Chaos9-May-07 21:08
Optimus Chaos9-May-07 21:08 
GeneralRe: Why do some people code at all? Pin
BadKarma10-May-07 1:35
BadKarma10-May-07 1:35 
GeneralRe: Why do some people code at all? Pin
Dan Neely10-May-07 2:09
Dan Neely10-May-07 2:09 
GeneralRe: Why do some people code at all? Pin
Dave Kreskowiak10-May-07 3:48
mveDave Kreskowiak10-May-07 3:48 
JokeRe: Why do some people code at all? Pin
Pete O'Hanlon10-May-07 3:53
mvePete O'Hanlon10-May-07 3:53 
GeneralRe: Why do some people code at all? Pin
ScottM110-May-07 4:07
ScottM110-May-07 4:07 
GeneralRe: Why do some people code at all? Pin
Mike Hankey10-May-07 15:10
mveMike Hankey10-May-07 15:10 

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.