Click here to Skip to main content
15,887,027 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.

 
GeneralThat was funny but.. Pin
VallarasuS24-Sep-12 22:59
VallarasuS24-Sep-12 22:59 
GeneralRe: Happy debugging! Pin
dandy7225-Sep-12 0:25
dandy7225-Sep-12 0:25 
GeneralRe: Happy debugging! Pin
Andrei Straut25-Sep-12 0:50
Andrei Straut25-Sep-12 0:50 
GeneralRe: Happy debugging! Pin
dandy7225-Sep-12 1:34
dandy7225-Sep-12 1:34 
GeneralRe: Happy debugging! PinPopular
Pete O'Hanlon25-Sep-12 2:07
mvePete O'Hanlon25-Sep-12 2:07 
GeneralRe: Happy debugging! Pin
Andrei Straut25-Sep-12 2:17
Andrei Straut25-Sep-12 2:17 
GeneralRe: Happy debugging! Pin
Pete O'Hanlon25-Sep-12 2:33
mvePete O'Hanlon25-Sep-12 2:33 
GeneralRe: Happy debugging! Pin
agolddog25-Sep-12 3:49
agolddog25-Sep-12 3:49 
I have to agree with Pete. The feeling I get reading this thread is that your coworker wrote some bad code out of stupidity/stubbornness/inexperience and you countered that with malice.

Shocking doesn't begin to describe it to me. If that code got checked into the repository, you're fired.

Sorry to be so harsh, but this is a completely inappropriate way to handle the situation.

I have to say, I am in total agreement with you on your notion that logging every caught exception is the proper way to go. Even if your code can continue on properly, it's good to log that. To give a trivial example:
int num = 0;
try {
  num = Convert.ToInt32(string);
} catch (FormatException e)
  Log.Info("Couldn't convert " + string + " to int, using default");
  num = <some setting from config>;
}


Of course, this is trivial, but you get the idea.
GeneralRe: Happy debugging! Pin
KP Lee25-Sep-12 15:55
KP Lee25-Sep-12 15:55 
GeneralRe: Happy debugging! Pin
SeattleC++25-Sep-12 5:12
SeattleC++25-Sep-12 5:12 
GeneralRe: Happy debugging! Pin
Joe_Dert20-Oct-12 21:50
Joe_Dert20-Oct-12 21:50 
GeneralRe: Happy debugging! Pin
SeattleC++21-Oct-12 9:14
SeattleC++21-Oct-12 9:14 
GeneralRe: Happy debugging! Pin
Joe_Dert21-Oct-12 20:33
Joe_Dert21-Oct-12 20:33 
GeneralRe: Happy debugging! Pin
BobJanova25-Sep-12 5:16
BobJanova25-Sep-12 5:16 
GeneralRe: Happy debugging! Pin
Andrei Straut25-Sep-12 6:45
Andrei Straut25-Sep-12 6:45 
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 

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.