vote up 358 vote down star
512

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

1 2 3 4 5 18 next
vote up 26 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 1 vote down

"Get This hack!"

On a line of assembler code, after pages of uncommented code.

link|flag
vote up 2 vote down

I'm not sure what I did

link|flag
vote up 5 vote down
// TODO: Implement this function!
link|flag
show 2 more comments
vote up 116 vote down
//I am not sure why this works but it fixes the problem.

This was before a set of code that technically did fix the problem it was meant to but broke 3 other things....

link|flag
show 2 more comments
vote up 12 vote down

Best one so far:

"This code makes baby Jesus very sad!". It was refering an String iniciatilization like this:

String blankSpaces="                              "+ //100 whitespaces
"                              "+ //200 Whitespaces
...
" " //100 whitespaces

Well you get the idea

link|flag
vote up 89 vote down
/* Please work */
link|flag
3  
I know the feeling :) – lagerdalek Jan 23 at 11:02
1  
i'll try this to see if it helps any... :D – MasterPeter Apr 6 at 11:52
54  
My boss tells me this whenever he sees me reading SO. – Mike Miller Apr 20 at 20:10
2  
@"My boss tells me this whenever he sees me reading SO.": OMG!!! I can't stop laughing!!! – Andrei Rinea Apr 23 at 23:53
vote up 68 vote down

Next to a local variable that had to be declared just to pass a constant to a library function:

// This only exists because Scott doesn't know how to use const correctly
link|flag
3  
God. I'd love to sprinkle comments like that THROUGHOUT our codebase, only "Scott" is my boss. – mos Oct 9 '08 at 3:30
2  
Crap, I am Scott! (joking a different Scott but I still like it) – smaclell Dec 24 '08 at 6:15
2  
Who found my old projects? – Scottie Jun 16 at 19:31
show 1 more comment
vote up 137 vote down

Many years ago (about 1994) I was working on a Oracle PRO*C application for a large multi-national software company that you will have heard of. The app I was working on was a massive Oracle application and they had a utility that ran overnight tidying up data and doing all sorts of aggregate calculations. Every time anything needed doing as a batch job, it got shoved into this utility and as you can imagine it became an absolute monstrosity. It was also notable for the tiny number of comments that it had for such a massive program.

One of the few comments it did have remains the finest comment I have ever seen for pure WTF'ness... I was trying to find a bug in a function which was hundreds of lines long and right in the middle of it was the only comment in the function:

/* I did this the other way */

To this day it is still the finest comment I have ever seen.

link|flag
7  
I like that. it's enigmatic, yet useless. – __ Oct 11 '08 at 18:33
1  
It makes me wonder if there was a disagreement about how to do something and the guy very smuggly declares that he decided to do it his way. LOL – aaronls Apr 3 at 13:34
2  
I read it as "there is a right way to do this, a wrong way to do this, and..." – Ry Apr 4 at 18:09
2  
@Ry - ... my way ... – ldigas Apr 21 at 3:56
show 1 more comment
vote up 138 vote down
/* You are not meant to understand this */
link|flag
1  
This is one of those Hofstadterian uses of "this". – harpo Oct 8 '08 at 20:55
4  
Very reminiscent of the infamous "you are not expected to understand this" comment in the UNIX source code: cm.bell-labs.com/who/dmr/odd.html – Mark Bessey Oct 10 '08 at 0:33
show 6 more comments
vote up 746 vote down
//Code sanitized to protect the foolish.
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Web.UI;

namespace Mobile.Web.Control
{
    /// <summary>
    /// Class used to work around Richard being a fucking idiot
    /// </summary>
    /// <remarks>
    /// The point of this is to work around his poor design so that paging will 
    /// work on a mobile control. The main problem is the BindCompany() method, 
    /// which he hoped would be able to do everything. I hope he dies.
    /// </remarks>
    public abstract class RichardIsAFuckingIdiotControl : MobileBaseControl, ICompanyProfileControl
    {
        protected abstract Pager Pager { get; }

        public void BindCompany(int companyId) { }

        public RichardIsAFuckingIdiotControl()
        {
            MakeSureNobodyAccidentallyGetsBittenByRichardsStupidity();
        }

