vote up 10 vote down star
12

Naming things well is arguably Job 1 for professional programmers. Yet we have all suffered from some bad naming choices from time to time. So just to vent a little, what are some doozies that you may have run across?


Just to get things started:

One of our original developers wasn't sure what to call a secondary key - on what turned out to be a primary table for this app - so he called it: DL2WhateverTheHellThatIs.

Unfortunately this system generates entity mappings from the XML, and attributes defined there result in classes, methods, and constants that are referenced through-out the app. To this day it is very hard to find a source file that does not reference this, er, thing! A few actual examples:

DL2WhateverTheHellThatIsBean cos = (DL2WhateverTheHellThatIsBean)itr.next();

String code = getDL2WhateverTheHellThatIs().getCode();

From from = new From("DL2WhateverTheHellThatIs");

String filter = "_dL2WhateverTheHellThatIs._code";

(Very difficult to refactor)

flag

83 Answers

1 2 3 next
vote up 52 vote down

isHasDeletePrivilege. One tiny step away from canHasDeletePrivilege, leading me to suspect it may have been written by a cat.

link|flag
9  
canHazDeleetPrivlij, would be written by a cat. – Bill the Lizard Oct 7 '08 at 19:06
1  
Geez, making generated boolean accessor functions start with "is" isOneOfMyPetPeevesAboutCodeGenerators(). – Knobloch Jan 13 at 17:27
1  
In Java boolean getters start with "is" so if you're using JSP or similar this property name will allow you to write code like form.hasDeletePrivilege. I suspect that's the reason for this name. – cletus Apr 10 at 11:48
vote up 42 vote down

A function to return a parentID of some product

<?php

    function whoIsYourDaddy($id)
    {
        return $this->parentID;
    }

?>
link|flag
5  
Yep, everyone knows object pointers are female, so the correct name would be whoIsYourMummy. – Gamecat Oct 2 '08 at 10:52
16  
Gamecat: You shouldn't objectify women like that. – chris Oct 17 '08 at 13:42
6  
Don't anthropomorphize computer constructs. They hate that. – Svante Jan 13 at 17:36
show 5 more comments
vote up 35 vote down

At my first programming job, we had a system which would scan images of checks in large batches, use a MICR reader to pull the account and routing number off the check, then match the check to the corresponding account in the database. As you can imagine, some checks are unreadable and can't be paired up with an account. We referred to images without an account as orphans, and our system required all orphans needed to be reconciled by hand and reprocessed. Some methods I remember off the top of my head:

HarvestOrphans - queries the database for orphaned images, pulls images into a grid on the UI.

KillsOrphans - deletes all orphans in the pending deletion queue.

MakeOrphanDirty - method is called when a user modifies an orphan. Sets the "IsDirty" flag on the orphan.

TouchDirtyOrphans - reprocesses orphans modified by the user. First comment in method is // no ! bad touch!

This funny in-joke lasted for 5 years until one of our customers commented on some of our error logs, specifically the OrphanMolestationException recently thrown in the TouchDirtyOrphans method. Its a miracle no one was fired :)

link|flag
4  
+1 for making me LOL – Graham Jul 11 at 16:30
1  
Just... brilliant. – snake Jul 11 at 16:54
show 1 more comment
vote up 22 vote down

"SetGetSet" and "GetGetSet". They were used to manipulate mbGetSet flag, which meant some kind of readiness. Well, it's not that bad. But then I saw something like this:

Obj1->SetGetSet(Obj2->GetGetSet())

Looks like a piece of Morse code.

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

I have a coworker that routinely uses sentences for method names. For example:

LetsProceedWithHandlingTheErrorFromThatOneMethod()

(oh yeah, he begins lots of method names with "Lets")

link|flag
show 2 more comments
vote up 19 vote down
void crawl_into_hole_and_die()
{
    while(1); // let the watchdog get us.
}
link|flag
show 2 more comments
vote up 17 vote down

From the Windows 3.x kernel:

void FAR Bunny_351(void);
Long FAR PASCAL BozosLiveHere(HWND, WORD, WORD, DWORD);
WORD FAR PASCAL PrestoChangoSelector(WORD, WORD);

Bunny_351 is a an internal function called when windows shuts down. It's name was to honor a stuffed bunny that had an unfortunate accident with a paper shredder.

BozosLiveHere, a mysterious function that returns the string "USER: Invalid function called. System state potentially trashed,".

PrestoChangoSelector generates a code selector without validating the parameters so it is quicker than ChangeSelector.

Source: Undocumented Windows

