What is the best comment in source code you have ever encountered?
|
527
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
|
|||
|
|
|
|
// fix it! |
|||
|
|
|
|
// This is a kind of magic... |
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
Many years ago I picked up the job to provide support to a project that ran real time on a Z80 and was in assembly (is there any other way to do Z80??) Anyway, the original author was a Nigerian guy by the name of Moses. Maybe I should just stop there. Anyway, scattered throughout the code was this: XRA A ;MT Took me awhile to figure out what this was. The instruction itself does nothing more than clear the accumulator. It's a slick way, although I'm not sure if there is an advantage or not. you can just do: LDA 0 But maybe XRA A saves a byte or something. What is does is exclusive or the accumulator with itself. The result is, of course, always zero. Back to the MT - Empty (get it?) That's the best I've run across. |
|||
|
|
|
||||
|
|
|
DataRow[] foundrows = FilterCalendarEntriesBecauseDotNETIsFuckedUp(tbtemp,CalDate); Not a comment but an interesting function name |
|||
|
|
|
|
//this is a crap way to do this but I ran out of patience DelButton.click(); |
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
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:
|
|||
|
|
|
|
// repopulate, slight hax (or strong assumptions :P) below |
|||
|
|
|
|
// This should fix something that should never happen |
|||
|
|
|
|
Some old fortran code I saw:
c asssign one to 100 before entering the loop |
|||
|
|
|
|
|
|||
|
|
Our DBA found this in the middle of a 3000 line stored procedure written by a third party.
|
||||
|
|
|
Whenever we decide to test whether or not execution reaches a certain line in ActionScript, we have a tradition. It has become known as a "balletrace", which comes from doing a trace statement with the string "balle" in it. "Balle" is one of many dirty Norwegian synonyms for testicles, and is used as a curse word. I down't know how many times we've seen this in places it shouldn't be after release...
|
|||
|
|
|
|
|
||||||||
|
|
|
From http://www.madore.org/~david/computers/callcc.html:
|
|||
|
|
|
|
|
|||
|
|
Well-written Lisp is one of the easiest to read languages and I love it. But poorly written Lisp can be a nightmare so much worse than bad Java, etc. Here, we need to create a "group file" if there exist 3 variants of an original file named with the suffixes a, b and c. I had been trying to track down a strange bug where we were getting unnecessary group files...
Bug: 1, Gut: 0. Apparently it didn't occur to whoever wrote this that perhaps checking for all three variants would be a good idea. Of course, that was the bug I ended up tracking down a decade after this code was originally written (it predates the first SVN log). |
|||
|
|
|
|
|
|||
|
|
|
|
I recently saw this:
if you don't know what the game is: http://en.wikipedia.org/wiki/The_Game_(mind_game) (it's very silly, but silly in a interesting in a way) |
|||
|
|
While debugging someone else JavaScript I've seen the following comment:
But while reading one post of Scott Hanselmen I came across the following quote that goes very well with the comments I found inside the code:
That's funny :) |
|||
|
|
|
|
http://code.google.com/p/xee/source/browse/trunk/XeePhotoshopLoader.m?spec=svn28&r=11#107
|
||||
|
|
|
My personal favorite is documentation in limerick form:
This probably spoils the joke a bit, but since it's a bit obscure I'll explain: "TR" here refers to "Twisted Reality". Zope 2 and the original |
|||
|
|
|
|
From the leaked Win2K source code:
|
|||
|
|
|
|
At the top of a method. That was about 5 lines long. And not very difficult. It was the only comment. In the entire application. |
|||
|
|
