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

1 2 3 4 next
vote up 0 vote down

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

using namespace std; // so sue me
link|flag
vote up 0 vote down
<?php $_GET['rich'] or die('trying'); ?>
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

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 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 1 vote down

from OpenRasta

public interface IHas : INoIzObject {}
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 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 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 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 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 0 vote down

In C/C++:

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

In FoxPro:

set bug on

or:

set bug off

link|flag
vote up 1 vote down

This isn't really humor, but I find it funny. This is the fast inverse square root function from the Quake III source code. It uses some crazy hacks to get results that (at least, at the time) are up to four times faster than (float)(1.0/sqrt(x), even though sqrt is usually implemented in assembly.

Line 10 makes me laugh. Maybe it's just how ridiculous the whole thing is, and I can see John Carmack laughing while writing something so strange.

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;
}
link|flag
show 1 more comment
vote up 0 vote down
die (Strings::get('Obituary') . $e->getMessage());

or

$validArchType = array ('A-Frame', ..., 'McMansion', ...);

or

define ('DEVIANCY_OR_MALFEASANCE', -1);

or

<string key="VICE_PRESIDENT">Just making sure Kathy is paying attention.</string>
link|flag
vote up 3 vote down

I once worked on an app that had an interface for auto handling persistence of "dirty" objects. The interface was named...

ICanBeDirty

... and still makes me laugh, the guy who wrote it hadn't even realized that it was funny when I asked him about it.

link|flag
show 1 more comment
vote up 0 vote down

I write for a lot of school districts. I tend to keep humor out of my code but my test database has the teachers as the actors that played the Doctor and the students as the various companions over the years.

link|flag
vote up 0 vote down

In (part of) our trading system the main errors are a Doosra and Googly from cricket terminology.

It's weird when you see an error message along the lines "You've been bowled a googly" and even weirder when people/users start talking about doosras/googlys in meetings, etc. ("Have you fixed that doosra").

There was even some talk of the US team replacing these with baseball references for their region. But they haven't so are stuck with cricket (hurrah).

link|flag
vote up 0 vote down

My default new JSP text in eclipse used to read: "This is my JSP."

It now reads: "This is my JSP. There are many like it, but this one is mine."

link|flag
vote up 23 vote down

I was writing a class to crawl the web so naturally the class definition was like this:

public class WebCrawler //: public SpiderMan, private PeterParker
{
};
link|flag
show 1 more comment
vote up 1 vote down
If(true)
   //Just to be sure =)

Lol

link|flag
vote up 2 vote down
dobule pi = 3; //M:find correct value

This "inaccuracy" was hidden in the code for about 3 years before I discovered it.

link|flag
7  
Shouldn't the compiler have found it first? ;-) – Adam Liss Mar 25 at 22:53
vote up 0 vote down

I really liked this one :


int OF_THE_JEDI = some value;
// code does something here with var
return OF_THE_JEDI;
link|flag
show 1 more comment
vote up 0 vote down

In a class to manage several threads:

public Collection getRuns()
{
    return new ArrayList( runs ); //return chinese food
}
link|flag
vote up -1 vote down
template < class T >
inline T DISTANCE3D(const T& V1, const T& V2, const T& V3)
{
    ASSERT((V1>=(T)0) && (V2>=(T)0) && (V3>=(T)0));
    if (V1 > V3)
    {
        if (V1 > V2)
        {
            if (V2 > V3)
            {
                return (T)(V1 + V2/2 + V3/4);
            }
            else
            {
                return (T)(V1 + V3/2 + V2/4);
            }
        }
        else
        {
            return (T)(V2 + V1/2 + V3/4);
        }
    }
    else
    {
        if (V3 > V2)
        {
            if (V2 > V1)
            {
                return (T)(V3 + V2/2 + V1/4);
            }
            else
            {
                return (T)(V3 + V1/2 + V2/4);
            }
        }
        else
        {
            return (T)(V2 + V3/2 + V1/4);
        }
    }
}
link|flag
vote up 4 vote down

To combat out project being offshored to Cambodia we try to include the occasional reference that other cultures might not understand.

i.e.

To find the parent site in MOSS:

WhoIsYourDaddy();
link|flag
vote up 0 vote down

I inject a number of things in code that only I think are funny. :)

For example, instead of naming an interface IPacketViewer, I might name it ISeePackets.

Theoretically, I could mention my children's names in method parameters, assuming I was using the Dependency Injection pattern.

link|flag
vote up -1 vote down
template < class T >
inline T DISTANCE(const T& V1, const T& V2)
{
    ASSERT(V1>=(T)0 && V2>=(T)0);
    return (T)(V1<V2?V2+V1/2:V1+V2/2) ;
}
link|flag
vote up 0 vote down
#ifndef PI
    const float PI = 3.141592654f;
#endif
link|flag
vote up 1 vote down

A certain project I worked on had a LOT of complicated, big-ball-of-mud code. One of the older functions is prefixed by a quote from Through the Looking Glass:

/* "It seems very pretty," Alice said when she had finished it,
    "but it's rather hard to understand! Somehow it seems 
    to fill my head with ideas--only I don't exactly know what they are! 
 */

IMHO funny comments are OK, but funny-names or funny-values for variables are horrible:
-Why do we have a String login_is_ok and why does it contain "Listen, I'm not crazy ... yet"?!? +Well, one of the original developers thought it was funny, ROTFL-funny even.
-Aaargh!

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

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