link|flag
3  
According to Raymond Chen, "BOZOSLIVEHERE was originally the window procedure for the edit control, with the rather nondescript name of EditWndProc". He also explains why these names. Source: blogs.msdn.com/oldnewthing/archive/… – CesarB Nov 12 '08 at 1:16
show 1 more comment
vote up 13 vote down

JesusBuysCookies()

Private method in an inhouse cookie handlig library.

link|flag
show 3 more comments
vote up 13 vote down

All variable names that "saves" you 2 or 3 keystrokes.

Like bta instead of beta, prmtr instead of parameter etc.

With intellisense you usually only need the first 3 letters anyway so why not use long descriptive names?

Who came up with this crap from the beginning btw? Was it the low-resolution displays that forced you to do this to get all code on one line or maybe language limitations?

link|flag
11  
Kind of ironic you use the acronym "btw" to save you a few keystrokes :) – Will Robertson Dec 19 '08 at 17:21
2  
Early linkers would only recognize the first 8 letters of an identifier, so they had to be distinctive in that range. Characters after that were pointless. – James Curran Dec 19 '08 at 18:09
show 4 more comments
vote up 13 vote down

One of these days I'm going to find Kerninghan or Ritchie and make them answer to this

//this function takes a character and converts it to an integer
public int atoi(char a){}

atoi? really?

link|flag
5  
I'd like to meet the person who named "creat()" in UNIX. – Kristopher Johnson Oct 8 '08 at 1:36
2  
Ritchie gave us as, cc, ls, cd, ps, dd, df, pw, sh, sz and myriad others .. be happy with the bloated 'atoi' ! – Scott Evernden Dec 19 '08 at 17:31
1  
Isn't there a quote from Ritchie where someone asked him if he could go back and change one thing in Unix what would he change and the answer was adding the e to the end of creat? – jmucchiello Dec 19 '08 at 19:07
show 1 more comment
vote up 12 vote down

Anything prefixed with "My". We once hired a junior programmer who came up with such doozies as "MyClass", "MyInterface", and "MyMethod1". It was clear he was copying/pasting from a general tutorial (we later found it online), but couldn't be troubled to modify the sample.

link|flag
3  
MySQL? (what's with the lower character limit on comments, anyway...?) – Anders Sandvig Oct 7 '08 at 19:27
show 4 more comments
vote up 11 vote down

I don't remember the actual collection name, but assMaster was named by my mentor on my last project (and he is a guy who doesn't swear).

foreach(var assMaster in assembly.LinkedAssemblies)
{
   ProcessTypes(assMaster)
}
link|flag
vote up 9 vote down

Some years ago, I came upon some code like this: (translated in C# from the rather scary scripting language that it was originally in) (Yes, one program, two great dumb variable name stories).

char cArnold = '|';
foreach(char c in GetSomeString())
{
     ...
     if (c == cArnold)
       break;
}

So, why is the end-of-data indicator called "Arnold"? --- Because he's the Terminator!

link|flag
vote up 8 vote down

IsHardwareSoundPlaying_PleaseDontUseThis(). Called in at least 50 places in the code base, working perfectly.

link|flag
vote up 8 vote down

While not the "worst" name, this one came to mind.

We have a class used to iterate objects called LOOPER. Here's a code fragment:

LOOPER theSuperDooperLooperScooper( drawing );

theSuperDooperLooperScooper.GetSelected ( GET_ONLY );
link|flag
vote up 8 vote down

I came across this method signature which takes full advantage of java case sensitivity.

public void collectOtherProductsData(
    BigDecimal productSeqId, 
    BigDecimal seqId, 
    BigDecimal SeqId)

Now I need to add another sequence id. Any suggestions?

link|flag
3  
well, there are 32 different case-permutations of seqid, so you should be fine for a while. – Jimmy Dec 19 '08 at 17:24
3  
In case you run out of simple permutations, you can always turn to homophones: seekEyeDee – Chris Noe Mar 25 at 2:45
show 8 more comments
vote up 8 vote down

Some C code to parse a char[7] to get a year for 2-digit sliding window year logic - unfortunately, I did not save it, but it was something like this:

char[7] textbox ;

int one, two, three ;
char[3] temp ;

temp[0] = textbox[0] ;
temp[1] = textbox[1] ;
temp[2] = 0 ;
one = atoi(temp) ;

temp[0] = textbox[2] ;
temp[1] = textbox[3] ;
two = atoi(temp) ;

temp[0] = textbox[4] ;
temp[1] = textbox[5] ;
three = atoi(temp) ;

// And you might think that's bad, but here comes the greatest line in the history of programming:

if ( three > 70 ) { three = three + 1900 }
else { three = three + 2000 }

// I kid you not

This was written by a couple of Clipper programmers who sold the boss on being able to program in C (I guess because it started with the same letter).

link|flag
vote up 5 vote down

There was a class called "HelperFunc" in one of the projects I have worked on. That class contained only static "helper" methods which had nothing in common - just a place to throw in random code.

link|flag
vote up 5 vote down

I used to work with Powerbuilder and people keep naming variables var1, var2, var3, var4 ... etc. We usually had up to var20. It was hell (I resigned :) )

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

