vote up 358 vote down star
521

What is the best comment in source code you have ever encountered?

show 3 more comments

locked by Jeff Atwood Apr 28 at 8:55

closed as no longer relevant by Jeff Atwood Apr 28 at 8:51

529 Answers

prev 1 14 15 16 17 18 next
vote up 1 vote down

Comment in our Enterprise Class system used for Government purposes

'RH 5/24/06 burn me if this dosn't work.. :)

Good ole RH.....company Prez/Lead Developer

link|flag
vote up 8 vote down
i++; // increment variable i
link|flag
show 1 more comment
vote up 43 vote down
virgin = 0;     /* you're not a virgin anymore, sweety */
link|flag
vote up 35 vote down
//There can Only Be one HIGHLAN....err..Singleton
public class SomeSingleton
{
...
}
link|flag
show 2 more comments
vote up 339 vote down
long john; // silver
link|flag
3  
Pure corn. That's why I like it. – __ Oct 11 '08 at 18:41
1  
Totally cracked up as well. I think my code now is too boring. – wonderchook Nov 8 '08 at 21:45
13  
en.wikipedia.org/wiki/Long_John_Silver – chakrit Nov 21 '08 at 21:52
2  
picturesforsadchildren.com/index.php?comicID=249/… – Glyph Apr 20 at 17:58
show 1 more comment
vote up 4 vote down

-- 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.

link|flag
vote up 35 vote down
Repeat
    ...
Until (JesusChristsReturn) ' Not sure
link|flag
show 1 more comment
vote up 34 vote down

A classic case of why you shouldn't off shore your software development:

public class Contact
{
    //...    

    /// <summary>
    /// Gets or sets the name of the first.
    /// </summary>
    /// <value>The name of the first.</value>
    public string FirstName
    {
        get { return _firstName; }
        set { _firstName = value; }
    }
}
link|flag
1  
@Rinat - pretty sure Martin was commenting on the coder's apparent lack of understanding of what exactly a "first name" is. – Michael Petrotta Oct 9 '08 at 18:20
5  
This was created using GhostDoc. This would be the default comment created by the addin. – Craig Wilson Oct 10 '08 at 1:10
1  
I hadn't considered that the developer may have used a comment generator. Why would anyone use such a thing? Surely it would be impossible for a tool to generate any more information than can be determined from the property declaration, so why bother? – Martin Brown Oct 10 '08 at 15:58
6  
So that your boss/client who wants every stupid getter and setter documented is happy – Luka Marinko Oct 11 '08 at 20:37
1  
offshoring - we hired Russian developers once to write a reporting engine... when contract renegotiating time came up, we realised all the comments were in Russian. Shame I don't have the code to show :( – gbjbaanb Mar 29 at 14:33
show 8 more comments
vote up 7 vote down
// TODO - Comment this function
link|flag
4  
Uh sorry. That was me. – JohnFx Feb 13 at 1:04
vote up 25 vote down
//Abandon all hope yea who enter beyond this point
link|flag
1  
:^) sounds like Dante's Inferno III 9: "Lasciate ogni speranza voi ch'entrate". – Federico Ramponi Oct 10 '08 at 2:15
5  
It's what the author was trying for but didn't quite remember. It's usually rendered into English as "Abandon all hope ye who enter here." – Robert Rossney Oct 18 '08 at 8:57
1  
I like to watch the code beyond that point! – lk Mar 10 at 15:22
vote up 489 vote down
// I dedicate all this code, all my work, to my wife, Darlene, who will 
// have to support me and our three children and the dog once it gets 
// released into the public.
link|flag
52  
Is this somewhere on the Duke Nukem Forever source code? ;) – Adhip Gupta Oct 10 '08 at 20:43
3  
I wish I could vote twice! – keithwarren7 Feb 2 at 21:08
1  
I don't get it, what's so funny? – hasen j Mar 5 at 19:33
7  
He's dedicating the code below to his wife, even though he knows it's so bad that it's going to either get him fired or make his company go out of business. :) – Robert P Mar 26 at 16:44
41  
Why will the dog be released to the public? – Nosredna Jun 11 at 18:53
show 4 more comments
vote up 4 vote down
/* My lawyer told me not to reveal */
link|flag
vote up 5 vote down

