vote up 358 vote down star
510

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 14 15 16 17 18 next
vote up 7 vote down
// Bad Christian, No cookie

Cookie in this context does not refer to a browser cookie

link|flag
vote up 332 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 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 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 361 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 0 vote down

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

link|flag
vote up 5 vote down

"This will never happen".

Famous last words my friend...

link|flag
show 1 more comment
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 52 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 422 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 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 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 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 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 422 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 1 vote down
// this is really complicated

with no other comments

link|flag
vote up 2 vote down
// but the "real" solution is much more complicated

from jpgraph

link|flag
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 26 vote down
using namespace std;            // So sue me
link|flag
show 2 more comments
vote up 0 vote down

If you have reached this part in the code, then this program sucks.

link|flag
vote up 256 vote down

It speaks volumes about our profession that when asked about the "best comment", we all answer with the worst comments we can find...

link|flag
17  
Well my opinion about commenting is that it shouldn't be needed. Reading code that is littered with comments makes me want to stab the offender in the scrotum-area. Refactor to make it readable instead! – korona Oct 9 '08 at 8:50
11  
I completely agree with your comment that comments are rarely needed. – harpo Oct 17 '08 at 5:45
4  
Depends on the comments. Even "self-documenting" languages can benefit from comments, such as Python. I hate having to slog through the code to figure out what is happening, when a simple sentence can tell me. – crystalattice Oct 18 '08 at 15:55
8  
I disagree re: comments being unnecessary. There are times when a simple "framing" comment can make sense of a whole slew of code. For example, if you are using a sophisticated algorithm to escape the time complexity of a brute force algorithm, a reference can be essential. – Mark Brittingham Dec 15 '08 at 15:35
16  
The code says what...the comments say why! – Richard E Dec 19 '08 at 16:06
show 8 more comments
vote up 164 vote down
// If this comment is removed the program will blow up
link|flag
41  
A long time ago, I accidentally fixed a segfault in Java3D by adding a comment. It was 100% reproducible; if I removed the comment, it crashed. As long as the comment was there, it worked fine. I assume it was some bizarre timing issue, but I never did figure out exactly what was happening. – DNS Mar 6 at 14:29
11  
Magic/More Magic – devinb Mar 6 at 14:36
5  
This is sort of like a virus. It contains content meant to protect itself. It is like the junk DNA that is good at getting itself copied. – Charlie Flowers Mar 27 at 7:12
4  
We have a Sybase Powerbuilder app that is dependent on a comment like this. There is something odd in the compiler; it works though, so we don't touch it. – Colin Pickard Apr 6 at 10:07
1  
Yuk. The worst I ever had was some Moto 68K code that worked/didn't based on a asm("NOP"); inserted between functions (jump length changed). I'd hate to deal with a COMMENT causing the same sort of changes. – Michael Kohne Apr 20 at 16:44
show 5 more comments
vote up 2 vote down

It's not strictly speaking a comment, but...

It was the mid-1990s and I was working on a big migration: small software vendor, big client, lots of pressure. We had a lot of shifting-goalpost stuff; the project was very hard to control. I was the key developer, but new to the system, and the other developer was the vendor's owner/founder.

