Thursday, June 16, 2011

Programming 101 Note

I've had the displeasure of having to sift through someone else's code and trying to fix some really serious kinds of bugs that has spawned from very, very poor programming practices. I've dealt with this code structure many times in the source and I just really want to vent out.

Code like the one below should not be tolerated at all times.

try {
//some code here.
} catch { }

Please, if you're a programmer, DO NOT DO THIS!