What is the best comment in source code you have ever encountered?
|
506
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
To protect the guilty the values have been changed This one was left behind by a contractor who had been working on a chunk of code responsible for testing email logins. We were in disbelief so we tried it out and it was a valid login to his personal account; we double-checked the revision history and he had two check-ins that edited it: one to add the code, and the second to comment it out. We added the artwork and left the rest alone; another dev decided it would be fun to send him emails from his future self (ala The Office) and said it took nearly two full weeks of daily emails before the login stopped working.
My favorite part isn't that he did it, or that he accidently left it in place for a check-in--but that when he came back across it he just commented it out rather than deleting it. We never would have looked at the original revision if we never knew it was there :-D |
|||
|
|
|
|||
|
|
|
||||||||
|
|
|
No other error codes defined. |
|||
|
|
|
|
I always liked what Paul DiLascia wrote in his file headers:
|
|||
|
|
|
|
When writing some Perl years ago, I added these comments at the top and bottom:
The next guy to look at it wasn't so hot at Perl, and spent a while searching documentation for what 'magic' and 'voodoo' did. Since then, I've tried to add more helpful comments... |
||||||||||||
|
|
|
|
|||
|
|
|
|
Don't recall where I've seen these:
and (in code to create some sort of UNIX daemon):
|
|||
|
|
|
|
|
|||
|
|
From the source code of the UNIX flavor of the Netscape web browser, circa 1997:
Such pearls were unfortunately removed before Moz went open-source ... |
||||
|
|
|
I see this one a lot:
|
|||
|
|
|
|
From a google code project:
|
|||
|
|
|
|
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 dating website... |
|||
|
|
|
|
|
|||
|
|
|
|
found in a joomla module. |
|||
|
|
|
|
|
|||
|
|
|
|
//open lid //take sh!t //close lid Comments for a File open, data dump, file close... |
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
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. |
|||
|
|
|
|
I posted this "license statement" in a WordPress template I released. I thought it was funny, anyhow.
|
|||
|
|
|
|
An old boss of mine was always going on about how we had to use our own products internally i.e. "Eat our own dog food..." Many years later I find embedded in some some source that a temporary coworker had done, every function he touched is tagged with:
|
|||
|
|
|
|
|
|||
|
|
|
|
Best one so far: "This code makes baby Jesus very sad!". It was refering an String iniciatilization like this:
String blankSpaces=" "+ //100 whitespaces |
|||
|
|
|
|
|
|||
|
|
|
|
Followed by some dubious code, and within that code,
Finally,
|
|||
|
|
|
|
Honest to God:
|
|||
|
|
|
|||
|
|
|
|
I don't have access to the original file because I don't work there anymore, but it was something very similar to this picture. It was at the top of a file that always caused troubles, that we had to fix but not allowed to take the time to really fix. (University politics) |
|||
|
|