Seen in the source code for LucasArts' computer game 'The Eidolon' (Which was wierd and wacky in it's own right)...

// He's dead, Jim!
link|flag
vote up 5 vote down

Spelunking through the Hardware Abstraction Layer while working for a certain Finnish Mobile Network Equipment Manufacturer I found 100+ occurrences of the Finnish word "puukko".

A 'puukko' is an all purpose knife that every Finn has in their toolbox or around the house. It is used for everything from pealing potatoes to performing computer repairs (my observations). I believe in this context it is the Finnish equivalent of the word 'Hack'.

My Finnish colleagues denied this and said it meant something more like 'surgical procedure/intervention'... and I almost believed them until I found the comment:

/* Perkele ISO Puukko! */ -> Fucking Big Hack!

link|flag
vote up 6 vote down

Some of the very few comments in 5000+ lines of code in one file
I actually has an argument with the coder who defended his coding style...
No comment!
And there were no comments;-) (or very few)
Sadly this is production code.


offset=1;
for (i=0;i<=len;i++)
    {
    if ((i!=0)&&(i<len)) //-3
    	{
    	switch(mess[i])
    		{
    		case ETX:
    		case ETB:
    		case DLE:
    			buf[offset]=DLE;
    			offset++;
    			break;
    		}
    	}
    buf[offset]=mess[i];
    offset++;
    }


I love the switch!


for (n=0;n<offset;n++)
    {
    Sleep(TR);	//Modif A
    Sleep(T);//
    FWriteFile(hCom,buf+n,1,&dwMot,NULL);
    if (ECHO)
    	FReadFile(hCom,tab,1,&dwMot,NULL);
    }

and no, there are no comments explaining what "modif A" is in the header.


    if (GetFileSize(hSlotFile,NULL)==3600)	//5*720


and what's 720?

link|flag
4  
720 is 2 * 2 * 2 * 2 * 3 * 3 * 5, duh. – configurator Apr 29 at 17:01
show 1 more comment
vote up 645 vote down
stop(); // Hammertime!
link|flag
4  
I like it. Da da da DA, da DA, da DA, It's over (David Spade, SNL, Weekend Update) – __ Oct 11 '08 at 18:37
13  
And the German version: tasty.soylentsoft.com/images/halt_hammerzeit.jpeg/… :) – roosteronacid Oct 12 '08 at 13:00
39  
stop(); // collaborate, listen! – Erik Dec 10 '08 at 0:32
6  
addons.mozilla.org/en-US/firefox/… – Laserallan Feb 2 at 12:09
1  
Search on YouTube for "MC Hammer" – Charlie Flowers Mar 27 at 7:04
show 9 more comments
vote up 6 vote down

Found in the JUnit API:

/**
 * ...as the moon sets over the early morning Merlin, Oregon
 * mountains, our intrepid adventurers type...
 */
public Test createTest(Class theClass, String name) {
    ...
}
link|flag
vote up 141 vote down

One of the most classic ones is the comment made by Pierre de Fermat about his well-known "Last theorem": "The margin of this page is a bit too small to write down the proof".

It took more than 350 years before the proof was found...

(According to wikipedia this is the original text:)

Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et generaliter nullam in infinitum ultra quadratum potestatem in duos eiusdem nominis fas est dividere cuius rei demonstrationem mirabilem sane detexi. Hanc marginis exiguitas non caperet.

...and translated into English:

(It is impossible to separate a cube into two cubes, or a fourth power into two fourth powers, or in general, any power higher than the second into two like powers. I have discovered a truly marvellous proof of this, which this margin is too narrow to contain.)

