vote up 358 vote down star
517

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

/**
 * project_constants.h
 *
 *
 */



// lol punked have fun searching for magic numbers

/*
........................../´¯/)
........................./..../
......................../..../
......................./..../
....................../..../
...................../..../
..................../..../
.................../..../
............./´¯/'...'/´¯¯`·¸
........../'/.../..../......./¨¯\
........('(...´...´.... ¯~/'...')
.........\.................'...../
..........''...\.......... _.·´
............\..............(
..............\.............\... */


link|flag
show 1 more comment
vote up 7 vote down
// This is a walkaround for bug #7812

Written by one of our Chinese programmers, for whom English was not his first language.

I really liked this one. I happen to think "walkaround" is almost a better term than "workaround."

link|flag
vote up 3 vote down
<!-- Here it is -->

No other comments anywhere. To this day I don't know what "it" was.

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

This seems to stop morons from messing my code...

Autogenerated, do not edit. All changes will be undone.
link|flag
44  
Ooh, this is pure genius ! +1 – ldigas Apr 19 at 13:54
4  
Why the f*** didn't I think of this?! :)))))))) – Andrei Rinea Apr 24 at 0:00
1  
Makes me wish SO supported favorites on individual responses – AviD Apr 27 at 19:53
show 2 more comments
vote up 1 vote down

Here's a few that I've put in my code at various times. Some aren't technically comments, but they're the same sort of concept.

In a cross-platform project that needs some special code on one platform only:

//If defined, will include all the Windows-specific code.
#define LOSE

#ifdef LOSE
#include <windows.h> //WIN32. Duh.
#endif


---------------------------------------------------


//Stolen from other_project_name.cpp


---------------------------------------------------


/*
 * These comments have been lifted from propagate() and, though they no longer apply to the code, they may still be of value somewhere. Original tabbing and structural elements have been preserved.
 */
    //CAUTION: This has a major Bobby Tables risk. Even if a rulebuilder is used, there's still the risk of something getting corrupted in the database itself.
    //Reading text from anywhere and simply slotting it into an SQL statement is a major security risk. (With thanks to xkcd for the name "Bobby Tables".)
    //Requirement: Eliminate one Bobby Tables by changing [redacted] to be not just straight SQL.
[lots more comments that are not as funny]
/*
 * End of lifted comments. There should not be any executable code between these markers.
 */


---------------------------------------------------


        /*
        Okay. It's unrecognized. Why is this a fatal error? It's actually very closely akin to the miswart of botched #includes being a fatal. When writing a C/C++
        program, you need your headers, and if you don't have one, chances are there'll be a million cascaded errors; so by making "unable to open asdf.h" a fatal,
        the compiler suppresses all those errors about undefined symbols and potentially misspelled type names.
        */


---------------------------------------------------


    //If someone tries to import 'id' as a field name, it won't work. (We already have our own id.) But I think the probability is so low that I can afford to be funny.
    if (!stricmp(ptr,"id")) {warn(0,"Import","","'id' is a reserved word and cannot be used as a column name. (Try 'ego' or 'superego'.)"); return;}


---------------------------------------------------


//Need a place to squirrel away SQL statements somewhere
char *uts[1024]; //Unified Temporary Storage. (Why? Because I said so.)
int nuts=0; //What is it that squirrels keep? Ha!
int utsid[sizeof uts/sizeof *uts];


---------------------------------------------------


        /**************************************\
         * NOTE: This sets tilde.action. If a *
         * tilde header does not exist in the *
         * import file (not the _content_, if *
         * the entire column isn't there), it *
         * will duplicate down through all of *
         * the rows. This is fine for ~id, as *
         * that will never be changed; and if *
         * ~Quantity is blank, that throws an *
         * error in 'Add'. With ~Action, I am *
         * not so certain. I THINK it'd be OK *
         * to dup-down most of the time... if *
         * the user only ever imports Adds or *
         * Revises, but never both at once in *
         * a single import. So for safety, to *
         * allow a blank ~Action to revise OR *
         * add, I'm breaking the check out to *
         * a new variable - the curaction. In *
         * most cases, it won't be needed, so *
         * it's a waste; but it isn't like it *
         * has to copy the entire tilde.*, so *
         * it's only a small waste. So it can *
         * waste a register... big deal. OK ! *
        \**************************************/


---------------------------------------------------


            //if (!response) // we're going to crash
            //if (!items) // we're going to crash
            //TODO: Don't crash


---------------------------------------------------

A lot of my comments contain obscure references to films or musicals, but they won't be nearly as funny if you don't know the show.

link|flag
vote up 11 vote down
// (c) 2000 Applied Magic, Inc.
// Unauthorized use punishable by torture, mutilation, and vivisection.

Ah, I always loved that one...

link|flag
vote up 20 vote down
/**
 * If you don't understand this code, you should be flipping burgers instead.
 */
link|flag
vote up 5 vote down

I once worked on a project where I found this comment:

// Cabbage fart?

I have no idea what it was supposed to mean. Just glad my cube wasn't next to whoever wrote it.

link|flag
vote up 4 vote down
public int hashCode() {
//sucks, but what're you gonna do

/*
int hash = 7;
for (int i = 0; i < array.length; i++)
    hash = hash * 31 * (null == array[i] ? 0 : array[i].hashCode());
return hash;
*/

return 0;
}
link|flag
vote up 1 vote down
/* Look not upon this file lest your eyes be burnt from your head. */

What can I say? I was an intern and the summer was almost over. I was, shall we say, lacking in serious commitment to my documentation responsibilities.

link|flag
vote up 19 vote down
// error codes
#define ERROR_SUCESS 0
#define ERROR_SUCCESS_IS_MISSPELLED 1

No other error codes defined.

link|flag
vote up 0 vote down

I just found this in some legacy code..

'CANNOT JUST QUIT!

link|flag
vote up 3 vote down

// This condition can't happen. Call the police or something.

link|flag
vote up 15 vote down
//The following 1056 lines of code in this next method 
//is a line by line port from VB.NET to C#.
//I ported this code but did not write the original code.
//It remains to me a mystery as to what
//the business logic is trying to accomplish here other than to serve as
//some sort of a compensation shell game invented by a den of thieves.
//Oh well, everyone wants this stuff to work the same as before.
//I guess the devil you know is better than the devil you don't.
link|flag
vote up 1 vote down

Best comment I ever saw was

/* 
  There is no accounting for pointers 
*/
link|flag
vote up 0 vote down
<cftry>
...code...
<cfcatch>
  <!--- Gobble --->
</cfcatch>
<cftry>

It's all over my companies code base. It's ColdFusion and it simply ignores errors.

link|flag
vote up 0 vote down

On error resume next 'because nothing will ever go wrong!

link|flag
vote up 5 vote down

var arbitraryNumber = 10; //I don't know why. Just move on.

link|flag
vote up 1 vote down

I do not have a copy of the source but I have always remembered it:

// If you cannot figure it out, you should not be reading this

link|flag
vote up 2 vote down
def leppard
# what, i cant have my own convention?
end
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 0 vote down
double t = 0.0; /* that's generally my opinion of the diner, too. */
link|flag
vote up 1 vote down
private static final Logger lager = new Logger();
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 0 vote down

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

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 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 5 vote down
/**
 * Not even your mum thinks you're special if you call this method
 */    
onlyYourMumThinksYoureSpecialIfYouCallThisMethod() {...}
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 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
prev 1 10 11 12 13 14 18 next

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