Click here to Skip to main content
15,914,066 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: let, var, val - Swift, Kotlin, JavaScript Pin
Sander Rossel12-Jun-19 22:05
professionalSander Rossel12-Jun-19 22:05 
GeneralRe: let, var, val - Swift, Kotlin, JavaScript Pin
raddevus13-Jun-19 1:44
mvaraddevus13-Jun-19 1:44 
GeneralRe: let, var, val - Swift, Kotlin, JavaScript Pin
den2k8812-Jun-19 22:28
professionalden2k8812-Jun-19 22:28 
GeneralRe: let, var, val - Swift, Kotlin, JavaScript Pin
Richard Deeming12-Jun-19 23:34
mveRichard Deeming12-Jun-19 23:34 
GeneralRe: let, var, val - Swift, Kotlin, JavaScript Pin
den2k8812-Jun-19 23:41
professionalden2k8812-Jun-19 23:41 
GeneralRe: let, var, val - Swift, Kotlin, JavaScript Pin
raddevus13-Jun-19 1:46
mvaraddevus13-Jun-19 1:46 
GeneralRe: let, var, val - Swift, Kotlin, JavaScript PinPopular
MSBassSinger13-Jun-19 5:23
professionalMSBassSinger13-Jun-19 5:23 
GeneralRe: let, var, val - Swift, Kotlin, JavaScript Pin
Maximilien17-Jun-19 8:10
Maximilien17-Jun-19 8:10 
GeneralRe: let, var, val - Swift, Kotlin, JavaScript Pin
raddevus18-Jun-19 2:00
mvaraddevus18-Jun-19 2:00 
GeneralMust-Have NuGet Constants Packages Pin
David A. Gray7-Jun-19 20:56
David A. Gray7-Jun-19 20:56 
GeneralKill it with fire #2 - or fml Pin
charlieg31-May-19 12:04
charlieg31-May-19 12:04 
GeneralRe: Kill it with fire #2 - or fml Pin
David O'Neil31-May-19 15:11
professionalDavid O'Neil31-May-19 15:11 
GeneralRe: Kill it with fire #2 - or fml Pin
Gary R. Wheeler31-May-19 16:38
Gary R. Wheeler31-May-19 16:38 
GeneralRe: Kill it with fire #2 - or fml Pin
David O'Neil31-May-19 17:34
professionalDavid O'Neil31-May-19 17:34 
GeneralRe: Kill it with fire #2 - or fml Pin
charlieg1-Jun-19 3:22
charlieg1-Jun-19 3:22 
GeneralRe: Kill it with fire #2 - or fml Pin
David O'Neil1-Jun-19 11:54
professionalDavid O'Neil1-Jun-19 11:54 
GeneralRe: Kill it with fire #2 - or fml Pin
charlieg1-Jun-19 17:43
charlieg1-Jun-19 17:43 
GeneralRe: Kill it with fire #2 - or fml Pin
Sander Rossel8-Jun-19 0:47
professionalSander Rossel8-Jun-19 0:47 
GeneralRe: Kill it with fire #2 - or fml Pin
David O'Neil8-Jun-19 5:49
professionalDavid O'Neil8-Jun-19 5:49 
GeneralRe: Kill it with fire #2 - or fml Pin
Rick York12-Jun-19 13:22
mveRick York12-Jun-19 13:22 
GeneralRe: Kill it with fire #2 - or fml Pin
Member 1388243212-Jun-19 20:31
Member 1388243212-Jun-19 20:31 
GeneralRe: Kill it with fire #2 - or fml Pin
Richard Deeming12-Jun-19 23:19
mveRichard Deeming12-Jun-19 23:19 
GeneralRe: Kill it with fire #2 - or fml Pin
charlieg1-Jun-19 3:15
charlieg1-Jun-19 3:15 
GeneralRe: Kill it with fire #2 - or fml Pin
Matias Lopez5-Jun-19 6:06
Matias Lopez5-Jun-19 6:06 
GeneralRe: Kill it with fire #2 - or fml Pin
AFell24-Jun-19 11:39
AFell24-Jun-19 11:39 
I used to have a developer who did his try/catch routine like this, thinking that as exceptions were caught "in the wild", he would fill in his catch clause. I had to show him that if he left his catch clauses open, none of the exceptions would be handled.

At the very lease, rethrow the original exception. The most effective method I've used is to go through all your activities in the try clause and look for all the different exceptions you are capable of throwing, and then trap those exceptions one at a time and recast the exception with a more descriptive message with any relevant values and capture the original exception as an inner exception so you don't lose the stack trace. And finish it with a catch-all.

It's a paranoid way of writing your catch clause, but OMG my operations guys were the first converts because they didn't have to go through the stack trace and data dumps...it's all right there in the message. It also makes for very effective unit tests too, since you can predict just every aspect of where the routine could break rather than some obtuse unhandled null reference exception.

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.