What is the best comment in source code you have ever encountered?
|
510
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
var arbitraryNumber = 10; //I don't know why. Just move on. |
|||
|
|
|
|
|
|||
|
|
|
|
I found this on Google Code Search
|
|||
|
|
|
|
My favorite comment of all time was used by a gay friend of mine. He liked to mark all of his TODO comments in VB.NET as - 'TODO: Matt Damon Sometimes additional information was provided but not usually. |
|||
|
|
|
|
That, and...
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
In the middle of a few thousand line JScript file after a completely arbitrary line... // The world is a happy place. |
|||
|
|
|
|
|
|||
|
|
|
|
BAck in the early eighties, I came across this in assembler (quoting from dim memory): "I don't understand how the following bit works, but it worked in the program I stole it from." |
|||
|
|
|
|
From a battery monitor module in an embedded system:
|
|||
|
|
|
|
|
||||
|
|
|
|
|||
|
|
|
|
and the rest of the glorious mkentry.c at the IOCCC page. I can't keep laughing every time I read through this source. |
|||
|
|
|
|
-- Change Log: Not needed. The code is perfect 'cause I wrote it. --If you change it, it will break. I'm in the middle of reviewing some code comments to check they make sense, and saw the modest line above. |
|||
|
|
|
|
A few hours after showing a friend this post from Coding Horror, I saw this comment on his code:
|
|||
|
|
|
|||
|
|
|
|
This is my favourite comment ever.
Later on in the file we have more fun like
And again later
|
|||
|
|
|
|||
|
|
|
|
I didn't encounter this firsthand, but it makes for a good story (see explanation in my comment):
|
|||
|
|
I don't have the exact code package anymore, but I remember the comment vividly.
|
|||
|
|
In some assembler, at the end of a line that contained
(get it?) |
||||
|
|
|
From a unit testing class in C#:
|
|||
|
|
i++; //increment i |
|||
|
|
|
|
I just ran across this one in a really simple test C++ program for a class in college. I was commenting a class. In the destructor...
|
|||
|
|
|
|
Not code comments, but SVN commit comments on the same file: First commit (following of dozens of others after results coming back from testers):
2nd commit:
3rd:
4th:
And 5th:
Yes, I was tired of "Fixed bug". |
|||
|
|
|
|
I like some of the comments in the GNU binutils. This one is from BFD som.c:
This one too:
...
Another one:
From gas:
|
|||
|
|
|
|
|
||||
|
|
|
And it was a foul function. I have nightmares about it to this day. |
|||
|
|
|
|
Well, these are mine, so WTF is me, as CodingHorror said:
I once left a comment like so in some ASP:
As it happens, [CustomerName] didn't change his mind, but he DID have access to the web server, and he DID find that line... |
|||
|
|
