What is the best comment in source code you have ever encountered?
|
511
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
Cookie in this context does not refer to a browser cookie |
|||
|
|
|
|
followed by four nested for-loops |
||||||||||||||||
|
|
|
A few hours after showing a friend this post from Coding Horror, I saw this comment on his code:
|
|||
|
|
|
||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
(A bunch of code that's really weird looking) //Kludge. |
|||
|
|
|
|
"This will never happen". Famous last words my friend... |
|||
|
|
here are 4, in no order:
|
|||
|
|
|
|
|
||||
|
|
|
Wish I were kidding. And knowing the developer who wrote the code, I think he meant it literally. |
||||||||||||||||||||
|
|
|
Try typing your favourite profanity into google code search, it whiles away many a dull hour. Some of my favourite examples:
and my personal favourite
|
||||
|
|
|
and the rest of the glorious mkentry.c at the IOCCC page. I can't keep laughing every time I read through this source. |
|||
|
|
|
|
About the middle of a 30 page xslt
|
||||||||||||
|
|
|
|
|||
|
|
|
|
|
||||||||||||||||||||
|
|
|
with no other comments |
|||
|
|
|
|
from jpgraph |
|||
|
|
|
|
The original Doom had an engine with static walls that could not move; the result was that all doors opened vertically; nothing could ever move horizontally. I burst out laughing when, after the source code was released, I was looking through the code and saw this in the source file for handling doors, at the start of a big block of commented-out code:
|
||||||||||||
|
|
|
|
|||
|
|
If you have reached this part in the code, then this program sucks. |
|||
|
|
|
|
It speaks volumes about our profession that when asked about the "best comment", we all answer with the worst comments we can find... |
||||||||||||||||||||
|
|
|
|
||||||||||||||||||||
|
|
|
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. |
|||
|
|
|
|
That comment is in nearly every program we have here.... |
|||
|
|
|
|
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). |
|||
|
|
|
|
Simple but effective comment, before a less than safe hack in some C++ code
|
|||
|
|
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) |
||||||||||||||||||||
|
|
|
|
||||
|
|
|
In the header of a code file heavily edited by everyone on the dev team:
Good ol' Flanders. |
||||||||||||
|
|
|
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... |
|||
|
|