After a few months of not quite making deadlines and not quite satisfying the client, the owner/founder brought on another developer, who was working remotely. (I'm gonna go out on a limb and say the new developer had lesser skills and experience than me.)

Well, the new guy made some changes in code that I'd already worked on, and then a month or two later I was back in the same area of the code, and there were variables I hadn't seen before. With names like StupidMark.

Dude, that's just not right. I mean, there's teamwork considerations, but also: in this environment, variable names can show up in runtime error messages. I'm just saying.

In my opinion at the time, the new guy's code wasn't getting us much closer to a deliverable product anyway, which made the insult sting a little more.

link|flag
vote up 4 vote down
  • THIS PROGRAM HAS CODE THAT DOES NOT MEET STANDARDS

That comment is in nearly every program we have here....

link|flag
vote up 6 vote down

This was actually made by me when I was implementing a prototype turned into real code:

// Abandon all hope you who needs to debug this

Yes, someone smarter than me actually refactored the code afterwards (it had to have a good ending).

link|flag
vote up 29 vote down

Simple but effective comment, before a less than safe hack in some C++ code

// yikes
link|flag
show 1 more comment
vote up 217 vote down

in a completely uncommented 2000 line method

{ 
  { 
    while (.. ){ 
      if (..){
          }
      for (.. ){ 
          }
         .... (just putting in the control flow here, imagine another few hundred ifs)
      if(..)   {
            if(..)     {
                   if(..)   {
                ...
                (another few hundred brackets)
                       }
                  }
         } //endif

(I actually grepped out all the brackets one day just to see how bad it was, and, sans formatting, got this:

{{{{}}{}{}{}{}}{{}{{}{}{}{}{}{}{{}{}}{}{}{{}{}{}{}{}{}{}{}{}{}{}{{}}}{{}{{}}{{{}}}{{}{}{}{}{}{}{}{{}}{}{{{}}{}{{}{}}{{{}}{}{}{}{}}{{}}}{}{{}{}{}{{}{{}}{}}{{}}}{{}}{{}}{{}}{}{{}}{{}}{{}}{{}{}{}}{}{}{{{}}{{}}}{}{}{}{}}{{{}{{}{}{}{{}{}{}{}{}{}}{}}{{}}{{}{}}}{{}}{{}}}{{}}{{}}{}{}{}{}{{}}{{}{}{}{}}}}{}{}}{{}{{{}{}{}{}}}}{{}{{{}}}}{{}{{{}{{}}{}{{}}{}{{}{}}{{}}{}{{}}}{{}}}}{{}{}{}{}{}{{{}    {{{{}}{}{}{}{}}{{}{{}{}{}{}{}{}{{}{}}{}{}{{}{}{}{}{}{}{}{}{}{}{}{{}}}{{}{{}}{{{}}}{{}{}{}{}{}{}{}{{}}{}{{{}}{}{{}{}}{{{}}{}{}{}{}}{{}}}{}{{}{}{}{{}{{}}{}}{{}}}{{}}{{}}{{}}{}{{}}{{}}{{}}{{}{}{}}{}{}{{{}}{{}}}{}{}{}{}}{{{}{{}{}{}{{}{}{}{}{}{}}{}}{{}}{{}{}}}{{}}{{}}}{{}}{{}}{}{}{}{}{{}}{{}{}{}{}}}}{}{}}{{}{{{}{}{}{}}}}{{}{{{}}}}{{}{{{}{{}}{}{{}}{}{{}{}}{{}}{}{{}}}{{}}}}{{}{}{}{}{}{{{}{}{{}}{}}}{}}{{}}{{}{}}{{}{{}{{}}}}{{{}{{{}}}}}{{{{{}}}}}{}{}{}{{{{}}}{}{}}{{}{{}}}}{}{{}}{}}}{}}{{}}{{}{}}{{}{{}{{}}}}{{{}{{{}}}}}{{{{{}}}}}{}{}{}{{{{}}}{}{}}{{}{{}}}}

The endif showed up around line 800)

link|flag
38  
tour-de-france code – Andreas Petersson Oct 8 '08 at 21:01
1  
doh' no cascading select statement? – Stephan Oct 8 '08 at 22:07
3  
this is thedailyworsethanfailure.com worthy! – deadbug Oct 9 '08 at 5:50
11  
Looks like Lisp! – endian Oct 9 '08 at 12:15
8  
Cyclomatic complexity level of OH SHIIIIIIIII – Will Mar 5 at 14:45
show 12 more comments
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 11 vote down

In the header of a code file heavily edited by everyone on the dev team:

'Avert your eyes, it may take on other forms!

Good ol' Flanders.

link|flag
1  
pretty sure that is what the nameless school teacher at a funadamentalist school Bart goes to says as he chases him with a paddle after Bart sang a song about beans or something. – Steven Adams Oct 9 '08 at 4:06
2  
Yep, "beans, beans, the musical fruit / the more you eat, the more you toot". It wasn't Flanders. – Blorgbeard Oct 9 '08 at 4:56
1  
Flanders was the name of the developer who wrote the code. But I like that you got the reference. :) – Robert S. Oct 10 '08 at 15:58
vote up 26 vote down
-- Comment this later

That was line 2 of a 4000+ line PL/SQL procedure. And the only comment. 4 years after that procedure was developed, later still hadn't come...

link|flag
prev 1 14 15 16 17 18 next

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