vote up 358 vote down star
511

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 4 5 6 7 8 18 next
vote up 8 vote down
// For the sins I am about to commit, may James Gosling forgive me
link|flag
vote up 2 vote down

I don't have the code to share, but imagine this scenario. About a month or two after our Linux Sys Admin left for greener pastures, I had the pleasure of opening a shell script he'd written. I can't recall why I needed to edit it, but that's not what matters. What's important is that the script was about 40 lines long. I scrolled past the commenting (of which there were 37 lines) to reach the actual working code (3 lines). The code was great, but I was curious - why 37 lines of commenting? So, I scrolled to the top and proceeded to read. To my surprise, the commenting was a rap about what the three lines of code did and how to change it. The best part - it was a partial rip off of Nothing But A G Thing by Dr. Dre and Snoop D O DOUBLE G. Thanks Brian!

link|flag
vote up 3 vote down

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

link|flag
vote up 8 vote down

This whole function is pretty great (from the Linux sunhme.c driver, for the network card nicknamed the Happy Meal by Sun. Because the card that came before that was the "Big MAC". Get it? Get it?)

static void happy_meal_tcvr_write(struct happy_meal *hp,
                              void __iomem *tregs, int reg,
                              unsigned short value)
{
    int tries = TCVR_WRITE_TRIES;

    ASD(("happy_meal_tcvr_write: reg=0x%02x value=%04x\n", reg, value));

    /* Welcome to Sun Microsystems, can I take your order please? */
    if (!(hp->happy_flags & HFLAG_FENABLE)) {
            happy_meal_bb_write(hp, tregs, reg, value);
            return;
    }

    /* Would you like fries with that? */
    hme_write32(hp, tregs + TCVR_FRAME,
                (FRAME_WRITE | (hp->paddr << 23) |
                 ((reg & 0xff) << 18) | (value & 0xffff)));
    while (!(hme_read32(hp, tregs + TCVR_FRAME) & 0x10000) && --tries)
            udelay(20);

    /* Anything else? */
    if (!tries)
            printk(KERN_ERR "happy meal: Aieee, transceiver MIF write bolixed\n");

    /* Fifty-two cents is your change, have a nice day. */

}

link|flag
2  
Dupe: stackoverflow.com/questions/184618/… – Andrew Medico Apr 20 at 4:15
vote up 0 vote down
// Just in-case you're wondering, you had no idea what 0.75 was when you wrote this. Trial and error only.
    imagecopyresampled($newimage, $src, 0, 0, (-0.75*$xoff), (-0.75*$yoff), $new_w, $new_h, $width, $height);

From an image cropping function using GD in PHP from a person who's identity will never be revealed!

link|flag
vote up 17 vote down

Don't recall where I've seen these:

long time; /* know C */

and (in code to create some sort of UNIX daemon):

/* Be a real daemon: fork myself and kill my parent */
link|flag
vote up 5 vote down
// Fuck.

That, and...

// This code worked before, but my cat decided to take a trip across my keyboard...
link|flag
vote up 1 vote down
#ifdef TRACE
#undef TRACE     /* All your trace are belong to us. */
#endif
#define TRACE ....
link|flag
vote up 1 vote down

In some really crappy vb code (I know it is all crappy but) I found this a comment in an empty if control block that said something like:

If bFound Then
     'I love it when I write kick ass code like this
Else
  .
  .
link|flag
vote up 0 vote down

A compilation of my greatest hits:

// Thats the end of the While loop
// Clean up last row.  I really must program better than this.

// Note: You can't immediately tell if the line below works.

// Rounding - blech.  It's assumed that all .5s are rounded up.

// Sort out predictions first.  Seems like the right place for a prediction, 'first'.

// Let's interpret!
link|flag
vote up 5 vote down

My favorite comment of all time was used by a gay friend of mine. He liked to mark all of his TODO comments in VB.NET as - 'TODO: Matt Damon

Sometimes additional information was provided but not usually.

link|flag
vote up 5 vote down

I found this on Google Code Search

    // Constructs a tuple with 2 elements (fucking idiot, use std::pair instead!)
    template <typename T0,typename T1>
    inline tuple <T0,T1> make_tuple (const T0& t0,
            const T1& t1) {
            tuple <T0,T1> t;
            t.get<0>() = t0;
            t.get<1>() = t1;
            return t;
    }
link|flag
vote up 6 vote down

/* Here I sit, Joe broken hearted, came to do some sh*t, but only just started. */

In regards to some heavy regular expression input validation.

link|flag
vote up 163 vote down
// Replaces with spaces the braces in cases where braces in places cause stasis
   $str = str_replace(array("\{","\}")," ",$str);
