What is the best comment in source code you have ever encountered? - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-09T07:20:59Zhttp://stackoverflow.com/feeds/question/184618http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered358What is the best comment in source code you have ever encountered? [closed]Thomas Bratt2008-10-08T20:08:07Z2009-11-07T11:54:10Z
<p>What is the best comment in source code you have ever encountered?</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184629#18462924Answer by Diodeus for What is the best comment in source code you have ever encountered?Diodeus2008-10-08T20:09:45Z2008-10-08T20:47:59Z<pre><code>//ALL YOUR BASE ARE BELONG TO US
</code></pre>
<p>...it made my boss think someone had hacked in. He didn't know the joke.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184633#1846331Answer by Walter Mitty for What is the best comment in source code you have ever encountered?Walter Mitty2008-10-08T20:09:58Z2008-10-08T20:09:58Z<p>"Get This hack!" </p>
<p>On a line of assembler code, after pages of uncommented code.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184635#1846352Answer by Eduardo Campañó for What is the best comment in source code you have ever encountered?Eduardo Campañó2008-10-08T20:10:34Z2008-10-08T20:10:34Z<p>I'm not sure what I did</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184637#1846375Answer by antik for What is the best comment in source code you have ever encountered?antik2008-10-08T20:11:04Z2008-10-08T20:47:28Z<pre><code>// TODO: Implement this function!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184638#184638114Answer by StubbornMule for What is the best comment in source code you have ever encountered?StubbornMule2008-10-08T20:11:04Z2008-10-08T20:35:51Z<pre><code>//I am not sure why this works but it fixes the problem.
</code></pre>
<p>This was before a set of code that technically did fix the problem it was meant to but broke 3 other things....</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184639#18463912Answer by Alejo for What is the best comment in source code you have ever encountered?Alejo2008-10-08T20:11:12Z2008-10-08T20:11:12Z<p>Best one so far:</p>
<p>"This code makes baby Jesus very sad!". It was refering an String iniciatilization like this:
<br></p>
<p>String blankSpaces=" "+ //100 whitespaces<br>
" "+ //200 Whitespaces<br>
...<br>
" " //100 whitespaces<br><br>
Well you get the idea<br></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184649#18464987Answer by daniels for What is the best comment in source code you have ever encountered?daniels2008-10-08T20:12:26Z2009-09-14T06:46:54Z<pre><code>/* Please work */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184656#18465665Answer by Tim Farley for What is the best comment in source code you have ever encountered?Tim Farley2008-10-08T20:13:32Z2008-10-08T20:13:32Z<p>Next to a local variable that had to be declared just to pass a constant to a library function:</p>
<pre><code>// This only exists because Scott doesn't know how to use const correctly
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184670#184670135Answer by Dave Verwer for What is the best comment in source code you have ever encountered?Dave Verwer2008-10-08T20:16:52Z2008-10-08T20:16:52Z<p>Many years ago (about 1994) I was working on a Oracle PRO*C application for a large multi-national software company that you will have heard of. The app I was working on was a massive Oracle application and they had a utility that ran overnight tidying up data and doing all sorts of aggregate calculations. Every time anything needed doing as a batch job, it got shoved into this utility and as you can imagine it became an absolute monstrosity. It was also notable for the tiny number of comments that it had for such a massive program.</p>
<p>One of the few comments it did have remains the finest comment I have ever seen for pure WTF'ness... I was trying to find a bug in a function which was hundreds of lines long and right in the middle of it was the <strong>only</strong> comment in the function:</p>
<pre><code>/* I did this the other way */
</code></pre>
<p>To this day it is still the finest comment I have ever seen.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184672#184672134Answer by 1800 INFORMATION for What is the best comment in source code you have ever encountered?1800 INFORMATION2008-10-08T20:17:01Z2008-10-08T21:44:04Z<pre><code>/* You are not meant to understand this */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184673#184673732Answer by Tom Ritter for What is the best comment in source code you have ever encountered?Tom Ritter2008-10-08T20:17:24Z2009-10-28T12:15:39Z<blockquote>
<pre><code>//Code sanitized to protect the foolish.
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Web.UI;
namespace Mobile.Web.Control
{
/// <summary>
/// Class used to work around Richard being a fucking idiot
/// </summary>
/// <remarks>
/// The point of this is to work around his poor design so that paging will
/// work on a mobile control. The main problem is the BindCompany() method,
/// which he hoped would be able to do everything. I hope he dies.
/// </remarks>
public abstract class RichardIsAFuckingIdiotControl : MobileBaseControl, ICompanyProfileControl
{
protected abstract Pager Pager { get; }
public void BindCompany(int companyId) { }
public RichardIsAFuckingIdiotControl()
{
MakeSureNobodyAccidentallyGetsBittenByRichardsStupidity();
}
private void MakeSureNobodyAccidentallyGetsBittenByRichardsStupidity()
{
// Make sure nobody is actually using that fucking bindcompany method
MethodInfo m = this.GetType().GetMethod("BindCompany", BindingFlags.DeclaredOnly |
BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
if (m != null)
{
throw new RichardIsAFuckingIdiotException("No!! Don't use the fucking BindCompany method!!!");
}
// P.S. this method is a joke ... the rest of the class is fucking serious
}
/// <summary>
/// This returns true if this control is supposed to be doing anything
/// at all for this request. Richard thought it was a good idea to load
/// the entire website during every request and have things turn themselves
/// off. He also thought bandanas and aviator sunglasses were "fuckin'
/// gnarly, dude."
/// </summary>
protected bool IsThisTheRightPageImNotSureBecauseRichardIsDumb()
{
return Request.QueryString["Section"] == this.MenuItemKey;
}
protected override void OnLoad(EventArgs e)
{
if (IsThisTheRightPageImNotSureBecauseRichardIsDumb())
{
Page.LoadComplete += new EventHandler(Page_LoadComplete);
Pager.RowCount = GetRowCountBecauseRichardIsDumb();
}
base.OnLoad(e);
}
protected abstract int GetRowCountBecauseRichardIsDumb();
protected abstract void BindDataBecauseRichardIsDumb();
void Page_LoadComplete(object sender, EventArgs e)
{
BindDataBecauseRichardIsDumb();
}
// the rest of his reduh-ndant interface members
public abstract string MenuItemName { get; set; }
public abstract string MenuItemKey { get; set; }
public abstract bool IsCapable(CapabilityCheck checker, int companyId);
public abstract bool ShowInMenu { get; }
public virtual Control CreateHeaderControl()
{
return null;
}
}
}
</code></pre>
</blockquote>
<p><strong>Update:</strong> The original author of the code <a href="http://mcfunley.com/438/from-the-annals-of-dubious-achievement" rel="nofollow">has outed himself</a> so I must give credit where it is due. <a href="http://mcfunley.com/" rel="nofollow">Dan McKinley</a> left the company I was with shortly after I started, and he talks more about the code, explaining some background and a few more "WTF's" that 'Richard' wrote.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184682#184682269Answer by Randyaa for What is the best comment in source code you have ever encountered?Randyaa2008-10-08T20:19:08Z2008-10-08T20:49:00Z<pre><code>Catch (Exception e) {
//who cares?
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184696#18469625Answer by Kip for What is the best comment in source code you have ever encountered?Kip2008-10-08T20:21:00Z2008-10-08T20:21:00Z<p>I have used this one on more than one occasion, when I've done some kind of non-obvious simplification to a mathematical formula that I don't feel like documenting:</p>
<pre><code>//this formula is right, work out the math yourself if you don't believe me
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184701#184701329Answer by Greg D for What is the best comment in source code you have ever encountered?Greg D2008-10-08T20:21:34Z2008-10-08T20:21:34Z<pre><code>// I'm sorry.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184720#18472054Answer by Kristopher Johnson for What is the best comment in source code you have ever encountered?Kristopher Johnson2008-10-08T20:24:09Z2008-10-08T20:24:09Z<p>At the top of a header file:</p>
<pre><code>/* Project : XYZ (Please somebody shoot me!)
*
* File : $Id: defs.h,v 1.1 $
*
* Purpose : Create havoc rather than peace among many nations
*
* History : Back-ported changes that were not in CVS. Please somebody,
* shoot us and put us all out of our misery.
*/
</code></pre>
<p>The "XYZ project" (name changed) was a seven-year ordeal. That last comment was written by the one stalwart soul who was involved from the very beginning through to the end. </p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184728#18472811Answer by bmdhacks for What is the best comment in source code you have ever encountered?bmdhacks2008-10-08T20:24:54Z2008-10-08T20:24:54Z<p>From <a href="http://groups.google.com/group/alt.folklore.computers/msg/ff9be1845aa1797e?hl=en&dmode=source" rel="nofollow">a classic from usenet</a>:</p>
<blockquote>
<p>Deep inside the Teradyne hardware modeler code is a routine that feeds a
whole bunch of hex numbers into a SYS$QIO call. The only comment is
'Weird magic happens here'. </p>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184734#1847342Answer by Kristopher Johnson for What is the best comment in source code you have ever encountered?Kristopher Johnson2008-10-08T20:26:01Z2008-10-08T20:26:01Z<pre><code>// This code sucks.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184746#1847464Answer by JosephStyons for What is the best comment in source code you have ever encountered?JosephStyons2008-10-08T20:29:51Z2008-10-08T20:29:51Z<pre><code>{
This is a gathering place for all unit tests.
Create a TUnitTestWrapper, then call "RunAllUnitTests".
This class will create an instance of each thing to be tested, and call each of
their unit tests.
It does not really do any testing on it's own; it just gives a common place from
which to call everyone else's tests.
This way, one day, we can automate our testing with each build. [Cue laughter]
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184755#1847559Answer by Groman for What is the best comment in source code you have ever encountered?Groman2008-10-08T20:32:50Z2008-10-08T20:49:54Z<pre><code>int Q13Factor = 8125; // 2^13 for Q13
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184795#18479525Answer by Milner for What is the best comment in source code you have ever encountered?Milner2008-10-08T20:42:02Z2009-04-06T10:07:18Z<pre><code>-- Comment this later
</code></pre>
<p>That was line 2 of a 4000+ line PL/SQL procedure. And the only comment. 4 years after that procedure was developed, later still hadn't come...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184807#18480711Answer by Robert S. for What is the best comment in source code you have ever encountered?Robert S.2008-10-08T20:43:58Z2008-10-08T20:43:58Z<p>In the header of a code file heavily edited by everyone on the dev team:</p>
<pre><code>'Avert your eyes, it may take on other forms!
</code></pre>
<p>Good ol' Flanders.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184835#18483525Answer by Andreas Petersson for What is the best comment in source code you have ever encountered?Andreas Petersson2008-10-08T20:49:57Z2008-10-08T20:49:57Z<p><a href="http://cm.bell-labs.com/who/dmr/odd.html" rel="nofollow">//You are not expected to understand this</a></p>
<p>classic.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184854#184854213Answer by Steve B. for What is the best comment in source code you have ever encountered?Steve B.2008-10-08T20:55:07Z2009-02-02T12:21:04Z<p>in a completely uncommented 2000 line method</p>
<pre><code>{
{
while (.. ){
if (..){
}
for (.. ){
}
.... (just putting in the control flow here, imagine another few hundred ifs)
if(..) {
if(..) {
if(..) {
...
(another few hundred brackets)
}
}
} //endif
</code></pre>
<p>(I actually grepped out all the brackets one day just to see how bad it was, and, sans formatting, got this:</p>
<pre><code>{{{{}}{}{}{}{}}{{}{{}{}{}{}{}{}{{}{}}{}{}{{}{}{}{}{}{}{}{}{}{}{}{{}}}{{}{{}}{{{}}}{{}{}{}{}{}{}{}{{}}{}{{{}}{}{{}{}}{{{}}{}{}{}{}}{{}}}{}{{}{}{}{{}{{}}{}}{{}}}{{}}{{}}{{}}{}{{}}{{}}{{}}{{}{}{}}{}{}{{{}}{{}}}{}{}{}{}}{{{}{{}{}{}{{}{}{}{}{}{}}{}}{{}}{{}{}}}{{}}{{}}}{{}}{{}}{}{}{}{}{{}}{{}{}{}{}}}}{}{}}{{}{{{}{}{}{}}}}{{}{{{}}}}{{}{{{}{{}}{}{{}}{}{{}{}}{{}}{}{{}}}{{}}}}{{}{}{}{}{}{{{} {{{{}}{}{}{}{}}{{}{{}{}{}{}{}{}{{}{}}{}{}{{}{}{}{}{}{}{}{}{}{}{}{{}}}{{}{{}}{{{}}}{{}{}{}{}{}{}{}{{}}{}{{{}}{}{{}{}}{{{}}{}{}{}{}}{{}}}{}{{}{}{}{{}{{}}{}}{{}}}{{}}{{}}{{}}{}{{}}{{}}{{}}{{}{}{}}{}{}{{{}}{{}}}{}{}{}{}}{{{}{{}{}{}{{}{}{}{}{}{}}{}}{{}}{{}{}}}{{}}{{}}}{{}}{{}}{}{}{}{}{{}}{{}{}{}{}}}}{}{}}{{}{{{}{}{}{}}}}{{}{{{}}}}{{}{{{}{{}}{}{{}}{}{{}{}}{{}}{}{{}}}{{}}}}{{}{}{}{}{}{{{}{}{{}}{}}}{}}{{}}{{}{}}{{}{{}{{}}}}{{{}{{{}}}}}{{{{{}}}}}{}{}{}{{{{}}}{}{}}{{}{{}}}}{}{{}}{}}}{}}{{}}{{}{}}{{}{{}{{}}}}{{{}{{{}}}}}{{{{{}}}}}{}{}{}{{{{}}}{}{}}{{}{{}}}}
</code></pre>
<p>The endif showed up around line 800)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184885#18488529Answer by ChalkTrauma for What is the best comment in source code you have ever encountered?ChalkTrauma2008-10-08T20:59:20Z2008-10-08T20:59:20Z<p>Simple but effective comment, before a less than safe hack in some C++ code</p>
<pre><code>// yikes
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184924#1849246Answer by rshimoda for What is the best comment in source code you have ever encountered?rshimoda2008-10-08T21:06:39Z2008-10-08T21:06:39Z<p>This was actually made by me when I was implementing a prototype turned into real code:</p>
<pre><code>// Abandon all hope you who needs to debug this
</code></pre>
<p>Yes, someone smarter than me actually refactored the code afterwards (it had to have a good ending).</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184949#1849494Answer by CobolGuy for What is the best comment in source code you have ever encountered?CobolGuy2008-10-08T21:11:36Z2008-10-08T21:11:36Z<ul>
<li>THIS PROGRAM HAS CODE THAT DOES NOT MEET STANDARDS </li>
</ul>
<p>That comment is in nearly every program we have here....</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184971#1849712Answer by catfood for What is the best comment in source code you have ever encountered?catfood2008-10-08T21:16:35Z2008-10-08T21:16:35Z<p>It's not strictly speaking a comment, but...</p>
<p>It was the mid-1990s and I was working on a big migration: small software vendor, <strong>big</strong> client, lots of pressure. We had a lot of shifting-goalpost stuff; the project was very hard to control. I was the key developer, but new to the system, and the other developer was the vendor's owner/founder.</p>
<p>After a few months of not quite making deadlines and not quite satisfying the client, the owner/founder brought on another developer, who was working remotely. (I'm gonna go out on a limb and say the new developer had lesser skills and experience than me.)</p>
<p>Well, the new guy made some changes in code that I'd already worked on, and then a month or two later I was back in the same area of the code, and there were variables I hadn't seen before. With names like <code>StupidMark</code>.</p>
<p>Dude, that's just not right. I mean, there's teamwork considerations, but also: in this environment, <em>variable names can show up in runtime error messages.</em> I'm just saying.</p>
<p>In my opinion at the time, the new guy's code wasn't getting us much closer to a deliverable product anyway, which made the insult sting a little more.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/184986#184986161Answer by John Chuckran for What is the best comment in source code you have ever encountered?John Chuckran2008-10-08T21:20:54Z2008-10-08T21:20:54Z<pre><code>// If this comment is removed the program will blow up
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185011#185011254Answer by rlerallut for What is the best comment in source code you have ever encountered?rlerallut2008-10-08T21:28:38Z2009-10-16T21:31:18Z<p>It speaks volumes about our profession that when asked about the "best comment", we all answer with the worst comments we can find...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185016#1850160Answer by unknown (yahoo) for What is the best comment in source code you have ever encountered?unknown (yahoo)2008-10-08T21:31:24Z2008-10-08T21:31:24Z<p>If you have reached this part in the code, then this program sucks.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185031#18503126Answer by who for What is the best comment in source code you have ever encountered?who2008-10-08T21:40:13Z2009-04-11T17:53:50Z<pre><code>using namespace std; // So sue me
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185053#18505364Answer by Simon Howard for What is the best comment in source code you have ever encountered?Simon Howard2008-10-08T21:47:45Z2008-10-09T22:13:39Z<p>The original Doom had an engine with static walls that could not move; the result was that all doors opened vertically; nothing could ever move horizontally. I burst out laughing when, after the source code was released, I was looking through the code and saw this in the source file for handling doors, at the start of a big block of commented-out code:</p>
<pre><code>// UNUSED
// Separate into p_slidoor.c?
#if 0 // ABANDONED TO THE MISTS OF TIME!!!
//
// EV_SlidingDoor : slide a door horizontally
// (animate midtexture, then set noblocking line)
//
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185062#1850622Answer by Darryl Hein for What is the best comment in source code you have ever encountered?Darryl Hein2008-10-08T21:51:05Z2008-10-08T21:51:05Z<pre><code>// but the "real" solution is much more complicated
</code></pre>
<p>from jpgraph</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185070#1850701Answer by Darryl Hein for What is the best comment in source code you have ever encountered?Darryl Hein2008-10-08T21:52:15Z2008-10-08T21:52:15Z<pre><code>// this is really complicated
</code></pre>
<p>with no other comments</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185106#185106417Answer by Jason Sundram for What is the best comment in source code you have ever encountered?Jason Sundram2008-10-08T22:07:17Z2008-10-08T22:07:17Z<pre><code>// Magic. Do not touch.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185115#18511511Answer by Milen A. Radev for What is the best comment in source code you have ever encountered?Milen A. Radev2008-10-08T22:09:02Z2008-10-08T22:09:02Z<pre><code>// Okay, let's do the loop, yeah come on baby let's do the loop
// and it goes like this ...
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185156#185156222Answer by Goran for What is the best comment in source code you have ever encountered?Goran2008-10-08T22:22:59Z2008-10-08T22:22:59Z<p>About the middle of a 30 page xslt</p>
<pre><code><!-- Here be dragons -->
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185165#1851654Answer by Federico Ramponi for What is the best comment in source code you have ever encountered?Federico Ramponi2008-10-08T22:25:58Z2008-10-08T22:25:58Z<pre><code>/* logic */
#ifndef TRUE
# define TRUE 1
#endif /* TRUE */
#ifndef FALSE
# define FALSE 0
#endif /* FALSE */
#define EOF_OK TRUE
#define EOF_NOT_OK FALSE
</code></pre>
<p>and the rest of the glorious <a href="http://www.ioccc.org/official/mkentry.c" rel="nofollow">mkentry.c</a> at the <a href="http://www0.us.ioccc.org/main.html" rel="nofollow">IOCCC</a> page. I can't keep laughing every time I read through this source.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185169#185169102Answer by Bobby Jack for What is the best comment in source code you have ever encountered?Bobby Jack2008-10-08T22:27:48Z2008-10-08T22:27:48Z<p>Try typing your favourite profanity into <a href="http://www.google.com/codesearch" rel="nofollow">google code search</a>, it whiles away many a dull hour. Some of my favourite examples:</p>
<pre><code>/* These magic numbers are f*cking stupid. */
/* Dear free software world, do you NOW see we are f*cking
things up?! This is insane! */
/* We will NOT put a f*cking timestamp in the header here. Every
time you put it back, I will come in and take it out again. */
# However, this only works if there are MULTIPLE checkboxes!
# The f*cking JS DOM *changes* based on one or multiple boxes!?!?!
# Damn damn damn I hate the JavaScript DOM so damn much!!!!!!
/* TODO: this is obviously not right ... this whole f*cking module
sucks anyway */
/* FIXME: please god, when will the hurting stop? Thus function is so
f*cking broken it's not even funny. */
</code></pre>
<p>and my personal favourite</p>
<pre><code> # code below replaces code above - any problems?
# yeah, it doesn't f*cking work.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185181#185181415Answer by Daniel Papasian for What is the best comment in source code you have ever encountered?Daniel Papasian2008-10-08T22:34:08Z2008-10-09T18:02:50Z<pre><code>// drunk, fix later
</code></pre>
<p>Wish I were kidding. And knowing the developer who wrote the code, I think he meant it literally.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185196#18519651Answer by Rulas for What is the best comment in source code you have ever encountered?Rulas2008-10-08T22:40:04Z2008-10-12T04:48:56Z<pre><code>// I have to find a better job
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185201#1852011Answer by Michael Easter for What is the best comment in source code you have ever encountered?Michael Easter2008-10-08T22:41:36Z2008-10-08T22:41:36Z<p>here are 4, in no order:</p>
<pre><code>// Father, forgive me, for I am sinning
// heaven help me
// horse string-length into correctitude
(from a textbook)
// what, me worry?
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185215#1852155Answer by David Collie for What is the best comment in source code you have ever encountered?David Collie2008-10-08T22:44:26Z2008-10-08T22:44:26Z<p>"This will never happen". </p>
<p>Famous last words my friend...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185246#1852460Answer by dsimcha for What is the best comment in source code you have ever encountered?dsimcha2008-10-08T22:53:55Z2008-10-08T22:53:55Z<p>(A bunch of code that's really weird looking) //Kludge.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185308#185308356Answer by Lateral for What is the best comment in source code you have ever encountered?Lateral2008-10-08T23:13:06Z2008-10-08T23:13:06Z<pre><code>return 1; # returns 1
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185550#185550188Answer by KevDog for What is the best comment in source code you have ever encountered?KevDog2008-10-09T01:03:58Z2009-03-18T11:05:11Z<pre><code>//This code sucks, you know it and I know it.
//Move on and call me an idiot later.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185564#1855644Answer by MrValdez for What is the best comment in source code you have ever encountered?MrValdez2008-10-09T01:10:18Z2008-10-10T00:15:03Z<p>A few hours after showing a friend <a href="http://www.codinghorror.com/blog/archives/001137.html" rel="nofollow">this post from Coding Horror</a>, I saw this comment on his code:</p>
<blockquote>
<p>// MrValdez is a violent Psychopath. Don't piss him off.</p>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185576#185576328Answer by Draemon for What is the best comment in source code you have ever encountered?Draemon2008-10-09T01:16:54Z2008-10-09T01:16:54Z<pre><code>/* This is O(scary), but seems quick enough in practice. */
</code></pre>
<p>followed by four nested for-loops</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185603#1856037Answer by witkamp for What is the best comment in source code you have ever encountered?witkamp2008-10-09T01:31:34Z2008-10-09T01:31:34Z<pre><code>// Bad Christian, No cookie
</code></pre>
<p>Cookie in this context does <strong>not</strong> refer to a browser cookie</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185712#185712219Answer by Mike for What is the best comment in source code you have ever encountered?Mike2008-10-09T02:29:17Z2008-10-09T02:37:53Z<pre><code>const int TEN=10; // As if the value of 10 will fluctuate...
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185720#18572011Answer by mattlant for What is the best comment in source code you have ever encountered?mattlant2008-10-09T02:32:04Z2008-10-09T02:32:04Z<pre><code>//The following code is commented out
//(a load of commented out code followed)
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185789#185789150Answer by Aidos for What is the best comment in source code you have ever encountered?Aidos2008-10-09T03:05:38Z2008-10-09T03:05:38Z<p>I went through a sleep-deprived coding run and started only writing comments that were quotes from Fight Club.</p>
<p>Still trawling through the code years later I find a comment that makes me laugh. Most of them just random thoughts. I did however keep my comments to lines ratio pretty good!</p>
<pre><code>
// This shouldn't happen. The only way this can happen is if the <code>JFileChooser</code> has returned a <code>File</code>
// that doesn't exist on the system. If this happens we can't recover, and there is more than likely a
// rip in the space time continuum that the user is too distracted by to notice anything else.
</code></pre>
<pre><code>
/**
* This method leverages collective synergy to drive "outside of the box" thinking and formulate key
* objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players
* to drive-up their core competencies and increase expectations with an all-around initiative to drive down
* the bottom-line. I really wanted to work the word "mandrolic" in there, but that word always makes me
* want to punch myself in the face.
*/
private void updateFileCountLabel() {
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185803#185803529Answer by Sergey Kornilov for What is the best comment in source code you have ever encountered?Sergey Kornilov2008-10-09T03:12:39Z2008-10-09T03:12:39Z<pre><code>// sometimes I believe compiler ignores all my comments
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185846#1858466Answer by Brad for What is the best comment in source code you have ever encountered?Brad2008-10-09T03:35:32Z2008-10-09T03:35:32Z<pre><code># absolutely foul heuristic code.
# ..it's dirty, but you want it.
</code></pre>
<p>and:</p>
<pre><code># VERY USEFUL DEBUGGING AID, for when the above all goes pearshaped:
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185853#1858531Answer by mos for What is the best comment in source code you have ever encountered?mos2008-10-09T03:38:39Z2008-10-09T03:38:39Z<p>Fresh out of college, I was eager to get my hands dirty. My first task was... "comment this code for me".</p>
<p>Fucker.</p>
<p>After awhile I got bored with it...</p>
<pre><code>// this function doesn't actually calculated the profit, like it says --it really signals the mothership orbiting saturn that the planet is ripe for takeover
[later]
// I don't think anyone is going to read this
[various permutations on that last one]
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185877#18587795Answer by Samat Jain for What is the best comment in source code you have ever encountered?Samat Jain2008-10-09T03:49:51Z2008-10-09T04:49:15Z<pre><code>/* Halley's comment */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185971#1859718Answer by TM for What is the best comment in source code you have ever encountered?TM2008-10-09T04:59:39Z2008-10-09T04:59:39Z<p>Actually saw this the other day, on some code that was written when there was a deadline rush.</p>
<pre><code>//This was clearly written under duress
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185979#18597922Answer by Mark Glorie for What is the best comment in source code you have ever encountered?Mark Glorie2008-10-09T05:06:25Z2008-10-09T05:06:25Z<p>Classic ASP: </p>
<pre><code>'Is it worth it, let me work it'
'I put my thing down, flip it and reverse it'
'Ti esrever dna ti pilf, nwod gniht ym tup I'
NextIP = StrReverse(UserRecordset.Fields.Item(0))
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185989#1859896Answer by Nelson LaQuet for What is the best comment in source code you have ever encountered?Nelson LaQuet2008-10-09T05:16:38Z2008-10-09T05:16:38Z<p>I found this when re-using a PHP class I wrote a fair amount of time ago. I still cant remember what went there and I still have found no use for it... I actually don't even remember me writing that comment; so I literally laughed out loud when I found it.</p>
<pre><code> try
{
// Some database logic
}
catch (Exception $ex)
{
// sure, it looks silly and I honestly cant remember what code used to go here... but i swear i will
// find a use for this code.... eventually....
throw $ex;
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185990#18599025Answer by Matias Nino for What is the best comment in source code you have ever encountered?Matias Nino2008-10-09T05:19:18Z2008-10-09T05:19:18Z<pre><code>'NO COMMENT
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185998#18599854Answer by Nelson LaQuet for What is the best comment in source code you have ever encountered?Nelson LaQuet2008-10-09T05:23:39Z2008-10-09T05:23:39Z<p><strong>LANGUAGE!</strong></p>
<pre><code>## fucking imap fucking sucks. what the FUCK kind of committee of
## dunces designed this shit.
## imap talks about 'unique ids' for messages, to be used for
## cross-session identification. great---just what sup needs! except
## it turns out the uids can be invalidated every time the
## 'uidvalidity' value changes on the server, and 'uidvalidity' can
## change without restriction. it can change any time you log in. it
## can change EVERY time you log in. of course the imap spec "strongly
## recommends" that it never change, but there's nothing to stop
## people from just setting it to the current timestamp, and in fact
## that's exactly what the one imap server i have at my disposal
## does. thus the so-called uids are absolutely useless and imap
## provides no cross-session way of uniquely identifying a
## message. but thanks for the "strong recommendation", guys!
## so right now i'm using the 'internal date' and the size of each
## message to uniquely identify it, and i scan over the entire mailbox
## each time i open it to map those things to message ids. that can be
## slow for large mailboxes, and we'll just have to hope that there
## are no collisions. ho ho! a perfectly reasonable solution!
## fuck you, imap committee. you managed to design something as shitty
## as mbox but goddamn THIRTY YEARS LATER.
</code></pre>
<p>...</p>
<pre><code> ## ok, this is FUCKING ANNOYING.
##
## what imap.rb likes to do is, if an exception occurs, catch it
## and re-raise it on the calling thread. seems reasonable. but
## what that REALLY means is that the only way to reasonably
## initialize imap is in its own thread, because otherwise, you
## will never be able to catch the exception it raises on the
## calling thread, and the backtrace will not make any sense at
## all, and you will waste HOURS of your life on this fucking
## problem.
##
## FUCK!!!!!!!!!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186140#186140136Answer by Roalt for What is the best comment in source code you have ever encountered?Roalt2008-10-09T06:31:05Z2009-04-16T09:32:32Z<p>One of the most classic ones is the comment made by Pierre de Fermat about his well-known "Last theorem": "The margin of this page is a bit too small to write down the proof".</p>
<p>It took more than 350 years before the proof was found...</p>
<p>(According to <a href="http://en.wikipedia.org/wiki/Fermat%27s%5FLast%5FTheorem" rel="nofollow">wikipedia</a> this is the original text:)</p>
<blockquote>
<p>Cubum autem in duos cubos, aut
quadratoquadratum in duos
quadratoquadratos, et generaliter
nullam in infinitum ultra quadratum
potestatem in duos eiusdem nominis fas
est dividere cuius rei demonstrationem
mirabilem sane detexi. Hanc marginis
exiguitas non caperet.</p>
</blockquote>
<p>...and translated into English:</p>
<blockquote>
<p>(It is impossible to separate a cube
into two cubes, or a fourth power into
two fourth powers, or in general, any
power higher than the second into two
like powers. I have discovered a truly
marvellous proof of this, which this
margin is too narrow to contain.)</p>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186286#1862866Answer by Enrico Campidoglio for What is the best comment in source code you have ever encountered?Enrico Campidoglio2008-10-09T07:41:53Z2008-10-09T07:41:53Z<p>Found in the JUnit API:</p>
<pre><code>/**
* ...as the moon sets over the early morning Merlin, Oregon
* mountains, our intrepid adventurers type...
*/
public Test createTest(Class theClass, String name) {
...
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186309#186309632Answer by Tuoski for What is the best comment in source code you have ever encountered?Tuoski2008-10-09T07:52:35Z2008-10-09T07:52:35Z<pre><code>stop(); // Hammertime!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186395#1863956Answer by ThatBloke for What is the best comment in source code you have ever encountered?ThatBloke2008-10-09T08:24:16Z2008-10-09T08:24:16Z<p>Some of the very few comments in 5000+ lines of code in one file<br>
I actually has an argument with the coder who defended his coding style...<br>
No comment!<br>
And there were no comments;-) (or very few)<br>
Sadly this is production code.</p>
<pre>
<code>
offset=1;
for (i=0;i<=len;i++)
{
if ((i!=0)&&(i<len)) <b>//-3</b>
{
switch(mess[i])
{
case ETX:
case ETB:
case DLE:
buf[offset]=DLE;
offset++;
break;
}
}
buf[offset]=mess[i];
offset++;
}
</code>
</pre>
<p>I love the switch!</p>
<pre>
<code>
for (n=0;n<offset;n++)
{
Sleep(TR); <b>//Modif A</b>
Sleep(T);<b>//</b>
FWriteFile(hCom,buf+n,1,&dwMot,NULL);
if (ECHO)
FReadFile(hCom,tab,1,&dwMot,NULL);
}
</code>
</pre>
<p>and no, there are no comments explaining what "modif A" is in the header.</p>
<pre>
<code>
if (GetFileSize(hSlotFile,NULL)==3600) //5*720
</code>
</pre>
<p>and what's 720?</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186434#1864345Answer by Pev for What is the best comment in source code you have ever encountered?Pev2008-10-09T08:42:59Z2008-10-09T08:42:59Z<p>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".</p>
<p>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'. </p>
<p>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: </p>
<p>/* Perkele ISO Puukko! */ -> Fucking Big Hack!</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186457#1864575Answer by belugabob for What is the best comment in source code you have ever encountered?belugabob2008-10-09T08:56:49Z2008-10-12T04:54:31Z<p>Seen in the source code for LucasArts' computer game 'The Eidolon' (Which was wierd and wacky in it's own right)...</p>
<pre><code>// He's dead, Jim!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186579#1865794Answer by trshiv for What is the best comment in source code you have ever encountered?trshiv2008-10-09T09:50:37Z2008-10-12T04:55:10Z<pre><code>/* My lawyer told me not to reveal */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186967#186967478Answer by R.A for What is the best comment in source code you have ever encountered?R.A2008-10-09T12:07:26Z2008-10-09T12:07:26Z<pre><code>// I dedicate all this code, all my work, to my wife, Darlene, who will
// have to support me and our three children and the dog once it gets
// released into the public.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/186988#18698825Answer by Sir Psycho for What is the best comment in source code you have ever encountered?Sir Psycho2008-10-09T12:12:23Z2008-10-09T12:12:23Z<pre><code>//Abandon all hope yea who enter beyond this point
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/187163#1871637Answer by Richard Turner for What is the best comment in source code you have ever encountered?Richard Turner2008-10-09T13:05:52Z2008-10-09T13:05:52Z<pre><code>// TODO - Comment this function
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/187183#18718333Answer by Martin Brown for What is the best comment in source code you have ever encountered?Martin Brown2008-10-09T13:10:23Z2008-10-09T13:10:23Z<p>A classic case of why you shouldn't off shore your software development:</p>
<pre><code>public class Contact
{
//...
/// <summary>
/// Gets or sets the name of the first.
/// </summary>
/// <value>The name of the first.</value>
public string FirstName
{
get { return _firstName; }
set { _firstName = value; }
}
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/187215#18721535Answer by ControlBreak for What is the best comment in source code you have ever encountered?ControlBreak2008-10-09T13:19:37Z2008-10-09T13:19:37Z<pre><code>Repeat
...
Until (JesusChristsReturn) ' Not sure
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/187223#1872234Answer by Retne for What is the best comment in source code you have ever encountered?Retne2008-10-09T13:22:03Z2008-10-09T13:22:03Z<p>-- Change Log: Not needed. The code is perfect 'cause I wrote it.
--If you change it, it will break.</p>
<p>I'm in the middle of reviewing some code comments to check they make sense, and saw the modest line above.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/187405#187405331Answer by Sean for What is the best comment in source code you have ever encountered?Sean2008-10-09T14:03:55Z2008-10-09T14:03:55Z<pre><code>long john; // silver
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/187549#18754935Answer by forcripesake for What is the best comment in source code you have ever encountered?forcripesake2008-10-09T14:35:27Z2008-10-09T14:35:27Z<pre><code>//There can Only Be one HIGHLAN....err..Singleton
public class SomeSingleton
{
...
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/187565#18756543Answer by kjensen for What is the best comment in source code you have ever encountered?kjensen2008-10-09T14:40:48Z2009-03-05T18:35:10Z<pre><code>virgin = 0; /* you're not a virgin anymore, sweety */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/187599#1875997Answer by Guido García for What is the best comment in source code you have ever encountered?Guido García2008-10-09T14:50:49Z2009-04-11T18:23:41Z<pre><code>i++; // increment variable i
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/188042#1880421Answer by xmotogodx for What is the best comment in source code you have ever encountered?xmotogodx2008-10-09T16:22:53Z2009-04-19T09:27:58Z<p>Comment in our Enterprise Class system used for Government purposes</p>
<pre><code>'RH 5/24/06 burn me if this dosn't work.. :)
</code></pre>
<p>Good ole RH.....company Prez/Lead Developer</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/188063#18806314Answer by Collin Estes for What is the best comment in source code you have ever encountered?Collin Estes2008-10-09T16:27:44Z2008-10-09T16:27:44Z<p>//open lid</p>
<p>//take sh!t</p>
<p>//close lid</p>
<p>Comments for a File open, data dump, file close...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/188100#18810017Answer by Charlie for What is the best comment in source code you have ever encountered?Charlie2008-10-09T16:36:22Z2008-10-09T16:36:22Z<p>When writing some Perl years ago, I added these comments at the top and bottom:</p>
<pre><code># <magic type="voodoo">
...
# </magic>
</code></pre>
<p>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...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/188413#18841324Answer by itsmatt for What is the best comment in source code you have ever encountered?itsmatt2008-10-09T17:57:02Z2008-10-09T17:57:02Z<p>// Catching exceptions is for communists</p>
<p>From <a href="http://www.mikeduncan.com/sqlite-on-dotnet-in-3-mins" rel="nofollow">Mike Duncan's page on SQLite</a>.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189279#1892797Answer by André for What is the best comment in source code you have ever encountered?André2008-10-09T21:26:57Z2008-10-09T21:26:57Z<p>In the header of an XSLT file:</p>
<p>DON'T TOUCH THIS SCRIPT -> XSLT is like arcane, black magic</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189302#18930211Answer by MattC for What is the best comment in source code you have ever encountered?MattC2008-10-09T21:34:33Z2008-10-09T21:34:33Z<pre><code>// Hard to explain
</code></pre>
<p>It ended up being broken, too. No wonder it was hard to explain</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189312#18931210Answer by runT1ME for What is the best comment in source code you have ever encountered?runT1ME2008-10-09T21:36:02Z2008-10-09T21:36:02Z<p>I believe in JBoss somewhere there was a line that read</p>
<p>return null; //Not really null</p>
<p>I always liked that line. </p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189503#18950344Answer by DGentry for What is the best comment in source code you have ever encountered?DGentry2008-10-09T22:51:36Z2008-10-09T22:51:36Z<pre>
* ...and don't just declare it volatile and think you've solved
* the problem. You young punks think you know what volatile
* means... why in my day we had to cast it volatile uphill
* both ways, and the code still didn't work! Whippersnappers...
</pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189551#18955127Answer by Bill James for What is the best comment in source code you have ever encountered?Bill James2008-10-09T23:12:13Z2009-04-23T02:34:34Z<pre>
// The following strings are meant to be funny. Do not edit these strings
// unless you are funny, too. If you don't know if you're funny, you're
// not funny. If fewer than 2 people unrelated to you have told you that
// you're funny, you're not funny.
</pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189713#1897132Answer by moffdub for What is the best comment in source code you have ever encountered?moffdub2008-10-10T00:33:33Z2008-10-10T00:33:33Z<p>Upon being forced to write unit tests for anemic domain objects that are nothing but bags of getters and setters (which I was forced to write as well):</p>
<pre><code>// zzzzZZZZzzzz....
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189732#18973233Answer by Mike Two for What is the best comment in source code you have ever encountered?Mike Two2008-10-10T00:43:23Z2008-10-12T04:53:32Z<pre><code>// human madable inconvenient. Way too sucks.
</code></pre>
<p>I still don't fully understand what it means, but I have found it to be very true about a lot of code.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189740#18974056Answer by Mark Bessey for What is the best comment in source code you have ever encountered?Mark Bessey2008-10-10T00:45:16Z2009-04-23T14:09:16Z<pre><code>// I know the line below is wrong, but it came that way from our IP vendor, and
// the driver won't work if you "fix" it. I've had to revert this change 4 times
// now. Leave it alone, or I will hunt you down and hurt you
if (r = 0) {
/* bunch of code here */
}
else
{
/* even more code here */
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189748#1897481Answer by andy for What is the best comment in source code you have ever encountered?andy2008-10-10T00:50:27Z2008-10-10T00:50:27Z<p>The ascii-art skull and crossbones (which is too difficult to recreate here) in <a href="http://en.wikipedia.org/wiki/Gosling_Emacs" rel="nofollow">Gosling's Emacs</a> source (warning that the ultra-hot screen management package he wrote was not easily understood).</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189858#18985833Answer by Federico Ramponi for What is the best comment in source code you have ever encountered?Federico Ramponi2008-10-10T01:52:54Z2008-10-10T02:09:44Z<p>Another classic, by Donald Knuth no less:</p>
<p>Beware of bugs in the above code;
I have only proved it correct, not tried it.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189859#189859280Answer by poppavein for What is the best comment in source code you have ever encountered?poppavein2008-10-10T01:54:03Z2008-10-10T01:54:03Z<pre><code>/*
* You may think you know what the following code does.
* But you dont. Trust me.
* Fiddle with it, and youll spend many a sleepless
* night cursing the moment you thought youd be clever
* enough to "optimize" the code below.
* Now close this file and go play with something else.
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189862#1898622Answer by Chris Noe for What is the best comment in source code you have ever encountered?Chris Noe2008-10-10T01:56:19Z2008-10-10T01:56:19Z<pre>
// set break point here - you'll never reach it
</pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/189938#1899382Answer by Parappa for What is the best comment in source code you have ever encountered?Parappa2008-10-10T02:38:14Z2008-10-10T02:38:14Z<p>A funny typo that was strangely appropriate:</p>
<p><code>assert(0); // should never shit this point</code></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/190046#19004687Answer by Abarax for What is the best comment in source code you have ever encountered?Abarax2008-10-10T03:43:18Z2008-10-10T03:43:18Z<pre><code>// I am not sure if we need this, but too scared to delete.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/190139#19013965Answer by NeilDurant for What is the best comment in source code you have ever encountered?NeilDurant2008-10-10T04:39:27Z2008-10-10T04:39:27Z<pre><code>if(m_measures =/*=*/ --index)
{
....
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/190535#19053511Answer by Christoph Schiessl for What is the best comment in source code you have ever encountered?Christoph Schiessl2008-10-10T08:40:20Z2008-10-10T08:40:20Z<p>I don't remember exactly, but the idea was something like this:</p>
<pre><code>Person p = new Person("John", "Doe", "male");
Collection women = new ArrayList();
women.insert(p.getTail());
</code></pre>
<p>It's dirty code ;)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/190866#1908661Answer by TariqKhanani for What is the best comment in source code you have ever encountered?TariqKhanani2008-10-10T11:12:38Z2008-10-10T11:12:38Z<p>/<strong>***********************</strong> Drag And Drop Section - Start (you should be me to mess with this section)<strong>*****************************************</strong>/</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/190869#1908691Answer by TariqKhanani for What is the best comment in source code you have ever encountered?TariqKhanani2008-10-10T11:13:41Z2009-04-19T09:27:08Z<pre><code>if(count<0) count=0; //don't get me wrong but this has to be done :p
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/191005#1910055Answer by Tuna Toksoz for What is the best comment in source code you have ever encountered?Tuna Toksoz2008-10-10T12:16:31Z2008-10-12T05:12:18Z<p>Not a comment but an attribute</p>
<pre><code>[ThereBeDragons]
</code></pre>
<p>And one I have seen in an implementation of IHttpHandler</p>
<pre><code>//What is this?
public bool IsReusable
{
get{return false;}
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/191049#1910491Answer by R. Bemrose for What is the best comment in source code you have ever encountered?R. Bemrose2008-10-10T12:35:47Z2008-10-10T12:35:47Z<pre><code> try {
dataSource.close();
}
catch (SQLException ex) {
// Do nothing, since we're going to trash this anyway
}
</code></pre>
<p>Of course, this sort of thing is actually a wtf in JDBC (or at least Oracle's JDBC driver) as it can throw SQLExceptions when closing a connection...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/191525#1915256Answer by Baishampayan Ghose for What is the best comment in source code you have ever encountered?Baishampayan Ghose2008-10-10T14:18:44Z2008-10-10T14:18:44Z<blockquote>
<p>Beware of bugs in the above code; I have only proved it correct, not tried it. </p>
</blockquote>
<p>That one is by Donald Knuth.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/191918#1919187Answer by Dr. Bob for What is the best comment in source code you have ever encountered?Dr. Bob2008-10-10T15:37:34Z2008-10-10T15:37:34Z<blockquote>
<p><code>// Whoever put this here is an idiot...this doesn't work at all !</code></p>
</blockquote>
<p>But the code is still there...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/192010#1920101Answer by hmcclungiii for What is the best comment in source code you have ever encountered?hmcclungiii2008-10-10T15:55:26Z2008-10-10T15:55:26Z<p>Nice one in VB.NET that I ran into this morning, got a chuckle ...</p>
<pre><code>''' <summary>
''' Represents an exception that was logged. Since System.Exception implements IDictionary, it can't be
''' serialized, so I had to write this. Pretty fucking stupid thing to have to do, System.Exception should
''' be serializable right out of the box, IMHO.
''' </summary>
''' <remarks></remarks>
Public Class LogException
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/192040#19204021Answer by JB King for What is the best comment in source code you have ever encountered?JB King2008-10-10T16:02:04Z2008-10-10T16:02:04Z<pre><code>catch (Ex as Exception)
{
// oh crap, we should do something.
}
</code></pre>
<p>Nothing like an empty catch block to make one feel that the code is robust....</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/192098#19209818Answer by Martin Brown for What is the best comment in source code you have ever encountered?Martin Brown2008-10-10T16:16:41Z2008-10-10T16:16:41Z<pre><code>/// <summary>
/// The possible outcomes of an update operation (save or delete)
/// </summary>
public enum UpdateResult
{
/// <summary>
/// Updated successfully
/// </summary>
Success = 0,
/// <summary>
/// Updated successfully
/// </summary>
Failed = 1
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/192155#1921550Answer by Kasper for What is the best comment in source code you have ever encountered?Kasper2008-10-10T16:29:25Z2008-10-10T16:29:25Z<p>i just noticed myself writing this</p>
<pre><code>// not brilliant solution, but fair enough heh.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/192823#192823226Answer by gedevan for What is the best comment in source code you have ever encountered?gedevan2008-10-10T19:54:35Z2008-10-10T19:54:35Z<pre><code>try {
} finally { // should never happen
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/193577#1935778Answer by Dano for What is the best comment in source code you have ever encountered?Dano2008-10-11T01:42:40Z2008-10-12T05:14:06Z<p>i tell a mentee to do at least SOME exception handling. This is what i get in return around every db call....</p>
<pre><code>Catch (Exception e) {
//eat it
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/193705#19370581Answer by Knobloch for What is the best comment in source code you have ever encountered?Knobloch2008-10-11T05:39:51Z2009-11-07T11:54:10Z<pre><code>/* Emits a 7-Hz tone for 10 seconds.
True story: 7 Hz is the resonant frequency of a
chicken's skull cavity. This was determined
empirically in Australia, where a new factory
generating 7-Hz tones was located too close to a
chicken ranch: When the factory started up, all the
chickens died.
Your PC may not be able to emit a 7-Hz tone. */
main()
{
sound(7);
delay(10000);
nosound();
}
</code></pre>
<p>(the sound function in the Turbo C version 2.0 Reference Guide)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194065#1940650Answer by John Nilsson for What is the best comment in source code you have ever encountered?John Nilsson2008-10-11T13:23:21Z2008-10-11T13:23:21Z<pre><code>[onload_1;block=begin;when 1=0]
Some of the techinques in this template are rather obscure, just trust me, they need to be there.
OTOH a better sollution would be to create a few seperate templates and pick one in the php-script...
[onload_1;block=end]
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194269#19426986Answer by Chris Jefferson for What is the best comment in source code you have ever encountered?Chris Jefferson2008-10-11T16:23:05Z2009-03-16T00:11:13Z<pre><code>// I don't know why I need this, but it stops the people being upside-down
x = -x;
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194372#19437221Answer by RoadWarrior for What is the best comment in source code you have ever encountered?RoadWarrior2008-10-11T17:51:21Z2008-10-11T17:51:21Z<pre><code>// This procedure is <strong>really</strong> good for your dorsolateral prefrontal cortex.</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194393#19439334Answer by RoadWarrior for What is the best comment in source code you have ever encountered?RoadWarrior2008-10-11T18:12:43Z2008-10-11T18:12:43Z<pre><code>// Any maintenance developer who can't quote entire Monty Python
// movies from memory has no business being a developer.
const string LancelotsFavoriteColor = "$0204FB"</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194433#1944335Answer by __ for What is the best comment in source code you have ever encountered?__2008-10-11T18:45:10Z2009-04-30T21:23:41Z<pre><code>Case 1:
...
break;
...
//I don't want do do this but [my coworker] says it's part of the code standard
default:
break;
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194475#194475150Answer by Josh Segall for What is the best comment in source code you have ever encountered?Josh Segall2008-10-11T19:23:56Z2008-10-11T19:23:56Z<p>From Java 1.2 SwingUtilities:</p>
<pre><code>doRun.run(); // ... "a doo run run".
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194506#1945063Answer by Chris for What is the best comment in source code you have ever encountered?Chris2008-10-11T19:45:15Z2008-10-11T19:45:15Z<p>Not really a comment:</p>
<pre><code>DvLog::Log("This silly log message fixes a PSCRIPT5.DLL gpf when printing to Adobe.");
</code></pre>
<p>Sad thing is that without the comment, PSCRIPT5.DLL really did blow up ...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194720#1947206Answer by Joshua for What is the best comment in source code you have ever encountered?Joshua2008-10-11T22:08:40Z2009-04-24T13:17:08Z<pre><code>'Do not optimize these next two lines. Compiler bugs lurk.
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194743#1947439Answer by interstar for What is the best comment in source code you have ever encountered?interstar2008-10-11T22:24:12Z2008-10-11T22:41:16Z<p>A German comment in some source-code, translated by machine or very tired human + Google </p>
<pre><code>; Rechnen ja ; have faith in yes
</code></pre>
<p>I guess the original meant "assume true here" ... but ever since I've taken it as a mantra for my life.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/195155#1951554Answer by smaclell for What is the best comment in source code you have ever encountered?smaclell2008-10-12T06:41:25Z2008-10-12T06:41:25Z<p>This is my favourite comment ever.</p>
<pre><code>/// I intend to do this as shittily as possible because there are many better products that will totally blow this out of the water
/// and we don't have them so whatever
</code></pre>
<p>Later on in the file we have more fun like</p>
<pre><code>/// sidestep a bug in WCF (that we can't send types across)
/// or, depending on how you look at, this issue is a Feature
</code></pre>
<p>And again later</p>
<pre><code>if( where == null)//be nice
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/195187#19518718Answer by sbeskur for What is the best comment in source code you have ever encountered?sbeskur2008-10-12T07:18:34Z2008-10-12T15:53:52Z<p>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.</p>
<pre><code>/*
* @author Andrew Asta
*/
public class AstaClass{
private String astaVar1;
private String astaVar2;
private String astaVar3;
private String astaVar4;
private String astaVar5;
private String astaVar6;
private String astaVar7;
private String astaVar8;
private String astaVar9;
private String astaVar10;
public void AstaSaysGetData(){
//JDBC statement to populate astavars 1 through 10
//...
String astaSqlStatment = "Select astaCol1, astaCol2, astaCol3... From AstaTable Where...";
//..
//...
}
//Perform data manipulation on astavars...
public void AstaSaysGaaGaa(){
[removed for sake of brevity]
}
//Perform more data manipulation on astavars...
public void AstaSaysGooGoO(){
[removed for sake of brevity]
}
public void AstaSaysPersist(){
//JDBC statement to save astavars to DB
String astaSqlStatment = "Update AstaTable set astaCol1 = @astaVar1
, set astaCol2 = @astaVar2
, set astaCol3 = astaCol3...
Where...";
}
}
</code></pre>
<p>PS I changed the actual authors real name so as to avoid me getting in any disputes etc...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/195196#1951961Answer by Rick for What is the best comment in source code you have ever encountered?Rick2008-10-12T07:29:27Z2008-10-25T09:39:35Z<p>Found in the main trigger code for transactions in an OLTP database:</p>
<pre><code>-- This line negates the @inverseqty, which is the
-- negative of the @insertedquantity. This works through the
-- magic of the trigger. In fact, this code is a lot like
-- the bermuda triangle!
@negquantity = -1 * @inverseqty
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/195198#19519869Answer by Hafthor for What is the best comment in source code you have ever encountered?Hafthor2008-10-12T07:30:02Z2008-10-12T07:30:02Z<pre><code> mov si, pCard ; captain?
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/195199#19519920Answer by kender for What is the best comment in source code you have ever encountered?kender2008-10-12T07:30:35Z2008-10-12T07:30:35Z<p>There was some old javascript code, quite well written tho. Then was a comment line </p>
<pre><code>// and there is where the dragon lives
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/195418#19541810Answer by stuartcw for What is the best comment in source code you have ever encountered?stuartcw2008-10-12T12:18:46Z2009-10-22T20:53:21Z<p>In a well known commercial DOS spreadsheet application:</p>
<pre><code>/* This comment was just added in order to check-in a file that was last
checked in by [Insert Programmer FirstName] "Back-to-the-Future" [Insert
Programmer LastName]. While testing for year 2000 problems, he accidentally
checked-in this file while his machine clock was set forward to the year 2000.
This meant that the source code was always newer than the object file and
compiled every time the code was built. I'm checking this file in again to
fix that. */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/195432#1954321Answer by Rob Wells for What is the best comment in source code you have ever encountered?Rob Wells2008-10-12T12:30:02Z2008-10-12T12:30:02Z<p>I inherited a project that haad been delivered to the customer without any UAT. It was dropkicked over the fence and the money requested.</p>
<p>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.</p>
<p>Many system calls had been forgotten.</p>
<p>When I got onboard the code was laced with such gems as:</p>
<pre><code>/* core dumps around here but this is hardly ever called */
</code></pre>
<p>and</p>
<pre><code>/* don't know why this works but it seeems to be ok */
</code></pre>
<p>Oh, and there were no unit tests. A colleague had started to add the missing system calls and unit tests.</p>
<p>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!</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/195705#19570511Answer by Richard T for What is the best comment in source code you have ever encountered?Richard T2008-10-12T17:05:06Z2008-10-12T17:05:06Z<p>Q: "What is the best comment in source code you have ever encountered?"</p>
<p>A: Easy - the one that helped me solve whatever problem I was having at the time, and there are lots of those!</p>
<p>Second best are those that help guide new development from avoiding known pitfalls.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/196132#1961322Answer by Nat for What is the best comment in source code you have ever encountered?Nat2008-10-12T21:29:12Z2008-10-12T22:07:11Z<pre><code>' Oh man I'm pissed. I think I better go home.
</code></pre>
<p>where pissed = drunk</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/196782#1967821Answer by Jayakrishnan K for What is the best comment in source code you have ever encountered?Jayakrishnan K2008-10-13T05:29:08Z2008-10-13T05:29:08Z<p>//Not a bug, parameter position can change..., if you think this is wrong, you are in fact wrong.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/196886#1968860Answer by noocyte for What is the best comment in source code you have ever encountered?noocyte2008-10-13T06:54:03Z2008-10-13T06:54:03Z<blockquote>
<p>// Jay knows what's going on here, but will he remember in a year? Not very likely, this code sucks, but it works so do not change it.</p>
</blockquote>
<p>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). ;)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/196919#19691942Answer by Mauro for What is the best comment in source code you have ever encountered?Mauro2008-10-13T07:29:33Z2008-10-13T07:29:33Z<p>on leaving my last job I embedded some ascii art into the source...</p>
<pre>
,_-=(!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`
'''''
</pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/196934#1969344Answer by Andreas Magnusson for What is the best comment in source code you have ever encountered?Andreas Magnusson2008-10-13T07:36:59Z2008-10-13T07:36:59Z<pre><code>// THE LOOP THAT DO EVERYTHING!!!!!!!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/197847#1978477Answer by jpinto3912 for What is the best comment in source code you have ever encountered?jpinto39122008-10-13T14:53:00Z2008-10-13T14:53:00Z<p>From a lad that clearly had been watching Monty Python:</p>
<blockquote>
<pre><code>> // And now, for something completely
> // different:
</code></pre>
<p>class theLarch{</p>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/197874#19787416Answer by Paul Lalonde for What is the best comment in source code you have ever encountered?Paul Lalonde2008-10-13T14:58:34Z2009-05-13T11:10:00Z<p>From the source code of the UNIX flavor of the Netscape web browser, circa 1997:</p>
<pre><code>/* HP-UX sucks wet farts from dead pigeons' asses */
</code></pre>
<p>Such pearls were unfortunately removed before Moz went open-source ...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/197879#1978790Answer by Dan for What is the best comment in source code you have ever encountered?Dan2008-10-13T14:59:48Z2009-04-19T09:41:33Z<p>Sanitized:</p>
<pre><code>//Forward declarations:
class X {}; // TODO: Remove {} ! When we get X defined....
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/199806#19980628Answer by XCondE for What is the best comment in source code you have ever encountered?XCondE2008-10-14T02:18:23Z2009-03-05T18:46:07Z<p>On the linux 1.0 kernel scheduler (sched.c):</p>
<blockquote>
<p>Djikstra probably hates me.</p>
</blockquote>
<pre><code>/*
* 'schedule()' is the scheduler function. It's a very simple and nice
* scheduler: it's not perfect, but certainly works for most things.
* The one thing you might take a look at is the signal-handler code here.
*
* NOTE!! Task 0 is the 'idle' task, which gets called when no other
* tasks can run. It can not be killed, and it cannot sleep. The 'state'
* information in task[0] is never used.
*
* The "confuse_gcc" goto is used only to get better assembly code..
* Djikstra probably hates me.
*/
asmlinkage void schedule(void)
</code></pre>
<p>(...)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/200024#2000246Answer by Matt for What is the best comment in source code you have ever encountered?Matt2008-10-14T04:34:36Z2008-10-14T04:34:36Z<p>// Houston, we have a problem</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/200038#2000381Answer by Pat for What is the best comment in source code you have ever encountered?Pat2008-10-14T04:47:55Z2009-04-19T09:42:09Z<pre><code>// No women, no children... What movie???
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/200154#200154-2Answer by Hemal Pandya for What is the best comment in source code you have ever encountered?Hemal Pandya2008-10-14T06:13:09Z2008-10-14T06:13:09Z<p>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. </p>
<p>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.</p>
<pre><code>C="Lint says "argument Manual isn't used." What's that
mean?";
</code></pre>
<p>No prices for guessing the output from lint. </p>
<p>And for the curious, that entry is <a href="http://www0.us.ioccc.org/1985/sicherman.c" rel="nofollow">here</a>. </p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/203901#20390116Answer by blindauer for What is the best comment in source code you have ever encountered?blindauer2008-10-15T06:54:24Z2008-10-15T06:54:24Z<p>I see this one a <em>lot</em>:</p>
<pre><code>// TODO make this work
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/204187#20418710Answer by Joshi Spawnbrood for What is the best comment in source code you have ever encountered?Joshi Spawnbrood2008-10-15T09:48:09Z2008-10-15T09:48:09Z<p>Production source code:</p>
<p>// Remove this if you wanna be fired</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/204235#20423521Answer by Anonymous for What is the best comment in source code you have ever encountered?Anonymous2008-10-15T10:13:13Z2009-04-28T09:31:23Z<p>Top of sqlite source files:</p>
<pre><code>/*
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/208240#2082402Answer by Aleske for What is the best comment in source code you have ever encountered?Aleske2008-10-16T11:54:48Z2008-10-16T11:54:48Z<pre><code> // WARNING!!!
// Very perversive code ahead!
... about a 20 lines of "very perversive" code ...
// Now you can call your grandmother back. ;)
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/210422#21042219Answer by tj111 for What is the best comment in source code you have ever encountered?tj1112008-10-16T21:45:36Z2008-10-16T21:45:36Z<p>A comment I added to a PHP CMS I was working on a while back.</p>
<pre><code>if (/*you*/ $_GET['action']) { //celebrate
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/211173#2111731Answer by metao for What is the best comment in source code you have ever encountered?metao2008-10-17T05:41:17Z2008-10-17T05:41:17Z<p>"f**k me gently with a chainsaw"</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/215166#21516634Answer by Russell Bryant for What is the best comment in source code you have ever encountered?Russell Bryant2008-10-18T15:28:31Z2008-10-18T15:28:31Z<pre><code> /* Mark: If there's one thing you learn from this code, it is this...
Never, ever fly Air France. Their customer service is absolutely
the worst. I've never heard the words "That's not my problem" as
many times as I have from their staff -- It should, without doubt
be their corporate motto if it isn't already. Don't bother giving
them business because you're just a pain in their side and they
will be sure to let you know the first time you speak to them.
If you ever want to make me happy just tell me that you, too, will
never fly Air France again either (in spite of their excellent
cuisine).
Update by oej: The merger with KLM has transferred this
behaviour to KLM as well.
Don't bother giving them business either...
Only if you want to travel randomly without luggage, you
might pick either of them.
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216127#2161270Answer by Paul Coddington for What is the best comment in source code you have ever encountered?Paul Coddington2008-10-19T07:08:10Z2008-10-19T07:08:10Z<pre><code>Fix problem where Nulls don't work properly. Stupid Microsoft!
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216139#2161396Answer by Bedwyr Humphreys for What is the best comment in source code you have ever encountered?Bedwyr Humphreys2008-10-19T07:36:50Z2008-10-19T07:36:50Z<pre><code>// fix for groupid > 9
// if groupid ever gets to 100 everything will break (again)
if (groupid < 10) {
groupid = "0" + groupid;
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216159#2161595Answer by edomaur for What is the best comment in source code you have ever encountered?edomaur2008-10-19T07:59:33Z2008-10-19T07:59:33Z<pre><code>// Added because boss changed his mind : 20020111,20020501,20020820, ...
// Commented out because boss changed his mind : 20020201,20020614,20020908, ...
</code></pre>
<p>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...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216744#21674474Answer by paercebal for What is the best comment in source code you have ever encountered?paercebal2008-10-19T18:00:31Z2008-10-23T09:41:28Z<p>This one was a living proof, in production code, of micro-management effects in our team:</p>
<pre><code>// I am not responsible of this code.
// They made me write it, against my will.
</code></pre>
<p>Followed by less than optimal code, conceived by a braindead zombie someone in my last company mistook for a technical director (*), and who was fond of forcing down code in developer's throats despite his own stupidity.</p>
<p>Of course, when the project leader searched for the cause of the bug, and found it was inside the "less than optimal code", he was less than amused.</p>
<p><i>(*) I am, of course, mentioning the mighty <em>VB King</em>. If you want to assess the full magnitude of the power of the <em>VB King</em>, you can read the following SO post: <a href="http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow#220101">http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow#220101</a>..."</i></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216943#21694311Answer by Brian R. Bondy for What is the best comment in source code you have ever encountered?Brian R. Bondy2008-10-19T20:44:06Z2008-10-19T20:44:06Z<pre><code>//If you're reading this, then my program is probably a success
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216948#216948-1Answer by Gabriël for What is the best comment in source code you have ever encountered?Gabriël2008-10-19T20:48:25Z2008-10-19T20:48:25Z<pre><code>// GK Experimental
</code></pre>
<p>(GK being the initials of the coder)</p>
<p>Used to indicate parts of code which are, indeed, kind of experimental. :) </p>
<p>A great flag to know that when you hit it during debugging you're probably busy for the upcoming few hours fixing the hack.. ;)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/217681#2176816Answer by Nat for What is the best comment in source code you have ever encountered?Nat2008-10-20T06:55:12Z2008-10-20T06:55:12Z<p>In a large investment bank that required all application outages be logged and commented I saw</p>
<pre><code>Without a crash
Or mighty bang
The sync disk
Did it's process hang
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/217939#2179395Answer by alpha coder for What is the best comment in source code you have ever encountered?alpha coder2008-10-20T09:54:23Z2008-10-20T09:54:23Z<blockquote>
<p>All bugs added by David S. Miller
davem@redhat.com</p>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/222164#2221643Answer by Matthew Scouten for What is the best comment in source code you have ever encountered?Matthew Scouten2008-10-21T14:51:00Z2008-10-21T14:51:00Z<pre><code>struct core_unlocker
{
core_unlocker(lock)
{
m_lock = lock
unlock(lock) //Abandon All Locks, Ye Who Enter Core!
}
~core_unlocker()
{
lock(m_lock)
}
private:
Corelock m_lock;
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/222193#2221932Answer by George Mauer for What is the best comment in source code you have ever encountered?George Mauer2008-10-21T14:56:55Z2008-10-21T14:56:55Z<p>first line of a javascript function:</p>
<pre><code>// this part is more difficult
</code></pre>
<p>WTF?</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/223133#223133-1Answer by Brian G for What is the best comment in source code you have ever encountered?Brian G2008-10-21T19:20:30Z2008-10-21T19:20:30Z<p>I am looking at this in ASP right now,</p>
<p>'SELECT CASE
SELECT CASE Department</p>
<p>And I am thinking, Is there any purpose for this at all.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/224671#2246713Answer by D N for What is the best comment in source code you have ever encountered?D N2008-10-22T06:31:23Z2008-10-22T06:31:23Z<p>In SJ CA back during the early days of the auction business I worked with a guy named Rick Dorin. He wrote compilers back when you had to poke at cards all day long. One of his error messages was "Too Many Errors... Make fewer!"</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/225428#2254280Answer by alex for What is the best comment in source code you have ever encountered?alex2008-10-22T11:48:07Z2008-10-22T11:48:07Z<p>at the end of a rather long and convoluted set of while loops and if blocks, the developer in question inserted this final comment:</p>
<p>else
{
// wobbly wilson said this would <em>never</em> happen!!
}</p>
<p>a laconic mixture of wit and sarcasm :)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/235510#2355103Answer by coppro for What is the best comment in source code you have ever encountered?coppro2008-10-24T22:43:01Z2008-10-24T22:43:01Z<p>This is one from my own code, but it's still really funny, and I figure I might as well put it up because it's in public SVN.</p>
<pre><code>// These were orginally up and down. When it was clear the names were
// inapplicable, they were renamed to retain the joke.
// Sorry if you were hoping for useful variable names.
quantum strange, charm;
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/236424#23642423Answer by rik0 for What is the best comment in source code you have ever encountered?rik02008-10-25T13:45:21Z2008-10-25T13:45:21Z<pre><code>aComment = 'this is not aComment' # this is aComment
class T(object):
def f(this):
this is not aComment
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/237886#2378861Answer by alex for What is the best comment in source code you have ever encountered?alex2008-10-26T11:17:12Z2008-10-26T11:17:12Z<p>Some years ago I was working in a large code base that had no unit-testing to speak of.</p>
<p>There was a method buried deep within the code that performed some calendar calculations. It was somewhat broken, had to deal with daylight savings in a very clumsy way due to some unfortunate circumstances.</p>
<p>We had to fix it a couple of times, and every time, we would find something broken some months after.</p>
<p>After spending a whole day fixing it and analyzing it, I put the code in source control, along with a comment that said something like this:</p>
<pre><code>// this code was written after a version trying to do {this} failed because of {reason},
// previously we were doing {this} which failed because of {reason}. This is
// now written {this} way so that {lots of reasons here}. If you want to touch
// this code, please make sure that it produces the right answers when tested with:
//
// {some sort of unit test}
</code></pre>
<p>Ultimately, my team was outsourced. Some days I wonder what happened to this code :)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/240292#2402920Answer by Joshi Spawnbrood for What is the best comment in source code you have ever encountered?Joshi Spawnbrood2008-10-27T15:24:21Z2008-10-27T15:24:21Z<p>I've just placed this comment:</p>
<p>// this control (Resistance) is FUTILE! </p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/240381#2403817Answer by Pramod for What is the best comment in source code you have ever encountered?Pramod2008-10-27T15:50:10Z2008-10-27T15:50:10Z<p>Exhibit a:</p>
<pre><code>return 0; // Happy ending
</code></pre>
<p>Exhibit B:</p>
<pre><code>int32_t Interpolate1DSignal(
Array1D<float64>::Handle hfInputSamples, // samples to be interpolated
Array1D<float64>::Handle hfInterpolationFilter, // polyphase filter coefficients,
int32_t iFilterInterpolationFactor, // # of "rows" in polyphase filter
int32_t iFilterLength, // Length of each row in filter
float64 fInterpolationFactor, // Factor to interpolate the
// signal by
float64 fTimingOffset, // Offset into the signal (units
// of samples)
Array1D<float64>::Handle hfOutputSamples // left as an exercise for the reader
);
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/240498#2404980Answer by Gordon Mackie JoanMiro for What is the best comment in source code you have ever encountered?Gordon Mackie JoanMiro2008-10-27T16:26:32Z2008-10-27T16:26:32Z<p>A large project I worked on used StyleCop and FXCop in the automated build with rules to prevent people checking in code with uncommented fields, methods, properties etc., etc.</p>
<p>Someone got so pissed off with having to add comments like "<strong>Gets or sets the full name.</strong>" to self-documenting properties like <strong>FullName</strong>, that they went to the effort of writing a macro to get around the rules. </p>
<p>The macro inserted XML summary tags for methods, properties etc. with a single non-displaying Unicode character as the tag content which would fool the build rules whilst simultaneously striking his minor blow against mindless insistence on commenting stuff for the sake of it...</p>
<p>...at least until they introduced another rule to check for Unicode characters in comments.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/250413#2504132Answer by Chris Kloberdanz for What is the best comment in source code you have ever encountered?Chris Kloberdanz2008-10-30T14:45:04Z2008-11-21T21:43:10Z<p>From a legacy Perl CGI script:</p>
<pre><code># This is convoluted and evil, sorry.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/265313#26531326Answer by Hopp for What is the best comment in source code you have ever encountered?Hopp2008-11-05T14:38:59Z2009-01-27T03:01:03Z<p>From one of our projects.<br/>
Somewhere at the end of one source file.</p>
<pre>
/*@ /\ /\
* @ / \/ \ ----- | | ---- |---\ | | /--\ --- | | ---- /--\ /--\
* @ / -- | | | | | / | | | | |\ | | | |
* \---\ / \ | |---| ---- |--/ | | \ | | \ | ---- \ \
* | \------------------------/ /-\ \ | | | | | \ | | -\ | | \| | -\ -\
* | \-/ \ | | | ---- |---/ \--/ \--/ --- | \ ---- \--/ \--/
* \ ------O
* \ / --- | | ---- /--\ |--\ /--\ /--\
* | | | | / | |\ | | | | | | | | |
* | | | |----- ------- | | \ | ---- | | | | | | | /-\
* | |\ /| | \ WWWWWW/ | | \| | | | | | | | | |
* | | \ / | | \------- --- | \ | \--/ |--/ \--/ \--/
* | | \--------------/ | |
* / | / |
* \ \ \ \
* \-----/ \-----/
*/
</pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/271471#2714714Answer by Jason Sundram for What is the best comment in source code you have ever encountered?Jason Sundram2008-11-07T07:48:17Z2008-11-07T07:48:17Z<p>I didn't encounter this firsthand, but it makes for a good story (see explanation in my comment):</p>
<pre><code>#define MSGTAG_B33R 0x723 /* RIPLVB */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/309983#3099832Answer by AdamBT for What is the best comment in source code you have ever encountered?AdamBT2008-11-21T19:57:13Z2008-11-21T19:57:13Z<p>Just added this one today:</p>
<pre><code>// Hardcoded this for time sake ... will make andrew fix later :)
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/310251#3102510Answer by aurealus for What is the best comment in source code you have ever encountered?aurealus2008-11-21T21:27:14Z2008-11-21T21:27:14Z<pre><code>'""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
'
' NOTE: DON'T SCREW WITH THIS CODE UNLESS YOU REALLY UNDERSTAND IT!
'
'""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/311113#3111138Answer by Overflown for What is the best comment in source code you have ever encountered?Overflown2008-11-22T09:00:56Z2008-11-22T09:00:56Z<p>I think I had something of this sort:</p>
<pre><code>
if (case1) { // trivial
...
}
else { // we are screwed
/* fill in later */
}
</code></pre>
<p>ok, so I might have used a stronger word than screwed</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/312203#312203101Answer by Chris Lloyd for What is the best comment in source code you have ever encountered?Chris Lloyd2008-11-23T06:18:28Z2008-11-23T06:18:28Z<pre><code># To understand recursion, see the bottom of this file
</code></pre>
<p>At the bottom of the file:</p>
<pre><code># To understand recursion, see the top of this file
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/315112#3151122Answer by joseph.ferris for What is the best comment in source code you have ever encountered?joseph.ferris2008-11-24T19:11:28Z2008-11-24T19:11:28Z<p>In a class named "Bar" (which was a UI Control with a less than descriptive name), the class header:</p>
<p> /// <summary>I pity the "foo".</summary></p>
<p>And the Remove() method:</p>
<p> /// <summary>A "foo" and his money are soon parted.</summary></p>
<p>Even worse, it was a business partner that pointed it out from the generated documentation. Even worse than that, is those are probably the closest things to useful documentation we ever got out of the guy.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/316042#3160421Answer by Steve Tranby for What is the best comment in source code you have ever encountered?Steve Tranby2008-11-25T00:54:11Z2008-11-25T00:54:11Z<pre><code><!-- THIS IS THE MAIN CONFIGURATION FILE FOR THE ENTIRE BLOODY DIRECTORY -->
<!-- WHATEVER YOU DO, DO NOT EDIT THIS FILE WITHOUT TALKING TO ME FIRST -->
<!-- I'M SERIOUS -->
<!-- (scroll down) -->
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/316112#31611247Answer by bikesandcode for What is the best comment in source code you have ever encountered?bikesandcode2008-11-25T01:39:13Z2008-11-25T01:39:13Z<p>Taken from the Quake III source, I stumbled across this in some random slashdot posting. Full source of the file can be found <a href="http://www.google.com/codesearch?hl=en&q=quake+3+%22what+the+fuck%22+show:1s7s4Tr0knk:uJtln_6bKE0:1s7s4Tr0knk&sa=N&cd=2&ct=rc&cs_p=git://github.com/TTimo/iourt.git&cs_f=code/qcommon/q_math.c" rel="nofollow">here</a>. It's a particularly fast method of calculating an inverse square root. As for the best comment? It's a common one to be sure, but given that it's attached to the line that does the magic is what makes it great. </p>
<pre><code>float Q_rsqrt( float number )
{
long i;
float x2, y;
const float threehalfs = 1.5F;
x2 = number * 0.5F;
y = number;
i = * ( long * ) &y; // evil floating point bit level hacking
i = 0x5f3759df - ( i >> 1 ); // what the fuck?
y = * ( float * ) &i;
y = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
// y = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed
#ifndef Q3_VM
#ifdef __linux__
assert( !isnan(y) ); // bk010122 - FPE?
#endif
#endif
return y;
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/316233#316233457Answer by lagerdalek for What is the best comment in source code you have ever encountered?lagerdalek2008-11-25T02:50:46Z2008-11-25T02:50:46Z<pre><code>//When I wrote this, only God and I understood what I was doing
//Now, God only knows
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/331424#33142468Answer by themapguyde for What is the best comment in source code you have ever encountered?themapguyde2008-12-01T16:53:59Z2008-12-01T16:53:59Z<pre><code>options.BatchSize = 300; //Madness? THIS IS SPARTA!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/331525#33152521Answer by dr. evil for What is the best comment in source code you have ever encountered?dr. evil2008-12-01T17:18:37Z2008-12-01T17:18:37Z<p>Great one from leaked Windows 2000 source code :</p>
<blockquote>
<p>!!!!!!!IF YOU CHANGE TABS TO SPACES, YOU WILL BE KILLED!!!!!!! *<br />
!!!!!!!!!!!!!!DOING SO FUCKS THE BUILD
PROCESS!!!!!!!!!!!!!!!! *<br />
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!</p>
</blockquote>
<p><a href="http://www.kuro5hin.org/story/2004/2/15/71552/7795" rel="nofollow">http://www.kuro5hin.org/story/2004/2/15/71552/7795</a></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/334450#3344501Answer by Paul Mitchell for What is the best comment in source code you have ever encountered?Paul Mitchell2008-12-02T15:59:03Z2008-12-02T15:59:03Z<p>Seen in some COBOL back in 1983:</p>
<pre><code> C I don't know what this next bit does so I'll jump around it
GOTO DONE.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/334499#3344992Answer by Nikola Stjelja for What is the best comment in source code you have ever encountered?Nikola Stjelja2008-12-02T16:13:28Z2008-12-02T16:13:28Z<p><code>
//Iterate by one<br />
$i++;
</code></p>
<p>Unfortunately it was mine, during my "Must comment everything phase".</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/334507#3345072Answer by CLaRGe for What is the best comment in source code you have ever encountered?CLaRGe2008-12-02T16:14:34Z2008-12-02T16:14:34Z<pre><code>// good luck!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/334568#33456821Answer by rodrigo for What is the best comment in source code you have ever encountered?rodrigo2008-12-02T16:23:42Z2008-12-02T16:23:42Z<pre><code>//Mr. Compiler, please do not read this.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/335079#3350791Answer by wergeld for What is the best comment in source code you have ever encountered?wergeld2008-12-02T19:09:52Z2008-12-02T19:09:52Z<p>While working on some websites I found this at the start of the embedded JS:</p>
<blockquote>
<p>I feel so dirty doing this but the guy wanted it in .NET</p>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/335114#3351142Answer by Rob Prouse for What is the best comment in source code you have ever encountered?Rob Prouse2008-12-02T19:20:39Z2008-12-02T19:20:39Z<p>From C#</p>
<pre><code>#region Hack - Shield Eyes Before Expanding
/// <summary>
/// A single uint with all of the bits set to represent the different tracing
/// </summary>
/// <remarks>
/// Ugly I know, so if you can think of a better way, feel free to rewrite.
/// </remarks>
[Browsable(false)]
public uint TraceBitfield
{
// Snip
}
</code></pre>
<p>#endregion</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/339377#3393772Answer by Sumptin for What is the best comment in source code you have ever encountered?Sumptin2008-12-04T01:43:44Z2008-12-04T01:43:44Z<p>Quite a while ago I came across some connection script and while I don't remember the syntax I do recall the comments as I'm a Pink Floyd fan.</p>
<p>//Attempt Handshake: Hello? This is London calling. Are we reaching you?</p>
<p>//Handshake Failed: I don't understand...he just hung up.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/344863#34486316Answer by NotDan for What is the best comment in source code you have ever encountered?NotDan2008-12-05T19:26:52Z2008-12-05T19:26:52Z<pre><code>//Visual Studio Bug Workaround:
//http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=101677
//To fix 'CJumpToHelper::GetInstance()' : undeclared identifier compiler errors, change the number lines below
//until the file compiles correctly. (This needs to be done anytime a change is made to this file)
//////////////////////////////////////: There should be 1-10 of these lines
//////////////////////////////////////: There should be 1-10 of these lines
//////////////////////////////////////: There should be 1-10 of these lines
//////////////////////////////////////: There should be 1-10 of these lines
//////////////////////////////////////: There should be 1-10 of these lines
//////////////////////////////////////: There should be 1-10 of these lines
//////////////////////////////////////: There should be 1-10 of these lines
//////////////////////////////////////: There should be 1-10 of these lines
//////////////////////////////////////: There should be 1-10 of these lines
//////////////////////////////////////: There should be 1-10 of these lines
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/344907#34490760Answer by Jeremiah for What is the best comment in source code you have ever encountered?Jeremiah2008-12-05T19:46:07Z2008-12-05T19:46:07Z<pre><code>int MyFunction()
{
// There once was a man named Dave
int Result = 0
// Whose code just wouldn't behave
MyObject *Ptr = new MyObject();
// He left to go to a meetin'
Result = Ptr->DoSomething();
// And left his memory a leakin'
return Result;
}
</code></pre>
<p>C++ Comment</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/348483#3484832Answer by vdhant for What is the best comment in source code you have ever encountered?vdhant2008-12-08T01:40:37Z2008-12-08T01:45:40Z<p>I just found this one in a custom Linq provider for .net:</p>
<pre><code>//select is a royal pain in the ass where
//the parameter passed to CreateQuery isn't actually the one that goes in the call
//requiring this workaround. Not sure how straight Linq to Objects does it.
</code></pre>
<p>And this one</p>
<pre><code>//expressions have to be compiled in order to work with the method call on
//straight Enumerable somehow, LINQ to objects itself magically does this.
//Reflector shows a mess, so I (Aaron) invented my own way. God love unit tests!
</code></pre>
<p>And i just found this one as well... it just gets better</p>
<pre><code> //ok, this is a hairy, dirty, and nasty piece of code
//the alternatives are substantially worse than this though
//i.e. when you do your own provider, LINQ assumes that
//you are going to implement your own expression tree visitor and
//do it all yourself. Frankly, I still have xmas shopping to do
//and I really don't want us to be foobared when we get
//even more extension methods added to LINQ
//therefore, we are pulling execute based on taking the calling the
//standard execute on enumerable, but using our own class
//
//optimization can occur from here on an as needed basis, that is
//check for the value of mex.Method.Name, and write a handler for
//that method
//
//also, it may not be a bad idea to rather than do this reflection
//each and every time somehow cache the reflected methodinfos and do
//lookups that way that said, we need a complete red/green/refactor
//cycle here before I am touching that one
</code></pre>
<p>And this one</p>
<pre><code>//Compile that mutherf-ker, invoke it, and get the resulting hash
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/350893#3508937Answer by theschmitzer for What is the best comment in source code you have ever encountered?theschmitzer2008-12-08T21:07:14Z2008-12-08T21:07:14Z<p>Back when I worked for Reuters there was a comment in one of our feed handlers that made some people think the Almighty was helping us out...</p>
<pre><code>// Jesus told me to skip to the end of the message here
</code></pre>
<p>We found out later that there was a Latin-American contact named <strong>Jesus</strong> (HeyZus).</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/354692#3546920Answer by Jim McKeeth for What is the best comment in source code you have ever encountered?Jim McKeeth2008-12-10T00:08:03Z2008-12-10T00:08:03Z<p>Near the top of a unit:</p>
<pre><code>// Oh what a tangled web we weave
// When first we practice to deceive
// ASTA
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/360696#3606969Answer by sli for What is the best comment in source code you have ever encountered?sli2008-12-11T20:02:51Z2008-12-11T20:02:51Z<p>A few from the Linux kernel:</p>
<pre><code>/* Sun, you just can't beat me, you just can't. Stop trying,
* give up. I'm serious, I am going to kick the living shit
* out of you, game over, lights out.
*/
</code></pre>
<p>-</p>
<pre><code>/* 2,191 lines of complete and utter shit coming up... */
</code></pre>
<p>-</p>
<pre><code>#if 0 /* XXX No fucking way dude... */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/368692#3686929Answer by lk for What is the best comment in source code you have ever encountered?lk2008-12-15T15:26:33Z2008-12-15T15:26:33Z<p>This one i found it in the package "twisted" for Python 2.5 (the file is tcp.py at line 371)</p>
<pre><code># Limit length of buffer to try to send, because some OSes are too
# stupid to do so themselves (ahem windows)
return self.socket.send(buffer(data, 0, self.SEND_LIMIT))
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/368709#3687094Answer by cLFlaVA for What is the best comment in source code you have ever encountered?cLFlaVA2008-12-15T15:30:05Z2008-12-15T15:30:05Z<p>I don't have the exact code package anymore, but I remember the comment vividly.</p>
<pre><code>// The code below needs to be changed immediately.
// I wish I was a little bit taller
// I wish I was a baller
// I wish I had a girl who looked good, I would call her.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/375554#3755543Answer by George for What is the best comment in source code you have ever encountered?George2008-12-17T18:33:17Z2008-12-17T18:33:17Z<pre><code>catch (Domain.ConcurrencyException)
{
// somebody changed it between the time we loaded it and now.
// weird, huh?
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/377591#3775912Answer by alepuzio for What is the best comment in source code you have ever encountered?alepuzio2008-12-18T11:35:20Z2008-12-18T13:43:57Z<p>An HORRIBLE patch for a decode (Translation by italian language):</p>
<pre><code>/**
*@return the value
*@param key: the id of the list of instruments
*@PS this function is a violation of all the laws of the
*software engineering,
*commons sense, highway code
*and ONU decision about the coding.
That sh*t...
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/377894#3778941Answer by Keltia for What is the best comment in source code you have ever encountered?Keltia2008-12-18T13:49:02Z2008-12-18T13:49:02Z<p>That one is well-known but I like it (in sys/ufs/ufs_vnops.c:</p>
<pre><code>/*
* A virgin directory (no blushing please).
*/
</code></pre>
<p>in the FreeBSD kernel source tree (and even before, back into 4.xBSD)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/378918#3789183Answer by FreeMemory for What is the best comment in source code you have ever encountered?FreeMemory2008-12-18T19:26:11Z2008-12-18T19:26:11Z<p>In an LKM:</p>
<pre><code>/*
* Dear Richard Stallman,
*
* This one's for you.
*
* Sincerely,
* Me
*
*/
MODULE_LICENSE( "GPL" );
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/378932#3789321Answer by John Channing for What is the best comment in source code you have ever encountered?John Channing2008-12-18T19:30:20Z2008-12-18T19:30:20Z<pre><code>/* Hammer Time! */
</code></pre>
<p>I have no idea why or whether he was wearing ripstop nylon parachute pants while writing the code</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/378987#37898767Answer by llimllib for What is the best comment in source code you have ever encountered?llimllib2008-12-18T19:47:39Z2008-12-18T19:47:39Z<p>Somebody complained that the "best" comment was bringing up the worst comments. IMHO, they're funnier, and so "better", but here's the honest best comment I've ever <a href="http://svn.python.org/view/python/trunk/Objects/dictobject.c?rev=53656&view=markup" rel="nofollow">read</a>:</p>
<pre><code>/*
Major subtleties ahead: Most hash schemes depend on having a "good" hash
function, in the sense of simulating randomness. Python doesn't: its most
important hash functions (for strings and ints) are very regular in common
cases:
>>> map(hash, (0, 1, 2, 3))
[0, 1, 2, 3]
>>> map(hash, ("namea", "nameb", "namec", "named"))
[-1658398457, -1658398460, -1658398459, -1658398462]
>>>
This isn't necessarily bad! To the contrary, in a table of size 2**i, taking
the low-order i bits as the initial table index is extremely fast, and there
are no collisions at all for dicts indexed by a contiguous range of ints.
The same is approximately true when keys are "consecutive" strings. So this
gives better-than-random behavior in common cases, and that's very desirable.
OTOH, when collisions occur, the tendency to fill contiguous slices of the
hash table makes a good collision resolution strategy crucial. Taking only
the last i bits of the hash code is also vulnerable: for example, consider
[i << 16 for i in range(20000)] as a set of keys. Since ints are their own
hash codes, and this fits in a dict of size 2**15, the last 15 bits of every
hash code are all 0: they *all* map to the same table index.
But catering to unusual cases should not slow the usual ones, so we just take
the last i bits anyway. It's up to collision resolution to do the rest. If
we *usually* find the key we're looking for on the first try (and, it turns
out, we usually do -- the table load factor is kept under 2/3, so the odds
are solidly in our favor), then it makes best sense to keep the initial index
computation dirt cheap.
The first half of collision resolution is to visit table indices via this
recurrence:
j = ((5*j) + 1) mod 2**i
For any initial j in range(2**i), repeating that 2**i times generates each
int in range(2**i) exactly once (see any text on random-number generation for
proof). By itself, this doesn't help much: like linear probing (setting
j += 1, or j -= 1, on each loop trip), it scans the table entries in a fixed
order. This would be bad, except that's not the only thing we do, and it's
actually *good* in the common cases where hash keys are consecutive. In an
example that's really too small to make this entirely clear, for a table of
size 2**3 the order of indices is:
0 -> 1 -> 6 -> 7 -> 4 -> 5 -> 2 -> 3 -> 0 [and here it's repeating]
If two things come in at index 5, the first place we look after is index 2,
not 6, so if another comes in at index 6 the collision at 5 didn't hurt it.
Linear probing is deadly in this case because there the fixed probe order
is the *same* as the order consecutive keys are likely to arrive. But it's
extremely unlikely hash codes will follow a 5*j+1 recurrence by accident,
and certain that consecutive hash codes do not.
The other half of the strategy is to get the other bits of the hash code
into play. This is done by initializing a (unsigned) vrbl "perturb" to the
full hash code, and changing the recurrence to:
j = (5*j) + 1 + perturb;
perturb >>= PERTURB_SHIFT;
use j % 2**i as the next table index;
Now the probe sequence depends (eventually) on every bit in the hash code,
and the pseudo-scrambling property of recurring on 5*j+1 is more valuable,
because it quickly magnifies small differences in the bits that didn't affect
the initial index. Note that because perturb is unsigned, if the recurrence
is executed often enough perturb eventually becomes and remains 0. At that
point (very rarely reached) the recurrence is on (just) 5*j+1 again, and
that's certain to find an empty slot eventually (since it generates every int
in range(2**i), and we make sure there's always at least one empty slot).
Selecting a good value for PERTURB_SHIFT is a balancing act. You want it
small so that the high bits of the hash code continue to affect the probe
sequence across iterations; but you want it large so that in really bad cases
the high-order hash bits have an effect on early iterations. 5 was "the
best" in minimizing total collisions across experiments Tim Peters ran (on
both normal and pathological cases), but 4 and 6 weren't significantly worse.
Historical: Reimer Behrends contributed the idea of using a polynomial-based
approach, using repeated multiplication by x in GF(2**n) where an irreducible
polynomial for each table size was chosen such that x was a primitive root.
Christian Tismer later extended that to use division by x instead, as an
efficient way to get the high bits of the hash code into play. This scheme
also gave excellent collision statistics, but was more expensive: two
if-tests were required inside the loop; computing "the next" index took about
the same number of operations but without as much potential parallelism
(e.g., computing 5*j can go on at the same time as computing 1+perturb in the
above, and then shifting perturb can be done while the table index is being
masked); and the dictobject struct required a member to hold the table's
polynomial. In Tim's experiments the current scheme ran faster, produced
equally good collision statistics, needed less code & used less memory.
Theoretical Python 2.5 headache: hash codes are only C "long", but
sizeof(Py_ssize_t) > sizeof(long) may be possible. In that case, and if a
dict is genuinely huge, then only the slots directly reachable via indexing
by a C long can be the first slot in a probe sequence. The probe sequence
will still eventually reach every slot in the table, but the collision rate
on initial probes may be much higher than this scheme was designed for.
Getting a hash code as fat as Py_ssize_t is the only real cure. But in
practice, this probably won't make a lick of difference for many years (at
which point everyone will have terabytes of RAM on 64-bit boxes).
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/379021#37902111Answer by llimllib for What is the best comment in source code you have ever encountered?llimllib2008-12-18T19:55:42Z2008-12-18T19:55:42Z<p>The favorite comment I ever wrote:</p>
<pre><code>//the XML returned from this request is *mind-bogglingly* bad. Terrifyingly bad.
//a completed batch looks like this:
//<Batch>batchid=363777811 status=Done dateandtime=09/18/2007 09:53:10 PDT activateditems=335 numberofwarnings=0 itemsnotacivated=17 </Batch>
//and an incomplete batch like:
//<Batch>batchid=363778361 status=In Progress </Batch>
//so we'll just parse each item as a regex. Thanks Amazon.
</code></pre>
<p>And yes, Amazon actually returns XML like this.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/379627#3796271Answer by sagavia for What is the best comment in source code you have ever encountered?sagavia2008-12-18T23:00:30Z2008-12-19T15:51:49Z<p>Sometime in the early 1980's we were writing financial modeling code for utilities in PL/I. Got a call from a client with code blowing up right after a comment</p>
<pre><code>/* Honest this works */
</code></pre>
<p>The guy had taken our standard set of financial equations and done about 15 pages of algebra to combine a bunch of code into one equation. After Three Mile Island when utilities had to write off their nuclear plants at huge costs the equation failed because of a FIXED BIN 15 (integer) overflow that would not have happened if the algebra hadn't happened.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/379687#3796874Answer by Mark Beckwith for What is the best comment in source code you have ever encountered?Mark Beckwith2008-12-18T23:24:16Z2008-12-18T23:24:16Z<pre><code>// This code was written by a genius so don't try to understand it with
// your tiny little brain.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/381386#3813862Answer by Richard E for What is the best comment in source code you have ever encountered?Richard E2008-12-19T16:01:17Z2008-12-19T16:01:17Z<p>This was the <em>only</em> comment we found in a smartcard product that a previous employer bought in. A load of embedded C and assembler written by a bunch of Dutch cryptography PhDs</p>
<pre><code>// echt halmaal gek - no way!
</code></pre>
<p>(It means something like "really completely stupid"...which didn't help us either)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/381392#3813924Answer by Richard E for What is the best comment in source code you have ever encountered?Richard E2008-12-19T16:03:26Z2008-12-19T16:03:26Z<p>In some assembler, at the end of a line that contained <code>&h723</code></p>
<pre><code>' RIP LVB
</code></pre>
<p>(get it?)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/381499#3814991Answer by Nicolas for What is the best comment in source code you have ever encountered?Nicolas2008-12-19T16:48:24Z2008-12-19T16:48:24Z<blockquote>
<p><code>// Description : !!! TODO</code></p>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/381523#3815231Answer by MB for What is the best comment in source code you have ever encountered?MB2008-12-19T16:55:52Z2008-12-19T16:55:52Z<p>In Latin, "Abandon hope all ye who enter here" from Dante's "Divine Comedy". </p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/381524#38152428Answer by chaos for What is the best comment in source code you have ever encountered?chaos2008-12-19T16:56:25Z2008-12-19T16:56:25Z<pre><code>// The ratio of a circle's circumference to its diameter. Remember to change
// this to 3.0 if you move to a site in Indiana.
#define Pi 3.1415927
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/381599#38159946Answer by Brian Rudolph for What is the best comment in source code you have ever encountered?Brian Rudolph2008-12-19T17:22:45Z2008-12-19T17:22:45Z<p>Not quite a comment but a goto label</p>
<pre><code>ICantBelieveImUsingAGoto:
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/383547#3835470Answer by Andy Webb for What is the best comment in source code you have ever encountered?Andy Webb2008-12-20T18:03:45Z2008-12-20T18:03:45Z<p>REM Don't delete this print statement <strong>**</strong> will die</p>
<p>The process in question was a service in some legacy code</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/385765#3857651Answer by barfoon for What is the best comment in source code you have ever encountered?barfoon2008-12-22T08:06:48Z2009-01-27T02:43:53Z<p>From Joomla! source:</p>
<pre><code>// fudge the group stuff
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/385771#3857711Answer by barfoon for What is the best comment in source code you have ever encountered?barfoon2008-12-22T08:11:35Z2009-01-27T02:43:35Z<p>From Joomla! source:</p>
<pre><code>// this is daggy??
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/386201#3862013Answer by pi for What is the best comment in source code you have ever encountered?pi2008-12-22T12:54:13Z2009-03-09T10:57:01Z<pre><code># let's pretend we are free, for a while
</code></pre>
<p>Found this one in front of a class. What followed was a (naive) try to implement an ORM. I still don't understand why he wrote that.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/389723#389723183Answer by martinus for What is the best comment in source code you have ever encountered?martinus2008-12-23T18:45:16Z2008-12-23T18:45:16Z<pre><code>/**
* Always returns true.
*/
public boolean isAvailable() {
return false;
}
</code></pre>
<p>Never rely on a comment...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/400182#4001821Answer by Nighthawk for What is the best comment in source code you have ever encountered?Nighthawk2008-12-30T12:51:05Z2008-12-30T12:51:05Z<p>Dennis M Ritchie has a page about some of the ancient UNIX comments <a href="http://www.cs.bell-labs.com/who/dmr/odd.html" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/400187#4001874Answer by annakata for What is the best comment in source code you have ever encountered?annakata2008-12-30T12:56:27Z2008-12-30T12:56:27Z<p>From a unit testing class in C#:</p>
<pre><code>#region quis custodiet ipsos custodes?
[Fact]
public void TestPositive()
{
Assert.Equal(4, 2 + 2);
}
[Fact]
public void TestNegative()
{
Assert.Equal(5, 2 + 2);
}
#endregion
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/400211#40021126Answer by Yuval for What is the best comment in source code you have ever encountered?Yuval2008-12-30T13:08:53Z2008-12-30T13:08:53Z<p>I saw this comment on someone's code:</p>
<pre><code>// This comment is self explanatory.
</code></pre>
<p>I guess he meant to say 'variable' but the mistake made one funny comment... Think of the circular logic here, and the futility of writing it.</p>
<p>Yuval =8-)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/400230#40023012Answer by perryneal for What is the best comment in source code you have ever encountered?perryneal2008-12-30T13:18:35Z2009-04-06T11:34:00Z<p>Honest to God:</p>
<pre><code>// This is crap code but it's 3 a.m. and I need to get this working.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/417196#4171964Answer by phthomas for What is the best comment in source code you have ever encountered?phthomas2009-01-06T16:26:33Z2009-03-16T11:10:15Z<pre><code>// I love the smell of dirty XML in the morning
xml = xml.Replace("xmlns=\"urn:bsd.orion/inventory\"", "");
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/431717#43171751Answer by Brian Clapper for What is the best comment in source code you have ever encountered?Brian Clapper2009-01-10T20:42:31Z2009-01-10T20:42:31Z<p>On initialization of a linked list:</p>
<pre><code>last = first; /* Biblical reference */
</code></pre>
<p>Succint and hilarious.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/431722#43172226Answer by Evan Fosmark for What is the best comment in source code you have ever encountered?Evan Fosmark2009-01-10T20:46:40Z2009-01-10T20:46:40Z<pre><code>// If you're reading this, that means you have been put in charge of my previous project.
// I am so, so sorry for you. God speed.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/431726#4317264Answer by mkal for What is the best comment in source code you have ever encountered?mkal2009-01-10T20:49:03Z2009-01-10T20:49:03Z<p>i++; //increment i</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/449493#4494936Answer by Bash for What is the best comment in source code you have ever encountered?Bash2009-01-16T04:11:06Z2009-01-16T04:11:06Z<h2>Linux Comments</h2>
<p>There are heaps of good ones here ...</p>
<p>These are all comments in linux</p>
<p><a href="http://lwn.net/1998/1015/a/f-word.html" rel="nofollow">http://lwn.net/1998/1015/a/f-word.html</a></p>
<p>My Favourites:</p>
<pre><code>./arch/sparc/kernel/ptrace.c
/* Fuck me gently with a chainsaw... */
./drivers/scsi/qlogicpti.h
/* Am I fucking pedantic or what? */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/482129#482129643Answer by Jens Roland for What is the best comment in source code you have ever encountered?Jens Roland2009-01-27T02:21:22Z2009-01-27T02:29:21Z<p>I am particularly guilty of this, embedding non-constructive comments, code poetry and little jokes into most of my projects (although I usually have enough sense to remove anything directly offensive before releasing the code). Here's one I'm particulary fond of, placed far, far down a poorly-designed 'God Object':</p>
<pre><code>/**
* For the brave souls who get this far: You are the chosen ones,
* the valiant knights of programming who toil away, without rest,
* fixing our most awful code. To you, true saviors, kings of men,
* I say this: never gonna give you up, never gonna let you down,
* never gonna run around and desert you. Never gonna make you cry,
* never gonna say goodbye. Never gonna tell a lie and hurt you.
*/
</code></pre>
<p><strong>I'M SORRY!!!!</strong> I just couldn't help myself.....!</p>
<p>And another, which I'll admit I haven't actually released into the wild, even though I am <em>very</em> tempted to do so in one of my less intuitive classes:</p>
<pre><code>//
// Dear maintainer:
//
// Once you are done trying to 'optimize' this routine,
// and have realized what a terrible mistake that was,
// please increment the following counter as a warning
// to the next guy:
//
// total_hours_wasted_here = 16
//
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/482177#4821772Answer by unforgiven3 for What is the best comment in source code you have ever encountered?unforgiven32009-01-27T02:39:14Z2009-01-27T02:39:14Z<p>I just checked this in the other day...</p>
<pre><code>/// <STERNLY-WORDED-WARNING>
/// Pay attention to this or I will hunt you down.
/// ...
/// </STERNLY-WORDED-WARNING>
</code></pre>
<p>Where ("..." == "proprietary stuff that I can't post"). I just liked my STERNLY-WORDED-WARNING element.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/482189#48218912Answer by GBegen for What is the best comment in source code you have ever encountered?GBegen2009-01-27T02:44:23Z2009-01-27T02:44:23Z<pre><code>// Hey, your shoe's untied!
</code></pre>
<p>Followed by some dubious code, and within that code,</p>
<pre><code>// Keep looking! I think it was the other shoe!
</code></pre>
<p>Finally,</p>
<pre><code>// How strange -- I must be seeing things. Anyhow, I'm going to go take a shower, now...
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/488642#4886423Answer by Chris Kloberdanz for What is the best comment in source code you have ever encountered?Chris Kloberdanz2009-01-28T17:52:27Z2009-01-28T17:52:27Z<p>I just ran across this one in a really simple test C++ program for a class in college.</p>
<p>I was commenting a class.</p>
<p>In the destructor...</p>
<pre><code>// Choose! Choose the form of the Destructor!
// The choice is made! The Traveler has come!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/488651#48865138Answer by GIANCARLO for What is the best comment in source code you have ever encountered?GIANCARLO2009-01-28T17:54:58Z2009-06-11T18:49:41Z<p>on js code:</p>
<pre><code>// hack for ie browser (assuming that ie is a browser)
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/496175#4961750Answer by Sam Schutte for What is the best comment in source code you have ever encountered?Sam Schutte2009-01-30T16:35:16Z2009-01-30T16:35:16Z<p>I once implemented some document workflow using MS SQL Server Developer 2000 (the human workflow stuff).</p>
<p>It consisted of a bunch of triggers that would be added to the database to make it follow workflow rules.</p>
<p>In one of the triggers, someone at Microsoft had written something along the lines of:</p>
<pre><code>//Determine if the database has been "Grizzlified"
</code></pre>
<p>(The internal name of the product was "Grizzly", so I thought that was funny).</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/499983#4999832Answer by Nosredna for What is the best comment in source code you have ever encountered?Nosredna2009-02-01T01:30:20Z2009-02-01T01:30:20Z<p>I saw this once:</p>
<p>//this used to be a comment</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/502932#5029322Answer by Neil Aitken for What is the best comment in source code you have ever encountered?Neil Aitken2009-02-02T11:45:20Z2009-02-02T11:45:20Z<p>Just found this one in some of our PHP code</p>
<pre><code>$s=2; // chicken and bacon wrap for lunch
</code></pre>
<p>How useful, luckily $s was self explanatory</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/502985#5029851Answer by Oskar Duveborn for What is the best comment in source code you have ever encountered?Oskar Duveborn2009-02-02T12:06:14Z2009-02-02T12:06:14Z<pre><code>-- Beyond this point, they'll be dragons
</code></pre>
<p>I find it more pleasingly illustrative with the longer saying ^^</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/502993#5029930Answer by devdimi for What is the best comment in source code you have ever encountered?devdimi2009-02-02T12:10:25Z2009-02-02T12:10:25Z<pre><code> // long live COM'n'Roll
public enum StatusCode
{
//success codes
S_OK = 1,
S_NONE = 2,
S_SQL_OPERATIONS_LISTS_EMPTY = 3,
//error codes
E_NO_MATCHING_END_FOUND = -1,
E_SEQUENCE_NUMBER_NOT_FOUND_AT_BEGINNING
= -2,
E_SEQUENCE_NUMBER_NOT_FOUND_AT_END
= -3,
E_FORWARD_AND_BACKWARD_OPS_COUNT_DO_NOT_MATCH
= -4,
E_FORWARD_AND_BACKWARD_IDS_DO_NOT_MATCH = -5,
E_IDS_DO_NOT_MATCH = -6
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/503002#5030021Answer by MatthieuP for What is the best comment in source code you have ever encountered?MatthieuP2009-02-02T12:13:43Z2009-02-02T12:18:58Z<pre><code>// HACK ! COPY/PASTE this and look for another job
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/503012#50301219Answer by aldrinleal for What is the best comment in source code you have ever encountered?aldrinleal2009-02-02T12:15:57Z2009-02-02T12:15:57Z<pre><code>// Caveat implementor
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/503186#5031867Answer by Sindri for What is the best comment in source code you have ever encountered?Sindri2009-02-02T13:21:06Z2009-02-02T13:21:06Z<p>From Apache Xalan source code:</p>
<pre><code>/**
* As Gregor Samsa awoke one morning from uneasy dreams he found himself
* transformed in his bed into a gigantic insect. He was lying on his hard,
* as it were armour plated, back, and if he lifted his head a little he
* could see his big, brown belly divided into stiff, arched segments, on
* top of which the bed quilt could hardly keep in position and was about
* to slide off completely. His numerous legs, which were pitifully thin
* compared to the rest of his bulk, waved helplessly before his eyes.
* "What has happened to me?", he thought. It was no dream....
*/
protected static String DEFAULT_TRANSLET_NAME = "GregorSamsa";
</code></pre>
<p>Further reading on <a href="http://thedailywtf.com/Articles/Who_is_Gregor_Samsa_0x3f_.aspx" rel="nofollow">The Daily WTF</a>.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/503215#5032151Answer by BlackWasp for What is the best comment in source code you have ever encountered?BlackWasp2009-02-02T13:29:40Z2009-02-02T13:29:40Z<p>This one was amusing for others but less so for me. I had inherited the code (which was ASP) from a developer who had himself inherited it. The first programmer had created some very hard to understand code. The second developer had added a comment as follows (names hidden to protect the not-so-innocent):</p>
<pre><code>'This code was written by **************.
'I haven't a clue what it does. He hasn't a clue what it does.
'Nobody else has a clue what it does or how it does it.
'It is something to do with data but **** knows what.
'The ******* still works so please do not change this code,
'even though it is a complete pile of ****.
</code></pre>
<p>So why didn't I find it amusing? Well, it was ASP code for a customer's intranet.</p>
<p>...and it was the customer who highlighted the comment to me.</p>
<p>:-(</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/504832#50483219Answer by unclerojelio for What is the best comment in source code you have ever encountered?unclerojelio2009-02-02T20:48:42Z2009-02-02T20:48:42Z<pre><code>//Woulda
if(x) {}
//Shoulda
else if(y) {}
//Coulda
else {}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/505122#5051224Answer by John Baughman for What is the best comment in source code you have ever encountered?John Baughman2009-02-02T21:52:23Z2009-02-02T21:52:23Z<p>Not code comments, but SVN commit comments on the same file:</p>
<p>First commit (following of dozens of others after results coming back from testers):</p>
<pre><code>Squashed some IPR mod bugs. The were big and juicy ones, too.
</code></pre>
<p>2nd commit:</p>
<pre><code>Squashed some more mod bugs. Those are some nasty bugs, them mod bugs...
</code></pre>
<p>3rd:</p>
<pre><code>Squashed some more mod bugs. They are like cockroaches: they'll live through a nuclear war.
</code></pre>
<p>4th:</p>
<pre><code>Squashed some more John bugs. They too are like cockroaches: they appear anywhere John goes. Wait. That doesn't sound right.
</code></pre>
<p>And 5th:</p>
<pre><code>Same John bug. It didn't die, just played 'possum.
</code></pre>
<p>Yes, I was tired of "Fixed bug".</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/505344#50534419Answer by Jeremy Ricketts for What is the best comment in source code you have ever encountered?Jeremy Ricketts2009-02-02T22:58:45Z2009-02-02T22:58:45Z<p><code>.class {border:1px solid gold;} /* I pitty the fool */</code></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/508563#5085631Answer by Andreas for What is the best comment in source code you have ever encountered?Andreas2009-02-03T19:35:49Z2009-02-03T19:35:49Z<pre><code>// StupidCompilerDontInline(SCDI), in the test project where
// allcode was in a single cpp the compiler had inlined nearly
// everything which lead to nice stackoverflow.
// To prevent this the metods are made virtual
#define SCDI virtual
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/508818#50881823Answer by Pete H. for What is the best comment in source code you have ever encountered?Pete H.2009-02-03T20:36:33Z2009-02-03T20:36:33Z<pre><code>//MailBody builders for two outgoing messages
StringBuilder hanz = new StringBuilder();
StringBuilder franz = new StringBuilder();
</code></pre>
<p>I still chuckle a little when I read that one...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/515402#5154021Answer by User for What is the best comment in source code you have ever encountered?User2009-02-05T10:51:05Z2009-02-05T10:51:05Z<p>Found this recently in our code (we develop enterprise software):</p>
<pre><code>// Instance of excel
Excel excel = this.CreateExcelInstance();
excel.Open(stream); // how to close it?!
</code></pre>
<p>Until that I was sure we're free of this "fun stuff" and we're doing it the right and ideologically correct way...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/515419#5154196Answer by Polo for What is the best comment in source code you have ever encountered?Polo2009-02-05T10:57:23Z2009-02-05T10:57:23Z<p>This comment is from an old project that i had to debug:</p>
<pre><code>//Haleluya i can go home!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/515593#51559316Answer by xan for What is the best comment in source code you have ever encountered?xan2009-02-05T11:56:29Z2009-02-05T11:56:29Z<p>From a google code project:</p>
<pre><code># This job would be great if it wasn't for the fucking customers.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/515605#5156051Answer by Lukas Šalkauskas for What is the best comment in source code you have ever encountered?Lukas Šalkauskas2009-02-05T11:59:08Z2009-02-05T11:59:08Z<p>Once I found this:</p>
<pre><code>// I wish (boss name) could do this by him self.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/519734#5197345Answer by BoD for What is the best comment in source code you have ever encountered?BoD2009-02-06T09:55:12Z2009-02-06T09:55:12Z<p>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:</p>
<pre><code>// HERE
</code></pre>
<p>I just checked, the comment is still there in this file :)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/522655#5226554Answer by litb for What is the best comment in source code you have ever encountered?litb2009-02-06T23:27:06Z2009-02-06T23:27:06Z<p>I like some of the comments in the GNU binutils. This one is from BFD som.c:</p>
<pre><code>/* You'll never believe all this is necessary to handle relocations
for function calls. Having to compute and pack the argument
relocation bits is the real nightmare.
If you're interested in how this works, just forget it. You really
do not want to know about this braindamage. */
</code></pre>
<p>This one too:</p>
<pre><code>/* Don't ask about these magic sequences. I took them straight
from gas-1.36 which took them from the a.out man page. */
</code></pre>
<p>...</p>
<pre><code>/* Keep track of exactly where we are within a particular
space. This is necessary as the braindamaged HPUX
loader will create holes between subspaces *and*
subspace alignments are *NOT* preserved. What a crock. */
</code></pre>
<p>Another one:</p>
<pre><code>/* We will NOT put a fucking timestamp in the header here. Every
time you put it back, I will come in and take it out again. ... */
</code></pre>
<p>From gas:</p>
<pre><code>/* Yes this is ugly (storing the broken_word pointer
in the symbol slot). Still, this whole chunk of
code is ugly, and I don't feel like doing anything
about it. Think of it as stubbornness in action. */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/538091#5380913Answer by Jane Sales for What is the best comment in source code you have ever encountered?Jane Sales2009-02-11T18:19:15Z2009-02-11T18:19:15Z<p>I once worked on the source code of Windows 3.0. (Not, I hasten to add, as a Microsoft employee!) There I came across a file loader that went re-entrant multiple times, and had one example of some nasty punning (just to show how clever the author was).</p>
<p>This mess of re-entrant code was executed with an Intel assembly jmp instruction (in the middle of C code), which went to the label "we_are_not_in_kansas_any_more_toto".</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/538175#5381755Answer by tinkertim for What is the best comment in source code you have ever encountered?tinkertim2009-02-11T18:38:27Z2009-02-11T18:38:27Z<p>I guess it got viral, I found the following in a daemon (Linux) that prevents the OOM killer from selecting it:</p>
<pre><code>/*
* Don't OOM me, bro!
*/
</code></pre>
<p>This was right after a mlockall() to prevent the process from swapping, commented:</p>
<pre><code>/*
* Don't swap me, bro!
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/544238#5442382Answer by Bennett McElwee for What is the best comment in source code you have ever encountered?Bennett McElwee2009-02-13T00:39:27Z2009-02-13T00:39:27Z<pre><code>try {
doSomething();
} catch(err) {
// Die quietly
alert(err);
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/544337#5443371Answer by JohnFx for What is the best comment in source code you have ever encountered?JohnFx2009-02-13T01:15:41Z2009-02-13T01:15:41Z<p>Had a programmer working for me once that put "Style" comments throughout his code where he codified his internal debates about the particular implementation details and to take parting shots when he was overruled on a particular coding decision.</p>
<p>Examples:</p>
<p>'STYLE
'It's arguable which is better, but I pass the image handle rather than simply
'passing the scaling values in order to keep the calling code simpler (by a
'couple of declarations statements). Alternatively, I could pass these data
'members directly from the calling code, but that would violate encapsulation.</p>
<p>'STYLE
'As I have done elsewhere, I will <strong>register my offical protest</strong> (just give me the
'forms to fill out) regarding the implementation of annotation serialization as
'a property rather than a pair of Load/Save methods. Again, this is probably a
'matter of style and eminently debatable.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/549611#549611420Answer by matthews for What is the best comment in source code you have ever encountered?matthews2009-02-14T19:21:06Z2009-02-14T19:21:06Z<pre><code>Exception up = new Exception("Something is really wrong.");
throw up; //ha ha
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/549644#5496441Answer by Jonez176 for What is the best comment in source code you have ever encountered?Jonez1762009-02-14T19:29:59Z2009-03-09T15:16:59Z<pre><code>'this next if statement - just how it is. don't try to understand it because you won't. :)
</code></pre>
<p>That's job security right there.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/577663#5776631Answer by Alex for What is the best comment in source code you have ever encountered?Alex2009-02-23T13:38:32Z2009-02-23T13:38:32Z<pre><code>// barcore.cpp - MFC
//.....
HBRUSH CControlBar::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
LRESULT lResult;
if (pWnd->SendChildNotifyLastMsg(&lResult))
return (HBRUSH)lResult; // eat it
//......
</code></pre>
<p>// Eat it - just like eat this.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/614031#6140312Answer by Virgoss for What is the best comment in source code you have ever encountered?Virgoss2009-03-05T09:02:23Z2009-03-05T09:02:23Z<pre><code>// Iced odnako
bool Iced{get;set;}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/614792#61479269Answer by sage386 for What is the best comment in source code you have ever encountered?sage3862009-03-05T13:43:05Z2009-03-05T13:43:05Z<pre><code>/////////////////////////////////////// this is a well commented line
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615022#6150222Answer by S.Lott for What is the best comment in source code you have ever encountered?S.Lott2009-03-05T14:34:44Z2009-03-05T14:34:44Z<p>Something I saw in a .h file years ago.</p>
<pre><code>// It may be a hack, but it works.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615028#6150282Answer by S.Lott for What is the best comment in source code you have ever encountered?S.Lott2009-03-05T14:36:22Z2009-03-05T14:36:22Z<p>Something I saw in a COBOL program that paralyzed me with fear</p>
<pre><code>* All comments pertain to the lines which follow.
</code></pre>
<p>What does this mean?</p>
<ol>
<li><p>Someone was so uncomfortable with commenting that they had to write a meta-comment?</p></li>
<li><p>Someone was in the habit of putting comments <em>below</em> the relevant code and had been told to put comments above? How did that happen?</p></li>
</ol>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615049#61504911Answer by Ed Marty for What is the best comment in source code you have ever encountered?Ed Marty2009-03-05T14:41:49Z2009-03-05T14:41:49Z<p>In a game where this object can be stepped on, or:</p>
<pre><code>stepOff(); //bitch
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615795#6157952Answer by Connor for What is the best comment in source code you have ever encountered?Connor2009-03-05T17:41:16Z2009-03-05T17:41:16Z<p>For one project we had pwlib as a dependency, and at that time it's FreeBSD port was somewhat screwed so I had to build it manually from source. It didn't work out right away, and I had to look into the code; there was some complicated class hierarchy with parts of code generated by macros and its parent calss declaration started with</p>
<pre><code>// The root of all evil ... umm classes
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615845#61584593Answer by Juliano for What is the best comment in source code you have ever encountered?Juliano2009-03-05T17:53:46Z2009-03-05T17:53:46Z<pre><code>long long ago; /* in a galaxy far far away */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615872#6158724Answer by Chris Doggett for What is the best comment in source code you have ever encountered?Chris Doggett2009-03-05T18:02:22Z2009-03-05T18:02:22Z<p>I had to add this one to our old datatable-driven rules engine before I decided to replace it with a scripting language.</p>
<pre><code> /************************************************************
* *
* .=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-. *
* | ______ | *
* | .-" "-. | *
* | / \ | *
* | _ | | _ | *
* | ( \ |, .-. .-. ,| / ) | *
* | > "=._ | )(__/ \__)( | _.=" < | *
* | (_/"=._"=._ |/ /\ \| _.="_.="\_) | *
* | "=._"(_ ^^ _)"_.=" | *
* | "=\__|IIIIII|__/=" | *
* | _.="| \IIIIII/ |"=._ | *
* | _ _.="_.="\ /"=._"=._ _ | *
* | ( \_.="_.=" `--------` "=._"=._/ ) | *
* | > _.=" "=._ < | *
* | (_/ \_) | *
* | | *
* '-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=' *
* *
* LASCIATE OGNI SPERANZA, VOI CH'ENTRATE *
*************************************************************/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615887#6158872Answer by David for What is the best comment in source code you have ever encountered?David2009-03-05T18:06:52Z2009-03-05T18:06:52Z<p>For a memcache wrapper/handler interface pattern class I wrote, I had the following method implemented.</p>
<pre><code>/**
* Do not use, ever - left in place for testing purposes
*/
function I_David_WillHuntYouDownAndHurtYou_Badly_IfIFindThisUsedAnyWhereInTheAppLibrary(){
...
}
</code></pre>
<p>This was basically a super nuke function to tell all the indvidual memcache services to completely flush themselves, and start over with the individual name space counters I used for keys ( ex .{_counter_key value}_.{_counter_key value} )</p>
<p>Another minor novella I wrote was for an automated downloader for a data vendor, detailing how much I hated this vendor and went to great lengths of postulating that their infrastructure's batch system was run by a gerbil, running on a wheel and after so many revolutions of the wheel the next queued task would be started. It was written over the course of 6 months of adding additional exception handling, estoric checks like ( if we got 768 Bytes of \s characters, that means the query to their DB timed out and the spaces are the result of empty failure print statements.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615901#61590126Answer by shsteimer for What is the best comment in source code you have ever encountered?shsteimer2009-03-05T18:13:38Z2009-03-05T18:13:38Z<p>in a homework assignment in college for a teacher who was particularly adamant that we comment our code:</p>
<pre><code>//I wonder if she actually reads these.
</code></pre>
<p>When the assignment was returned, in red pen next to that comment "Yes, I do"</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615910#6159100Answer by shampoopy for What is the best comment in source code you have ever encountered?shampoopy2009-03-05T18:16:25Z2009-03-05T18:16:25Z<p>// Oh crap, i think i'm gonna yack</p>
<p>followed shortly thereafter by:</p>
<p>// TODO: end this lunacy</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/615989#61598930Answer by Conrad for What is the best comment in source code you have ever encountered?Conrad2009-03-05T18:31:26Z2009-03-05T18:31:26Z<pre><code>class Act //That's me!!!
{
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/616013#61601314Answer by Conrad for What is the best comment in source code you have ever encountered?Conrad2009-03-05T18:35:34Z2009-03-05T18:35:34Z<pre><code>try {
}
catch (SQLException ex) {
// Basically, without saying too much, you're screwed. Royally and totally.
}
catch(Exception ex)
{
//If you thought you were screwed before, boy have I news for you!!!
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/616053#6160537Answer by Boydski for What is the best comment in source code you have ever encountered?Boydski2009-03-05T18:44:07Z2009-04-14T14:23:56Z<p>My favorite (which I must admit I've used many times):</p>
<pre><code>// Yes...I know this is repusive and stupid.
// But <%CompanyOwnerOrManagerToken%>, not knowing a thing about code,
// demanded I do it anyways. SO, go crap on their desk, not mine.
// K THX BYE
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/616101#6161012Answer by Jaanus for What is the best comment in source code you have ever encountered?Jaanus2009-03-05T18:53:28Z2009-03-05T18:53:28Z<p>Not in code, but in a related bugtracking system: "This can't be a bug in my code. I coded it very carefully."</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/616122#6161221Answer by Gambrinus for What is the best comment in source code you have ever encountered?Gambrinus2009-03-05T18:57:16Z2009-03-05T18:57:16Z<pre><code>try
{
...
}
catch(Exception ex)
{
//if this happens the world is going to end...
}
</code></pre>
<p>now guess what happened...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/616281#61628115Answer by for What is the best comment in source code you have ever encountered?2009-03-05T19:30:38Z2009-03-05T19:30:38Z<pre><code>// If you delete the credits, I will fucking kill you.
</code></pre>
<p>found in a joomla module.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/616523#6165237Answer by danio for What is the best comment in source code you have ever encountered?danio2009-03-05T20:41:10Z2009-03-05T20:41:10Z<pre><code> // Some wanker in ISO got rid of ifstream(int), ofstream(int), and
// fstream(int). Twit.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/616551#61655119Answer by ahiru for What is the best comment in source code you have ever encountered?ahiru2009-03-05T20:52:38Z2009-03-05T20:52:38Z<p>don't know if it it's funny or sad..but one intern I had working with me had this little gem to calculate the price per unit</p>
<pre><code>...
// get the units from the form
int numUnits = Integer.parseInt(request.getParameter("num_pieces")); // this break at random times
//price
float price = Float.parseFloat(request.getParameter("price")); // same as above
// Under certain conditions the following code blows up. I don't know those conditions.
float pricePerUnit = price / (float)numUnits;
...
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/618817#61881736Answer by namata for What is the best comment in source code you have ever encountered?namata2009-03-06T13:17:14Z2009-03-06T13:17:14Z<p>... or die // bitch</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/618828#6188286Answer by david for What is the best comment in source code you have ever encountered?david 2009-03-06T13:20:19Z2009-04-20T11:32:40Z<pre><code>/**---------START-----------**/
// IMPLEMENTATION GOES HERE
/**---------END-----------**/
</code></pre>
<p><strong>But No Code ;)</strong></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/618976#61897638Answer by matiouchkine for What is the best comment in source code you have ever encountered?matiouchkine2009-03-06T14:10:18Z2009-03-06T14:10:18Z<pre><code>// John! If you'll svn remove this once more,
// I'll shut you, for God's sake!
// That piece of code is not “something strange”!
// That is THE AUTH VALIDATION.
</code></pre>
<p>And what do you think? The code below was safely ‘svn removed’.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/621591#6215912Answer by hasen j for What is the best comment in source code you have ever encountered?hasen j2009-03-07T09:32:53Z2009-03-07T09:32:53Z<p>This is a comment of mine which I found today while refactoring some code</p>
<pre><code>if( year < 100 ): year += 2000 #lol, Y2K
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/626983#62698312Answer by Vladimir Penkin for What is the best comment in source code you have ever encountered?Vladimir Penkin2009-03-09T16:26:02Z2009-04-11T18:21:56Z<pre><code>$this->getSelect()->where ('main_table.product_id = -1'); // Mom, Dad... sorry
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/628776#6287767Answer by Flow for What is the best comment in source code you have ever encountered?Flow2009-03-10T02:59:12Z2009-04-01T17:35:41Z<pre><code>// insert comment here
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/638670#63867044Answer by Brian for What is the best comment in source code you have ever encountered?Brian2009-03-12T13:43:36Z2009-03-12T13:43:36Z<blockquote>
<pre><code> } catch (PartInitException pie) {
// Mmm... pie
</code></pre>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/645024#6450242Answer by Nelson LaQuet for What is the best comment in source code you have ever encountered?Nelson LaQuet2009-03-14T00:00:19Z2009-03-14T00:00:19Z<p>I just ran into this in some of my own code. It was in a magento admin template for category selection:</p>
<pre><code> /*
* OK; before you read the following code know what I am trying to do.
* I needed to get the list of child catagories from the root node so that
* the root node didnt appear in the selection box. But for some stupid
* fucking reason the stupid fucking DBA wont let me acess the items using
* indicies and I instead have to use their stupid fucking Iterator
* implementation. So there.
*/
$firstList = $this->getRootNode()->getChildren();
foreach ($firstList as $node)
{
$nodes = $node->getChildren();
break; // wtf?
}
</code></pre>
<p>I am going to remove the language of course out of our flagship product; but I remember I was super frustrated. If I hadn't left a comment, I would try to revise it but then run into the same problems I had before.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/647713#6477132Answer by for What is the best comment in source code you have ever encountered?2009-03-15T12:15:00Z2009-03-15T12:15:00Z<p>Back around the time the Hitchhiker's Guide game was new, I had a case where I was testing whether something was scrollable and whether the user was trying to scroll, in a language that restricted variable length. So:</p>
<p>if (scroll and noScroll) # or tea and no tea</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/648822#6488225Answer by neoneye for What is the best comment in source code you have ever encountered?neoneye2009-03-15T23:45:12Z2009-03-15T23:45:12Z<pre><code>// nobody read comments!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/648866#64886631Answer by Neil N for What is the best comment in source code you have ever encountered?Neil N2009-03-16T00:24:46Z2009-03-16T00:24:46Z<p>this has turned up in my own code a few times. obviously I touched it more than once:</p>
<pre><code>// TODO: Fix this. Fix what?
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/649920#6499205Answer by Simon Lieschke for What is the best comment in source code you have ever encountered?Simon Lieschke2009-03-16T10:44:58Z2009-03-16T10:44:58Z<p>I discovered this gem when viewing the HTML source of <a href="http://web.archive.org/web/20040609194213/tvnz.co.nz/view/tvnz%5Findex%5Fskin/tvnz%5Findex%5Fgroup" rel="nofollow">an earlier iteration of the TVNZ website</a> (from line 571 if you're playing along at home):</p>
<pre><code><!-- Hopfully we can do this otherwise the nav is going to be pretty plain and Hong will go postal. -->
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/649924#6499241Answer by Telemachus for What is the best comment in source code you have ever encountered?Telemachus2009-03-16T10:48:41Z2009-03-16T10:48:41Z<pre><code>// The hackiest hack that ever did hack
</code></pre>
<p>It's in the <a href="http://wordpress.org/" rel="nofollow">WordPress</a> blog engine (wp-admin/includes/user.php - if anyone actually wants to see the hacky hack itself).</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/657831#6578311Answer by Jeeva S for What is the best comment in source code you have ever encountered?Jeeva S2009-03-18T11:16:24Z2009-03-18T11:16:24Z<pre><code>//If the Current Record is Getting End Dated, We should not create New History Entry.
//We Just need to Update the Previous History Entry
//If the History is already End Dated and the New Record is now removing End Date, Then
//We should not update the Previous History End Date.
//We Just need to Create the New History Record Only.
//Alright..
//Alright....
//Enough Comments. Code it. :-)
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/657879#6578791Answer by Tony for What is the best comment in source code you have ever encountered?Tony2009-03-18T11:34:25Z2009-03-18T11:34:25Z<pre><code>#define SHIT_HAPPENED (BASE + 1) /* generic shit happened */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/657888#6578880Answer by Esko Luontola for What is the best comment in source code you have ever encountered?Esko Luontola2009-03-18T11:38:32Z2009-03-18T11:38:32Z<p>In eMule, Preferences.cpp, in the method that forces a minimum upload speed limit proportional to your download speed limit:</p>
<pre><code>uint16 CPreferences::GetMaxDownload(){
//dont be a Lam3r :)
uint16 maxup=(GetMaxUpload()==UNLIMITED)?GetMaxGraphUploadRate():GetMaxUpload();
if( maxup < 4 )
return (( (maxup < 10) && (maxup*3 < prefs->maxdownload) )? maxup*3 : prefs->maxdownload);
return (( (maxup < 10) && (maxup*4 < prefs->maxdownload) )? maxup*4 : prefs->maxdownload);
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/675779#67577910Answer by Jorn for What is the best comment in source code you have ever encountered?Jorn2009-03-24T00:47:28Z2009-03-24T00:47:28Z<pre><code>/* FIXME This must absolutely be removed before 4.0.7 release
* TODO really remove this */
</code></pre>
<p>we have since released a 4.0.7, 4.0.8, 4.0.9 and 4.1 version...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/676374#6763741Answer by scurial for What is the best comment in source code you have ever encountered?scurial2009-03-24T06:57:43Z2009-03-24T06:57:43Z<p>Mine fave was a variable name inside some of the business logic of a school project written in java.</p>
<pre><code>int StupidJava = -1;
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/686583#6865831Answer by Fraser for What is the best comment in source code you have ever encountered?Fraser2009-03-26T16:39:10Z2009-03-26T16:39:10Z<p>Just found this in some Actionscript I have to update...</p>
<pre><code>/*
* spaghetty code in this module.
* hardcoded variables for load paths for the content window.
* Needs (vast) improvement.
*/
</code></pre>
<p>..great :(</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/686915#6869158Answer by itsmatt for What is the best comment in source code you have ever encountered?itsmatt2009-03-26T18:05:09Z2009-04-01T17:34:20Z<pre><code>// A Gorgon class - For the love of Zeus don't look directly at it!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/687811#68781121Answer by Martin Lazar for What is the best comment in source code you have ever encountered?Martin Lazar2009-03-26T22:32:24Z2009-04-06T09:53:45Z<p>Once I saw in another discussion something like this:</p>
<pre><code>// I can't divide with zero, so I have to divide with something very similar
result = number / 0.00000000000001;
</code></pre>
<p>Clever solution, isn't it :) ? (It's a joke if someone's not sure)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/687856#6878564Answer by Brian Campbell for What is the best comment in source code you have ever encountered?Brian Campbell2009-03-26T22:50:04Z2009-04-20T23:55:34Z<p>This is so much nicer than the scary legal notices and disclaimers you see in many comment headers. From <a href="http://www.sqlite.org/" rel="nofollow">SQLite</a>.</p>
<pre><code>/*
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/687907#6879072Answer by hacken for What is the best comment in source code you have ever encountered?hacken2009-03-26T23:12:03Z2009-03-26T23:12:03Z<p><a href="http://www.jwz.org/doc/censorzilla.html" rel="nofollow">Classics</a> from the old netscape mozilla code. Personally I like</p>
<blockquote>
<p>just can't fuck around. Oh, also moving memory would doom us anyway, and
it'll all just be too damn hard to figure out. So, I give up, the Mac just
completely utterly sucks complete rocks </p>
</blockquote>
<p>but there are a lot of other fun ones.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/687969#6879694Answer by jeffamaphone for What is the best comment in source code you have ever encountered?jeffamaphone2009-03-26T23:43:23Z2009-04-01T17:33:49Z<pre><code>// TODO: Drive an ashen stake through the foul heart of this function.
</code></pre>
<p>And it was a foul function. I have nightmares about it to this day.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/688017#6880176Answer by photographer for What is the best comment in source code you have ever encountered?photographer2009-03-27T00:08:54Z2009-03-27T00:08:54Z<pre><code>// this error could never happen
</code></pre>
<p>And then -- customer's call saying he sees an error message saying "this error could never happen"</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/688088#6880880Answer by Freddy Rios for What is the best comment in source code you have ever encountered?Freddy Rios2009-03-27T00:37:29Z2009-04-01T17:33:19Z<p>Back in college: </p>
<pre><code>//why the f*** we have to move this here to make it work
</code></pre>
<p>It was highlighted in a printed source when we went to review with the professor.</p>
<p>The reason: some really nasty bug related to a buffer overflow, that affected an unrelated variable with a file handler in other place of the code. Moving the variable would make it work again.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/694615#6946151Answer by Amr ElGarhy for What is the best comment in source code you have ever encountered?Amr ElGarhy2009-03-29T13:16:23Z2009-03-29T13:16:23Z<pre><code>// Sorry dirty code
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/694644#69464478Answer by Banang for What is the best comment in source code you have ever encountered?Banang2009-03-29T13:45:24Z2009-04-22T09:14:29Z<pre>
//Dear future me. Please forgive me.
//I can't even begin to express how sorry I am.
</pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/694652#69465228Answer by Zifre for What is the best comment in source code you have ever encountered?Zifre2009-03-29T13:53:24Z2009-05-13T22:57:08Z<p>In drivers/net/sunhme.c (Linux kernel):</p>
<pre><code>/* Welcome to Sun Microsystems, can I take your order please? */
if(!hp->happy_flags & HFLAG_FENABLE)
return happy_meal_bb_write(hp, tregs, reg, value);
/* Would you like fries with that? */
hme_write32(hp, &tregs->frame,
(FRAME_WRITE | (hp->paddr << 23) |
((reg & 0xff) << 18) | (value & 0xffff)));
while(!(hme_read32(hp, &tregs->frame) & 0x10000) && --tries)
udelay(20);
/* Anything else? */
if(!tries)
printk(KERN_ERR "happy meal: Aieee, transceiver MIF write bolixed\n");
/* Fifty-two cents is your change, have a nice day. */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/706648#7066481Answer by euphoria83 for What is the best comment in source code you have ever encountered?euphoria832009-04-01T17:46:57Z2009-04-01T17:46:57Z<pre><code>// Empty constructor to satisfy the stupid compiler
Public ServletHandlerClass () { }
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/713861#7138616Answer by BobC for What is the best comment in source code you have ever encountered?BobC2009-04-03T13:16:30Z2009-04-03T13:16:30Z<pre><code>catch (Exception ex)
{
// just die already.
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/713871#7138710Answer by aaronls for What is the best comment in source code you have ever encountered?aaronls2009-04-03T13:20:15Z2009-04-03T13:20:15Z<p>We have a file and half way down it a programmer trying to make sense of the mess managed to move all the nonsense code to the bottom, and left a comment of something like:</p>
<pre><code>I have no idea what this stuff does below here.
</code></pre>
<p>Another programmer left a series of nested namespaces that acted like a which-way-book, so that you could drill into the namespaces in the idea and choose your actions.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/713872#7138721Answer by GuinnessFan for What is the best comment in source code you have ever encountered?GuinnessFan2009-04-03T13:20:24Z2009-04-03T13:20:24Z<p>'On Error Goto Hell.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/714566#7145661Answer by Teftin for What is the best comment in source code you have ever encountered?Teftin2009-04-03T15:56:28Z2009-04-03T15:56:28Z<p>BerkeleyDB</p>
<pre><code> /*
* Chaos reigns within.
* Reflect, repent, and reboot.
* Order shall return.
*/
return (DB_RUNRECOVERY);
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/717461#7174619Answer by martinus for What is the best comment in source code you have ever encountered?martinus2009-04-04T17:31:08Z2009-04-04T17:31:08Z<pre><code> /**
* Returns cookies according to the filters specified.
*
* @return array Cookies! Nom nom nom nom nom.
*/
public function data_getCookies($uid, $name) {
</code></pre>
<p>Somewhere from the <a href="http://www.google.com/codesearch/p?hl=en#gS-K-kM7dUU/com%5Frohea%5Ffacebook/facebook-client/facebookapi%5Fphp5%5Frestlib.php&q=%22nom%20nom%20nom%22&l=902" rel="nofollow">facebook api</a>.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/717501#7175011Answer by MissT for What is the best comment in source code you have ever encountered?MissT2009-04-04T17:51:49Z2009-04-04T17:51:49Z<p>In an art asset export tool, I stumble upon a complete translator from digits (arabic) numbers to roman numbers. It looked like this:</p>
<pre><code>/*
//You can tell I was bored
//I wanted to do this for a long time
char* ConvertToRoman(int number, int base)
{
... whole code here
}
*/
</code></pre>
<p>The team of the person that wrote this code had been crunching for a long time, I guess it affected their sanity.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/720857#7208570Answer by Paul Suart for What is the best comment in source code you have ever encountered?Paul Suart2009-04-06T09:58:03Z2009-04-06T09:58:03Z<pre><code>// Hack-er-ama
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/720865#7208655Answer by Eskat0n for What is the best comment in source code you have ever encountered?Eskat0n2009-04-06T10:02:57Z2009-04-06T10:02:57Z<pre><code># Don use this. Never!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/720902#7209020Answer by Elroy for What is the best comment in source code you have ever encountered?Elroy2009-04-06T10:29:47Z2009-04-06T10:29:47Z<pre><code>else
{
//error situation
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/720905#7209058Answer by fog for What is the best comment in source code you have ever encountered?fog2009-04-06T10:31:33Z2009-11-07T11:32:07Z<p>About 10 years ago I was working at image processing, scanning microscope video frames to detect cell movement. I was working at a particulary intricated function and decided to go out and have a drink with friends. When I came back home I worked a little bit but not too much because I was drunk. The morning after I found a 10-line completely messed-up function with the following comment (obviously written by my other self):</p>
<pre><code>/* Ah ah ah! You'll never understand why this one works. */
</code></pre>
<p>The strangest part was that it even <em>worked</em>.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/720983#7209830Answer by Elroy for What is the best comment in source code you have ever encountered?Elroy2009-04-06T11:04:47Z2009-04-06T11:04:47Z<pre><code>#pragma region Crap that is kept for temporary reasons
// Huge chunk of commented code
#pragma endregion
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/721029#7210295Answer by lfx for What is the best comment in source code you have ever encountered?lfx2009-04-06T11:20:56Z2009-04-06T11:20:56Z<pre><code>// If I from the future read this I'll back in time and kill myself.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/721065#7210652Answer by pomarc for What is the best comment in source code you have ever encountered?pomarc2009-04-06T11:33:15Z2009-04-06T11:33:15Z<pre><code>//marco 2007.1.23
//I didn't do it
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/721091#7210914Answer by Benjol for What is the best comment in source code you have ever encountered?Benjol2009-04-06T11:48:13Z2009-04-06T14:27:00Z<p>Well, these are mine, so WTF is me, as CodingHorror said:</p>
<pre><code>//#region Code for weird cases - do you really want to know?
</code></pre>
<p>I once left a comment like so in some ASP:</p>
<pre><code>' Commented out following code, don't delete for when [CustomerName] changes his mind
</code></pre>
<p>As it happens, [CustomerName] didn't change his mind, but he DID have access to the web server, and he DID find that line...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/721797#7217974Answer by Colin Cassidy for What is the best comment in source code you have ever encountered?Colin Cassidy2009-04-06T14:47:17Z2009-04-06T14:47:17Z<p>managed to insert this bad pun into our code</p>
<pre><code>for (bo_thans = 0 ; bo_thans < MAX ; bo_thans++)
{
if(rs == thing[bo_thans])
{
found = true;
}
}
if(!found)
{
/* Failed to find rs with bo_thans */
...
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/721922#7219220Answer by Brian Postow for What is the best comment in source code you have ever encountered?Brian Postow2009-04-06T15:15:44Z2009-04-06T15:15:44Z<p>When I'm commenting out chunks of code that I <em>THINK</em> are no longer useful, but I might be wrong about (hence not deleting them) I will sometimes preface them with </p>
<pre><code>// Wilted celery?
</code></pre>
<p>The idea being that this is like celery that is wilted, but you put it back in the fridge anyway. I just know that 10 years from now someone else will find these comments and say WTF?</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/726104#7261042Answer by stuartcw for What is the best comment in source code you have ever encountered?stuartcw2009-04-07T14:44:59Z2009-04-07T14:44:59Z<pre>
; I'm checking in this file because Roy (Back to the Future) Goodwin,
; while testing for Year 2000 problems, inadvertently checked in this
; file while his machine's clock was set to the year 2000. As a result
; this file always newer than it's object file so is always recompiled
; after any change is made to any file. I'm checking it in without
; change to revert the timestamp back to the present.
</pre>
<p>In the Assembly Language source code of Lotus 1-2-3 for DOS, sometime in the early 1990s before the year 2000 problem was widely anticipated.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/726186#7261860Answer by Holli for What is the best comment in source code you have ever encountered?Holli2009-04-07T14:57:00Z2009-04-07T14:57:00Z<pre><code>// Keep prozac ready if things get ugly!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/735896#7358960Answer by thinkhard for What is the best comment in source code you have ever encountered?thinkhard2009-04-09T20:56:51Z2009-04-09T20:56:51Z<p>// now swap like a </p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/735928#7359282Answer by Lucas Jones for What is the best comment in source code you have ever encountered?Lucas Jones2009-04-09T21:06:14Z2009-04-09T21:50:17Z<pre><code>// haack, phil haack
</code></pre>
<p>and:</p>
<pre><code>/* hack, hack, hack, hack, hack hack, hack, hack
* hackity hack, oh wonderful hacks
* wonderful hacks, oh wonderful hack, hack, hack
* hack hack hack... and spam
*/
</code></pre>
<p><strong>EDIT</strong>: Just found this in some of my code (the project wishes to remain anonymous):</p>
<pre><code>// yikes, we need to:
/*
* o
* -|- < US CROSSING PLATFORM
* |\
************************************************
* | ^ PLATFORM |
* | T |
* | TROLL^ |
*/
// right now:
/*
* o ./_ |
* -|-[]\ | (_'_) () (\) | ) \|/ (S) < WALL
* |\ | ^ FRIENDLY MESSAGE FROM YOUR FRIENDS AT MICROSOFT
* ***********************************************
* | ^PLATFORM |
* ^ SPRAY CAN (IN HAND)
*/
public static class DefaultFonts
{
public static string SansSerifPath
{
get { return @"C:\Windows\Fonts\arial.ttf"; }
}
public static string SerifPath
{
get { return @"C:\Windows\Fonts\times.ttf"; }
}
public static string MonospacePath
{
get { return @"C:\Windows\Fonts\courier.ttf"; }
}
}
</code></pre>
<p>How I love puns.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/736035#7360351Answer by Will Charczuk for What is the best comment in source code you have ever encountered?Will Charczuk2009-04-09T21:49:04Z2009-04-09T21:49:04Z<pre><code> map(TimeZoneId.Romance, "Romance Standard Time"); //LULZ.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/736044#73604426Answer by samoz for What is the best comment in source code you have ever encountered?samoz2009-04-09T21:52:53Z2009-04-11T18:13:17Z<pre><code>/*
This isn't the right way to deal with this, but today is my last day, Ron
just spilled coffee on my desk, and I'm hungry, so this will have to do...
*/
return 12; // 12 is my lucky number
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/736049#7360491Answer by toddwick for What is the best comment in source code you have ever encountered?toddwick2009-04-09T21:54:34Z2009-04-09T21:54:34Z<p>// This interface defines method signatures<br>
interface IWhatever { ... }</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/736097#73609716Answer by Steve Weet for What is the best comment in source code you have ever encountered?Steve Weet2009-04-09T22:19:39Z2009-04-09T22:19:39Z<p>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</p>
<pre>
/*
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.
*/
</pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/736113#7361133Answer by Nick for What is the best comment in source code you have ever encountered?Nick2009-04-09T22:28:35Z2009-04-09T22:28:35Z<p>From a contractor in an application for a UK bank.</p>
<pre><code>// i don't know how this works but it does so i'll leave it here anyway
</code></pre>
<p>He also added BNP (British very right wing party) as 1 of the dummy customers for testing... our immediate boss was of Asian ethnicity.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/736116#73611614Answer by simon for What is the best comment in source code you have ever encountered?simon2009-04-09T22:29:56Z2009-04-10T03:31:31Z<p>Ages ago I ran into this one:</p>
<pre>
/***************************************************************************/
/* 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. */
/* */
/* ... */
</pre>
<p>And then went on to describe a particularly hairy algorithm.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/736136#73613613Answer by Frank Crook for What is the best comment in source code you have ever encountered?Frank Crook2009-04-09T22:39:59Z2009-04-09T22:39:59Z<pre><code>
/**
* project_constants.h
*
*
*/
// lol punked have fun searching for magic numbers
/*
........................../´¯/)
........................./..../
......................../..../
......................./..../
....................../..../
...................../..../
..................../..../
.................../..../
............./´¯/'...'/´¯¯`·¸
........../'/.../..../......./¨¯\
........('(...´...´.... ¯~/'...')
.........\.................'...../
..........''...\.......... _.·´
............\..............(
..............\.............\... */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/736167#7361677Answer by mseery for What is the best comment in source code you have ever encountered?mseery2009-04-09T22:54:30Z2009-04-09T22:54:30Z<pre><code>// This is a walkaround for bug #7812
</code></pre>
<p>Written by one of our Chinese programmers, for whom English was not his first language.</p>
<p>I really liked this one. I happen to think "walkaround" is almost a better term than "workaround."</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/740552#7405523Answer by womp for What is the best comment in source code you have ever encountered?womp2009-04-11T18:08:51Z2009-04-11T18:08:51Z<pre><code><!-- Here it is -->
</code></pre>
<p>No other comments anywhere. To this day I don't know what "it" was.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/740603#740603168Answer by Ash for What is the best comment in source code you have ever encountered?Ash2009-04-11T18:42:40Z2009-04-20T16:56:18Z<p>This seems to stop morons from messing my code...</p>
<pre>
Autogenerated, do not edit. All changes will be undone.
</pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/750386#7503861Answer by Rosuav - Chris Angelico for What is the best comment in source code you have ever encountered?Rosuav - Chris Angelico2009-04-15T05:12:37Z2009-04-15T05:12:37Z<p>Here's a few that I've put in my code at various times. Some aren't technically comments, but they're the same sort of concept.</p>
<p>In a cross-platform project that needs some special code on one platform only:</p>
<pre><code>//If defined, will include all the Windows-specific code.
#define LOSE
#ifdef LOSE
#include <windows.h> //WIN32. Duh.
#endif
---------------------------------------------------
//Stolen from other_project_name.cpp
---------------------------------------------------
/*
* These comments have been lifted from propagate() and, though they no longer apply to the code, they may still be of value somewhere. Original tabbing and structural elements have been preserved.
*/
//CAUTION: This has a major Bobby Tables risk. Even if a rulebuilder is used, there's still the risk of something getting corrupted in the database itself.
//Reading text from anywhere and simply slotting it into an SQL statement is a major security risk. (With thanks to xkcd for the name "Bobby Tables".)
//Requirement: Eliminate one Bobby Tables by changing [redacted] to be not just straight SQL.
[lots more comments that are not as funny]
/*
* End of lifted comments. There should not be any executable code between these markers.
*/
---------------------------------------------------
/*
Okay. It's unrecognized. Why is this a fatal error? It's actually very closely akin to the miswart of botched #includes being a fatal. When writing a C/C++
program, you need your headers, and if you don't have one, chances are there'll be a million cascaded errors; so by making "unable to open asdf.h" a fatal,
the compiler suppresses all those errors about undefined symbols and potentially misspelled type names.
*/
---------------------------------------------------
//If someone tries to import 'id' as a field name, it won't work. (We already have our own id.) But I think the probability is so low that I can afford to be funny.
if (!stricmp(ptr,"id")) {warn(0,"Import","","'id' is a reserved word and cannot be used as a column name. (Try 'ego' or 'superego'.)"); return;}
---------------------------------------------------
//Need a place to squirrel away SQL statements somewhere
char *uts[1024]; //Unified Temporary Storage. (Why? Because I said so.)
int nuts=0; //What is it that squirrels keep? Ha!
int utsid[sizeof uts/sizeof *uts];
---------------------------------------------------
/**************************************\
* NOTE: This sets tilde.action. If a *
* tilde header does not exist in the *
* import file (not the _content_, if *
* the entire column isn't there), it *
* will duplicate down through all of *
* the rows. This is fine for ~id, as *
* that will never be changed; and if *
* ~Quantity is blank, that throws an *
* error in 'Add'. With ~Action, I am *
* not so certain. I THINK it'd be OK *
* to dup-down most of the time... if *
* the user only ever imports Adds or *
* Revises, but never both at once in *
* a single import. So for safety, to *
* allow a blank ~Action to revise OR *
* add, I'm breaking the check out to *
* a new variable - the curaction. In *
* most cases, it won't be needed, so *
* it's a waste; but it isn't like it *
* has to copy the entire tilde.*, so *
* it's only a small waste. So it can *
* waste a register... big deal. OK ! *
\**************************************/
---------------------------------------------------
//if (!response) // we're going to crash
//if (!items) // we're going to crash
//TODO: Don't crash
---------------------------------------------------
</code></pre>
<p>A lot of my comments contain obscure references to films or musicals, but they won't be nearly as funny if you don't know the show.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/750440#75044011Answer by digijock for What is the best comment in source code you have ever encountered?digijock2009-04-15T05:40:03Z2009-04-15T05:40:03Z<pre><code>// (c) 2000 Applied Magic, Inc.
// Unauthorized use punishable by torture, mutilation, and vivisection.
</code></pre>
<p>Ah, I always loved that one...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/750454#75045420Answer by Ciryon for What is the best comment in source code you have ever encountered?Ciryon2009-04-15T05:49:56Z2009-04-15T05:49:56Z<pre><code>/**
* If you don't understand this code, you should be flipping burgers instead.
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/750707#7507075Answer by Loopy for What is the best comment in source code you have ever encountered?Loopy2009-04-15T07:55:56Z2009-04-15T07:55:56Z<p>I once worked on a project where I found this comment:</p>
<pre><code>// Cabbage fart?
</code></pre>
<p>I have no idea what it was supposed to mean. Just glad my cube wasn't next to whoever wrote it.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/753350#7533504Answer by Lily for What is the best comment in source code you have ever encountered?Lily2009-04-15T19:35:41Z2009-04-15T19:35:41Z<pre><code>public int hashCode() {
//sucks, but what're you gonna do
/*
int hash = 7;
for (int i = 0; i < array.length; i++)
hash = hash * 31 * (null == array[i] ? 0 : array[i].hashCode());
return hash;
*/
return 0;
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/753413#7534131Answer by Bob Cross for What is the best comment in source code you have ever encountered?Bob Cross2009-04-15T19:52:03Z2009-04-15T19:52:03Z<pre><code>/* Look not upon this file lest your eyes be burnt from your head. */
</code></pre>
<p>What can I say? I was an intern and the summer was almost over. I was, shall we say, lacking in serious commitment to my documentation responsibilities.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/753637#75363718Answer by munificent for What is the best comment in source code you have ever encountered?munificent2009-04-15T20:45:09Z2009-04-15T20:45:09Z<pre><code>// error codes
#define ERROR_SUCESS 0
#define ERROR_SUCCESS_IS_MISSPELLED 1
</code></pre>
<p>No other error codes defined.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/756621#7566210Answer by madcolor for What is the best comment in source code you have ever encountered?madcolor2009-04-16T15:12:55Z2009-04-16T15:12:55Z<p>I just found this in some legacy code.. </p>
<p>'CANNOT JUST QUIT!</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/764798#7647982Answer by The Disintegrator for What is the best comment in source code you have ever encountered?The Disintegrator2009-04-19T03:45:18Z2009-04-19T03:45:18Z<p>// This condition can't happen. Call the police or something.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765147#76514715Answer by Christopher Morley for What is the best comment in source code you have ever encountered?Christopher Morley2009-04-19T09:53:59Z2009-04-21T02:43:37Z<pre><code>//The following 1056 lines of code in this next method
//is a line by line port from VB.NET to C#.
//I ported this code but did not write the original code.
//It remains to me a mystery as to what
//the business logic is trying to accomplish here other than to serve as
//some sort of a compensation shell game invented by a den of thieves.
//Oh well, everyone wants this stuff to work the same as before.
//I guess the devil you know is better than the devil you don't.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765149#7651491Answer by Mmarquee for What is the best comment in source code you have ever encountered?Mmarquee2009-04-19T09:54:39Z2009-04-19T09:54:39Z<p>Best comment I ever saw was</p>
<pre><code>/*
There is no accounting for pointers
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765216#7652160Answer by Stewart Robinson for What is the best comment in source code you have ever encountered?Stewart Robinson2009-04-19T10:45:54Z2009-04-19T10:45:54Z<pre><code><cftry>
...code...
<cfcatch>
<!--- Gobble --->
</cfcatch>
<cftry>
</code></pre>
<p>It's all over my companies code base. It's ColdFusion and it simply ignores errors.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765375#7653750Answer by Antony Kennedy for What is the best comment in source code you have ever encountered?Antony Kennedy2009-04-19T12:57:12Z2009-04-19T12:57:12Z<p>On error resume next 'because nothing will ever go wrong!</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765387#7653875Answer by Antony Kennedy for What is the best comment in source code you have ever encountered?Antony Kennedy2009-04-19T13:06:24Z2009-04-19T13:06:24Z<p>var arbitraryNumber = 10;
//I don't know why. Just move on.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765908#7659081Answer by leed25d for What is the best comment in source code you have ever encountered?leed25d2009-04-19T19:07:13Z2009-04-19T19:07:13Z<p>I do not have a copy of the source but I have always remembered it:</p>
<p>// If you cannot figure it out, you should not be reading this</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765935#7659352Answer by penger for What is the best comment in source code you have ever encountered?penger2009-04-19T19:25:50Z2009-04-19T19:25:50Z<pre><code>def leppard
# what, i cant have my own convention?
end
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765942#7659421Answer by Branden for What is the best comment in source code you have ever encountered?Branden2009-04-19T19:30:47Z2009-04-19T19:30:47Z<p>From the Linux Kernel source:</p>
<p>linux/include/asm-i386/hw_irq.h:</p>
<pre><code>/*
* subtle. orig_eax is used by the signal code to distinct between
* system calls and interrupted 'random user-space'. Thus we have
* to put a negative value into orig_eax here. (the problem is that
* both system calls and IRQs want to have small integer numbers in
* orig_eax, and the syscall code has won the optimization conflict ;)
*
* Subtle as a pigs ear. VY
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765965#7659650Answer by Andy Hefner for What is the best comment in source code you have ever encountered?Andy Hefner2009-04-19T19:52:21Z2009-04-19T19:52:21Z<pre><code>double t = 0.0; /* that's generally my opinion of the diner, too. */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/765967#7659671Answer by Casbah for What is the best comment in source code you have ever encountered?Casbah2009-04-19T19:53:50Z2009-04-19T19:53:50Z<pre><code>private static final Logger lager = new Logger();
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766018#76601826Answer by ealf for What is the best comment in source code you have ever encountered?ealf2009-04-19T20:19:58Z2009-04-19T20:19:58Z<p>From the 2004 Windows leak,</p>
<pre><code>__inline BOOL
SearchOneDirectory(
IN LPSTR Directory,
IN LPSTR FileToFind,
IN LPSTR SourceFullName,
IN LPSTR SourceFilePart,
OUT PBOOL FoundInTree
)
{
//
// This was way too slow. Just say we didn't find the file.
//
*FoundInTree = FALSE;
return(TRUE);
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766037#7660370Answer by del_tron for What is the best comment in source code you have ever encountered?del_tron2009-04-19T20:27:44Z2009-04-20T21:30:57Z<p>/*
* Wirzenius wrote this portably, Torvalds fucked it up :-)
*/</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766044#76604418Answer by vobject for What is the best comment in source code you have ever encountered?vobject2009-04-19T20:31:32Z2009-04-19T20:31:32Z<p>I always liked what Paul DiLascia wrote in his file headers: </p>
<p><code>// If this code works, it was written by Paul DiLascia. If not, I don't know who wrote it</code></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766097#7660971Answer by Alex for What is the best comment in source code you have ever encountered?Alex2009-04-19T21:08:30Z2009-04-19T21:08:30Z<p>$dnstime = time() + 60 * 60 * 24 * 7 * 2; //how long are you staying for vacation on mars? twooo weeeeeks. give dees people air</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766105#7661055Answer by Darren for What is the best comment in source code you have ever encountered?Darren2009-04-19T21:13:15Z2009-04-19T21:13:15Z<pre><code>/**
* Not even your mum thinks you're special if you call this method
*/
onlyYourMumThinksYoureSpecialIfYouCallThisMethod() {...}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766133#7661330Answer by mistake78 for What is the best comment in source code you have ever encountered?mistake782009-04-19T21:31:17Z2009-04-19T21:31:17Z<pre><code>switch(value)
{
[...]
default:
ASSERT(**true**); // if this is triggered, something really bad is happening.
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766208#76620812Answer by dustins for What is the best comment in source code you have ever encountered?dustins2009-04-19T22:04:38Z2009-04-19T22:04:38Z<pre><code>// .==. .==.
// //`^\\ //^`\\
// // ^ ^\(\__/)/^ ^^\\
// //^ ^^ ^/6 6\ ^^ ^ \\
// //^ ^^ ^/( .. )\^ ^ ^ \\
// // ^^ ^/\| v""v |/\^ ^ ^\\
// // ^^/\/ / `~~` \ \/\^ ^\\
// -----------------------------
/// HERE BE DRAGONS
</code></pre>
<p>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)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766217#7662171Answer by David Maynor for What is the best comment in source code you have ever encountered?David Maynor2009-04-19T22:10:44Z2009-04-19T22:10:44Z<p>//FIXME: fix this before the 1.0 release</p>
<p>they were on version 4</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766270#7662701Answer by ropley for What is the best comment in source code you have ever encountered?ropley2009-04-19T22:32:47Z2009-04-19T22:32:47Z<p>What do you think you're doing, Dave?</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766324#76632426Answer by Adam for What is the best comment in source code you have ever encountered?Adam2009-04-19T23:04:34Z2009-04-19T23:04:34Z<pre><code>def format_ticket_content(text, recursive = true)
if text.is_a?(TicketNote)
note = text
text = note.content
else
note = nil
end
## Safety pig has arrived!
text = h(text)
## _
## _._ _..._ .-', _.._(`))
## '-. ` ' /-._.-' ',/
## ) \ '.
## / _ _ | \
## | a a / |
## \ .-. ;
## '-('' ).-' ,' ;
## '-; | .'
## \ \ /
## | 7 .__ _.-\ \
## | | | ``/ /` /
## /,_| | /,_/ /
## /,_/ '`-'
##
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766328#7663284Answer by Tom Chappell for What is the best comment in source code you have ever encountered?Tom Chappell2009-04-19T23:05:44Z2009-04-19T23:05:44Z<p>From the UNIX Version 6 Source Code, circa 1975:</p>
<pre><code>/* You are not expected to understand this. */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766333#76633315Answer by Adam for What is the best comment in source code you have ever encountered?Adam2009-04-19T23:08:11Z2009-04-19T23:08:11Z<pre><code>when :orientation
## Avoid matching gay people with straight people - they hate it, they do, they really do.
query_parameter = "(users.orientation = 'Bi' OR (users.orientation = 'Straight' AND users.gender IN ('#{user.opposite_genders.join('\',\'')}')) OR (users.orientation = 'Gay' AND users.gender IN ('#{user.same_genders.join('\',\'')}')))"
</code></pre>
<p>From a dating website...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766363#766363156Answer by Lance Kidwell for What is the best comment in source code you have ever encountered?Lance Kidwell2009-04-19T23:20:36Z2009-04-19T23:20:36Z<pre><code>// Replaces with spaces the braces in cases where braces in places cause stasis
$str = str_replace(array("\{","\}")," ",$str);
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766537#7665376Answer by J-Tard for What is the best comment in source code you have ever encountered?J-Tard2009-04-20T00:45:44Z2009-04-20T00:45:44Z<p>/* Here I sit, Joe broken hearted, came to do some sh*t, but only just started. */</p>
<p>In regards to some heavy regular expression input validation.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766552#7665525Answer by Charlie Somerville for What is the best comment in source code you have ever encountered?Charlie Somerville2009-04-20T00:52:36Z2009-04-20T00:52:36Z<p>I found this on Google Code Search</p>
<pre><code> // Constructs a tuple with 2 elements (fucking idiot, use std::pair instead!)
template <typename T0,typename T1>
inline tuple <T0,T1> make_tuple (const T0& t0,
const T1& t1) {
tuple <T0,T1> t;
t.get<0>() = t0;
t.get<1>() = t1;
return t;
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766553#7665534Answer by Robert for What is the best comment in source code you have ever encountered?Robert2009-04-20T00:52:43Z2009-04-20T00:52:43Z<p>My favorite comment of all time was used by a gay friend of mine. He liked to mark all of his TODO comments in VB.NET as - 'TODO: Matt Damon</p>
<p>Sometimes additional information was provided but not usually.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766554#7665540Answer by for What is the best comment in source code you have ever encountered?2009-04-20T00:52:54Z2009-07-07T11:38:03Z<p>A compilation of my greatest hits:</p>
<pre><code>// Thats the end of the While loop
// Clean up last row. I really must program better than this.
// Note: You can't immediately tell if the line below works.
// Rounding - blech. It's assumed that all .5s are rounded up.
// Sort out predictions first. Seems like the right place for a prediction, 'first'.
// Let's interpret!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766602#7666021Answer by JMat for What is the best comment in source code you have ever encountered?JMat2009-04-20T02:05:05Z2009-09-18T06:21:37Z<p>In some really crappy vb code (I know it is all crappy but) I found this a comment in an empty if control block that said something like:</p>
<pre><code>If bFound Then
'I love it when I write kick ass code like this
Else
.
.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766630#7666301Answer by David Pope for What is the best comment in source code you have ever encountered?David Pope2009-04-20T02:17:06Z2009-04-20T02:17:06Z<pre><code>#ifdef TRACE
#undef TRACE /* All your trace are belong to us. */
#endif
#define TRACE ....
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766631#7666314Answer by Jason for What is the best comment in source code you have ever encountered?Jason2009-04-20T02:17:07Z2009-04-20T02:17:07Z<pre><code>// Fuck.
</code></pre>
<p>That, and...</p>
<pre><code>// This code worked before, but my cat decided to take a trip across my keyboard...
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766668#76666816Answer by Lance Richardson for What is the best comment in source code you have ever encountered?Lance Richardson2009-04-20T02:33:49Z2009-04-20T02:33:49Z<p>Don't recall where I've seen these:</p>
<pre><code>long time; /* know C */
</code></pre>
<p>and (in code to create some sort of UNIX daemon):</p>
<pre><code>/* Be a real daemon: fork myself and kill my parent */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766678#7666780Answer by alex for What is the best comment in source code you have ever encountered?alex2009-04-20T02:37:48Z2009-04-20T02:37:48Z<pre><code>// Just in-case you're wondering, you had no idea what 0.75 was when you wrote this. Trial and error only.
imagecopyresampled($newimage, $src, 0, 0, (-0.75*$xoff), (-0.75*$yoff), $new_w, $new_h, $width, $height);
</code></pre>
<p>From an image cropping function using GD in PHP from a person who's identity will never be revealed!</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766696#7666968Answer by Josh K for What is the best comment in source code you have ever encountered?Josh K2009-04-20T02:44:47Z2009-04-20T02:44:47Z<p>This whole function is pretty great (from the Linux sunhme.c driver, for the network card nicknamed the Happy Meal by Sun. Because the card that came before that was the "Big MAC". Get it? Get it?)</p>
<pre><code>static void happy_meal_tcvr_write(struct happy_meal *hp,
void __iomem *tregs, int reg,
unsigned short value)
{
int tries = TCVR_WRITE_TRIES;
ASD(("happy_meal_tcvr_write: reg=0x%02x value=%04x\n", reg, value));
/* Welcome to Sun Microsystems, can I take your order please? */
if (!(hp->happy_flags & HFLAG_FENABLE)) {
happy_meal_bb_write(hp, tregs, reg, value);
return;
}
/* Would you like fries with that? */
hme_write32(hp, tregs + TCVR_FRAME,
(FRAME_WRITE | (hp->paddr << 23) |
((reg & 0xff) << 18) | (value & 0xffff)));
while (!(hme_read32(hp, tregs + TCVR_FRAME) & 0x10000) && --tries)
udelay(20);
/* Anything else? */
if (!tries)
printk(KERN_ERR "happy meal: Aieee, transceiver MIF write bolixed\n");
/* Fifty-two cents is your change, have a nice day. */
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766708#7667082Answer by tlrobinson for What is the best comment in source code you have ever encountered?tlrobinson2009-04-20T02:52:15Z2009-04-20T02:52:15Z<p><code>// This is confusing, I KNOW, so let me explain it to you.</code></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766741#7667412Answer by Jdogg for What is the best comment in source code you have ever encountered?Jdogg2009-04-20T03:09:15Z2009-04-20T03:09:15Z<p>I don't have the code to share, but imagine this scenario. About a month or two after our Linux Sys Admin left for greener pastures, I had the pleasure of opening a shell script he'd written. I can't recall why I needed to edit it, but that's not what matters. What's important is that the script was about 40 lines long. I scrolled past the commenting (of which there were 37 lines) to reach the actual working code (3 lines). The code was great, but I was curious - why 37 lines of commenting? So, I scrolled to the top and proceeded to read. To my surprise, the commenting was a rap about what the three lines of code did and how to change it. The best part - it was a partial rip off of Nothing But A G Thing by Dr. Dre and Snoop D O DOUBLE G. Thanks Brian!</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766766#7667667Answer by Chris for What is the best comment in source code you have ever encountered?Chris2009-04-20T03:23:13Z2009-04-20T03:23:13Z<pre><code>// For the sins I am about to commit, may James Gosling forgive me
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766843#7668431Answer by Bobby Fleckman for What is the best comment in source code you have ever encountered?Bobby Fleckman2009-04-20T04:01:11Z2009-04-20T04:01:11Z<pre><code>/* Jeez, this is an ugly mess */
...comment from the X11R6 internals source code circa 1991.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766877#7668778Answer by Sujeegar for What is the best comment in source code you have ever encountered?Sujeegar2009-04-20T04:23:43Z2009-04-20T04:23:43Z<h2>A modification log I noticed in a legacy code</h2>
<blockquote>
<p>05/17/99 <strong>D JONES</strong> COMMENT OUT THE
BLOODY AUZIES CODE (02/19/99)</p>
<p>05/17/99 <strong>K ROBINSON</strong> BLOODY TEXAN
CAN'T SPELL AUSSIE CORRECTLY (NO CODE
CHANGE - JUST A COMMENT)</p>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766878#7668785Answer by Christian Genco for What is the best comment in source code you have ever encountered?Christian Genco2009-04-20T04:24:21Z2009-04-20T04:24:21Z<blockquote>
<p>/*And now, getting all of that to look
half decent in the retarded step
brother
of the browser family, Internet
Fucking Explorer */</p>
</blockquote>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766895#7668951Answer by sandro for What is the best comment in source code you have ever encountered?sandro2009-04-20T04:31:50Z2009-04-20T04:31:50Z<p>private int mousycounter = 0; //Not really a counter</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766901#7669010Answer by Durandal for What is the best comment in source code you have ever encountered?Durandal2009-04-20T04:34:00Z2009-04-20T04:34:00Z<p>link.Remove(); //Actually un-remove it</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766907#7669072Answer by lagattack for What is the best comment in source code you have ever encountered?lagattack2009-04-20T04:36:28Z2009-04-20T04:36:28Z<p><a href="http://fxr.watson.org/fxr/source/pci/if_rl.c" rel="nofollow">http://fxr.watson.org/fxr/source/pci/if_rl.c</a>
is a source of good ones.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766920#7669200Answer by Tony Arnold for What is the best comment in source code you have ever encountered?Tony Arnold2009-04-20T04:44:40Z2009-04-20T04:44:40Z<p>Found in an old perl script that generates HTML:</p>
<pre><code># I would be _very_ brain farting if I said this code didn't need reviewing.
# It will make babies cry, and hair grow on your back, so please don't use it
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766930#7669301Answer by Scrod for What is the best comment in source code you have ever encountered?Scrod2009-04-20T04:49:37Z2009-04-20T04:49:37Z<p><strong>From /System/Library/Frameworks/AppKit.framework/Versions/C/Headers/NSTextView.h:</strong></p>
<pre><code>- (void)smartInsertForString:(NSString *)pasteString replacingRange:(NSRange)charRangeToReplace beforeString:(NSString **)beforeString afterString:(NSString **)afterString;
- (NSString *)smartInsertBeforeStringForString:(NSString *)pasteString replacingRange:(NSRange)charRangeToReplace;
- (NSString *)smartInsertAfterStringForString:(NSString *)pasteString replacingRange:(NSRange)charRangeToReplace;
/* Java note: The second and third methods are the primitives and are the
methods exposed in Java. The first method calls the other two. All
Objective-C code calls the first method. In either Objective-C or Java any
overriding should be done for the second and third methods, not the first
method. This will all work out correctly with the exception of existing code
that overrides the first method. Existing subclasses that do this will not
have their implementations available to Java developers. Isn't Java wonderful? */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766933#7669332Answer by Bayonian for What is the best comment in source code you have ever encountered?Bayonian2009-04-20T04:51:21Z2009-04-20T04:51:21Z<p>//Please comment on your source code</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/766949#7669494Answer by cliff.meyers for What is the best comment in source code you have ever encountered?cliff.meyers2009-04-20T04:58:48Z2009-04-20T04:58:48Z<pre><code>// TODO: not this
</code></pre>
<p>Written by a colleague above a query in desperate need of optimization. In his defense, we'd all been working 70-hour weeks for a few months at that point...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/767004#7670040Answer by MRFerocius for What is the best comment in source code you have ever encountered?MRFerocius2009-04-20T05:24:56Z2009-04-20T05:24:56Z<pre><code>//Do not continue reading if you dont want to die.
</code></pre>
<p>This one almost killed me.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/767282#7672820Answer by Alex for What is the best comment in source code you have ever encountered?Alex2009-04-20T07:47:08Z2009-04-20T07:47:08Z<pre><code>/*
FIXME: why the fuck did anyone ever think this kind of expensive iteration
was a good idea?
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/767341#76734115Answer by efdee for What is the best comment in source code you have ever encountered?efdee2009-04-20T08:10:35Z2009-04-20T08:10:35Z<pre><code>// if i ever see this again i'm going to start bringing guns to work
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/767642#7676422Answer by trinisoftinc for What is the best comment in source code you have ever encountered?trinisoftinc2009-04-20T10:02:27Z2009-04-20T10:02:27Z<pre><code>//If only humans could leave things be.
//Please do not edit this code,
//if you do you wont go to jail, you wont go directly to jail,
//you wont pass go, you wont collect 200 dollars
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/767750#7677501Answer by DragonFax for What is the best comment in source code you have ever encountered?DragonFax2009-04-20T10:45:19Z2009-04-20T10:45:19Z<p>From the sendmail config file. After pages and pages of what looked like simply line noise. I found this gem.</p>
<pre><code># insert this handy debugging line wherever you have problems
#R$* $:$>99$1
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/767937#7679371Answer by XoC for What is the best comment in source code you have ever encountered?XoC2009-04-20T11:53:11Z2009-04-20T11:53:11Z<p>int main(void)
/* Program starts here */</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768021#7680212Answer by w4ymo for What is the best comment in source code you have ever encountered?w4ymo2009-04-20T12:18:34Z2009-04-20T12:18:34Z<p>I cried when I read this one on a project I was given to maintain.</p>
<pre><code>//Write Code Here
</code></pre>
<p>I still cringe :)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768023#7680236Answer by Steve Pomeroy for What is the best comment in source code you have ever encountered?Steve Pomeroy2009-04-20T12:19:15Z2009-04-20T12:24:42Z<p>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.</p>
<p>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:</p>
<pre><code>// If you are reading this, please place a checkmark here [ ]
</code></pre>
<p>Of course, I got it back with a big blue "A" on the front and no checkmark to be found.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768096#7680967Answer by Kartoffelheinz for What is the best comment in source code you have ever encountered?Kartoffelheinz2009-04-20T12:45:02Z2009-04-20T12:45:02Z<p>First two lines of a file called monitoring.sh:</p>
<pre><code>#!/usr/bin/perl
# perl script disguised as a bash script
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768097#7680972Answer by JJacobsson for What is the best comment in source code you have ever encountered?JJacobsson2009-04-20T12:45:08Z2009-04-20T12:45:08Z<pre><code>// The freshest corpse at the back please.
m_DeadCharacters.push_back( std::make_pair(character, 0.0f) );
// Get rid of the rotting surplus
while( m_DeadCharacters.size() > 3 )
m_DeadCharacters.pop_front();
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768172#7681721Answer by TJ for What is the best comment in source code you have ever encountered?TJ2009-04-20T13:08:28Z2009-04-20T13:08:28Z<pre><code>//ha, you thought I was lazy didnt ya?!
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768386#76838619Answer by Jacques Chester for What is the best comment in source code you have ever encountered?Jacques Chester2009-04-20T14:03:20Z2009-04-20T14:03:20Z<pre><code>// this comment included for the benefit of anyone grepping for swearwords: shit.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768393#7683937Answer by orj for What is the best comment in source code you have ever encountered?orj2009-04-20T14:04:54Z2009-04-20T14:04:54Z<pre><code>// BEGIN HACK
...
// END HACK: I feel dirty.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768440#7684402Answer by Gos for What is the best comment in source code you have ever encountered?Gos2009-04-20T14:14:15Z2009-04-20T14:14:15Z<p>/*
* TODO: Remove this function</p>
<p>function remove($customer_id)
{
$this->Customer->remove($id);
}</p>
<p>*/</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768624#7686242Answer by jmb for What is the best comment in source code you have ever encountered?jmb2009-04-20T14:48:46Z2009-04-20T14:48:46Z<pre><code>/*
____________________
/ \
| Jean-Michel Bechet |
| 2002-2009 |
\___ _______________/
|/
(o_
//\
V_/_
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768714#7687141Answer by drew for What is the best comment in source code you have ever encountered?drew2009-04-20T15:13:41Z2009-04-20T15:13:41Z<p>/*<br />
* After 36 hours, 2 holes in my wall and writing my code right beside the API <br />
* this still doesn't work.<br />
* function getMap():void takes in an event object @param: evt:mouseEvent <br />
* I will now retire for the day with a bottle of rum and 2 hours of crying<br />
*/</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/768732#768732-9Answer by arke for What is the best comment in source code you have ever encountered?arke2009-04-20T15:16:41Z2009-04-21T09:12:40Z<p>From an absolutely lovely project I worked on up until recently (yes, I admit, some of those are mine, but I won't tell you which):</p>
<pre>
if(FAILED(hr))
{
char fuck[256];
sprintf(fuck, "GetBuffer() fucking fucked the fuck: %d", hr);
MessageBoxA(0, fuck, fuck, MB_OK | MB_ICONERROR);
return;
}
<pre>
// This is for Chris, since he gets all hot and horny over "uint" instead of "unsigned int"
// ... or maybe he's just a lazy fuck. Who knows!?
using Ogre::uint;
</pre>
<pre>
// movable texts, fucktory
MovableObjectTextFactory* m_pMovableObjectTextFactory;
</pre>
<pre>
// diarrhea... shitting CR from the string. complete run...
</pre>
<p>What he meant was that he's splitting the string by carriage returns to render separately.</p>
<pre>
// unlock shit (duh, this comment is useless)
pixelBuffer->unlock();
</pre>
<pre>
// :HACK: remove me after demo is shipped
</pre>
<p>Of course, it's still in there ;)</p>
<pre>
// it's 4am and I can't think of a decent error message.
// my lead just fell asleep at his desk, so I can't ask him.
// [name] went home because he didn't want to get divorced.
// and so it's little ol' me, sitting here, comin up with an
// error message for something that should never ever happen.
ASSERT0(in_len == max_in, "http://www.youtube.com/watch?v=oHg5SJYRHA0");
</pre>
<pre>
// you want hungarian, you GET hungarian!
for(int fcknglpidxcntvrI = 0; fcknglpidxcntvrI < len; fcknglpidxcntvrI++)
</pre>
<pre>
bool bKillSomethingAlive = false; // beating the dead horse instead
</pre>
<p>Of course, we also have a nice collection of interesting ways to say "Hack":</p>
<pre>
// HACKOMATIC
// HMM... HACKXOR?
// HACK'O'ROONY
// AR; yeah I know it's HACKsoup
// HACK SHOT! DOMINATING!
// HACK'KIDO
// HACKku. sepukku. harakiri. kamikaze. ninja.
// HACK'o'NEIL
// HACKsaw
</pre>
<p></pre></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769046#7690462Answer by schwa for What is the best comment in source code you have ever encountered?schwa2009-04-20T16:31:10Z2009-04-20T16:46:47Z<p>#define FUCK_VS6_CANT_COMPILE_TEMPLATES_WITHOUT_HANDHOLDING ((float*)0)</p>
<p>... </p>
<p>SetPinsFromChannels<code><float</code>>(&pinbuf, streambuf, &inmapper, FUCK_VS6_CANT_COMPILE_TEMPLATES_WITHOUT_HANDHOLDING);</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769077#76907713Answer by Martin for What is the best comment in source code you have ever encountered?Martin2009-04-20T16:37:09Z2009-04-20T16:37:09Z<p>I posted this "license statement" in a WordPress template I released. I thought it was funny, anyhow.</p>
<pre><code>/* The License:
You (from this point on referred to as The You) are hereby
granted by me (from this point on referred to as The Me)
license to knock yourself silly with this template.
By using this template The You implicitly accepts this
license and pledges solemnly to never claim creative
ownership of any graphics, code, concepts, eggs, bacon, ideas,
colors, shapes, hypertext-transfer protocols or other conduits
of the visual splendor thatis this template.
The Me, in turn, pledges equally solemnly to be far too
lazy to ever check up on you, so if you do manage to pull
some chicks The Me won't have a cow.
However The Me would be sorely disappointed if The You
were to try and sell or distribute this work without
acknowledging The Me. Seriously. The Me will come down on
The You like a large quantitiy of hard and heavy objects
that in large quantities may be harmful and possibly even
lethal to The You; So don't even think about it, The Buster.
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769083#7690836Answer by Kuroki Kaze for What is the best comment in source code you have ever encountered?Kuroki Kaze2009-04-20T16:38:29Z2009-04-20T16:38:29Z<p><code>// This will save us ~0.5 sec for every user and please the machine spirits.</code></p>
<p>Before very long procedure :)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769201#7692011Answer by George Mauer for What is the best comment in source code you have ever encountered?George Mauer2009-04-20T17:05:34Z2009-04-20T17:05:34Z<pre><code>// This part is more difficult
</code></pre>
<p>At the top of a method.</p>
<p>That was about 5 lines long.</p>
<p>And not very difficult.</p>
<p>It was the only comment.</p>
<p>In the entire application.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769278#76927820Answer by DoubleDown for What is the best comment in source code you have ever encountered?DoubleDown2009-04-20T17:25:37Z2009-04-20T17:25:37Z<p>From the leaked Win2K source code:</p>
<p><code>
// The magnitude of this hack compares favorably with that of the national debt.
</code></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769428#7694283Answer by Glyph for What is the best comment in source code you have ever encountered?Glyph2009-04-20T18:04:36Z2009-04-20T18:04:36Z<p>My personal favorite is <a href="http://twistedmatrix.com/trac/browser/tags/releases/twisted-8.2.0/twisted/python/components.py#L154" rel="nofollow">documentation in limerick form</a>:</p>
<pre><code> Subclassing made Zope and TR
much harder to work with by far.
So before you inherit,
be sure to declare it
Adapter, not PyObject*
</code></pre>
<p>This probably spoils the joke a bit, but since it's a bit obscure I'll explain:</p>
<p>"TR" here refers to "Twisted Reality". Zope 2 and the original <code>twisted.reality</code> package made extensive and unfortunate use of multiple inheritance, which could make it difficult to understand what was going on when you saw a method call. Zope 3, Twisted itself, and <code>twisted.reality</code>'s successors (including the most recent, <a href="http://divmod.org/trac/wiki/DivmodImaginary" rel="nofollow">Imaginary</a>) instead generally favor component composition.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769443#76944371Answer by halcy for What is the best comment in source code you have ever encountered?halcy2009-04-20T18:10:28Z2009-04-20T18:10:28Z<p><a href="http://code.google.com/p/xee/source/browse/trunk/XeePhotoshopLoader.m?spec=svn28&r=11#107" rel="nofollow">http://code.google.com/p/xee/source/browse/trunk/XeePhotoshopLoader.m?spec=svn28&r=11#107</a></p>
<pre><code> // At this point, I'd like to take a moment to speak to you about the Adobe PSD format.
// PSD is not a good format. PSD is not even a bad format. Calling it such would be an
// insult to other bad formats, such as PCX or JPEG. No, PSD is an abysmal format. Having
// worked on this code for several weeks now, my hate for PSD has grown to a raging fire
// that burns with the fierce passion of a million suns.
// If there are two different ways of doing something, PSD will do both, in different
// places. It will then make up three more ways no sane human would think of, and do those
// too. PSD makes inconsistency an art form. Why, for instance, did it suddenly decide
// that *these* particular chunks should be aligned to four bytes, and that this alignement
// should *not* be included in the size? Other chunks in other places are either unaligned,
// or aligned with the alignment included in the size. Here, though, it is not included.
// Either one of these three behaviours would be fine. A sane format would pick one. PSD,
// of course, uses all three, and more.
// Trying to get data out of a PSD file is like trying to find something in the attic of
// your eccentric old uncle who died in a freak freshwater shark attack on his 58th
// birthday. That last detail may not be important for the purposes of the simile, but
// at this point I am spending a lot of time imagining amusing fates for the people
// responsible for this Rube Goldberg of a file format.
// Earlier, I tried to get a hold of the latest specs for the PSD file format. To do this,
// I had to apply to them for permission to apply to them to have them consider sending
// me this sacred tome. This would have involved faxing them a copy of some document or
// other, probably signed in blood. I can only imagine that they make this process so
// difficult because they are intensely ashamed of having created this abomination. I
// was naturally not gullible enough to go through with this procedure, but if I had done
// so, I would have printed out every single page of the spec, and set them all on fire.
// Were it within my power, I would gather every single copy of those specs, and launch
// them on a spaceship directly into the sun.
//
// PSD is not my favourite file format.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769447#7694474Answer by Nordes for What is the best comment in source code you have ever encountered?Nordes2009-04-20T18:11:14Z2009-04-20T18:11:14Z<p>While debugging someone else JavaScript I've seen the following comment:</p>
<pre><code>// Notice: I feel so dirty doing this, but it's the only way to make it cross browser.
</code></pre>
<p>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:</p>
<pre><code>Every line of code you write that you feel gross about will ultimately come back to haunt you. Therefore, avoid writing code that makes you feel dirty.
</code></pre>
<p>That's funny :)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769468#7694682Answer by thijs for What is the best comment in source code you have ever encountered?thijs2009-04-20T18:15:49Z2009-04-20T18:15:49Z<p>I recently saw this:</p>
<blockquote>
<p>// you just lost the game</p>
</blockquote>
<p>if you don't know what the game is:
<a href="http://en.wikipedia.org/wiki/The%5FGame%5F%28mind%5Fgame%29" rel="nofollow">http://en.wikipedia.org/wiki/The_Game_(mind_game)</a>
(it's very silly, but silly in a interesting in a way)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769590#7695903Answer by Unknown for What is the best comment in source code you have ever encountered?Unknown2009-04-20T18:46:50Z2009-04-21T09:44:18Z<pre><code>/**
* This run through all the guipublisherbuyRecord , the records those have
* diff. is buytotal and prior to buy isRecommendedBillingClickedWarning flag
* is set if priously RB ran and this time not.
*
* --What?
*
* @return
* @throws AppException
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769805#7698050Answer by Daniel Dickison for What is the best comment in source code you have ever encountered?Daniel Dickison2009-04-20T19:39:26Z2009-04-20T19:39:26Z<p>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.</p>
<p>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...</p>
<pre><code> (let ((varianta (format nil "~aa" problem))
(variantb (format nil "~ab" problem))
(variantc (format nil "~ac" problem)))
;;if the A and B variants exist, create a group file
;;(why not just check for a? I don't know, this just feels right)
(when (and (probe-file varianta)
(probe-file variantb))
...)))
</code></pre>
<p><em>Bug: 1, Gut: 0.</em></p>
<p>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).</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769869#76986916Answer by Alexander Temerev for What is the best comment in source code you have ever encountered?Alexander Temerev2009-04-20T20:03:28Z2009-04-20T20:03:28Z<p><code>// I put on my robe and wizard hat...</code></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769893#7698931Answer by ben for What is the best comment in source code you have ever encountered?ben2009-04-20T20:13:54Z2009-04-20T20:13:54Z<p>From <a href="http://www.madore.org/~david/computers/callcc.html" rel="nofollow">http://www.madore.org/~david/computers/callcc.html</a>:</p>
<pre><code>/* Yow! DEMONS are flying through my NOSE! */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/769949#76994961Answer by Marcus Lindblom for What is the best comment in source code you have ever encountered?Marcus Lindblom2009-04-20T20:30:06Z2009-04-20T20:30:06Z<pre><code>double penetration; // ouch
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/770010#7700100Answer by Øyvind for What is the best comment in source code you have ever encountered?Øyvind2009-04-20T20:43:47Z2009-04-20T20:43:47Z<p>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...</p>
<pre><code>trace("balle");
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/770022#77002227Answer by proudgeekdad for What is the best comment in source code you have ever encountered?proudgeekdad2009-04-20T20:46:03Z2009-04-22T17:16:40Z<p>Our DBA found this in the middle of a 3000 line stored procedure written by a third party.</p>
<pre><code>/* IF DOLPHINS ARE SO SMART, HOW COME THEY LIVE IN IGLOOS? */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/770351#7703513Answer by Andrew for What is the best comment in source code you have ever encountered?Andrew2009-04-20T22:21:46Z2009-04-20T22:21:46Z<p><code> // no comment </code></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/770788#7707880Answer by HeretoLearn for What is the best comment in source code you have ever encountered?HeretoLearn2009-04-21T02:06:02Z2009-04-21T02:06:02Z<p>Some old fortran code I saw:</p>
<pre><code> integer *4 one,two,three;
</code></pre>
<p>c asssign one to 100 before entering the loop <BR>
one=100;</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/770924#7709247Answer by for What is the best comment in source code you have ever encountered?2009-04-21T03:23:02Z2009-04-21T03:23:02Z<p>// This should fix something that should never happen</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/771666#7716660Answer by Marko Ravnjak for What is the best comment in source code you have ever encountered?Marko Ravnjak2009-04-21T08:46:03Z2009-04-21T08:46:03Z<p>// repopulate, slight hax (or strong assumptions :P) below</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/771803#77180312Answer by Craig McGuff for What is the best comment in source code you have ever encountered?Craig McGuff2009-04-21T09:30:49Z2009-04-21T09:30:49Z<p>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..."</p>
<p>Many years later I find embedded in some some source that a temporary coworker had done, every function he touched is tagged with:</p>
<pre><code>/* NOT FIT FOR HUMAN CONSUMPTION */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/771804#7718044Answer by Sindri for What is the best comment in source code you have ever encountered?Sindri2009-04-21T09:31:00Z2009-04-21T09:31:00Z<pre><code>/**
* As Gregor Samsa awoke one morning from uneasy dreams he found himself
* transformed in his bed into a gigantic insect. He was lying on his hard,
* as it were armour plated, back, and if he lifted his head a little he
* could see his big, brown belly divided into stiff, arched segments, on
* top of which the bed quilt could hardly keep in position and was about
* to slide off completely. His numerous legs, which were pitifully thin
* compared to the rest of his bulk, waved helplessly before his eyes.
* "What has happened to me?", he thought. It was no dream....
*/
protected static String DEFAULT_TRANSLET_NAME = "GregorSamsa";
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/771828#7718280Answer by Jannie for What is the best comment in source code you have ever encountered?Jannie2009-04-21T09:38:01Z2009-04-21T09:42:02Z<pre><code>catch
{
// you’re fucked
// write out the file somewhere and start screaming “Connection down! Connection down!”
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/771851#7718510Answer by Jannie for What is the best comment in source code you have ever encountered?Jannie2009-04-21T09:42:56Z2009-04-21T09:42:56Z<p>//this is a crap way to do this but I ran out of patience</p>
<p>DelButton.click(); </p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/771927#7719271Answer by Jannie for What is the best comment in source code you have ever encountered?Jannie2009-04-21T10:09:57Z2009-04-21T10:09:57Z<p>DataRow[] foundrows = FilterCalendarEntriesBecauseDotNETIsFuckedUp(tbtemp,CalDate);</p>
<p>Not a comment but an interesting function name</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/771974#77197476Answer by Sulik for What is the best comment in source code you have ever encountered?Sulik2009-04-21T10:30:48Z2009-04-21T10:30:48Z<p><code></p>
<pre><code>#define TRUE FALSE
//Happy debugging suckers
</code></pre>
<p></code></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/772078#7720782Answer by for What is the best comment in source code you have ever encountered?2009-04-21T11:07:21Z2009-04-21T11:07:21Z<p>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:</p>
<p>XRA A ;MT</p>
<p>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. </p>
<p>Back to the MT - Empty (get it?)</p>
<p>That's the best I've run across.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/772132#7721329Answer by Øyvind for What is the best comment in source code you have ever encountered?Øyvind2009-04-21T11:24:25Z2009-04-21T11:24:25Z<pre><code>public function get state( /* of Palestine back */ ):Boolean
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/772430#7724300Answer by Frank Denis for What is the best comment in source code you have ever encountered?Frank Denis2009-04-21T12:53:17Z2009-04-21T12:53:17Z<pre><code>/**
* Hexadecimal digit
*/
protected $version = -1;
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/772445#7724454Answer by Frank Denis for What is the best comment in source code you have ever encountered?Frank Denis2009-04-21T12:56:04Z2009-04-21T12:56:04Z<pre><code>else
{
// rien, c'est parfait.
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776351#7763511Answer by João Cavaleiro for What is the best comment in source code you have ever encountered?João Cavaleiro2009-04-22T09:26:20Z2009-04-22T09:26:20Z<p>// This is a kind of magic...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776364#7763640Answer by Jürgen for What is the best comment in source code you have ever encountered?Jürgen2009-04-22T09:29:55Z2009-04-22T09:29:55Z<p>// fix it!</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776445#7764451Answer by Jürgen for What is the best comment in source code you have ever encountered?Jürgen2009-04-22T09:53:14Z2009-04-22T09:53:14Z<pre><code>// TODO: Delete
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776486#7764862Answer by slf for What is the best comment in source code you have ever encountered?slf2009-04-22T10:13:10Z2009-04-22T10:13:10Z<pre><code>// *** drunk -- fix later ***
</code></pre>
<p><a href="http://www.google.com/codesearch/p?hl=en#BNbNcRE4c0E/~wvereeck/h838/Transceiver%5Fver10.java&q=drunk%20fix%20later&l=617" rel="nofollow">direct link</a></p>
<p>More fun with <a href="http://www.google.com/codesearch?hl=en&lr=&q=%2Bdrunk%2Bfix%2Blater&sbtn=Search" rel="nofollow">google code search</a>...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776518#7765181Answer by Senor Plankton for What is the best comment in source code you have ever encountered?Senor Plankton2009-04-22T10:25:41Z2009-04-22T10:25:41Z<p>I once got a call from the client years after working on a big budgeting system written in Paradox 3.5 -</p>
<p>"We've come across a bit of commenting that came up in a debug " - </p>
<pre><code>// This shouldn't happen, if it does, then the bits that automagically
// worked when I wrote it have stopped working
</code></pre>
<p>... !</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776595#7765952Answer by vedang for What is the best comment in source code you have ever encountered?vedang2009-04-22T10:49:10Z2009-04-22T10:49:10Z<pre><code>// for 8 or 12 threads this does not affect much.
// Strange are the situations if not understood properly.
// Yoda strikes again
</code></pre>
<p>In a mutli-threading module! :)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776698#7766980Answer by prassu for What is the best comment in source code you have ever encountered?prassu2009-04-22T11:14:07Z2009-04-22T11:14:07Z<p>// simply copied from another code</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776715#7767158Answer by mtod for What is the best comment in source code you have ever encountered?mtod2009-04-22T11:18:42Z2009-04-23T07:42:23Z<p>Some time ago I came across:</p>
<pre><code>raise InvalidChild() # e.g. no legs
</code></pre>
<p><del>This is grotesque since "<em>inwalida</em>" in polish, means person with disability.</del> silly me :)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776808#7768084Answer by Martín Marconcini for What is the best comment in source code you have ever encountered?Martín Marconcini2009-04-22T11:43:13Z2009-04-22T11:43:13Z<p>I've seen this code in a function FULL of Explicit weird casts:</p>
<pre><code>// Since today's CPUs are really fast, this is dedicated to those who said:
// " You can't use Moore's Law as an excuse to write bad software. "
</code></pre>
<p>The code was horrendous :)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776957#7769570Answer by Ivo for What is the best comment in source code you have ever encountered?Ivo2009-04-22T12:24:33Z2009-04-22T12:24:33Z<p>'Major changes: Everthing! - Removed all Cornoud's code !</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776959#7769591Answer by ihr-name for What is the best comment in source code you have ever encountered?ihr-name2009-04-22T12:24:37Z2009-04-22T12:24:37Z<pre><code>public GetRandomNumber()
{
// Chosen by a fairly rolen dice
return 12;
}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776965#7769650Answer by Anuj Rathi for What is the best comment in source code you have ever encountered?Anuj Rathi2009-04-22T12:25:48Z2009-04-22T12:25:48Z<p>// var r = dojo.doc.selection.createRange();
// hack to get IE 6 to play nice. What a POS browser.
var tr = dojo.doc.selection.createRange().duplicate();</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/776973#7769731Answer by Mak for What is the best comment in source code you have ever encountered?Mak2009-04-22T12:27:47Z2009-04-22T12:27:47Z<p>Found over a complex code - </p>
<p>//Jesus and this code have one thing in common: both were resurrected</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/777244#7772441Answer by for What is the best comment in source code you have ever encountered?2009-04-22T13:39:33Z2009-04-22T13:39:33Z<p>// Holy moses! I've never seen anything so ridiculous in all my life. </p>
<p>// Why do we need to query the AlarmIDs table twice.</p>
<p>// Please tell me sir; I would really like to know. </p>
<p>// This like all the other services have been mangled</p>
<p>// to the point where they are nearly impossible to determine what kind of side affects might occur.</p>
<p>// I am making the smallest changes I can to this code. </p>
<p>// The GetAlarmId method gets the alarm id from the AlarmIDs table.</p>
<p>// Novel idea, why didn't we query for the values be get below all in the same place.</p>
<p>// This should be changed, but right now it will have to remain as is due to time constraints.</p>
<p>// This like all other services really don't do anything fantastically hard, but after the original coders got</p>
<p>// done with them; they are difficult to work with and have an acceptable comfort level.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/777655#7776550Answer by Juan S for What is the best comment in source code you have ever encountered?Juan S2009-04-22T15:00:31Z2009-04-28T19:03:16Z<pre><code>// if the resultMap size is less than or equal to zero
// then the product is added
if (resultMap.size() <= 0)
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/777805#7778053Answer by unknown (google) for What is the best comment in source code you have ever encountered?unknown (google)2009-04-22T15:24:36Z2009-04-22T15:24:36Z<pre><code>v.bpc := v.pc; -- Remember to jump back
v.baccu := accu; -- Yo dawg, heard you like runing instructions
-- so I took backup of your accu so you can run
-- instructions while you run instructions.
v.flags.i := false; -- No more interupts
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/777822#7778220Answer by Rosuav - ChrisA for What is the best comment in source code you have ever encountered?Rosuav - ChrisA2009-04-22T15:27:15Z2009-04-22T15:27:15Z<p>Re eating one's own dogfood: We have the same term in our workplace (granted, only because I introduced it). My code is peppered with comments that say "TODO" and indicate something that ought to be done eventually, but a comment saying "DOGFOOD" (both keywords are always at the beginning of the comment, in all caps) means something that must be done before this program can be used even internally. It's a handy thing to search for, as the word "dogfood" is never going to appear in a quoted string - if it does, I can always just say "dog-food" or something - so even a case-insensitive search will come up with the right results.</p>
<p>Regarding zeroing the accumulator: I've done exactly the same thing when programming an Intel 80x86 (I started on the 8086 and moved up from there into the modern Pentiums). XORing a register with itself is the quickest and tightest way to clear it. Using "MOV AX,0" requires three bytes (opcode and two bytes of literal 16-bit zero), whereas "XOR AX,AX" is only two; it's even more noticeable with the 386-and-higher extended registers, where "MOV EAX,0" requires five bytes (four bytes of 32-bit zero). My C/C++ compiler always zeroes registers this way, so I'd assume it's still the best way (although I haven't studied opcode timing tables in ages, and probably both XOR reg,reg and MOV reg,imm take one clock).</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/778161#7781613Answer by Peter Meter for What is the best comment in source code you have ever encountered?Peter Meter2009-04-22T16:41:42Z2009-04-22T16:41:42Z<pre><code>#!/usr/bin/sh
# Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
# All Rights Reserved
# THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
# The copyright notice above does not evidence any
# actual or intended publication of such source code.
#ident "@(#)false.sh 1.6 93/01/11 SMI" /* SVr4.0 1.3 */
exit 255
</code></pre>
<p>Taken from SunOS 5.9 aka Solaris 9 (/usr/bin/false)</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/778254#7782544Answer by Peter Turner for What is the best comment in source code you have ever encountered?Peter Turner2009-04-22T17:05:20Z2009-04-22T17:05:20Z<pre><code>var something TBoolean; //Pickins
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/778275#77827544Answer by Rohit Kumbhar for What is the best comment in source code you have ever encountered?Rohit Kumbhar2009-04-22T17:11:20Z2009-04-22T17:11:20Z<pre><code>// somedev1 - 6/7/02 Adding temporary tracking of Login screen
// somedev2 - 5/22/07 Temporary my ass
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/778286#7782860Answer by bosky101 for What is the best comment in source code you have ever encountered?bosky1012009-04-22T17:14:32Z2009-04-22T17:14:32Z<pre><code>%%return_median
hit_the_sweet_spot(Arg)->
.
.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/778615#7786151Answer by PMontgomery for What is the best comment in source code you have ever encountered?PMontgomery2009-04-22T18:44:46Z2009-04-22T18:44:46Z<p>First at the beginning of an Update to a huge object:</p>
<pre><code> /*General note to all who tread in the <ObjectName>() code...
* The SetOriginals() method from the BaseEntity class should be called (and only called) right after the Get() method
* call as seen above. Calling the SetOriginals method elsewhere will result in bugs and all kinds of other nasty suprises.
*/
</code></pre>
<p>Then after some 200 lines of logic to update the object:</p>
<pre><code> //Attempt to explain this confusing mess of code:
//First time you save an actual absence this is what happens:
//0. The first save saves to the <TableName> table (among other things). (Fig. A)
//1. The <CalculationMethod> method is called next which inserts to the <OtherTableName> table.
//(This is the table that keeps track of credits to the case.) (Fig. B)
//2. So then you have to call <UpdateCalculations> to move the <TableName> records to the <ThirdTableName> table. (Fig. C)
//3. Then you go back and run calculations since you have the debits table (<ThirdTableName>) populated. (Fig D.)
//4. Then a final save to save the calculations back to the case. (Fig. E)
//Yeah, I know what you're thinking: this sucks. 10/01/07 XXX
</code></pre>
<p>And the developer was right... This sucked HARD!</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/778722#77872221Answer by Samutz for What is the best comment in source code you have ever encountered?Samutz2009-04-22T19:12:59Z2009-04-22T19:12:59Z<pre><code>/*
after hours of consulting the tome of google
i have discovered that by the will of unknown forces
without the below line, IE7 believes that 6px = 12px
*/
font-size: 0px;
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/778895#7788950Answer by Nazreel for What is the best comment in source code you have ever encountered?Nazreel2009-04-22T19:49:19Z2009-04-22T19:49:19Z<p>I was doing a database in Access, very simple thing - at least it was supposed to be at the start or I would have done it in Delphi. The client wanted to be able to get the customer info out of the database but they would not enter enough information to reliably identify the customer. I told them to use the phone number as the key as each customer (the way they worked, not for everyone) would have a different number. After a few frantic calls from them, (It's not working we can't enter the customer) I discovered that they were too lazy to look up the phone numbers from their old system and were trying to enter all the numbers they did not know as "n/a". In trying to sort this out for them I ended up with a lot of checking loops in the code and had the comment beside one outcome "This should never be reached if they do what they are supposed to do!!!!!!!!!"</p>
<p>They also asked me once "How can we find the right customer even if we put in the wrong address?" And all for peanuts.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/778975#7789751Answer by Stefan for What is the best comment in source code you have ever encountered?Stefan2009-04-22T20:08:53Z2009-04-22T20:08:53Z<p>//Dave chapelle reports errors.</p>
<p>function reporterror() {<br/><br/>
davechapelle.trace("FUCK!");<br/><br/>
}</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/778993#7789933Answer by prokiner for What is the best comment in source code you have ever encountered?prokiner2009-04-22T20:14:14Z2009-04-22T20:14:14Z<pre>
// TODO: Finish.
</pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779128#7791282Answer by steve for What is the best comment in source code you have ever encountered?steve2009-04-22T20:39:36Z2009-04-22T20:39:36Z<p>// All this code is yours, except gedit()...attempt no modifications there.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779317#7793170Answer by Tom for What is the best comment in source code you have ever encountered?Tom2009-04-22T21:30:13Z2009-04-22T21:30:13Z<p>Looking back at old code from classes is fun...</p>
<pre><code> cardDeck.push_back(*(new card((rank)r, (suit)s))); // Push each card onto the deck
// Temp. objects are overrated
</code></pre>
<p>While going through some things, it makes me wish I left more comments at 4 AM when I was hacking together random code...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779681#77968119Answer by Yoooder for What is the best comment in source code you have ever encountered?Yoooder2009-04-22T23:33:38Z2009-04-22T23:33:38Z<p><em>To protect the guilty the values have been changed</em></p>
<p>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.</p>
<p>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.</p>
<pre><code>' ROFL:ROFL:LOL:ROFL:ROFL
' ______/|\____
' L / [] \
' LOL===_ ROFL \_
' L \_______________]
' I I
' /---------------/
'TODO: REMOVE MY INFO AND REPLACE WITH USER CREDENTIALS
'Private TEST_LoginName As String = "DurgshA@Exmaple.org"
'Private TEST_Password As String = "Humsal892"
'Private TEST_Server As String = "imap.secureserver.net"
</code></pre>
<p>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</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779818#7798184Answer by appleshampoo for What is the best comment in source code you have ever encountered?appleshampoo2009-04-23T00:26:48Z2009-04-23T00:26:48Z<pre><code># There is a bug in the next line. $searchParameters != {} will always return true, because {} is creating
# a new hash reference on the fly, and the inequality operater is comparing the memory location of it
# to the memory location of $searchParameters, and they will always be different.
# This means that the following code will always get executed as long as $nodes is defined.
# I'm leaving it there because it has always been there, and although I'm sure it was originally meant to
# mean %$searchParameters (essentially "is this hash not empty"), I'm afraid to change it.
if ( $nodes && $searchParameters != {} )
{
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779830#7798300Answer by CodeToGlory for What is the best comment in source code you have ever encountered?CodeToGlory2009-04-23T00:33:29Z2009-04-23T00:33:29Z<p>//The below code needs to be commented out.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779856#7798562Answer by Arno Setagaya for What is the best comment in source code you have ever encountered?Arno Setagaya2009-04-23T00:41:21Z2009-04-23T00:41:21Z<p><a href="http://code.google.com/p/xee/source/browse/trunk/XeePhotoshopLoader.m?spec=svn28&r=11#107" rel="nofollow">This one</a>, from Xee, an image browser.</p>
<pre><code> // At this point, I'd like to take a moment to speak to you about the Adobe PSD format.
// PSD is not a good format. PSD is not even a bad format. Calling it such would be an
// insult to other bad formats, such as PCX or JPEG. No, PSD is an abysmal format. Having
// worked on this code for several weeks now, my hate for PSD has grown to a raging fire
// that burns with the fierce passion of a million suns.
// If there are two different ways of doing something, PSD will do both, in different
// places. It will then make up three more ways no sane human would think of, and do those
// too. PSD makes inconsistency an art form. Why, for instance, did it suddenly decide
// that *these* particular chunks should be aligned to four bytes, and that this alignement
// should *not* be included in the size? Other chunks in other places are either unaligned,
// or aligned with the alignment included in the size. Here, though, it is not included.
// Either one of these three behaviours would be fine. A sane format would pick one. PSD,
// of course, uses all three, and more.
// Trying to get data out of a PSD file is like trying to find something in the attic of
// your eccentric old uncle who died in a freak freshwater shark attack on his 58th
// birthday. That last detail may not be important for the purposes of the simile, but
// at this point I am spending a lot of time imagining amusing fates for the people
// responsible for this Rube Goldberg of a file format.
// Earlier, I tried to get a hold of the latest specs for the PSD file format. To do this,
// I had to apply to them for permission to apply to them to have them consider sending
// me this sacred tome. This would have involved faxing them a copy of some document or
// other, probably signed in blood. I can only imagine that they make this process so
// difficult because they are intensely ashamed of having created this abomination. I
// was naturally not gullible enough to go through with this procedure, but if I had done
// so, I would have printed out every single page of the spec, and set them all on fire.
// Were it within my power, I would gather every single copy of those specs, and launch
// them on a spaceship directly into the sun.
//
// PSD is not my favourite file format.
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779874#7798742Answer by Rip for What is the best comment in source code you have ever encountered?Rip2009-04-23T00:48:48Z2009-04-23T00:48:48Z<p>In an early version of PeopleSoft Financials PeopleCode:</p>
<p>/* I don't know how you can ever get here so I'll have to fix it later */</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779899#7798991Answer by Wils for What is the best comment in source code you have ever encountered?Wils2009-04-23T01:00:14Z2009-04-23T01:00:14Z<p><code># as you can see: I comment the code!</code></p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779948#7799485Answer by Blake for What is the best comment in source code you have ever encountered?Blake2009-04-23T01:21:14Z2009-04-23T01:21:14Z<p>In the middle of a few thousand line JScript file after a completely arbitrary line...</p>
<p>// The world is a happy place.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779987#77998723Answer by Paul for What is the best comment in source code you have ever encountered?Paul2009-04-23T01:39:11Z2009-04-23T01:39:11Z<p>long time; /* just seems that way */</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779993#7799936Answer by Wes for What is the best comment in source code you have ever encountered?Wes2009-04-23T01:43:44Z2009-04-23T01:43:44Z<pre><code> rescue
# silently, we fail
# many validations fade
# like tear drops in rain
end
</code></pre>
<p>This is just one of many...</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/779999#7799992Answer by just in case for What is the best comment in source code you have ever encountered?just in case2009-04-23T01:45:27Z2009-04-23T01:45:27Z<pre><code>""".........................:~+?7$$$ZZZZZZZ$$$7I+=:,............................
........................~+7ZZZZZOZZOOZOZZOZOZOOZZZZZ7?~:........................
......................,~7$ZZOOOOOZOZOZOZZOOZZOZOOOOOZ$$I,.......................
...................,=I$OOZOZOZZOOOZZOZOOOOZOZZZOOZZZOZZOZI=:....................
.................:?$ZZOOZZOZOZZOOOZZZOOZOZOZZZZZZZOZZOZOOOZ$I~..................
................IZOOOZOOOZZZOZZZZOZZOZOOOOZOZZZOOZZZZOOZOZZZOZ7=................
...............~ZZOZZOZOOZOOZOZOZZOZOZOZZZZZOZOZZOZOOZOZZOOOOZZ7................
.............:IZOOZOZZZZOZOZZOZOOZOZOZOZZOZOOZOOOOZOZZZZZOZOZZOOI~..............
...........,+$ZOOZZOZOZOZOZOZZOZOZOOZZOZZOZZOZOOOOZOZZOZZOOZOOOOO$?:............
..........:IZZOOOZOZZZZOOZOOZOZOZZOZOZZZZOZOOZOZZOZOZOZOOOOOOOZZZOZ7~...........
..........+$OOZZZOZZOOZOOZZZZOZZOZOZZOZOOOZOZOZZOZOZOZOOOOOZ$$77I77$+:..........
........,?$OOZZZZZZZOZOOOZOZZOZZZOOZOZOOOOZOZZZOOZOOZOOO7?~:,.......,...........
........+ZOOZZZZZOZOOZOOZZZZOZZOOOZZZOZOZOOZZOZOZZZOOO$?........................
........$ZOZZZOZZZZOZOOZZZOZOZZOOOOOOOOOOOZOZOZZOZOO$?,.........................
.......:ZOOZOZOZZOOZZOZOZOZOOOZOOOOOOOOOOOOOOOZOZOOZI:..........................
.......+OOOZOOZOZOZOZZZOOZOOZOOO$I+=~:::~+I$OOOOOOZ?:........,:=,...............
......:7ZOOZOZZOOOZOZOZOOZOOZ$I=............:?$OOZ7:.......:IZOOZ?,.............
......=$OZOZOOZOOOOOZOZZOOZ7=,................:?O$+.......~7OOOOOZ+,............
.....,?$OOOOOZZZZOOOOOOZOZ?,....................ZZ=.......=$OOZOOZ+,............
.....:IZOZZ$777I7$ZOOOOOZ7~.....................$Z=.......~7OOOOO7=.............
.....:+?~:,.......,~IZOO7~........~+II?=........?$?,.......:I$ZZ?:..............
.....................+ZO=,......:IOOOOOZ:.......=7$~............................
.....................:IO~.......=OOZOZOO=,......~7O7~...........................
...........:~:.......:IO~.......+OOOOZOO=.......~78Z?,.................,:.......
..........:IZ7~......+ZO~.......:7OOOOO$,.......+$OOZ7=,.............:?$=.......
...........,,.....,=7ZOO+,.......,=II?=:........7OOOOOOZ=:,.....,:=I$ZOO=.......
....................,:+$7=.....................~OOOZZZOOOZZ$$7$$ZOOOOOOZ=.......
......................:?Z?,...................:?OZOOZOOZOOOOOOOOOOZOZOZO=.......
............,::,.......,OO7:................,+$OOZOZOOZOZZOZOZZOOZOZOZOO=.......
...........~$8OI........$OOZI~,.........,:=IZOOZOZOZOZOOOZOZOZOOOZZZOZOO=.......
...........:??=:.......:OOOOOZZ7+=~~==+?$ZOOOOZOOOZOZOZOOZOZOZZOZZOZOZZO=.......
............::,.......,+OOZOOOOO$7777$$ZOOOOOZOZZZZOZOZZZOOZOZZOOOZOOZOO=.......
.....................=7OOZOOZOOZOOOOOOOOOZZZOZOZZOZOZOZOOOZOZOZZOZOOZOOO=.......
................,:=I$OOOZZOOOZOOOOOZOZOZZZZZOOZZZOZOZZZOOZOOZOZOZOZOZOOZ=.......
...........:~+?7ZOOOOOOZZZOZOOZOZOOZOZOZZOZZOZOZZZZOZOZZOZOZOZZOZOOZOOOZ=.......
........$$ZOOOOOOOOZOZOZZZZOZOZOOOZZZOZZZOZOOZOZZZZZZZZOOOZOOZZZOZOOZOOZ=.......
.......~OOZOOZZOOZZZZZZOOZOZOZOZZOOZOOZZZOZZOZOZZOZZZOZOOOOOZOZOZOOZOOOZ=.......
.......~OOZOOZZOZZOZOZZOZZOZOOZOZOOZOZOZZOZOOZOZZOZOZOZOZOOZOZOOOZOOZOZO=.......
.......~OOZZZOZOOOZOZOZZOZOZOZOZOOZOOZOOOOZOZOOZOOOZOOOZOZZOZOZOOZZOOOOZ=.......
.......~OOZZOZOZZZOOZOOZOZOZOZZOZZZZOZZZZOZOZZOOOOZ$ZZZZZZOZZZOZZOZOZZZO=.......
.......~OOZZOO$??$OOZOOZZOOZOZOZ+~IZOOOZOZOOZZOOZI==IZOZZOZOOZOZZOZI~=7O=.......
.......~OOZO$I:..~IZZZOZOZOZOZ$+...=7ZOOZOOZZOZZ=,..,=$ZZOZZZZZOZI~...,?=.......
.......~OOOZI:....:IZOOOZZOOO$+:....~7ZOZOZOZOZ$,....,=$OOZOOOZOI~.....:~.......
.......~OZI~........~IZZZOZ$?:........=IOOZZZ$+,.......,$ZOOOZZ7................
.......=7~............~IOZI:............7ZO$+:..........,=7ZZ7=,................
.......,,...............=~...............~=:..............,~=...................
GlassGiant.com"""
print "Hello World!"
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780060#7800600Answer by ZDD for What is the best comment in source code you have ever encountered?ZDD2009-04-23T02:15:04Z2009-04-23T02:15:04Z<p>//Maybe you should make anyone knows your code's purpose. </p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780103#7801037Answer by Brian Hartung for What is the best comment in source code you have ever encountered?Brian Hartung2009-04-23T02:33:40Z2009-04-23T02:33:40Z<p>My favorite is from the late, great Paul DiLascia:</p>
<p>// Author: If this code works, it was written by Paul DiLascia. If not then I don't know who wrote it.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780234#7802344Answer by Jason Crawford for What is the best comment in source code you have ever encountered?Jason Crawford2009-04-23T03:47:39Z2009-04-23T03:47:39Z<pre><code>/**
* Happy Javadoc haiku:
*
* Without Javadoc
* Builds break in Maven site stage
* This fixes the build.
*/
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780267#7802674Answer by Brad Tutterow for What is the best comment in source code you have ever encountered?Brad Tutterow2009-04-23T04:03:57Z2009-04-23T04:03:57Z<p>Using semi-colons in VB.NET</p>
<pre><code>TextBox2.Visible = True';
For Each row In data.Tables(0).Rows
If row("Customers.Id").ToString <> customerId Then
customerId = row("Customers.ID").ToString';
name = "Customer Name: " & row("Name").ToString & CrLf';
address = "Address: " & row("Address").ToString & CrLf & CrLf';
TextBox2.Text += name & address ';s
End If';
Next';
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780286#7802866Answer by fish for What is the best comment in source code you have ever encountered?fish2009-04-23T04:11:33Z2009-04-23T04:11:33Z<p>//todo: never to be implemented</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780312#7803120Answer by David for What is the best comment in source code you have ever encountered?David2009-04-23T04:25:57Z2009-04-23T04:41:31Z<p>Our team, just tonight, released a new version of a CSS file that removed the comments from a file which was structured like this:</p>
<pre><code>@charset "UTF-8";
/* Who knew comments here could COMPLETELY ruin our page in Safari? */
body {
/* Really important stuff here */
/* Of course, comment or not, this will all get ignored by Safari because
its the first rule after the comments which break everything.
see http://www.w3.org/International/questions/qa-css-charset for the exact details!
*/
}
</code></pre>
<p>The funny thing is on the web you'll find people's solutions are to just enter in a bogus element as the first rule below the charset statement to get ignored and proceed as normal...</p>
<p>Food for thought: Where does one put the comment not to comment?</p>
<p>Sidenote: I know this shouldn't be needed due to headers, meta rules etc. Unfortunately we need it as a catch all :(</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780361#78036141Answer by Leo for What is the best comment in source code you have ever encountered?Leo2009-04-23T04:50:11Z2009-04-23T04:55:39Z<pre><code> #Christmas tree initializer
toConnect = []
toRead = [ ]
toWrite = [ ]
primes = [ ]
responses = {}
remaining = {}
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780566#7805662Answer by Mark Heath for What is the best comment in source code you have ever encountered?Mark Heath2009-04-23T06:55:06Z2009-04-23T06:55:06Z<pre><code>// some sport psychology
if (!focused)
Focus();
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/780804#7808047Answer by Iain for What is the best comment in source code you have ever encountered?Iain2009-04-23T08:35:11Z2009-04-23T08:35:11Z<p>Stating the obvious?</p>
<pre><code>/** Logger */
private Logger logger = Logger.getLogger();
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/781187#7811871Answer by hpp for What is the best comment in source code you have ever encountered?hpp2009-04-23T10:48:07Z2009-04-23T10:48:07Z<pre><code>// now that's compact!
list->insert(list->end(),**pitch)->IdxOfSample=(pitch->pos-Offset)*SamplingRate;
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/781356#7813569Answer by rawpower for What is the best comment in source code you have ever encountered?rawpower2009-04-23T11:43:30Z2009-04-23T11:43:30Z<p>In a GIGANTIC 800 line 'switch' statement, somewhere in the middle:</p>
<pre><code>// Joe is sorry
</code></pre>
<p>A few hundred lines later...</p>
<pre><code>// Harry is sorry too
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/781433#7814331Answer by Turi for What is the best comment in source code you have ever encountered?Turi2009-04-23T12:11:11Z2009-04-23T12:11:11Z<p>[center]</p>
<pre><code>[vrk:Cloud ID="cTags" runat="server" DataTextField="Tag" DataWeightField="Total"
Width="100%" DataHrefField="Tag" DataHrefFormatString="~/tags.aspx?tag={0}"]
[/vrk:Cloud]
[!--if anybody would like to change the control's color contact with FLORJON--]
</code></pre>
<p>[/center]</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/781860#7818602Answer by jorendorff for What is the best comment in source code you have ever encountered?jorendorff2009-04-23T14:01:49Z2009-04-23T14:01:49Z<p>From Python/ceval.c:</p>
<pre><code>/* This is gonna seem *real weird*, but if you put some other code between
PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust
the test in the if statements in Misc/gdbinit (pystack and pystackv). */
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/782168#7821681Answer by TonyEnkiduCx for What is the best comment in source code you have ever encountered?TonyEnkiduCx2009-04-23T15:10:06Z2009-04-29T12:42:00Z<pre><code>'Mind boggling, gibberish version of a SQL statement, but it work's, so dont touch it
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/782202#7822023Answer by atanamar for What is the best comment in source code you have ever encountered?atanamar2009-04-23T15:16:39Z2009-04-23T15:16:39Z<pre><code>//BELOW IS THE REAL CODE...JABRONI
//
// Yeah, but can you play the outtro to Bark At The Moon?
//
//|--------------------------------------------------|------------------------------------------------|
//|--------------------------------------------------|------------------------------------------------|
//|--17^16-16-16-17^16-17^16-16-16-17^16-17^16----16-|-19^16----16-19^16-19^16---16-19^16-19^16----17-|
//|--------------------------------------------19----|-------17----------------17---------------17----|
//|--------------------------------------------------|----------------------------------------------
</code></pre>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/782502#7825027Answer by skamradt for What is the best comment in source code you have ever encountered?skamradt2009-04-23T16:24:47Z2009-04-23T16:24:47Z<p>This comment was in a unit containing interfaces which were used to bind communication between the main application and various 3rd party drivers.</p>
<pre><code>//**************************************
// Dear code maintainer:
//
// This source contains COM interfaces