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 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 65 vote down

The original Doom had an engine with static walls that could not move; the result was that all doors opened vertically; nothing could ever move horizontally. I burst out laughing when, after the source code was released, I was looking through the code and saw this in the source file for handling doors, at the start of a big block of commented-out code:

// UNUSED
// Separate into p_slidoor.c?

#if 0           // ABANDONED TO THE MISTS OF TIME!!!
//
// EV_SlidingDoor : slide a door horizontally
// (animate midtexture, then set noblocking line)
//
link|flag
2  
I always wondered why that was! – Zachary Yates Oct 9 '08 at 21:15
5  
Basically, the 2D geometry of the level is precompiled into a tree structure that allows efficient sorting of walls during rendering. But, because it's precompiled, you can't change it at runtime. Hexen, which was based on Doom, had a hack for moving walls (doors etc), but it was very limited. – Simon Howard Oct 10 '08 at 10:53
1  
That is some serious obscura. – __ Oct 11 '08 at 18:42
show 1 more comment
vote up 2 vote down
// but the "real" solution is much more complicated

from jpgraph

link|flag
vote up 1 vote down
// this is really complicated

with no other comments

link|flag
vote up 425 vote down
// Magic. Do not touch.
link|flag
6  
Magic = fragile, perhaps? – __ Oct 11 '08 at 18:31
15  
Reminds me of this: catb.org/esr/jargon/html/magic-story.html – Simon Howard Oct 16 '08 at 19:31
5  
I've had to write that so many times - mostly to remind myself that "If you touch the following code without really knowing what you're doing, bad things will happen!" – scraimer Jan 20 at 14:43
4  
@Simon Howard, I'd only not touch it if it said "More Magic" – devinb Mar 6 at 14:31
2  
I still remember being taught CS in high school, where our stupid questions were answered with "Magic!" and the most sinister smile. – nevets1219 Apr 19 at 4:06
show 7 more comments
vote up 11 vote down
// Okay, let's do the loop, yeah come on baby let's do the loop
// and it goes like this ...
link|flag
vote up 224 vote down

About the middle of a 30 page xslt

<!-- Here be dragons -->
link|flag
5  
I'm still trying to figure out how to comment an XSLT in a way that makes sense. – Rob Oct 9 '08 at 2:47
15  
We really need more dragons in our code. – Jon Smock Apr 4 at 18:53
2  
@annakata you think that's bad, the other day someone was asking for help dealing with a 31GB xml file. I cried out in anguish. – Dana the Sane Apr 21 at 6:17
show 8 more comments
vote up 4 vote down
/* logic */
#ifndef TRUE
# define TRUE 1
#endif /* TRUE */
#ifndef FALSE
# define FALSE 0
#endif /* FALSE */
#define EOF_OK TRUE
#define EOF_NOT_OK FALSE

and the rest of the glorious mkentry.c at the IOCCC page. I can't keep laughing every time I read through this source.

link|flag
vote up 103 vote down

Try typing your favourite profanity into google code search, it whiles away many a dull hour. Some of my favourite examples:

/* These magic numbers are f*cking stupid. */

/* Dear free software world, do you NOW see we are f*cking
   things up?! This is insane! */

/* We will NOT put a f*cking timestamp in the header here. Every
   time you put it back, I will come in and take it out again. */

# However, this only works if there are MULTIPLE checkboxes!
# The f*cking JS DOM *changes* based on one or multiple boxes!?!?!
# Damn damn damn I hate the JavaScript DOM so damn much!!!!!!

/* TODO: this is obviously not right ... this whole f*cking module
   sucks anyway */

/* FIXME: please god, when will the hurting stop? Thus function is so
   f*cking broken it's not even funny. */

and my personal favourite

 # code below replaces code above - any problems?
 # yeah, it doesn't f*cking work.
link|flag
7  
Posted HTML checkbox value handling is a WTF in its own right. – Rob Howard Apr 22 at 7:36
show 2 more comments
vote up 423 vote down
// drunk, fix later

Wish I were kidding. And knowing the developer who wrote the code, I think he meant it literally.

link|flag
77  
That is ridiculous, who writes comments when they're drunk. – Jiminy Mar 16 at 0:23
21  
@Jiminy: Seriously! When I code drunk, I woke up with magnificent code that I, unfortunately, do not understand. – JoshJordan Mar 31 at 6:49
10  
Ohh... If you don't understand it, it has to be magnificent! – Subtwo Apr 6 at 11:08
3  
haha!!! I made this just for fun: grepped my local subversion repo for 'drunk', and found one commit comment I wouldn't remember: "Works again, somehow. Well... I'm drunk!" – ivan_ivanovich_ivanoff Apr 15 at 8:33
3  
Jiminy: Not only do I deign to write comments when I'm drunk, but I've even been known to write a (gasp) unit test or two when I'm merry. – Rob Apr 19 at 4:23
show 5 more comments
vote up 54 vote down
// I have to find a better job
link|flag
1  
I'm feeling exactly that. – chakrit Nov 21 '08 at 21:47
vote up 1 vote down

here are 4, in no order:

// Father, forgive me, for I am sinning

// heaven help me

// horse string-length into correctitude 
(from a textbook)

// what, me worry?
link|flag
vote up 5 vote down

"This will never happen".

Famous last words my friend...

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

