vote up 358 vote down star
506

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 2 3 4 5 18 next
vote up 26 vote down
using namespace std;            // So sue me
link|flag
show 2 more comments
vote up 26 vote down
/*
This isn't the right way to deal with this, but today is my last day, Ron
just spilled coffee on my desk, and I'm hungry, so this will have to do...
*/

return 12; // 12 is my lucky number
link|flag
show 1 more comment
vote up 26 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 25 vote down
//ALL YOUR BASE ARE BELONG TO US

...it made my boss think someone had hacked in. He didn't know the joke.

link|flag
4  
you showed your boss some random comment in some source code? – Klathzazt Nov 18 '08 at 14:40
show 1 more comment
vote up 25 vote down

//You are not expected to understand this

classic.

link|flag
2  
//You are not meant to understand why. – mdec Oct 12 '08 at 7:47
vote up 25 vote down
'NO COMMENT
link|flag
vote up 25 vote down
//Abandon all hope yea who enter beyond this point
link|flag
1  
:^) sounds like Dante's Inferno III 9: "Lasciate ogni speranza voi ch'entrate". – Federico Ramponi Oct 10 '08 at 2:15
5  
It's what the author was trying for but didn't quite remember. It's usually rendered into English as "Abandon all hope ye who enter here." – Robert Rossney Oct 18 '08 at 8:57
1  
I like to watch the code beyond that point! – lk Mar 10 at 15:22
vote up 25 vote down

// Catching exceptions is for communists

From Mike Duncan's page on SQLite.

link|flag
vote up 24 vote down
//MailBody builders for two outgoing messages
StringBuilder hanz = new StringBuilder();
StringBuilder franz = new StringBuilder();

I still chuckle a little when I read that one...

link|flag
vote up 23 vote down
aComment = 'this is not aComment' # this is aComment
class T(object):
    def f(this):
        this is not aComment
link|flag
4  
+1 because I'm a Crocodile Dundee fan :) – BenAlabaster Dec 30 at 16:10
show 1 more comment
vote up 23 vote down

long time; /* just seems that way */

link|flag
vote up 22 vote down

Classic ASP:

'Is it worth it, let me work it'
'I put my thing down, flip it and reverse it'
'Ti esrever dna ti pilf, nwod gniht ym tup I'

NextIP = StrReverse(UserRecordset.Fields.Item(0))
link|flag
3  
That's not right; the comma should be on the character before nwod, not the character after pilf. – tsilb Apr 25 at 22:38
show 2 more comments
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 22 vote down

Great one from leaked Windows 2000 source code :

!!!!!!!IF YOU CHANGE TABS TO SPACES, YOU WILL BE KILLED!!!!!!! *
!!!!!!!!!!!!!!DOING SO FUCKS THE BUILD PROCESS!!!!!!!!!!!!!!!! *
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

http://www.kuro5hin.org/story/2004/2/15/71552/7795

link|flag
vote up 21 vote down
catch (Ex as Exception)
{
     // oh crap, we should do something.
}

Nothing like an empty catch block to make one feel that the code is robust....

link|flag
show 2 more comments
vote up 21 vote down
//Mr. Compiler, please do not read this.
link|flag
vote up 21 vote down

Once I saw in another discussion something like this:

// I can't divide with zero, so I have to divide with something very similar
result = number / 0.00000000000001;

Clever solution, isn't it :) ? (It's a joke if someone's not sure)

link|flag
show 6 more comments
vote up 21 vote down
/*
after hours of consulting the tome of google
i have discovered that by the will of unknown forces
without the below line, IE7 believes that 6px = 12px
*/
font-size: 0px;
link|flag
show 1 more comment
vote up 21 vote down

I worked with a guy who was raised a Muslim, but had a rather tongue-in-cheek view of the religion. He left this comment above a particularly nasty chunk of code:

// I will give you two of my seventy-two virgins if you can fix this.

link|flag
vote up 21 vote down

Top of sqlite source files:

/*

** The author disclaims copyright to this source code.  In place of             
** a legal notice, here is a blessing:                                          
**                                                                              
**    May you do good and not evil.                                             
**    May you find forgiveness for yourself and forgive others.                 
**    May you share freely, never taking more than you give.

*/
link|flag
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 20 vote down

.class {border:1px solid gold;} /* I pitty the fool */

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

From the leaked Win2K source code:

// The magnitude of this hack compares favorably with that of the national debt.

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
9  
astaGetsSlappedAtCodeReview() – lagerdalek Nov 25 '08 at 2:27
4  
Really sounds like a Paula Bean :) – furtelwart Apr 6 at 11:48
1  
public class paulaBean { private String paula = "Brillant"; public String getPaula() { return paula; } } – Ikke Apr 6 at 12:03
show 3 more comments
vote up 19 vote down

A comment I added to a PHP CMS I was working on a while back.

if (/*you*/ $_GET['action']) { //celebrate
link|flag
show 1 more comment
vote up 19 vote down
// Caveat implementor
link|flag
show 1 more comment
vote up 19 vote down
//Woulda
if(x) {}
//Shoulda
else if(y) {}
//Coulda
else {}
link|flag
vote up 19 vote down

don't know if it it's funny or sad..but one intern I had working with me had this little gem to calculate the price per unit

...

// get the units from the form 
int numUnits = Integer.parseInt(request.getParameter("num_pieces")); // this break at random times

//price 
float price = Float.parseFloat(request.getParameter("price")); // same as above

// Under certain conditions the following code blows up. I don't know those conditions.
float pricePerUnit = price / (float)numUnits;

...
link|flag
3  
This would make a good "what is wrong with this code" interview question, actually. – Cory R. King Mar 29 at 14:43
1  
It's funny because the flaws are obvious – Mark Mar 31 at 6:45
3  
Hm, so the coder didn't notice the DivideByZeroException which would be exclaimed in a stack trace by whatever IDE he/she would ever use. – Nailer Apr 20 at 14:42
3  
Yea he didn't make it through the summer. He kept bugging me about stuff, I'd ask him what errors he was getting in the logs and he was like "huh? my code compiles just fine." He would always ask me the same questions over and over again. This was the last time we offered an internship for the person who scored the highest grade in the class that my company sponsored. This was also a guy who was less than a year from his degree. – ahiru Apr 20 at 18:54
vote up 19 vote down
// this comment included for the benefit of anyone grepping for swearwords: shit.
link|flag
prev 1 2 3 4 5 18 next

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