What is the best comment in source code you have ever encountered?
|
524
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
|
||
|
|
|
|
//Dear future me. Please forgive me. //I can't even begin to express how sorry I am. |
||||||||
|
|
|
In drivers/net/sunhme.c (Linux kernel):
|
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
We have a file and half way down it a programmer trying to make sense of the mess managed to move all the nonsense code to the bottom, and left a comment of something like:
Another programmer left a series of nested namespaces that acted like a which-way-book, so that you could drill into the namespaces in the idea and choose your actions. |
|||
|
|
|
|
'On Error Goto Hell. |
|||
|
|
|
|
BerkeleyDB
|
|||
|
|
|
|
Somewhere from the facebook api. |
|||
|
|
|
|
In an art asset export tool, I stumble upon a complete translator from digits (arabic) numbers to roman numbers. It looked like this:
The team of the person that wrote this code had been crunching for a long time, I guess it affected their sanity. |
||
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
About 10 years ago I was working at image processing, scanning microscope video frames to detect cell movement. I was working at a particulary intricated function and decided to go out and have a drink with friends. When I came back home I worked a little bit but not too much because I was drunk. The morning after I found a 10-line completely messed-up function with the following comment (obviously written by my other self):
The strangest part was that it even worked. |
||||
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
Well, these are mine, so WTF is me, as CodingHorror said:
I once left a comment like so in some ASP:
As it happens, [CustomerName] didn't change his mind, but he DID have access to the web server, and he DID find that line... |
|||
|
|
|
|
managed to insert this bad pun into our code
|
|||
|
|
When I'm commenting out chunks of code that I THINK are no longer useful, but I might be wrong about (hence not deleting them) I will sometimes preface them with
The idea being that this is like celery that is wilted, but you put it back in the fridge anyway. I just know that 10 years from now someone else will find these comments and say WTF? |
|||
|
|
|
|
; I'm checking in this file because Roy (Back to the Future) Goodwin, ; while testing for Year 2000 problems, inadvertently checked in this ; file while his machine's clock was set to the year 2000. As a result ; this file always newer than it's object file so is always recompiled ; after any change is made to any file. I'm checking it in without ; change to revert the timestamp back to the present. In the Assembly Language source code of Lotus 1-2-3 for DOS, sometime in the early 1990s before the year 2000 problem was widely anticipated. |
||||
|
|
|
|
|||
|
|
|
|
// now swap like a |
|||
|
|
|
|
and:
EDIT: Just found this in some of my code (the project wishes to remain anonymous):
How I love puns. |
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
// This interface defines method signatures |
|||
|
|
|
|
I once came up with what I thought was an elegant solution to a particularly sticky problem, in retrospect it was a bit of a mind-bender and made some heavy use of macro programmimg. Years later I found this comment from a maintenance programmer
/*
Description: The Total Perspective Vortex derives its picture of the
whole Universe on the principle of extrapolated matter
analyses.
To explain - since every piece of matter in the Universe
is in some way affected by every other piece of matter in
the Universe, it is in theory possible to extrapolate
the whole of creation - every sun, every planet, their
orbits, their composition and their economic and social
history from, say, one small Macro.
The man who invented the Total Perspective Vortex did so
basically in order to annoy the IT department.
Steve Weet - for that was his name - was a dreamer, a
thinker, a speculative philosopher or, as some would have
it, a slacker.
And they would nag him incessantly about the utterly
inordinate amount of time he spent staring out into space,
or mulling over the mechanics of Chelsea FC, or doing
spectrographic analyses of macros.
"Have some sense of proportion!" they would say,
sometimes as often as thirty-eight times in a single day.
And so he built the Total Perspective Vortex - just to show
them.
And into one end he plugged the whole of reality as
extrapolated from one macro, and into the other
end he plugged the IT department: so that when he turned it
on they saw in one instant the whole infinity of creation
and theirselves in relation to it.
To Steve Weet's horror, the shock completely annihilated '
their brains; but to his satisfaction he realized that he
had proved conclusively that if life is going to exist in a
Universe of this size, then the one thing it cannot afford
to have is a sense of proportion.
*/
|
||||||||
|
|
|
From a contractor in an application for a UK bank.
He also added BNP (British very right wing party) as 1 of the dummy customers for testing... our immediate boss was of Asian ethnicity. |
|||
|
|
|
|
Ages ago I ran into this one: /***************************************************************************/ /* deep wizardry. do not touch. */ /* */ /* no seriously. XXXXXX I'm looking at you. If you screw with this again */ /* I will kill you with my swingline stapler. */ /* */ /* ... */ And then went on to describe a particularly hairy algorithm. |
|||
|
|