link|flag
12  
It's interesting (to me at least) that the proof found 350 years later relied on mathematical techniques that were unavailable in Fermat's time, and was considerably longer than would fit in Fermat's margin. So, either he was mistaken, or there's a simple proof that remains a mystery. – Martin Oct 13 '08 at 15:10
3  
Maybe Fermat wasn't wrong. If he'd found a simple proof, it would have fit in his margin. – Windows programmer Oct 14 '08 at 6:25
13  
John Skeet would have found room... – annakata Dec 1 '08 at 17:24
5  
Well, I read the (by the way great) book from Simon Singh about him: The guy was a writing a lot of things and said a lot of things without providing proof. Just as other attempted, he probably thought that he had found the proof, but it was also probably incorrect. – Roalt Dec 2 '08 at 20:31
12  
@annakata - and Jon Skeet would kill you for typing the name of his evil twin. – Erik Dec 10 '08 at 0:38
show 13 more comments
vote up 55 vote down

LANGUAGE!

## fucking imap fucking sucks. what the FUCK kind of committee of
## dunces designed this shit.

## imap talks about 'unique ids' for messages, to be used for
## cross-session identification. great---just what sup needs! except
## it turns out the uids can be invalidated every time the
## 'uidvalidity' value changes on the server, and 'uidvalidity' can
## change without restriction. it can change any time you log in. it
## can change EVERY time you log in. of course the imap spec "strongly
## recommends" that it never change, but there's nothing to stop
## people from just setting it to the current timestamp, and in fact
## that's exactly what the one imap server i have at my disposal
## does. thus the so-called uids are absolutely useless and imap
## provides no cross-session way of uniquely identifying a
## message. but thanks for the "strong recommendation", guys!

## so right now i'm using the 'internal date' and the size of each
## message to uniquely identify it, and i scan over the entire mailbox
## each time i open it to map those things to message ids. that can be
## slow for large mailboxes, and we'll just have to hope that there
## are no collisions. ho ho! a perfectly reasonable solution!

## fuck you, imap committee. you managed to design something as shitty
## as mbox but goddamn THIRTY YEARS LATER.

...

 ## ok, this is FUCKING ANNOYING.
    ##
    ## what imap.rb likes to do is, if an exception occurs, catch it
    ## and re-raise it on the calling thread. seems reasonable. but
    ## what that REALLY means is that the only way to reasonably
    ## initialize imap is in its own thread, because otherwise, you
    ## will never be able to catch the exception it raises on the
    ## calling thread, and the backtrace will not make any sense at
    ## all, and you will waste HOURS of your life on this fucking
    ## problem.
    ##
    ## FUCK!!!!!!!!!
link|flag
1  
I wonder how happy this person would be to learn that Mark Crispin (the one person who developed IMAP; there never was an "IMAP committee" to my knowledge) got laid off from the University of Washington recently, and so the uw-imapd IMAP server is now basically abandonware. – crosstalk Nov 29 '08 at 4:36
16  
This is actually an excellent comment in that it very clearly describes what problems exists, the causes and the chosen remedies. Granted the language is a bit colourful, however that does not in any way change the fact that this is very valuable comment for someone to understand the code later. – hlovdal Apr 10 at 21:16
6  
And also, who cares if he drops the F-bomb, if its useful? How many children will be maintaining this code later? – John Cocktoastan Apr 15 at 20:53
3  
I like both your attitude and your name, John Cocktoastan. – paniq May 5 at 9:25
show 3 more comments
vote up 25 vote down
'NO COMMENT
link|flag
vote up 6 vote down

I found this when re-using a PHP class I wrote a fair amount of time ago. I still cant remember what went there and I still have found no use for it... I actually don't even remember me writing that comment; so I literally laughed out loud when I found it.

		try
		{				
		    // Some database logic
		}
		catch (Exception $ex)
		{
			// sure, it looks silly and I honestly cant remember what code used to go here... but i swear i will
			// find a use for this code.... eventually....
			throw $ex;
		}
link|flag
vote up 22 vote down

Classic ASP:

