vote up 358 vote down star
520

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 9 10 11 12 13 18 next
vote up 3 vote down

// This is confusing, I KNOW, so let me explain it to you.

link|flag
vote up 3 vote down

My personal favorite is documentation in limerick form:

        Subclassing made Zope and TR
        much harder to work with by far.
            So before you inherit,
            be sure to declare it
        Adapter, not PyObject*

This probably spoils the joke a bit, but since it's a bit obscure I'll explain:

"TR" here refers to "Twisted Reality". Zope 2 and the original twisted.reality package made extensive and unfortunate use of multiple inheritance, which could make it difficult to understand what was going on when you saw a method call. Zope 3, Twisted itself, and twisted.reality's successors (including the most recent, Imaginary) instead generally favor component composition.

link|flag
vote up 3 vote down

// no comment

link|flag
show 2 more comments
vote up 3 vote down
/**
 * This run through all the guipublisherbuyRecord , the records those have
 * diff. is buytotal and prior to buy isRecommendedBillingClickedWarning flag
 * is set if priously RB ran and this time not.
 * 
 * --What?
 * 
 * @return
 * @throws AppException
 */
link|flag
vote up 3 vote down
// *** drunk -- fix later ***

direct link

More fun with google code search...

link|flag
vote up 3 vote down
v.bpc     := v.pc;  -- Remember to jump back
v.baccu   := accu;  -- Yo dawg, heard you like runing instructions
                    -- so I took backup of your accu so you can run
                    -- instructions while you run instructions.
v.flags.i := false; -- No more interupts
link|flag
vote up 3 vote down
#!/usr/bin/sh
#       Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
#         All Rights Reserved

#       THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
#       The copyright notice above does not evidence any
#       actual or intended publication of such source code.

#ident  "@(#)false.sh   1.6     93/01/11 SMI"   /* SVr4.0 1.3   */
exit 255

Taken from SunOS 5.9 aka Solaris 9 (/usr/bin/false)

link|flag
2  
Heh, Schrödinger would be proud. – Erik Apr 24 at 0:00
show 3 more comments
vote up 3 vote down
// TODO: Finish.
link|flag
vote up 3 vote down
// some sport psychology
if (!focused)
    Focus();
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 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 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 3 vote down
Tweet tweet = (Tweet) tweets.get(i); // Poetic.
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 3 vote down
// Singleton object. Leave $me alone.
private static $me;
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 3 vote down
BEGIN.
// Here might be dragons
.
.
 IF...
 // Beware of the Jabberwocky
 .//user the force, luke
 .
 .
 ENDIF.
.
END.
link|flag
vote up 2 vote down

I'm not sure what I did

link|flag
vote up 2 vote down
// This code sucks.
link|flag
vote up 2 vote down

It's not strictly speaking a comment, but...

It was the mid-1990s and I was working on a big migration: small software vendor, big client, lots of pressure. We had a lot of shifting-goalpost stuff; the project was very hard to control. I was the key developer, but new to the system, and the other developer was the vendor's owner/founder.

After a few months of not quite making deadlines and not quite satisfying the client, the owner/founder brought on another developer, who was working remotely. (I'm gonna go out on a limb and say the new developer had lesser skills and experience than me.)

Well, the new guy made some changes in code that I'd already worked on, and then a month or two later I was back in the same area of the code, and there were variables I hadn't seen before. With names like StupidMark.

Dude, that's just not right. I mean, there's teamwork considerations, but also: in this environment, variable names can show up in runtime error messages. I'm just saying.

In my opinion at the time, the new guy's code wasn't getting us much closer to a deliverable product anyway, which made the insult sting a little more.

link|flag
vote up 2 vote down
// but the "real" solution is much more complicated

from jpgraph

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 2 vote down
// set break point here - you'll never reach it
link|flag
vote up 2 vote down
 // WARNING!!!
 // Very perversive code ahead!

... about a 20 lines of "very perversive" code ...

// Now you can call your grandmother back. ;)
link|flag
vote up 2 vote down

first line of a javascript function:

// this part is more difficult

WTF?

link|flag
vote up 2 vote down

Just added this one today:

// Hardcoded this for time sake ... will make andrew fix later :)
link|flag
vote up 2 vote down

From a legacy Perl CGI script:

# This is convoluted and evil, sorry.
link|flag
vote up 2 vote down

In a class named "Bar" (which was a UI Control with a less than descriptive name), the class header:

  /// <summary>I pity the "foo".</summary>

And the Remove() method:

  /// <summary>A "foo" and his money are soon parted.</summary>

Even worse, it was a business partner that pointed it out from the generated documentation. Even worse than that, is those are probably the closest things to useful documentation we ever got out of the guy.

link|flag
prev 1 9 10 11 12 13 18 next

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