vote up 358 vote down star
506

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

1 2 3 4 5 18 next
vote up 0 vote down

When coding MAPPER Apps we had some standards and one of these was that there was a list of standard variables in use throughout the suite. One of these - 'V43' was always used to hold a Surname. So imagine my annoyance when the only comment in a big cryptic chunk of MAPPER code I'd been asked to fix was:

Here V43 contains the Surname

link|flag
vote up 13 vote down
public boolean isDirty() {
    //Why do you always go out and
    return dirty;
}
link|flag
vote up -1 vote down
TextBox1.Text = TextBox1.Text; //Point less yes, who writes this crap?
link|flag
vote up 3 vote down
# dont question, i just felt like throwing some globals in
# this is actually quite pointless as youll soon see

later in the code

#draw the circles (complicated)...dont question

even later...

# complicated process of drawing the circles in a
# somewhat symmetrical, 3-d pattern
# dont question again

and even later...

# will determine if user clicks on die
# i determined these values...dont worry about them
link|flag
vote up 6 vote down

$you = live("free") or die("hard");

link|flag
vote up 2 vote down
// *** AAAAAHAHAHAH!!  What is this??
link|flag
vote up 4 vote down
// woot, global var. I havent done this for a long time.
link|flag
vote up 0 vote down
// TODO: remember to end this part
link|flag
vote up 19 vote down
// no comments for you
// it was hard to write
// so it should be hard to read
link|flag
show 1 more comment
vote up 4 vote down

my favorite was something like this

 # commented out
 ...
 ### end of the formerly uncommented #2001-02-22 John Doe
link|flag
vote up 3 vote down
// Singleton object. Leave $me alone.
private static $me;
link|flag
vote up 21 vote down

I worked with a guy who was raised a Muslim, but had a rather tongue-in-cheek view of the religion. He left this comment above a particularly nasty chunk of code:

// I will give you two of my seventy-two virgins if you can fix this.

link|flag
vote up 1 vote down
// The following array may contain either TexturedObjects or ColoredObjects.
// I know, it sucks.
link|flag
vote up 2 vote down

Technically not a comment, but from coding on something at 2 am or so:

    consent = False

... that variable is never used again EVER and appears in the beginning of a listen loop for a socket.

link|flag
vote up 4 vote down

From a battery monitor module in an embedded system:

// batmon.c drives the rastamobile
link|flag
vote up 3 vote down
BEGIN.
// Here might be dragons
.
.
 IF...
 // Beware of the Jabberwocky
 .//user the force, luke
 .
 .
 ENDIF.
.
END.
link|flag
vote up 11 vote down
/
//3.4  JeK  My manager promised me a lap dance if I can fix this release
//3.5  JeK  Still waiting for that dance from my manager
//3.6  JeK  My manager got changed, the new manager is hairy, dont want the dance anymore
//3.7  Jek  Got that dance, yuck!
//
link|flag
vote up 2 vote down

Found this in makefile

# ===== Never edit below this line. Ever. Or I'll kick your ass. ====
link|flag
show 2 more comments
vote up 1 vote down

//too much log will kill you

This comment I wrote it myself, when lowering the priority of some logs which otherwise would write hundreds of MB of crap and seriously crippled an application performance.

link|flag
show 1 more comment
vote up 12 vote down
//I'm sorry, but our princess is in another castle.
link|flag
vote up 1 vote down

In a bunch of poorly cut & pasted source code for a content management web app:

// load image 1 - JPEG 240x320
img = f1.getImage();
if (check(img))
{
   load(img, Constants.JPEG_240x320);
}

// load image 2 - JPEG 128x128
img = f2.getImage();
if (check(img))
{
   load(img, Constants.JPEG_128x128);
}

...

// load image 13 - GIF 256x256
img = f13.getImage();
if (check(img))
{
   load(img, Constants.GIF256x256);
}

// loaded all of the motherfucking images

note: roughly translated from italian :-)

link|flag
vote up 2 vote down

// need a coffee to fix this.

link|flag
vote up 3 vote down

Well, here's one I just committed:

/* Every time I re-visit this function, I feel like
 * I need to take a shower.
 *
 * Don't get too used to this function, its days are
 * numbered.
 */

Someone could start something like greatcodecomments.com and make some cash. That person, however, is not me.

link|flag
vote up 3 vote down

Recompiling FreeTextBox3 for the first time in our application because we need IE8 support... And look what I've found:

// IE7 update. this is still bad code, but IE8 is probably a long way off :)
link|flag
show 1 more comment
vote up 1 vote down

I just finished a logging framework (that uses Trace, why nothing like this exists I don't know). I made a convenience base class that inherits from TraceListener. It overrides all of the TraceListener methods and routes them into one method - so that is a lot of doc commenting:

// TODO: Need some codemonkey to doc comment this class.
link|flag
vote up 4 vote down

We had a group project to create a Connect 4 AI using Min-Max trees. In our move-scoring function, we had it calculate a score for the board, and above that block of code there was this comment:

// This is kind of almost useless

But it gets better. Our instructor gave us some sample code from a crude AI he had made, and he left a great comment:

// We also add/subtract some points based on what's going on, on the bottom
// row. (I think this is retarded, but apparently when I coded this up 
// back in 1999 I didn't.)
link|flag
show 1 more comment
vote up 0 vote down

// TODO: what the hell is this all about?

And then some commented out code.

This was found in our code in work earlier today. I'm not sure if I should laugh or cry...

link|flag
vote up 2 vote down

The below code was seen in a mock tutorial for Python.

# This is my rifle.
def rifle(type='hunting'):
    print('This is my (%s) rifle.' % type)

# This is my gun.
def gun(type='hand'):
    print('This is my (%s) gun.' % type)

# This is for fighting.
def fighting(type='illegal'):
    print('This is for (%s) fighting.' % type)

# This is for fun.
def fun(type='gaming'):
    print('This is for (%s) fun.' % type)

The author must have been a fan of Family Guy. ^_^

link|flag
6  
I thought of Full Metal Jacket first :) – Michael Stum Apr 24 at 9:52
show 2 more comments
vote up 3 vote down
Tweet tweet = (Tweet) tweets.get(i); // Poetic.
link|flag
vote up 2 vote down

This was for a custom DHCP server that we used in a university's dorms to put computers into 'clean' or 'dirty' IP address pools depending on whether or not they'd registered/installed patches and Antivirus:

public boolean getDirty (String MAC) // not as fun as it sounds
link|flag
1 2 3 4 5 18 next

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