Click here to Skip to main content
15,905,073 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: Again, where are cases 0 and 11 ? Pin
PIEBALDconsult15-May-07 10:18
mvePIEBALDconsult15-May-07 10:18 
GeneralRe: Again, where are cases 0 and 11 ? Pin
Dan Neely15-May-07 10:34
Dan Neely15-May-07 10:34 
GeneralRe: For loops and array Pin
Brent Lamborn5-Jun-07 11:02
Brent Lamborn5-Jun-07 11:02 
GeneralRe: For loops and array Pin
D1117-Jun-07 3:29
D1117-Jun-07 3:29 
GeneralRe: For loops and array Pin
Sylvester george20-Jun-07 3:03
Sylvester george20-Jun-07 3:03 
General_GC pointers [modified] Pin
syedhasan13-May-07 20:27
syedhasan13-May-07 20:27 
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 
Method name (only) changed. It shouldn't even have been public in the first place. Even if you disregard the blatant coding guidelines violations, I think this is a shame.
public string getFormattedDate(string date)
{
	string concat ="";
	if (null != date)
	{
		int i;
		String dateTimeChar = new String(date.ToCharArray());
		for(i=0;i<(date.Length-4);i++)
		{
			concat = concat+ dateTimeChar[i];
		}
		concat = concat+  ",";
		for(i=4;i<(date.Length-2);i++)
		{
			concat = concat+ dateTimeChar[i];
		}
		concat = concat+ ",";
		for(i=6;i<(date.Length);i++)
		{
			concat = concat+ dateTimeChar[i];	
		}
		
		DateTime dt = DateTime.Parse(concat);   
		concat = dt.ToString("yyyy-MM-dd"); 
	}
	return concat;
}

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 
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 

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.