Click here to Skip to main content
15,887,331 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
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 
So my boss is like a rabbit. He just loves his greens.

Unclear naming should stay unclear by commenting it (helper was never used, but that's beside the point).
VB
' A helper variable.
Dim helper As Boolean
Of course we could make clear comments in favor of properly naming our variables.
VB
' s is a SalesOrder
s.DoSomething()

p.DoSomethingElse ' PurchaseOrder
The obvious also needs extra explanation.
VB
i = nX + nY ' Add nX and nY
In case we ever want to compile our code into a beginners how-to-program book.
VB
' Assign the value to the variable
i = 10
We just can't have enough comments!
VB
' Refresh the screen
RefreshScreen
Keep an active log inside your code, you never know when you need it (SVN alone isn't good enough)... (date, initials, ticket number).
The fun thing about this is that when a fix is larger than a few code files it does not have to be commented.
If it is only a few code files chances are this piece of commentary is copied to each of them, sometimes in multiple places in the same file.
VB
' 2012-09-22 N Ticket # 666.
' The client wants this fix because... Bla, bla, bla...
CallSomeMethod
Some of this guys methods are commented line by line with these kinds of comments... WTF | :WTF:
I tried to talk to him about it, but he's convinced code is unreadable and can never be understood easily by just reading it. Comments are absolutely necessary if you, or another programmer, ever want to quickly make changes to the code. This is the same guy who thinks making a seperate class for almost every method (and randomly make it non-shared/non-static or shared/static) makes code more clear and readable (and single responsibility principle is a bonus!) and who just doesn't use access modifiers out of laziness or indifference...
Of course he is my boss and has eight years of experience where I have only two (how often I had to hear that) so when I disagree with him I'm rude and inexperienced.
I guess someday I'll laugh about it Unsure | :~
It's an OO world.
C#
public class Naerling : Lazy<Person>{
    public void DoWork(){ throw new NotImplementedException(); }
}

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 
GeneralRe: They grow up so fast.. Pin
fjdiewornncalwe20-Sep-12 4:55
professionalfjdiewornncalwe20-Sep-12 4:55 
GeneralRe: They grow up so fast.. PinPopular
BobJanova20-Sep-12 5:24
BobJanova20-Sep-12 5:24 
GeneralRe: They grow up so fast.. PinPopular
AspDotNetDev21-Sep-12 6:37
protectorAspDotNetDev21-Sep-12 6:37 
GeneralRe: They grow up so fast.. Pin
jim lahey21-Sep-12 7:10
jim lahey21-Sep-12 7:10 
GeneralRe: They grow up so fast.. Pin
Sander Rossel21-Sep-12 22:04
professionalSander Rossel21-Sep-12 22:04 
GeneralRe: They grow up so fast.. Pin
zenwalker19859-Oct-12 18:07
zenwalker19859-Oct-12 18:07 
GeneralRe: They grow up so fast.. Pin
jim lahey9-Oct-12 21:49
jim lahey9-Oct-12 21:49 
GeneralC# properties and type safety Pin
Julien Villers19-Sep-12 22:31
professionalJulien Villers19-Sep-12 22:31 
GeneralRe: C# properties and type safety Pin
Andrei Straut19-Sep-12 22:44
Andrei Straut19-Sep-12 22:44 

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.