vote up 358 vote down star
518

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
vote up 9 vote down
int Q13Factor = 8125; // 2^13 for Q13
link|flag
show 1 more comment
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 2 vote down
// This code sucks.
link|flag
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 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 340 vote down
// I'm sorry.
link|flag
63  
(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 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 278 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 748 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
182  
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 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 139 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
8  
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 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 90 vote down
/* Please work */
link|flag
3  
I know the feeling :) – johnc 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 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 117 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 5 vote down
// TODO: Implement this function!
link|flag
show 2 more comments
vote up 2 vote down

I'm not sure what I did

link|flag
vote up 1 vote down

"Get This hack!"

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

link|flag
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
prev 1 14 15 16 17 18

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