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 |
|
|
In a large investment bank that required all application outages be logged and commented I saw
|
|||
|
|
|
|
Linux CommentsThere are heaps of good ones here ... These are all comments in linux http://lwn.net/1998/1015/a/f-word.html My Favourites:
|
|||
|
|
|
|
This comment is from an old project that i had to debug:
|
||||
|
|
|
I had to add this one to our old datatable-driven rules engine before I decided to replace it with a scripting language.
|
|||
|
|
|
|
I discovered this gem when viewing the HTML source of an earlier iteration of the TVNZ website (from line 571 if you're playing along at home):
|
|||
|
|
|
|
And then -- customer's call saying he sees an error message saying "this error could never happen" |
|||
|
|
|
|||
|
|
|
|
/* Here I sit, Joe broken hearted, came to do some sh*t, but only just started. */ In regards to some heavy regular expression input validation. |
|||
|
|
|
|
But No Code ;) |
|||
|
|
|
|
When I was taking a CS class in Highschool, we were being taught in a regular classroom - no computers. All our tests were done on paper that we handed in - one class per sheet of paper. Our teacher was teaching the class in C++ for the first time and would occasionally switch into Pascal mode on the chalkboard. This was awkward, as few of us had interest in learning Pascal. For larger than in class work, we would do them at home and hand in code + output printouts to be graded. After submitting a few code + output printouts, we collectively realized that the teacher wasn't actually reading the code - just the printouts. To test our theory, I put in a comment on the 3rd page of my code - right between some class declarations:
Of course, I got it back with a big blue "A" on the front and no checkmark to be found. |
|||
|
|
This is just one of many... |
|||
|
|
|
|
|
|||
|
|
|
|
Using semi-colons in VB.NET
|
|||
|
|
//todo: never to be implemented |
|||
|
|
|
|
BAck in the early eighties, I came across this in assembler (quoting from dim memory): "I don't understand how the following bit works, but it worked in the program I stole it from." |
|||
|
|
|
|
And they did. Compacting the variable into the expression on the second line resulted in jumping into the middle of the heap and trying to execute data. |
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
That comment is in nearly every program we have here.... |
|||
|
|
|
|
"This will never happen". Famous last words my friend... |
|||
|
|
Spelunking through the Hardware Abstraction Layer while working for a certain Finnish Mobile Network Equipment Manufacturer I found 100+ occurrences of the Finnish word "puukko". A 'puukko' is an all purpose knife that every Finn has in their toolbox or around the house. It is used for everything from pealing potatoes to performing computer repairs (my observations). I believe in this context it is the Finnish equivalent of the word 'Hack'. My Finnish colleagues denied this and said it meant something more like 'surgical procedure/intervention'... and I almost believed them until I found the comment: /* Perkele ISO Puukko! */ -> Fucking Big Hack! |
|||
|
|
|
|
Seen in the source code for LucasArts' computer game 'The Eidolon' (Which was wierd and wacky in it's own right)...
|
|||
|
|
|
|
Not a comment but an attribute
And one I have seen in an implementation of IHttpHandler
|
|||
|
|
In an ETL script between a mostly hacked RPG database and an SQL Server one. I had something like 10 or 20 occurences of this comment... |
|||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
Once, I asked a coworker how to do something (forgot exactly what, some obscure technical calls) with our in-house framework. He said "easy, look HERE", then opens a .java file in his editor and shows me this comment in the middle of several pages of code:
I just checked, the comment is still there in this file :) |
|||
|
|
|
|
I guess it got viral, I found the following in a daemon (Linux) that prevents the OOM killer from selecting it:
This was right after a mlockall() to prevent the process from swapping, commented:
|
|||
|
|
|
|||
|
|
|
|||
|
|
