What is the best comment in source code you have ever encountered?
|
524
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
|
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
From a classic from usenet:
|
|||
|
|
|
|
At the top of a header file:
The "XYZ project" (name changed) was a seven-year ordeal. That last comment was written by the one stalwart soul who was involved from the very beginning through to the end. |
||||
|
|
|
|
||||||||||||||||||||
|
|
|
I have used this one on more than one occasion, when I've done some kind of non-obvious simplification to a mathematical formula that I don't feel like documenting:
|
||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
Update: The original author of the code has outed himself so I must give credit where it is due. Dan McKinley left the company I was with shortly after I started, and he talks more about the code, explaining some background and a few more "WTF's" that 'Richard' wrote. |
||||||||||||||||||||
|
|
|
|
||||||||
|
|
|
Many years ago (about 1994) I was working on a Oracle PRO*C application for a large multi-national software company that you will have heard of. The app I was working on was a massive Oracle application and they had a utility that ran overnight tidying up data and doing all sorts of aggregate calculations. Every time anything needed doing as a batch job, it got shoved into this utility and as you can imagine it became an absolute monstrosity. It was also notable for the tiny number of comments that it had for such a massive program. One of the few comments it did have remains the finest comment I have ever seen for pure WTF'ness... I was trying to find a bug in a function which was hundreds of lines long and right in the middle of it was the only comment in the function:
To this day it is still the finest comment I have ever seen. |
||||||||||||||||
|
|
|
Next to a local variable that had to be declared just to pass a constant to a library function:
|
|||
|
|
|
||||||||||||||||
|
|
|
Best one so far: "This code makes baby Jesus very sad!". It was refering an String iniciatilization like this:
String blankSpaces=" "+ //100 whitespaces |
|||
|
|
|
|
This was before a set of code that technically did fix the problem it was meant to but broke 3 other things.... |
|||
|
|
|
|||
|
|
I'm not sure what I did |
|||
|
|
|
|
"Get This hack!" On a line of assembler code, after pages of uncommented code. |
|||
|
|
|
|
...it made my boss think someone had hacked in. He didn't know the joke. |
||||
|
