vote up 358 vote down star
509

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 2 3 4 5 18 next
vote up 54 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
2  
I like both your attitude and your name, John Cocktoastan. – paniq May 5 at 9:25
show 3 more comments
vote up 139 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
12  
John Skeet would have found room... – annakata Dec 1 '08 at 17:24
4  
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 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 637 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
12  
And the German version: tasty.soylentsoft.com/images/halt_hammerzeit.jpeg/… :) – roosteronacid Oct 12 '08 at 13:00
36  
stop(); // collaborate, listen! – Erik Dec 10 '08 at 0:32
5  
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

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 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 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 4 vote down
/* My lawyer told me not to reveal */
link|flag
vote up 485 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
51  
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
33  
Why will the dog be released to the public? – Nosredna Jun 11 at 18:53
show 4 more comments
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 7 vote down
// TODO - Comment this function
link|flag
4  
Uh sorry. That was me. – JohnFx Feb 13 at 1:04
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 35 vote down
Repeat
    ...
Until (JesusChristsReturn) ' Not sure
link|flag
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 336 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 35 vote down
//There can Only Be one HIGHLAN....err..Singleton
public class SomeSingleton
{
...
}
link|flag
show 2 more comments
vote up 43 vote down
virgin = 0;     /* you're not a virgin anymore, sweety */
link|flag
vote up 8 vote down
i++; // increment variable i
link|flag
show 1 more comment
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 14 vote down

//open lid

//take sh!t

//close lid

Comments for a File open, data dump, file close...

link|flag
show 1 more comment
vote up 17 vote down

When writing some Perl years ago, I added these comments at the top and bottom:

# <magic type="voodoo">

...

# </magic>

The next guy to look at it wasn't so hot at Perl, and spent a while searching documentation for what 'magic' and 'voodoo' did. Since then, I've tried to add more helpful comments...

link|flag
1  
Even more funny because the guy actually thought it was real. – Jeff Keslinke Dec 18 '08 at 21:31
2  
@harry.lime <magic type="parlor">, <magic type="sleightofhand">, <magic type="card">, and many more. They are documented here: en.wikipedia.org/wiki/Template:Magic_and_Illusion/… – thomasrutter Apr 23 at 2:45
1  
Don't forget <magic type="black">. That's the kind I usually encounter in code. – Sean Nyman Jun 16 at 15:06
show 3 more comments
vote up 25 vote down

// Catching exceptions is for communists

From Mike Duncan's page on SQLite.

link|flag
vote up 7 vote down

In the header of an XSLT file:

DON'T TOUCH THIS SCRIPT -> XSLT is like arcane, black magic

link|flag
2  
I agree. Many years ago I did some XSLT wizardry. It was kinda voodoo, but I swear I had fun with it -- when I was not pulling my hair out, that is. – schonarth Oct 21 '08 at 12:33
1  
Right, complicated things are easy but simple things can drive you crazy in XSLT... – AndrĂ© Oct 24 '08 at 15:41
vote up 11 vote down
// Hard to explain

It ended up being broken, too. No wonder it was hard to explain

link|flag
vote up 10 vote down

I believe in JBoss somewhere there was a line that read

return null; //Not really null

I always liked that line.

link|flag
vote up 44 vote down
     * ...and don't just declare it volatile and think you've solved
     * the problem. You young punks think you know what volatile
     * means... why in my day we had to cast it volatile uphill
     * both ways, and the code still didn't work! Whippersnappers...

link|flag
show 1 more comment
vote up 27 vote down
// The following strings are meant to be funny.  Do not edit these strings
// unless you are funny, too.  If you don't know if you're funny, you're
// not funny.  If fewer than 2 people unrelated to you have told you that 
// you're funny, you're not funny.
link|flag
vote up 2 vote down

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):

// zzzzZZZZzzzz....
link|flag
vote up 33 vote down
// human madable inconvenient. Way too sucks.

I still don't fully understand what it means, but I have found it to be very true about a lot of code.

link|flag
2  
The funniest comments are the ones that add ambiguity. – __ Oct 11 '08 at 18:52
show 4 more comments
vote up 56 vote down
// I know the line below is wrong, but it came that way from our IP vendor, and 
// the driver won't work if you "fix" it. I've had to revert this change 4 times
// now. Leave it alone, or I will hunt you down and hurt you
if (r = 0) {
    /* bunch of code here */
}
else
{
   /* even more code here */
}
link|flag
3  
I just love this, it makes my heart smile that someone just couldn't stand leaving the line as it was. Classic. – Banang Apr 15 at 4:27
3  
Wouldn't it be better to replace it with just r = 0; – thomasrutter Apr 22 at 12:09
8  
unless r is an object that overloads the = operator, and they grossly misused operator overloading. – Nelson LaQuet May 5 at 18:17
show 5 more comments
prev 1 2 3 4 5 18 next

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