        private void MakeSureNobodyAccidentallyGetsBittenByRichardsStupidity()
        {
            // Make sure nobody is actually using that fucking bindcompany method
            MethodInfo m = this.GetType().GetMethod("BindCompany", BindingFlags.DeclaredOnly | 
                BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
            if (m != null)
            {
                throw new RichardIsAFuckingIdiotException("No!! Don't use the fucking BindCompany method!!!");
            }
            // P.S. this method is a joke ... the rest of the class is fucking serious
        }

        /// <summary>
        /// This returns true if this control is supposed to be doing anything
        /// at all for this request. Richard thought it was a good idea to load
        /// the entire website during every request and have things turn themselves
        /// off. He also thought bandanas and aviator sunglasses were "fuckin' 
        /// gnarly, dude."
        /// </summary>
        protected bool IsThisTheRightPageImNotSureBecauseRichardIsDumb()
        {
            return Request.QueryString["Section"] == this.MenuItemKey;
        }

        protected override void OnLoad(EventArgs e)
        {
            if (IsThisTheRightPageImNotSureBecauseRichardIsDumb())
            {
                Page.LoadComplete += new EventHandler(Page_LoadComplete);
                Pager.RowCount = GetRowCountBecauseRichardIsDumb();
            }
            base.OnLoad(e);
        }

        protected abstract int GetRowCountBecauseRichardIsDumb();
        protected abstract void BindDataBecauseRichardIsDumb();

        void Page_LoadComplete(object sender, EventArgs e)
        {
            BindDataBecauseRichardIsDumb();
        }

        // the rest of his reduh-ndant interface members
        public abstract string MenuItemName { get; set; }
        public abstract string MenuItemKey { get; set; }
        public abstract bool IsCapable(CapabilityCheck checker, int companyId);
        public abstract bool ShowInMenu { get; }
        public virtual Control CreateHeaderControl()
        {
            return null;
        }
    }
}

Update: The original author of the code has outed himself so I must give credit where it is due. Dan McKinley left the company I was with shortly after I started, and he talks more about the code, explaining some background and a few more "WTF's" that 'Richard' wrote.

link|flag
18  
That's riddled with obscenities, but I literally laughed in my cube the entire time reading it. – Abyss Knight Oct 8 '08 at 20:25
181  
censorship sucks. bring back the original! – Dana Oct 9 '08 at 1:12
43  
Rolled back. We're all adults here. If the original code had been "sanitized", you would never have remembered it enough to post it here. – JosephStyons Oct 9 '08 at 3:48
24  
+1 revert. Manipulating others through arbitrary personal offenses is lame. It's just a word. – Daddy Warbox Oct 9 '08 at 22:28
35  
Will be even funnier if a customer sees the class name in a stack trace. – finnw Oct 10 '08 at 2:47
show 62 more comments
vote up 275 vote down
Catch (Exception e) {
 //who cares?
}
link|flag
4  
This one had me laughing like a mental – Shahin Oct 20 '08 at 23:31
12  
I saw the same thing with // move along, nothing to see here. – Ferruccio Nov 6 '08 at 23:41
2  
I laughed so hard at this one. – sork Nov 20 '08 at 21:52
3  
Have to admit that I've done this on more than one occasion because sometimes it just doesn't matter. – Chris Lively Dec 18 '08 at 23:31
2  
Catch if you must ;-) – Friedrich Dec 20 '08 at 9:13
show 12 more comments
vote up 26 vote down

I have used this one on more than one occasion, when I've done some kind of non-obvious simplification to a mathematical formula that I don't feel like documenting:

//this formula is right, work out the math yourself if you don't believe me
link|flag
3  
That's fine, but how about adding some tests to prove it. I had precisely that situ last night: found maths code (written by me) that I didn't believe could work - but the unit tests proved it did. – endian Oct 9 '08 at 12:18
1  
This is good if you are right, extremely bad if you happen to have made a mistake. Better to have tests back it up. – TM Oct 10 '08 at 2:42
vote up 334 vote down
// I'm sorry.
link|flag
62  
(The code that followed made me cry.) – Greg D Oct 8 '08 at 20:23
9  
man, I wanna see the code that followed... – Erik Oct 8 '08 at 20:59
9  
// You are forgiven. Go in peace my son. – Mark Allen Oct 8 '08 at 21:51
21  
This should be a standard comment in the default templates generated by MSFT – Alexandre Brisebois Oct 9 '08 at 13:40
8  
You're not a real developer if you've never left an apology comment for the next person! :P – Slace Feb 5 at 11:02
show 6 more comments
vote up 54 vote down

At the top of a header file:

/* Project : XYZ (Please somebody shoot me!)
 *
 * File : $Id: defs.h,v 1.1 $
 *
 * Purpose : Create havoc rather than peace among many nations
 *
 * History : Back-ported changes that were not in CVS.  Please somebody,
 *  shoot us and put us all out of our misery.
 */

The "XYZ project" (name changed) was a seven-year ordeal. That last comment was written by the one stalwart soul who was involved from the very beginning through to the end.

link|flag
5  
To paraphrase Adrian Monk, he's praying for the sweet release that only death can bring. – __ Oct 11 '08 at 18:39
vote up 11 vote down

From a classic from usenet:

Deep inside the Teradyne hardware modeler code is a routine that feeds a whole bunch of hex numbers into a SYS$QIO call. The only comment is 'Weird magic happens here'.

link|flag
vote up 2 vote down
// This code sucks.
link|flag
vote up 4 vote down
{
This is a gathering place for all unit tests.
Create a TUnitTestWrapper, then call "RunAllUnitTests".

This class will create an instance of each thing to be tested, and call each of
their unit tests.

It does not really do any testing on it's own; it just gives a common place from
which to call everyone else's tests.

This way, one day, we can automate our testing with each build. [Cue laughter]
}
link|flag
vote up 9 vote down
int Q13Factor = 8125; // 2^13 for Q13
link|flag
show 1 more comment
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
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

//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 219 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 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 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 5 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 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 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 257 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 0 vote down

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

link|flag
1 2 3 4 5 18 next

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