Click here to Skip to main content
15,905,316 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: Happy debugging! Pin
RafagaX25-Sep-12 5:34
professionalRafagaX25-Sep-12 5:34 
GeneralRe: Happy debugging! Pin
Andrei Straut25-Sep-12 6:46
Andrei Straut25-Sep-12 6:46 
GeneralRe: Happy debugging! Pin
Behzad Sedighzadeh25-Sep-12 5:59
Behzad Sedighzadeh25-Sep-12 5:59 
GeneralRe: Happy debugging! Pin
Andrei Straut25-Sep-12 6:50
Andrei Straut25-Sep-12 6:50 
GeneralRe: Happy debugging! Pin
jschell25-Sep-12 7:51
jschell25-Sep-12 7:51 
Generalwell... Pin
shiprat25-Sep-12 9:15
shiprat25-Sep-12 9:15 
GeneralRe: well... Pin
Pete O'Hanlon25-Sep-12 9:53
mvePete O'Hanlon25-Sep-12 9:53 
GeneralRe: well... Pin
shiprat29-Oct-12 12:56
shiprat29-Oct-12 12:56 
GeneralRe: Happy debugging! Pin
Member 822285825-Sep-12 10:03
Member 822285825-Sep-12 10:03 
GeneralRe: Happy debugging! Pin
Richard Deeming26-Sep-12 3:56
mveRichard Deeming26-Sep-12 3:56 
GeneralRe: Happy debugging! Pin
Amit Developer26-Sep-12 4:28
Amit Developer26-Sep-12 4:28 
GeneralRe: Happy debugging! Pin
Le centriste26-Sep-12 6:43
Le centriste26-Sep-12 6:43 
GeneralRe: Happy debugging! Pin
greldak27-Sep-12 21:51
greldak27-Sep-12 21:51 
GeneralRe: Happy debugging! Pin
dojohansen28-Sep-12 3:58
dojohansen28-Sep-12 3:58 
GeneralRe: Happy debugging! Pin
zenwalker19859-Oct-12 18:04
zenwalker19859-Oct-12 18:04 
GeneralRe: Happy debugging! Pin
Nitin S4-Dec-12 1:31
professionalNitin S4-Dec-12 1:31 
GeneralCut out for Greenpeace... PinPopular
Sander Rossel21-Sep-12 22:27
professionalSander Rossel21-Sep-12 22:27 
GeneralRe: Cut out for Greenpeace... Pin
AspDotNetDev24-Sep-12 6:09
protectorAspDotNetDev24-Sep-12 6:09 
GeneralRe: Cut out for Greenpeace... Pin
Sander Rossel24-Sep-12 8:06
professionalSander Rossel24-Sep-12 8:06 
GeneralRe: Cut out for Greenpeace... Pin
BillW3318-Oct-12 8:19
professionalBillW3318-Oct-12 8:19 
GeneralRefactor Pin
Clifford Nelson26-Sep-12 5:49
Clifford Nelson26-Sep-12 5:49 
GeneralRe: Cut out for Greenpeace... Pin
BillW3318-Oct-12 8:23
professionalBillW3318-Oct-12 8:23 
GeneralRe: Cut out for Greenpeace... Pin
Sander Rossel18-Oct-12 8:38
professionalSander Rossel18-Oct-12 8:38 
GeneralRe: Cut out for Greenpeace... Pin
BillW3322-Oct-12 3:11
professionalBillW3322-Oct-12 3:11 
GeneralThey grow up so fast.. PinPopular
jim lahey19-Sep-12 23:03
jim lahey19-Sep-12 23:03 
At our place we have a few of the "senior" apprentices staying with us in the dev team for a year. When I say "senior", they're about 19 in human years, but look about 8. I got to mentor one for a few weeks and threw him in at the deep end by giving him a MOSS WebPart to develop. For the most part, he's done an OK job and seems to be getting the hang of things, but still comes out with stuff like this:

C#
int status = (int)(Status)Enum.Parse(typeof(Status), _statusBy.ToString());
this.dataSource.SelectParameters.Add("status", status.ToString());


Given that Status is an enum with integer values, this would actually suffice:

C#
this.dataSource.SelectParameters.Add("status", ((int)_statusBy).ToString());


Bless.

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.