What is the best comment in source code you have ever encountered?
|
511
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
This is my favourite comment ever.
Later on in the file we have more fun like
And again later
|
|||
|
|
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... |
||||||||||||
|
|
|
Found in the main trigger code for transactions in an OLTP database:
|
|||
|
|
|
|
|
|||
|
|
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. |
||||
|
|
|
In a well known commercial DOS spreadsheet application:
|
||||||||
|
|
|
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! |
|||
|
|
|
|
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. |
|||
|
|
|
|
where pissed = drunk |
|||
|
|
|
|
//Not a bug, parameter position can change..., if you think this is wrong, you are in fact wrong. |
|||
|
|
|
|
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). ;) |
|||
|
|
|
|
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`
'''''
|
||||||||
|
|
|
|
|||
|
|
|
|
From a lad that clearly had been watching Monty Python:
|
|||
|
|
|
|
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 ... |
||||
|
|
|
Sanitized:
|
|||
|
|
|
|
On the linux 1.0 kernel scheduler (sched.c):
(...) |
||||
|
|
|
// Houston, we have a problem |
|||
|
|
|
|
|
|||
|
|
This is from an old IOCCC winning entry, I had to download the whole archive of winners -- a humongous 1.4 M -- and grep for several phrases I remembered wrong before finding it. Syntactically this is probably not a comment. Or may be it is. I haven't figured it out. It definitely does not have comment delimiters, but it doesn't have String delimiters either.
No prices for guessing the output from lint. And for the curious, that entry is here. |
||||
|
|
|
I see this one a lot:
|
|||
|
|
|
|
Production source code: // Remove this if you wanna be fired |
|||
|
|
|
|
Top of sqlite source files:
|
|||
|
|
|
|
|
|||
|
|
|
|
A comment I added to a PHP CMS I was working on a while back.
|
|||
|
|
"f**k me gently with a chainsaw" |
|||
|
|
|
|
|
|||
|
|
Code converted Nulls to zero-length strings line by line in roundabout way because the stupid programmer did not understand what Nulls are and had never heard of the Nz() function. |
|||
|
|
|
|
|
|||
|
|
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... |
|||
|
|
