What is the best comment in source code you have ever encountered?
|
520
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
|
|||
|
|
|
|
My personal favorite is documentation in limerick form:
This probably spoils the joke a bit, but since it's a bit obscure I'll explain: "TR" here refers to "Twisted Reality". Zope 2 and the original |
|||
|
|
|
|
|
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
Taken from SunOS 5.9 aka Solaris 9 (/usr/bin/false) |
||||
|
|
|
// TODO: Finish. |
|||
|
|
|
|
|
|||
|
|
|
|
//uncomment the following mind if the program manager changes her mind again this week |
|||
|
|
|
|
Control + A, Rewrite This was a comment added to source control on a previous project as the check in comment. |
|||
|
|
|
|
|
|||
|
|
|
|
I wrote this comment, and now I can't remember WHY it's important... |
|||
|
|
|
|
|
|||
|
|
|
|
Recompiling FreeTextBox3 for the first time in our application because we need IE8 support... And look what I've found:
|
|||
|
|
Well, here's one I just committed:
Someone could start something like greatcodecomments.com and make some cash. That person, however, is not me. |
|||
|
|
|
|
|
|||
|
|
|
|
later in the code
even later...
and even later...
|
|||
|
|
|
|
|
|||
|
|
|
|
I'm not sure what I did |
|||
|
|
|
|
|
|||
|
|
|
|
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. |
|||
|
|
|
|
from jpgraph |
|||
|
|
|
|
Upon being forced to write unit tests for anemic domain objects that are nothing but bags of getters and setters (which I was forced to write as well):
|
|||
|
|
|
|
// set break point here - you'll never reach it |
|||
|
|
|
|
|
|||
|
|
|
|
first line of a javascript function:
WTF? |
|||
|
|
|
|
Just added this one today:
|
|||
|
|
|
|
From a legacy Perl CGI script:
|
|||
|
|
|
|
In a class named "Bar" (which was a UI Control with a less than descriptive name), the class header: /// <summary>I pity the "foo".</summary> And the Remove() method: /// <summary>A "foo" and his money are soon parted.</summary> Even worse, it was a business partner that pointed it out from the generated documentation. Even worse than that, is those are probably the closest things to useful documentation we ever got out of the guy. |
|||
|
|