We used to work with a guy (he was nominally team lead, although that wasn't really the case) who insisted on the whole team sticking rigidly to his own set of coding standards. One of these was the old faithful of "no line of code shall be greater than 80 characters".

Of course, we took that as a challenge and spent a month or so attempting to create meaningful and descriptive method names that broke that rule all on their own. I forget that name of the actual method thaqt first hit the 81 character golden marker, but it was something like

UploadedObjectValidationParseEmailAddressAndFullNameUsingStandard<companyname>RegularExpressions

Childish, I know, but this was in response to the guy who once rejected some code during code review on the basis that

"The comment on line 96 has too many words that begin with the letter 'P'"

Seriously.

link|flag
4  
He was worried about a P overflow, no doubt. – micahwittman Feb 14 at 8:57
vote up 5 vote down
doit()
{
    // lots of code
}
link|flag
1  
redoit() { doit(); } – nilamo Apr 10 at 23:28
vote up 4 vote down

Single letter variable names.

float p, x, y;

because

 x = sqrt(p * p + y * y);

is much clearer than:

 hypotenuse = sqrt(edge1 * edge1 + edge2 * edge2);
link|flag
6  
I disagree. (Also, I'm surprised that this is the "worst" naming you've ever encountered.) Plenty of people have documented the rule "name length should be proportional to scope": jetcafe.org/jim/c-style.html#Naming A short function named "hypotenuse" doesn't need long names. – Rich Sep 28 '08 at 19:34
2  
What about single-variable names that correspond to conventions in standard mathematical notation? – dsimcha Nov 23 '08 at 2:04
2  
the only thing bad about that is that you're using p*p instead of x*x – Mark Apr 10 at 23:39
show 4 more comments
vote up 4 vote down

Maybe not 'worst' as it was actually quite descriptive, but a game project had a method:

void removeUnderwear()
link|flag
show 1 more comment
vote up 4 vote down

not the worst class name ever, but very very funny when i first saw it in a previous role.

CHandJob

I was lmfao when i saw this. Apparently it was related to the notion of a worker in a factory doing something by hand instead of automated by machine(ie placing components onto a PCB).

link|flag
1  
And now I'm roflmfao too... – Eduardo León Apr 11 at 0:22
vote up 3 vote down

Anything that uses i, I, l, 1, o, O, or 0.

link|flag
2  
Easily solved by using a decent programming font. I like Consolas a lot, each of those characters are distinctly different in my editor. – Adam Lassek Oct 7 '08 at 16:18
show 5 more comments
vote up 3 vote down

Some years ago, I came upon some code like this: (translated in C# from the rather scary scripting language that it was originally in)

foreach(DocumentType shakes in GetDocumentTypes())
{
    ProcessDocumentType(shakes);
}

So, why was the variable holding DocumentType objects calls "shakes". After a few months pondering this, I finally hit me. It was because we calls Document Types, "DTs" which is also the common name for the "Delirium tremens" which is also knows as "The shakes"

link|flag
vote up 3 vote down

Some PHP code: A function which returns a reference. You can't just return null; because that's not a reference to anything. The workaround:

function &getUser() {
    if (/* there's some sort of error... */) {
        $aStupidFuckingVariableIHaveToMakeBecausePHPWontLetMeJustReturnNullBecauseThatWouldMakeTooMuchSenseAndWouldBeWayTooEasy = null;
        return $aStupidFuckingVariableIHaveToMakeBecausePHPWontLetMeJustReturnNullBecauseThatWouldMakeTooMuchSenseAndWouldBeWayTooEasy;
    }
}
link|flag
show 2 more comments
vote up 2 vote down

Profanity... I won't type the example.

link|flag
1  
I had two cow-orkers who used to do this. They were very amused with themselves until they had to debug their own work. – Bill the Lizard Oct 7 '08 at 19:31
2  
Is orking cows illegal in your jurisdiction? – Jeffrey Hantin Apr 11 at 0:17
show 1 more comment
vote up 2 vote down

supercalifragilisticexpialidocious -- needless to say, this occurred before we had code reviews.

link|flag
vote up 2 vote down

Function name:

GiveItAWhirl();

followed closely in the code by

GiveItAWhirl2();

These functions just pieced together unrelated data manipulation and UI code.

link|flag
show 1 more comment
1 2 3 next

Your Answer

Get an OpenID
or

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