'Is it worth it, let me work it'
'I put my thing down, flip it and reverse it'
'Ti esrever dna ti pilf, nwod gniht ym tup I'

NextIP = StrReverse(UserRecordset.Fields.Item(0))
link|flag
5  
That's not right; the comma should be on the character before nwod, not the character after pilf. – tsilb Apr 25 at 22:38
show 2 more comments
vote up 8 vote down

Actually saw this the other day, on some code that was written when there was a deadline rush.

//This was clearly written under duress
link|flag
vote up 100 vote down
/* Halley's comment */
link|flag
5  
hahah brilliant. you only see one every 75 years, and the last one was in 1986. – nickf Oct 13 '08 at 7:12
show 2 more comments
vote up 1 vote down

Fresh out of college, I was eager to get my hands dirty. My first task was... "comment this code for me".

Fucker.

After awhile I got bored with it...

// this function doesn't actually calculated the profit, like it says --it really signals the mothership orbiting saturn that the planet is ripe for takeover

[later]

// I don't think anyone is going to read this

[various permutations on that last one]
link|flag
2  
And thus, your hands were dirty. – James McMahon Oct 16 '08 at 14:37
vote up 6 vote down
# absolutely foul heuristic code.
# ..it's dirty, but you want it.

and:

# VERY USEFUL DEBUGGING AID, for when the above all goes pearshaped:
link|flag
vote up 540 vote down
// sometimes I believe compiler ignores all my comments
link|flag
5  
I hope the compiler ignores this person's comments. – Windows programmer Oct 14 '08 at 6:18
18  
// Since I never heard back from the compiler, I believe this is true. – Liwen Dec 18 '08 at 13:59
11  
I think it's supposed to be ironic... – Neil Barnwell Dec 19 '08 at 15:57
12  
laughter, that's the future, compilers reading comments just to make sure they haven't misunderstood ;-D – R.A Jan 28 at 12:03
4  
//#reply_from_compiler you like clippy, don't you? – carleeto Feb 13 at 1:08
show 13 more comments
vote up 153 vote down

I went through a sleep-deprived coding run and started only writing comments that were quotes from Fight Club.

Still trawling through the code years later I find a comment that makes me laugh. Most of them just random thoughts. I did however keep my comments to lines ratio pretty good!


      // This shouldn't happen. The only way this can happen is if the JFileChooser has returned a File
      // that doesn't exist on the system. If this happens we can't recover, and there is more than likely a
      // rip in the space time continuum that the user is too distracted by to notice anything else.

  /**
   * This method leverages collective synergy to drive "outside of the box" thinking and formulate key
   * objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players
   * to drive-up their core competencies and increase expectations with an all-around initiative to drive down
   * the bottom-line. I really wanted to work the word "mandrolic" in there, but that word always makes me
   * want to punch myself in the face.
   */
  private void updateFileCountLabel() {


link|flag
6  
The second one is great! What, no "paradigm-shifting"? – gnovice Jan 13 at 19:33
10  
Just to be fair, the first clause might happen if in between the user selecting the File, the File disappears, which might in fact happen on a network file system. Assumptions like that have bitten me in the past... – Kirk Wylie Apr 19 at 20:31
show 6 more comments
vote up 11 vote down
//The following code is commented out
//(a load of commented out code followed)
link|flag
vote up 228 vote down
const int TEN=10; // As if the value of 10 will fluctuate...
link|flag
50  
In today's market 10 now has a value of only 9. – Steve Fallows Oct 10 '08 at 16:37
5  
Maybe someday we will evolve more fingers... – Loren Pechtel Oct 19 '08 at 19:52
24  
what about very large values of 10? – Mikeage Feb 23 at 13:45
40  
const int TEN=11; // Mine goes to eleven – dub Mar 6 at 13:25
8  
Calling Fortran from C - Fortran only does call-by-reference so you need variables for all constants. – mgb Apr 20 at 16:43
show 9 more comments
prev 1 14 15 16 17 18 next

Not the answer you're looking for? Browse other questions tagged or ask your own question.