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 |
|
|
|
|||
|
|
// Houston, we have a problem |
|||
|
|
|
|
On the linux 1.0 kernel scheduler (sched.c):
(...) |
||||
|
|
|
Sanitized:
|
|||
|
|
|
|
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 ... |
||||
|
|
|
From a lad that clearly had been watching Monty Python:
|
|||
|
|
|
|
|
|||
|
|
|
|
on leaving my last job I embedded some ascii art into the source...
,_-=(!7(7/zs_.
.=' ' .`/,/!(=)Zm.
.._,,._.. ,-`- `,\ ` -` -`\\7//WW.
,v=~/.-,-\- -!|V-s.)iT-|s|\-.' `///mK%.
v!`i!-.e]-g`bT/i(/[=.Z/m)K(YNYi.. /-]i44M.
v`/,`|v]-DvLcfZ/eV/iDLN\D/ZK@%8W[Z.. `/d!Z8m
//,c\(2(X/NYNY8]ZZ/bZd\()/\7WY%WKKW) -'|(][%4.
,\\i\c(e)WX@WKKZKDKWMZ8(b5/ZK8]Z7%ffVM, -.Y!bNMi
/-iit5N)KWG%%8%%%%W8%ZWM(8YZvD)XN(@. [ \]!/GXW[
/ ))G8\NMN%W%%%%%%%%%%8KK@WZKYK*ZG5KMi,- vi[NZGM[
i\!(44Y8K%8%%%**~YZYZ@%%%%%4KWZ/PKN)ZDZ7 c=//WZK%!
,\v\YtMZW8W%%f`,`.t/bNZZK%%W%%ZXb*K(K5DZ -c\\/KM48
-|c5PbM4DDW%f v./c\[tMY8W%PMW%D@KW)Gbf -/(=ZZKM8[
2(N8YXWK85@K -'c|K4/KKK%@ V%@@WD8e~ .//ct)8ZK%8`
=)b%]Nd)@KM[ !'\cG!iWYK%%| !M@KZf -c\))ZDKW%`
YYKWZGNM4/Pb '-VscP4]b@W% 'Mf` -L\///KM(%W!
!KKW4ZK/W7)Z. '/cttbY)DKW% -` .',\v)K(5KW%%f
'W)KWKZZg)Z2/,!/L(-DYYb54% ,,`, -\-/v(((KK5WW%f
\M4NDDKZZ(e!/\7vNTtZd)8\Mi!\-,-/i-v((tKNGN%W%%
'M8M88(Zd))///((|D\tDY\\KK-`/-i(=)KtNNN@W%%%@%[
!8%@KW5KKN4///s(\Pd!ROBY8/=2(/4ZdzKD%K%%%M8@%%
'%%%W%dGNtPK(c\/2\[Z(ttNYZ2NZW8W8K%%%%YKM%M%%.
*%%W%GW5@/%!e]_tZdY()v)ZXMZW%W%%%*5Y]K%ZK%8[
'*%%%%8%8WK\)[/ZmZ/Zi]!/M%%%%@f\ \Y/NNMK%%!
'VM%%%%W%WN5Z/Gt5/b)((cV@f` - |cZbMKW%%|
'V*M%%%WZ/ZG\t5((+)L\'-,,/ -)X(NWW%%
`~`MZ/DZGNZG5(((\, ,t\\Z)KW%@
'M8K%8GN8\5(5///]i!v\K)85W%%f
YWWKKKKWZ8G54X/GGMeK@WM8%@
!M8%8%48WG@KWYbW%WWW%%%@
VM%WKWK%8K%%8WWWW%%%@`
~*%%%%%%W%%%%%%%@~
~*MM%%%%%%@f`
'''''
|
||||||||
|
|
|
This comment was posted above a huge while-if-for block... Oh, and it manipulated an object array of object arrays of object arrays of strings that could be strings or numbers, depending on at least 3 factors... (yes, I had to debug this code and change it and I wrote the comment, however I did not write the original code). ;) |
|||
|
|
|
|
//Not a bug, parameter position can change..., if you think this is wrong, you are in fact wrong. |
|||
|
|
|
|
where pissed = drunk |
|||
|
|
|
|
Q: "What is the best comment in source code you have ever encountered?" A: Easy - the one that helped me solve whatever problem I was having at the time, and there are lots of those! Second best are those that help guide new development from avoiding known pitfalls. |
|||
|
|
|
|
I inherited a project that haad been delivered to the customer without any UAT. It was dropkicked over the fence and the money requested. First time they used it, it naturally blew up. It was an interposing library that overrode any system calls that took a file name as a parameter rather than a file descriptor. Many system calls had been forgotten. When I got onboard the code was laced with such gems as:
and
Oh, and there were no unit tests. A colleague had started to add the missing system calls and unit tests. And the bastards who'd written the code were still in the team and didn't care at all about the garbage that had been delivered! |
|||
|
|
|
|
In a well known commercial DOS spreadsheet application:
|
||||||||
|
|
|
There was some old javascript code, quite well written tho. Then was a comment line
followed by a function 4 people spent a day to understand what it's doing. Finally we realised it's not even used and does nothing. |
||||
|
|
|
|
|||
|
|
Found in the main trigger code for transactions in an OLTP database:
|
|||
|
|
|
|
This is actual code I once had to support. After struggling to comprehend the logic in AstaSaysGooGoo and AstaSaysGaaGaa (where many more astaTempVars were declared and used ) I was ready to give up. I finally looked up and saw the "@author" comment and the whole thing began to makes sense.
PS I changed the actual authors real name so as to avoid me getting in any disputes etc... |
||||||||||||
|
|
|
This is my favourite comment ever.
Later on in the file we have more fun like
And again later
|
|||
|
|
A German comment in some source-code, translated by machine or very tired human + Google
I guess the original meant "assume true here" ... but ever since I've taken it as a mantra for my life. |
||||
|
|
|
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. |
|||
|
|
|
|
Not really a comment:
Sad thing is that without the comment, PSCRIPT5.DLL really did blow up ... |
|||
|
|
From Java 1.2 SwingUtilities:
|
||||
|
|
|
|
||||
|
|
|
|
||||
|
|
|
For those of you who are, for some peculiar reason, unaware of the DPC, it's the part of your brain that lights-up when you're deeply engaged in learning something new. |
|||
|
|
|
|
|
||||||||||||
|
|
|
|
|||
|
|
|
|
(the sound function in the Turbo C version 2.0 Reference Guide) |
||||||||||||||||
|
|
|
i tell a mentee to do at least SOME exception handling. This is what i get in return around every db call....
|
|||
