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 12 13 14 15 16 18 next
vote up 1 vote down
// No women, no children... What movie???
link|flag
show 2 more comments
vote up 6 vote down

// Houston, we have a problem

link|flag
vote up 28 vote down

On the linux 1.0 kernel scheduler (sched.c):

Djikstra probably hates me.

/*
 *  'schedule()' is the scheduler function. It's a very simple and nice
 * scheduler: it's not perfect, but certainly works for most things.
 * The one thing you might take a look at is the signal-handler code here.
 *
 *   NOTE!!  Task 0 is the 'idle' task, which gets called when no other
 * tasks can run. It can not be killed, and it cannot sleep. The 'state'
 * information in task[0] is never used.
 *
 * The "confuse_gcc" goto is used only to get better assembly code..
 * Djikstra probably hates me.
 */
asmlinkage void schedule(void)

(...)

link|flag
1  
Djikstra -> Dijkstra – tuinstoel Jul 22 at 17:21
vote up 0 vote down

Sanitized:

//Forward declarations:

class X {}; // TODO: Remove {}  ! When we get X defined....
link|flag
vote up 18 vote down

From the source code of the UNIX flavor of the Netscape web browser, circa 1997:

/* HP-UX sucks wet farts from dead pigeons' asses */

Such pearls were unfortunately removed before Moz went open-source ...

link|flag
2  
Having worked with HP-UX, I bow to the wisdom in the above C comment. – Brian Clapper Apr 6 at 16:43
show 1 more comment
vote up 7 vote down

From a lad that clearly had been watching Monty Python:

> // And now, for something completely
> // different:

class theLarch{

link|flag
vote up 4 vote down
// THE LOOP THAT DO EVERYTHING!!!!!!!
link|flag
vote up 43 vote down

on leaving my last job I embedded some ascii art into the source...


