What is the best comment in source code you have ever encountered?
|
525
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
/* * TODO: Remove this function function remove($customer_id) { $this->Customer->remove($id); } */ |
|||
|
|
|
|
|
|||
|
|
|
|
#define FUCK_VS6_CANT_COMPILE_TEMPLATES_WITHOUT_HANDHOLDING ((float*)0) ... SetPinsFromChannels |
|||
|
|
|
|
Many years ago I picked up the job to provide support to a project that ran real time on a Z80 and was in assembly (is there any other way to do Z80??) Anyway, the original author was a Nigerian guy by the name of Moses. Maybe I should just stop there. Anyway, scattered throughout the code was this: XRA A ;MT Took me awhile to figure out what this was. The instruction itself does nothing more than clear the accumulator. It's a slick way, although I'm not sure if there is an advantage or not. you can just do: LDA 0 But maybe XRA A saves a byte or something. What is does is exclusive or the accumulator with itself. The result is, of course, always zero. Back to the MT - Empty (get it?) That's the best I've run across. |
|||
|
|
In a mutli-threading module! :) |
|||
|
|
|
|
// All this code is yours, except gedit()...attempt no modifications there. |
|||
|
|
|
|
This one, from Xee, an image browser.
|
|||
|
|
In an early version of PeopleSoft Financials PeopleCode: /* I don't know how you can ever get here so I'll have to fix it later */ |
|||
|
|
|
|
|
|||
|
|
|
|
From Python/ceval.c:
|
|||
|
|
|
|
|
|||
|
|
|
|
'I hate nested regions and will delete them along with any code found in them. |
||||
|
|
|
This was for a custom DHCP server that we used in a university's dorms to put computers into 'clean' or 'dirty' IP address pools depending on whether or not they'd registered/installed patches and Antivirus:
|
|||
|
|
|
|
The below code was seen in a mock tutorial for Python.
The author must have been a fan of Family Guy. ^_^ |
||||
|
|
|
// need a coffee to fix this. |
|||
|
|
|
|
Found this in makefile
|
|||
|
|
Technically not a comment, but from coding on something at 2 am or so:
... that variable is never used again EVER and appears in the beginning of a listen loop for a socket. |
|||
|
|
|
|
|
|||
|
|
|
|
"Get This hack!" On a line of assembler code, after pages of uncommented code. |
|||
|
|
|
|
with no other comments |
|||
|
|
|
|
here are 4, in no order:
|
|||
|
|
|
|
Fresh out of college, I was eager to get my hands dirty. My first task was... "comment this code for me". Fucker. After awhile I got bored with it...
|
||||
|
|
|
The ascii-art skull and crossbones (which is too difficult to recreate here) in Gosling's Emacs source (warning that the ultra-hot screen management package he wrote was not easily understood). |
|||
|
|
|
|
/*********************** Drag And Drop Section - Start (you should be me to mess with this section)*****************************************/ |
|||
|
|
|
|
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... |
|||
|
|
|
|
Nice one in VB.NET that I ran into this morning, got a chuckle ...
|
|||
|
|
I inherited a project that haad been delivered to the customer without any UAT. It was dropkicked over the fence and the money requested. First time they used it, it naturally blew up. It was an interposing library that overrode any system calls that took a file name as a parameter rather than a file descriptor. Many system calls had been forgotten. When I got onboard the code was laced with such gems as:
and
Oh, and there were no unit tests. A colleague had started to add the missing system calls and unit tests. And the bastards who'd written the code were still in the team and didn't care at all about the garbage that had been delivered! |
|||
|
|
|
|
//Not a bug, parameter position can change..., if you think this is wrong, you are in fact wrong. |
|||
|
|
|
|
"f**k me gently with a chainsaw" |
|||
|
|
|
|
Found in the main trigger code for transactions in an OLTP database:
|
|||
|
|
