What is the best comment in source code you have ever encountered?
|
511
|
|
|
|
locked by Jeff Atwood♦ Apr 28 at 8:55 |
closed as no longer relevant by Jeff Atwood♦ Apr 28 at 8:51 |
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
It's in the WordPress blog engine (wp-admin/includes/user.php - if anyone actually wants to see the hacky hack itself). |
|||
|
|
|
|
I discovered this gem when viewing the HTML source of an earlier iteration of the TVNZ website (from line 571 if you're playing along at home):
|
|||
|
|
|
|
this has turned up in my own code a few times. obviously I touched it more than once:
|
|||
|
|
|
|
|
|||
|
|
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: if (scroll and noScroll) # or tea and no tea |
|||
|
|
|
|
I just ran into this in some of my own code. It was in a magento admin template for category selection:
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. |
|||
|
|
|
|||
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
This is a comment of mine which I found today while refactoring some code
|
||||
|
|
|
And what do you think? The code below was safely ‘svn removed’. |
|||
|
|
|
|
But No Code ;) |
|||
|
|
|
|
... or die // bitch |
|||
|
|
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
|
||||||||||||||||
|
|
|
|
|||
|
|
|
|
found in a joomla module. |
|||
|
|
|
|
now guess what happened... |
|||
|
|
Not in code, but in a related bugtracking system: "This can't be a bug in my code. I coded it very carefully." |
|||
|
|
|
|
My favorite (which I must admit I've used many times):
|
|||
|
|
|
|
|
|||
|
|
|
|
|
||||
|
|
|
// Oh crap, i think i'm gonna yack followed shortly thereafter by: // TODO: end this lunacy |
|||
|
|
|
|
in a homework assignment in college for a teacher who was particularly adamant that we comment our code:
When the assignment was returned, in red pen next to that comment "Yes, I do" |
|||
|
|
|
|
For a memcache wrapper/handler interface pattern class I wrote, I had the following method implemented.
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} ) 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. |
|||
|
|
|
|
I had to add this one to our old datatable-driven rules engine before I decided to replace it with a scripting language.
|
|||
|
|
|
|
|
|||
|
|
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
|
|||
|
|
|
|
In a game where this object can be stepped on, or:
|
|||
|
|
