vote up 42 vote down star
36

When you are writing code or naming products, which sources of cultural references are you most likely to draw from? Which reference sources do you think are more likely to be universally understood?

For example when findbugs sees that you've implemented equals() without overriding hashCode() it suggest that you implement it by returning 42 (a reference from HHGTTG)

Or why we have big endian vs little endian encoding, referencing Gulliver's Travels

Not that we should act unprofessionally with our code, but if you going to tell a person that they could only (watch/read/...) one (book/movie/show/...) which one would allow them to 'get' the most jokes?

flag
show 1 more comment

102 Answers

prev 1 2 3 4
vote up 0 vote down

In C/C++:

 #define true false // happy debugging losers
link|flag
vote up 0 vote down

There are some comments that are fun but really useful. I remember one program made with C++ (Visual Studio 4 or 5) where I found the following comment (I translated it for the sake of clarity).

double x = 0.0; // DON“T TAKE THIS OFF!!!

Note that the variable x was not used anywhere. The funny part is that if you deleted the line the program did not compile anymore. The error? If I remember correct it was something about struct alignment.

link|flag
vote up 2 vote down

For the rare occasion I need to raise exceptions, I have reserved a special identifier:

var up:Error = new Error();
throw up;
link|flag
vote up 1 vote down

I don't remember the exact original code and it no longer exists because it was a horrible hack but here's the story:

It was shipping date and we still had some "cleanup" to do, the final tests were running and only one, tiny bug was found by the tester: randomnly, when the user reloaded the application with the command "[app_name] reload" he couldn't get back the prompt and had to press Ctrl+C (the reloading worked fine, just the prompt didn't return sometimes).

The application was run by a bash script that managed more than one child process in the background, and to identify the current in scope process we named it as "me".

So we came up with the brilliant idea to kill the child process that do the reload after it was done:

doReloadInBackground
sleep(5) # Aproximately time taken to reload the application
kill $me # , please

It was a rather stressful day...

link|flag
vote up 0 vote down

From the C++ standard headers included with Mingw (and perhaps others...)

basic_ios.h:
*  @return  A bit pattern (well, isn't everything?)

basic_string.h:
*  Documentation?  What's that?
link|flag
vote up 5 vote down
char coal;
short cut;
long way;
float assets;
string tanga;
double penetration;
object slide;

UserPermissionException up = new UserPermissionException();
throw up;  // lol

return off;// the Jedi;
link|flag
show 1 more comment
vote up 1 vote down

from OpenRasta

public interface IHas : INoIzObject {}
link|flag
vote up 2 vote down

A friend of mine uses this status message when he's asleep :)

while(awake) sheep++;
link|flag
show 1 more comment
vote up 0 vote down

I wrote baNdit, a Firefox extension that adds a lot of useful features to banniNation.com. One of the features is marking posts that have scores above a certain threshold with an image, or if you've told it to pay attention to a particular user, it'll mark the post with a different image. The name of the function that handles this is:

PublicDefenderChristineSullivan : function() {

Google it if you don't get the reference.

link|flag
vote up 3 vote down

acceptable usage of breaks and contunues in java:

dance:
while(some_bool){
    //something in loop
    ...
    if(some_condition)
        break dance;
}

and:

the_assault:
while(something){
    //body
    ...
    if(condition)
        continue the_assault;
}

or something to that effect.

link|flag
vote up 0 vote down
<?php $_GET['rich'] or die('trying'); ?>
link|flag
vote up 0 vote down

Scott Meyers in comp.lang.c++.moderated:

using namespace std; // so sue me
link|flag
prev 1 2 3 4

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.