                                      ,_-=(!7(7/zs_.             
                                   .='  ' .`/,/!(=)Zm.           
                     .._,,._..  ,-`- `,\ ` -` -`\\7//WW.         
                ,v=~/.-,-\- -!|V-s.)iT-|s|\-.'   `///mK%.        
              v!`i!-.e]-g`bT/i(/[=.Z/m)K(YNYi..   /-]i44M.       
            v`/,`|v]-DvLcfZ/eV/iDLN\D/ZK@%8W[Z..   `/d!Z8m       
           //,c\(2(X/NYNY8]ZZ/bZd\()/\7WY%WKKW)   -'|(][%4.      
         ,\\i\c(e)WX@WKKZKDKWMZ8(b5/ZK8]Z7%ffVM,   -.Y!bNMi      
         /-iit5N)KWG%%8%%%%W8%ZWM(8YZvD)XN(@.  [   \]!/GXW[      
        / ))G8\NMN%W%%%%%%%%%%8KK@WZKYK*ZG5KMi,-   vi[NZGM[      
       i\!(44Y8K%8%%%**~YZYZ@%%%%%4KWZ/PKN)ZDZ7   c=//WZK%!      
      ,\v\YtMZW8W%%f`,`.t/bNZZK%%W%%ZXb*K(K5DZ   -c\\/KM48       
      -|c5PbM4DDW%f  v./c\[tMY8W%PMW%D@KW)Gbf   -/(=ZZKM8[       
      2(N8YXWK85@K   -'c|K4/KKK%@  V%@@WD8e~  .//ct)8ZK%8`       
      =)b%]Nd)@KM[  !'\cG!iWYK%%|   !M@KZf    -c\))ZDKW%`        
      YYKWZGNM4/Pb  '-VscP4]b@W%     'Mf`   -L\///KM(%W!         
      !KKW4ZK/W7)Z. '/cttbY)DKW%     -`  .',\v)K(5KW%%f          
      'W)KWKZZg)Z2/,!/L(-DYYb54%  ,,`, -\-/v(((KK5WW%f           
       \M4NDDKZZ(e!/\7vNTtZd)8\Mi!\-,-/i-v((tKNGN%W%%            
       'M8M88(Zd))///((|D\tDY\\KK-`/-i(=)KtNNN@W%%%@%[           
        !8%@KW5KKN4///s(\Pd!ROBY8/=2(/4ZdzKD%K%%%M8@%%           
         '%%%W%dGNtPK(c\/2\[Z(ttNYZ2NZW8W8K%%%%YKM%M%%.          
           *%%W%GW5@/%!e]_tZdY()v)ZXMZW%W%%%*5Y]K%ZK%8[          
            '*%%%%8%8WK\)[/ZmZ/Zi]!/M%%%%@f\ \Y/NNMK%%!          
              'VM%%%%W%WN5Z/Gt5/b)((cV@f`  - |cZbMKW%%|          
                 'V*M%%%WZ/ZG\t5((+)L\'-,,/  -)X(NWW%%           
                      `~`MZ/DZGNZG5(((\,    ,t\\Z)KW%@           
                         'M8K%8GN8\5(5///]i!v\K)85W%%f           
                           YWWKKKKWZ8G54X/GGMeK@WM8%@            
                            !M8%8%48WG@KWYbW%WWW%%%@             
                              VM%WKWK%8K%%8WWWW%%%@`             
                                ~*%%%%%%W%%%%%%%@~               
                                   ~*MM%%%%%%@f`                 
                                       '''''                     

link|flag
2  
its an Escherian knot...like all good ASCII art it works best when you are tired and your vision has gone a little blurry! – Mauro Oct 28 '08 at 19:04
10  
And by 'embedded', you mean 'injected'. And by 'source', you really mean 'boot sector'. Right? – Jens Roland Jan 27 at 0:23
show 6 more comments
vote up 0 vote down

// Jay knows what's going on here, but will he remember in a year? Not very likely, this code sucks, but it works so do not change it.

This comment was posted above a huge while-if-for block... Oh, and it manipulated an object array of object arrays of object arrays of strings that could be strings or numbers, depending on at least 3 factors... (yes, I had to debug this code and change it and I wrote the comment, however I did not write the original code). ;)

link|flag
vote up 1 vote down

//Not a bug, parameter position can change..., if you think this is wrong, you are in fact wrong.

link|flag
vote up 3 vote down
' Oh man I'm pissed. I think I better go home.

where pissed = drunk

link|flag
vote up 11 vote down

Q: "What is the best comment in source code you have ever encountered?"

A: Easy - the one that helped me solve whatever problem I was having at the time, and there are lots of those!

Second best are those that help guide new development from avoiding known pitfalls.

link|flag
vote up 1 vote down

I inherited a project that haad been delivered to the customer without any UAT. It was dropkicked over the fence and the money requested.

First time they used it, it naturally blew up. It was an interposing library that overrode any system calls that took a file name as a parameter rather than a file descriptor.

Many system calls had been forgotten.

When I got onboard the code was laced with such gems as:

/* core dumps around here but this is hardly ever called */

and

/* don't know why this works but it seeems to be ok */

Oh, and there were no unit tests. A colleague had started to add the missing system calls and unit tests.

And the bastards who'd written the code were still in the team and didn't care at all about the garbage that had been delivered!

link|flag
vote up 10 vote down

In a well known commercial DOS spreadsheet application:

/* This comment was just added in order to check-in a file that was last 
checked in by [Insert Programmer FirstName] "Back-to-the-Future" [Insert 
Programmer LastName]. While testing for year 2000 problems, he accidentally 
checked-in this file while his machine clock was set forward to the year 2000. 
This meant that the source code was always newer than the object file and 
compiled every time the code was built. I'm checking this file in again to 
fix that. */
link|flag
1  
Interesting. What sort of stupid version control system would trust the clients' clocks? – Andrew Medico Apr 20 at 3:37
4  
And the winner is... VSS! – Kenneth Cochran Apr 20 at 13:45
show 1 more comment
vote up 20 vote down

There was some old javascript code, quite well written tho. Then was a comment line

// and there is where the dragon lives

followed by a function 4 people spent a day to understand what it's doing. Finally we realised it's not even used and does nothing.

link|flag
2  
Don't mess with it lest the dragon be angry! You don't want the dragon to be angry... – schonarth Oct 21 '08 at 12:37
vote up 71 vote down
  mov si, pCard      ; captain?
link|flag
show 3 more comments
vote up 1 vote down

Found in the main trigger code for transactions in an OLTP database:

-- This line negates the @inverseqty, which is the
-- negative of the @insertedquantity.  This works through the
-- magic of the trigger.  In fact, this code is a lot like
-- the bermuda triangle!
@negquantity = -1 * @inverseqty
link|flag
vote up 19 vote down

This is actual code I once had to support. After struggling to comprehend the logic in AstaSaysGooGoo and AstaSaysGaaGaa (where many more astaTempVars were declared and used ) I was ready to give up. I finally looked up and saw the "@author" comment and the whole thing began to makes sense.

/*

* @author Andrew Asta
*/
public class AstaClass{

    private String astaVar1;	
    private String astaVar2;	
    private String astaVar3;	
    private String astaVar4;	
    private String astaVar5;	
    private String astaVar6;	
    private String astaVar7;	
    private String astaVar8;	
    private String astaVar9;	
    private String astaVar10;	

    public void AstaSaysGetData(){
    	//JDBC statement to populate astavars 1 through 10
    	//...
    	String astaSqlStatment = "Select astaCol1, astaCol2, astaCol3... From AstaTable Where...";
    	//..
    	//...
    }

    //Perform data manipulation on astavars...
    public void AstaSaysGaaGaa(){
          [removed for sake of brevity]
    }


    //Perform more data manipulation on astavars...
    public void AstaSaysGooGoO(){
    	[removed for sake of brevity]
    }

    public void AstaSaysPersist(){		
    	//JDBC statement to save astavars to DB	
    	String astaSqlStatment = "Update AstaTable set astaCol1 = @astaVar1
    	                                          , set astaCol2 = @astaVar2
    	                                          , set astaCol3 = astaCol3... 
    	                                          Where...";
    }
}

PS I changed the actual authors real name so as to avoid me getting in any disputes etc...

link|flag
10  
astaGetsSlappedAtCodeReview() – johnc Nov 25 '08 at 2:27
5  
Really sounds like a Paula Bean :) – furtelwart Apr 6 at 11:48
2  
public class paulaBean { private String paula = "Brillant"; public String getPaula() { return paula; } } – Ikke Apr 6 at 12:03
show 3 more comments
vote up 4 vote down

This is my favourite comment ever.

/// I intend to do this as shittily as possible because there are many better products that will totally blow this out of the water
/// and we don't have them so whatever

Later on in the file we have more fun like

/// sidestep a bug in WCF (that we can't send types across)
/// or, depending on how you look at, this issue is a Feature

And again later

if( where == null)//be nice
link|flag
show 2 more comments
vote up 9 vote down

A German comment in some source-code, translated by machine or very tired human + Google

; Rechnen ja ; have faith in yes

I guess the original meant "assume true here" ... but ever since I've taken it as a mantra for my life.

link|flag
1  
The original means: "Calculate yes". Hard to say what he tried to say without the context. Probably "Yes, calculate" from a conditional calculation. – Stefan Steinegger Apr 24 at 11:27
vote up 6 vote down
'Do not optimize these next two lines. Compiler bugs lurk.

And they did. Compacting the variable into the expression on the second line resulted in jumping into the middle of the heap and trying to execute data.

link|flag
vote up 3 vote down

Not really a comment:

DvLog::Log("This silly log message fixes a PSCRIPT5.DLL gpf when printing to Adobe.");

Sad thing is that without the comment, PSCRIPT5.DLL really did blow up ...

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

From Java 1.2 SwingUtilities:

doRun.run();  // ... "a doo run run".
link|flag
12  
youtube.com/watch?v=dqgtsai2aKY – Sprintstar Apr 6 at 10:59
show 6 more comments
vote up 4 vote down
Case 1:
   ...
   break;
   ...
//I don't want do do this but [my coworker] says it's part of the code standard
default:
   break;
link|flag
2  
@__ > Then I suspect that you're in the minority. – SnOrfus Mar 6 at 22:38
show 6 more comments
vote up 34 vote down
// Any maintenance developer who can't quote entire Monty Python
// movies from memory has no business being a developer. 
const string LancelotsFavoriteColor = "$0204FB"
link|flag
10  
The real WTF is that he didn't use the Color class. Wait... wrong site. – Fowl Apr 19 at 10:56
show 1 more comment
vote up 22 vote down
// This procedure is really good for your dorsolateral prefrontal cortex.

For those of you who are, for some peculiar reason, unaware of the DPC, it's the part of your brain that lights-up when you're deeply engaged in learning something new.

link|flag
vote up 92 vote down
// I don't know why I need this, but it stops the people being upside-down

x = -x;
link|flag
4  
classic! ... a prof once told me that if you are having trouble with your open gl code just try flipping signs. it was really good advice – luke Nov 22 '08 at 21:45
2  
That's what made it the best comment -- it made no sense at all, and provided no good explanation as to why it worked :) – Chris Jefferson Mar 10 at 17:25
1  
I love this one :) – thomasrutter Apr 22 at 12:10
show 3 more comments
vote up 0 vote down
[onload_1;block=begin;when 1=0]

Some of the techinques in this template are rather obscure, just trust me, they need to be there.
OTOH a better sollution would be to create a few seperate templates and pick one in the php-script...

[onload_1;block=end]
link|flag
vote up 86 vote down
/* Emits a 7-Hz tone for 10 seconds.
  True story: 7 Hz is the resonant frequency of a
  chicken's skull cavity. This was determined
  empirically in Australia, where a new factory
  generating 7-Hz tones was located too close to a
  chicken ranch: When the factory started up, all the
  chickens died.
  Your PC may not be able to emit a 7-Hz tone. */

main()
{
    sound(7);
    delay(10000);
    nosound();
}

(the sound function in the Turbo C version 2.0 Reference Guide)

link|flag
12  
You need a factory to create 7Hz tones? How do they package them, and what is their market? – johnc Mar 16 at 1:45
1  
I read this comment in Turbo C a long time ago. It's amazing! – Diego Jancic Apr 20 at 1:03
1  
The comment is there. Not sure of the veracity of the story - that could be an urban legend, but I think it could be plausible. I know that resonant frequencies have even brought down stadiums and bridges... – Knobloch Apr 20 at 14:15
1  
It doesn't matter if it's true, its still just as funny. Maybe funnier. Can you imagine making it up? – Sam Hoice Apr 23 at 1:07
show 3 more comments
vote up 9 vote down

i tell a mentee to do at least SOME exception handling. This is what i get in return around every db call....

Catch (Exception e) {
    //eat it
}
link|flag
show 2 more comments
prev 1 12 13 14 15 16 18 next

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