What is the best comment in source code you have ever encountered?
|
512
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
...it made my boss think someone had hacked in. He didn't know the joke. |
||||
|
|
|
"Get This hack!" On a line of assembler code, after pages of uncommented code. |
|||
|
|
|
|
I'm not sure what I did |
|||
|
|
|
|
|
|||
|
|
This was before a set of code that technically did fix the problem it was meant to but broke 3 other things.... |
|||
|
|
Best one so far: "This code makes baby Jesus very sad!". It was refering an String iniciatilization like this:
String blankSpaces=" "+ //100 whitespaces |
|||
|
|
|
|
|
||||||||||||||||
|
|
|
Next to a local variable that had to be declared just to pass a constant to a library function:
|
|||
|
|
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. |
||||||||||||||||
|
|
|
|
||||||||
|
|
|
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. |
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
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:
|
||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
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. |
||||
|
|
|
From a classic from usenet:
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
That was line 2 of a 4000+ line PL/SQL procedure. And the only comment. 4 years after that procedure was developed, later still hadn't come... |
|||
|
|
|
|
In the header of a code file heavily edited by everyone on the dev team:
Good ol' Flanders. |
||||||||||||
|
|
|
|
||||
|
|
|
in a completely uncommented 2000 line method
(I actually grepped out all the brackets one day just to see how bad it was, and, sans formatting, got this:
The endif showed up around line 800) |
||||||||||||||||||||
|
|
|
Simple but effective comment, before a less than safe hack in some C++ code
|
|||
|
|
This was actually made by me when I was implementing a prototype turned into real code:
Yes, someone smarter than me actually refactored the code afterwards (it had to have a good ending). |
|||
|
|
|
|
That comment is in nearly every program we have here.... |
|||
|
|
|
|
It's not strictly speaking a comment, but... It was the mid-1990s and I was working on a big migration: small software vendor, big client, lots of pressure. We had a lot of shifting-goalpost stuff; the project was very hard to control. I was the key developer, but new to the system, and the other developer was the vendor's owner/founder. After a few months of not quite making deadlines and not quite satisfying the client, the owner/founder brought on another developer, who was working remotely. (I'm gonna go out on a limb and say the new developer had lesser skills and experience than me.) Well, the new guy made some changes in code that I'd already worked on, and then a month or two later I was back in the same area of the code, and there were variables I hadn't seen before. With names like Dude, that's just not right. I mean, there's teamwork considerations, but also: in this environment, variable names can show up in runtime error messages. I'm just saying. In my opinion at the time, the new guy's code wasn't getting us much closer to a deliverable product anyway, which made the insult sting a little more. |
|||
|
|
|
|
|
||||||||||||||||||||
|
|
|
It speaks volumes about our profession that when asked about the "best comment", we all answer with the worst comments we can find... |
||||||||||||||||||||
|
|
|
If you have reached this part in the code, then this program sucks. |
|||
|
|
