vote up 358 vote down star
527

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 48 vote down
    #Christmas tree initializer  
    toConnect = []  
    toRead =   [  ]  
    toWrite = [    ]   
    primes = [      ]  
    responses = {}  
    remaining = {}
link|flag
vote up 3 vote down
// some sport psychology
if (!focused)
    Focus();
link|flag
vote up 9 vote down

Stating the obvious?

/** Logger */
private Logger logger = Logger.getLogger();
link|flag
show 1 more comment
vote up 1 vote down
// now that's compact!
list->insert(list->end(),**pitch)->IdxOfSample=(pitch->pos-Offset)*SamplingRate;
link|flag
vote up 11 vote down

In a GIGANTIC 800 line 'switch' statement, somewhere in the middle:

// Joe is sorry

A few hundred lines later...

// Harry is sorry too
link|flag
vote up 1 vote down

[center]

[vrk:Cloud ID="cTags" runat="server" DataTextField="Tag" DataWeightField="Total"
    Width="100%" DataHrefField="Tag" DataHrefFormatString="~/tags.aspx?tag={0}"]
[/vrk:Cloud]

[!--if anybody would like to change the control's color contact with FLORJON--]

[/center]

link|flag
vote up 2 vote down

From Python/ceval.c:

/* This is gonna seem *real weird*, but if you put some other code between
   PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust
   the test in the if statements in Misc/gdbinit (pystack and pystackv). */
link|flag
vote up 1 vote down
'Mind boggling, gibberish version of a SQL statement, but it work's, so dont touch it
link|flag
show 1 more comment
vote up 4 vote down
//BELOW IS THE REAL CODE...JABRONI
		//
		// Yeah, but can you play the outtro to Bark At The Moon?
		//

		//|--------------------------------------------------|------------------------------------------------|
		//|--------------------------------------------------|------------------------------------------------|
		//|--17^16-16-16-17^16-17^16-16-16-17^16-17^16----16-|-19^16----16-19^16-19^16---16-19^16-19^16----17-|
		//|--------------------------------------------19----|-------17----------------17---------------17----|
		//|--------------------------------------------------|----------------------------------------------
link|flag
vote up 12 vote down

This comment was in a unit containing interfaces which were used to bind communication between the main application and various 3rd party drivers.

//**************************************
// Dear code maintainer:
//
// This source contains COM interfaces, not to be confused with interfaces 
// of any other sort, please do not just willy-nilly add additional methods 
// to these interfaces as they are truely immutable, unlike the interfaces 
// that other software vendors like Microsoft maintain.  IF you need to add 
// new functionality, then go thru the trouble of creating a NEW interface 
// and implement this functionality on only the objects you need.  
//
// While the money is good for fixing all of the problems caused by not 
// following the rules, I would rather work on things which actually have
// an impact on the future of the product rather than curse and yell 
// obsenities at the screen because someone didn't bother to understand the
// true meaning of IMMUTABLE.  
//**************************************
link|flag
vote up 2 vote down

/* This is a replica of a horrible hack - many moons ago, the legacy PortfolioServer was modified to return cash trades in an "optionTrade" block, because the client side developer was too lazy to get their XPaths right. Their laziness echoes through the ages, and means we need a similar hack here...*/

link|flag
vote up 3 vote down

//uncomment the following mind if the program manager changes her mind again this week

link|flag
vote up 4 vote down

public static final void attachListener(Object listener) {

/* ======================= */

// This does nothing, continue searching

/* ======================= */

...

painful with listeners!

link|flag
vote up 6 vote down

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

link|flag
vote up 3 vote down

Control + A, Rewrite

This was a comment added to source control on a previous project as the check in comment.

link|flag
vote up 0 vote down

I really almost like the oh_my_gawd tag better than the comment...

    /*
     * IOC3 is fucked fucked beyond believe ...  Don't even give the
     * generic PCI code a chance to look at it for real ...
     */
    if (cf == (PCI_VENDOR_ID_SGI | (PCI_DEVICE_ID_SGI_IOC3 b_type0_cfg_dev[slot].f[fn].c[where ^ (4 - size)];

    if (size == 1)
    	res = get_dbe(*value, (u8 *) addr);
    else if (size == 2)
    	res = get_dbe(*value, (u16 *) addr);
    else
    	res = get_dbe(*value, (u32 *) addr);

    return res ? PCIBIOS_DEVICE_NOT_FOUND : PCIBIOS_SUCCESSFUL;

oh_my_gawd:

    /*
     * IOC3 is fucked fucked beyond believe ...  Don't even give the
     * generic PCI code a chance to look at the wrong register.
     */
    if ((where >= 0x14 && where = 0x48)) {
    	*value = 0;
    	return PCIBIOS_SUCCESSFUL;
    }
link|flag
vote up 3 vote down
//Time log says you've been here for 15 hours GO HOME, your code is hobo
link|flag
vote up 3 vote down

    /* Only break the connection if it actually exists.  It is important to
     * check the timeslot saved in the SOURCE of the disconnect message. */

I wrote this comment, and now I can't remember WHY it's important...

link|flag
vote up 2 vote down

'I hate nested regions and will delete them along with any code found in them.

link|flag
1  
Suit yourself. You broke the build, not me. – tsilb Nov 20 at 4:50
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
vote up 3 vote down
Tweet tweet = (Tweet) tweets.get(i); // Poetic.
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 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 5 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 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 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 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 2 vote down

// need a coffee to fix this.

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 12 vote down
//I'm sorry, but our princess is in another castle.
link|flag
prev 1 14 15 16 17 18 next

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