(A bunch of code that's really weird looking) //Kludge.

link|flag
vote up 363 vote down
return 1; # returns 1
link|flag
4  
Classic! But i like this one even better: "i++; // increase i by 1" – steffenj Oct 12 '08 at 17:10
14  
Who knows if he #DEFINE 1 as something else... – icelava Dec 18 '08 at 4:20
3  
What language is that? :) – ShreevatsaR Jan 9 at 4:35
3  
I wish comments like that were unfamiliar to me. – Shmoopty Feb 14 at 19:26
1  
I've seen this a lot. I know a lot of coders who stub out their functions with comments, then fill in the code below/beside each comment. Makes it very easy to write large business functions, but you end up with some rather detailed comments at times. – LuckyLindy Apr 11 at 18:49
show 6 more comments
vote up 189 vote down
//This code sucks, you know it and I know it. 
//Move on and call me an idiot later.
link|flag
9  
Honestly in comment! – Mitchel Sellers Oct 13 '08 at 21:46
24  
I love the honesty. – Jeff Schumacher Nov 1 '08 at 8:47
show 2 more comments
vote up 4 vote down

A few hours after showing a friend this post from Coding Horror, I saw this comment on his code:

// MrValdez is a violent Psychopath. Don't piss him off.

link|flag
show 1 more comment
vote up 333 vote down
/* This is O(scary), but seems quick enough in practice. */

followed by four nested for-loops

link|flag
13  
pfft, that's only N^4 most likely, no where near as bad as 4^N or N! – tloach Oct 9 '08 at 13:23
8  
I once hit a situation with loops nested 8 deep. The runtime was measured in hours. – Loren Pechtel Oct 19 '08 at 19:51
3  
I had a O(n) algorithm with a 500ms network RTT in its inner loop. n > 100k. Ouch. – geofftnz Feb 13 at 0:48
2  
There is a redeeming quality: they know what big O terminology is at least. Hopefully each loop is running over very small N :-D – Jon Smock Apr 4 at 18:51
show 3 more comments
vote up 7 vote down
// Bad Christian, No cookie

Cookie in this context does not refer to a browser cookie

link|flag
vote up 224 vote down
const int TEN=10; // As if the value of 10 will fluctuate...
link|flag
48  
In today's market 10 now has a value of only 9. – Steve Fallows Oct 10 '08 at 16:37
5  
Maybe someday we will evolve more fingers... – Loren Pechtel Oct 19 '08 at 19:52
22  
what about very large values of 10? – Mikeage Feb 23 at 13:45
40  
const int TEN=11; // Mine goes to eleven – dub Mar 6 at 13:25
8  
Calling Fortran from C - Fortran only does call-by-reference so you need variables for all constants. – mgb Apr 20 at 16:43
show 9 more comments
vote up 11 vote down
//The following code is commented out
//(a load of commented out code followed)
link|flag
vote up 150 vote down

I went through a sleep-deprived coding run and started only writing comments that were quotes from Fight Club.

Still trawling through the code years later I find a comment that makes me laugh. Most of them just random thoughts. I did however keep my comments to lines ratio pretty good!


      // This shouldn't happen. The only way this can happen is if the JFileChooser has returned a File
      // that doesn't exist on the system. If this happens we can't recover, and there is more than likely a
      // rip in the space time continuum that the user is too distracted by to notice anything else.

  /**
   * This method leverages collective synergy to drive "outside of the box" thinking and formulate key
   * objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players
   * to drive-up their core competencies and increase expectations with an all-around initiative to drive down
   * the bottom-line. I really wanted to work the word "mandrolic" in there, but that word always makes me
   * want to punch myself in the face.
   */
  private void updateFileCountLabel() {


link|flag
5  
The second one is great! What, no "paradigm-shifting"? – gnovice Jan 13 at 19:33
10  
Just to be fair, the first clause might happen if in between the user selecting the File, the File disappears, which might in fact happen on a network file system. Assumptions like that have bitten me in the past... – Kirk Wylie Apr 19 at 20:31
show 6 more comments
vote up 537 vote down
// sometimes I believe compiler ignores all my comments
link|flag
5  
I hope the compiler ignores this person's comments. – Windows programmer Oct 14 '08 at 6:18
17  
// Since I never heard back from the compiler, I believe this is true. – Liwen Dec 18 '08 at 13:59
11  
I think it's supposed to be ironic... – Neil Barnwell Dec 19 '08 at 15:57
12  
laughter, that's the future, compilers reading comments just to make sure they haven't misunderstood ;-D – R.A Jan 28 at 12:03
4  
//#reply_from_compiler you like clippy, don't you? – carleeto Feb 13 at 1:08
show 13 more comments
vote up 6 vote down
# absolutely foul heuristic code.
# ..it's dirty, but you want it.

and:

# VERY USEFUL DEBUGGING AID, for when the above all goes pearshaped:
link|flag
vote up 1 vote down

Fresh out of college, I was eager to get my hands dirty. My first task was... "comment this code for me".

Fucker.

After awhile I got bored with it...

// this function doesn't actually calculated the profit, like it says --it really signals the mothership orbiting saturn that the planet is ripe for takeover

[later]

// I don't think anyone is going to read this

[various permutations on that last one]
link|flag
2  
And thus, your hands were dirty. – James McMahon Oct 16 '08 at 14:37
vote up 97 vote down
/* Halley's comment */
link|flag
5  
hahah brilliant. you only see one every 75 years, and the last one was in 1986. – nickf Oct 13 '08 at 7:12
show 2 more comments
vote up 8 vote down

Actually saw this the other day, on some code that was written when there was a deadline rush.

//This was clearly written under duress
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
4  
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 6 vote down

I found this when re-using a PHP class I wrote a fair amount of time ago. I still cant remember what went there and I still have found no use for it... I actually don't even remember me writing that comment; so I literally laughed out loud when I found it.

		try
		{				
		    // Some database logic
		}
		catch (Exception $ex)
		{
			// sure, it looks silly and I honestly cant remember what code used to go here... but i swear i will
			// find a use for this code.... eventually....
			throw $ex;
		}
link|flag
vote up 25 vote down
'NO COMMENT
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.