Click here to Skip to main content
15,888,610 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: Kotlin: new(ish) syntax emerges Pin
Rob Grainger25-Sep-19 2:32
Rob Grainger25-Sep-19 2:32 
GeneralRe: Kotlin: new(ish) syntax emerges Pin
obermd16-Aug-19 4:14
obermd16-Aug-19 4:14 
GeneralRe: Kotlin: new(ish) syntax emerges Pin
Keith Barrow9-Sep-19 3:04
professionalKeith Barrow9-Sep-19 3:04 
GeneralMemory Leak PinPopular
Bernhard Hiller21-Jul-19 23:17
Bernhard Hiller21-Jul-19 23:17 
GeneralRe: Memory Leak Pin
Member 916705723-Jul-19 21:43
Member 916705723-Jul-19 21:43 
JokeRe: Memory Leak Pin
phil.o23-Jul-19 23:44
professionalphil.o23-Jul-19 23:44 
GeneralRe: Memory Leak Pin
Gary Wheeler24-Jul-19 1:42
Gary Wheeler24-Jul-19 1:42 
GeneralRe: Memory Leak Pin
MSBassSinger25-Jul-19 10:30
professionalMSBassSinger25-Jul-19 10:30 
This may not address your issue, but I address memory leaks as a preventive process, and have done so going back to VB6 days. In short, I clean up my resources and objects before I allow an instance of a class to go away.

In C#, I almost ALWAYS use try-catch-finally. I declare an object as null before "try", instantiate it in the try code block, catch any exceptions (a whole other discussion), then clean up my objects in the finally block. If they have a Dispose or Clear method, I execute that then set the variable to null. No waiting on the GC or coding shortcuts like "using" that get compiled as try-catch-finally anyway.

If my class has an class-level objects, I use my Dispose template that also includes the finalizer.

Since taking this approach years ago (which is mostly copy and paste snippets), the little added effort has helped me to have zero memory leaks, and as an added bonus (that "catch" thing again), I get excellent debugging info.

Sometimes consistency in how we code eliminates a lot of problems later.
GeneralRe: Memory Leak Pin
Matias Lopez30-Jul-19 9:41
Matias Lopez30-Jul-19 9:41 
GeneralYou learn something new every day Pin
Gary R. Wheeler11-Jul-19 14:48
Gary R. Wheeler11-Jul-19 14:48 
GeneralRe: You learn something new every day Pin
RickZeeland11-Jul-19 20:08
mveRickZeeland11-Jul-19 20:08 
GeneralRe: You learn something new every day Pin
Gary R. Wheeler12-Jul-19 1:48
Gary R. Wheeler12-Jul-19 1:48 
GeneralRe: You learn something new every day Pin
raddevus12-Jul-19 7:47
mvaraddevus12-Jul-19 7:47 
GeneralRe: You learn something new every day Pin
Gary R. Wheeler12-Jul-19 16:09
Gary R. Wheeler12-Jul-19 16:09 
GeneralRe: You learn something new every day Pin
obermd24-Jul-19 3:21
obermd24-Jul-19 3:21 
GeneralRe: You learn something new every day Pin
Gary R. Wheeler24-Jul-19 15:15
Gary R. Wheeler24-Jul-19 15:15 
GeneralRe: You learn something new every day Pin
CodeWraith29-Jul-19 5:01
CodeWraith29-Jul-19 5:01 
GeneralRe: You learn something new every day Pin
Gary R. Wheeler29-Jul-19 15:01
Gary R. Wheeler29-Jul-19 15:01 
GeneralRe: You learn something new every day Pin
CodeWraith29-Jul-19 20:34
CodeWraith29-Jul-19 20:34 
GeneralRe: You learn something new every day Pin
Gary R. Wheeler31-Jul-19 11:39
Gary R. Wheeler31-Jul-19 11:39 
GeneralRe: You learn something new every day Pin
CodeWraith31-Jul-19 19:23
CodeWraith31-Jul-19 19:23 
GeneralRe: You learn something new every day Pin
Rob Grainger25-Sep-19 2:39
Rob Grainger25-Sep-19 2:39 
GeneralRe: You learn something new every day Pin
CodeWraith25-Sep-19 4:22
CodeWraith25-Sep-19 4:22 
GeneralRe: You learn something new every day Pin
railita1-Aug-19 12:23
railita1-Aug-19 12:23 
GeneralRe: You learn something new every day Pin
Member 1433107618-Jul-19 3:10
Member 1433107618-Jul-19 3: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.