link|flag
7  
+1 - Pure genius. This should go on a t-shirt or something :-) – ldigas Apr 20 at 3:37
21  
Dr Seuss writes code? +1! – Blorgbeard Apr 22 at 9:29
1  
Needs two more syllables at the end... – mmyers Apr 29 at 20:47
7  
Just opened the comments to say that it needs two more syllables, but apparently I beat myself by three months. – mmyers Aug 5 at 17:44
show 3 more comments
vote up 17 vote down
when :orientation
## Avoid matching gay people with straight people - they hate it, they do, they really do.
query_parameter = "(users.orientation = 'Bi' OR (users.orientation = 'Straight' AND users.gender IN ('#{user.opposite_genders.join('\',\'')}')) OR (users.orientation = 'Gay' AND users.gender IN ('#{user.same_genders.join('\',\'')}')))"

From a dating website...

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

From the UNIX Version 6 Source Code, circa 1975:

/* You are not expected to understand this. */
link|flag
vote up 28 vote down
def format_ticket_content(text, recursive = true)
  if text.is_a?(TicketNote)
    note = text
    text = note.content
  else
    note = nil
  end

  ## Safety pig has arrived!
  text = h(text)
  ##                               _
  ##  _._ _..._ .-',     _.._(`))
  ## '-. `     '  /-._.-'    ',/
  ##    )         \            '.
  ##   / _    _    |             \
  ##  |  a    a    /              |
  ##  \   .-.                     ;  
  ##   '-('' ).-'       ,'       ;
  ##      '-;           |      .'
  ##         \           \    /
  ##         | 7  .__  _.-\   \
  ##         | |  |  ``/  /`  /
  ##        /,_|  |   /,_/   /
  ##           /,_/      '`-'
  ##
link|flag
4  
Awesome...I like how the pig's entrance gets announced... – KG Apr 23 at 22:49
vote up 1 vote down

What do you think you're doing, Dave?

link|flag
vote up 1 vote down

//FIXME: fix this before the 1.0 release

they were on version 4

link|flag
vote up 12 vote down
//        .==.        .==.          
//       //`^\\      //^`\\         
//      // ^ ^\(\__/)/^ ^^\\        
//     //^ ^^ ^/6  6\ ^^ ^ \\       
//    //^ ^^ ^/( .. )\^ ^ ^ \\      
//   // ^^ ^/\| v""v |/\^ ^ ^\\     
//  // ^^/\/ /  `~~`  \ \/\^ ^\\    
//  -----------------------------
/// HERE BE DRAGONS

I don't have access to the original file because I don't work there anymore, but it was something very similar to this picture. It was at the top of a file that always caused troubles, that we had to fix but not allowed to take the time to really fix. (University politics)

link|flag
vote up 0 vote down
switch(value)
{
   [...]
default:
   ASSERT(**true**); // if this is triggered, something really bad is happening.
}
link|flag
vote up 5 vote down
/**
 * Not even your mum thinks you're special if you call this method
 */    
onlyYourMumThinksYoureSpecialIfYouCallThisMethod() {...}
link|flag
vote up 1 vote down

$dnstime = time() + 60 * 60 * 24 * 7 * 2; //how long are you staying for vacation on mars? twooo weeeeeks. give dees people air

link|flag
vote up 18 vote down

I always liked what Paul DiLascia wrote in his file headers:

// If this code works, it was written by Paul DiLascia. If not, I don't know who wrote it

link|flag
vote up 0 vote down

/* * Wirzenius wrote this portably, Torvalds fucked it up :-) */

link|flag
vote up 27 vote down

From the 2004 Windows leak,

__inline BOOL
SearchOneDirectory(
                  IN  LPSTR Directory,
                  IN  LPSTR FileToFind,
                  IN  LPSTR SourceFullName,
                  IN  LPSTR SourceFilePart,
                  OUT PBOOL FoundInTree
                  )
{
    //
    // This was way too slow. Just say we didn't find the file.
    //
    *FoundInTree = FALSE;
    return(TRUE);
}
link|flag
show 1 more comment
vote up 1 vote down
private static final Logger lager = new Logger();
link|flag
vote up 0 vote down
double t = 0.0; /* that's generally my opinion of the diner, too. */
link|flag
vote up 1 vote down

From the Linux Kernel source:

linux/include/asm-i386/hw_irq.h:

/*
 * subtle. orig_eax is used by the signal code to distinct between
 * system calls and interrupted 'random user-space'. Thus we have
 * to put a negative value into orig_eax here. (the problem is that
 * both system calls and IRQs want to have small integer numbers in
 * orig_eax, and the syscall code has won the optimization conflict ;)
 *
 * Subtle as a pigs ear.  VY
 */
link|flag
vote up 2 vote down
def leppard
# what, i cant have my own convention?
end
link|flag
prev 1 4 5 6 7 8 18 next

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