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

vote up 1 vote down

kill - send signal to a process

Synopsis:

int kill(pid_t pid, int sig);

Do you want kill something or do you want send signal?

In my old MSX BASIC you could delete files with KILL filename.

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

Many years back I wrote an April Fool program using ZXSpectrum Basic as a prank on a fellow pupil which had 'TheInfamousMargretDevanzoSubroutine' in it (Ok, so only two other people in the world will get this joke). Needless to say, it has turned up in a few projects since.

Skizz

link|flag
vote up 1 vote down

One guy was pretty angry, so he named all his variable by the names of his family members. After he left, someone had to deal with lots of "string alex", "int john", "DataTable scott", etc..

link|flag
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 0 vote down

I've seen classes named after their author like JohnDoesModule and JaneBanesClass. Enough said.

link|flag
vote up 2 vote down

I wrote an article awhile back about what developers can learn from Forrest Gump, specifically I talked about how things get named a lot. One example I quoted was one from Phil Haack:

Request.TakePostedValuesAndSetPropertiesOfTheObjectWithTheSameNameToThePostedValueUsingReflection(product);

While this wasn't in production in the ASP.Net MVC framework it still is pretty funny. Phil came up with it because people were complaining at the time about the name DeserializeTo().

The complete article is here for anyone that cares.

link|flag
vote up 2 vote down

I once had to port a C application from unix to windows. The specific nature of the application shall remain unnamed, to protect the guilty. Anyways, the guy who wrote it was a professor, and unaccustomed to writing production-quality code. It also happens that English wasn't his first language (though in the country he comes from, the majority of people speak it quite well). Anyways, in a header file named 'Thing.h', he defines the following:

#define I  Any void_me
#define thou  Any void_thee
#define iam(klas)  klas me = (klas) void_me
#define thouart(klas)  klas thee = (klas) void_thee
#define my  me ->
#define thy  thee ->
#define his  him ->
#define our  my methods ->
#define your  thy methods ->

...which he then used to create monstrosities like the following:

void Thing_setName (I, const char *name) {
iam (Thing);
if (name != my name) {   /* Pointer comparison! So that Thing_setName (me, my name) does not fail. */
    Melder_free (my name);
    my name = Melder_wcsdup (name);
    }
    our nameChanged (me);
}

void Thing_overrideClass (I, void *klas) {
iam (Thing);
my methods = (Thing_Table)klas;
if (! ((Thing_Table) klas) -> destroy)
    ((Thing_Table) klas) -> _initialize (klas);
}

I'm so glad he at least put that comment in there; that really clarifies what the hell the code actually is supposed to do. Anyways, the entire project (~60,000 LOC) was written in a similar style -- marco hell, weird names, olde English jargon, etc. Fortunately we were able to throw it out, as we found an OSS library that did the same task, only cleaner and faster.

link|flag
vote up 0 vote down

It is jarring to have variables with spelling or grammatical errors. e.g.

Object corbaProxie = service.getProxie();

List recordsFindedWithPrivlidge = new ArrayList();

I often find myself wondering if English was their first language or if they are just poor spellers. I am usually more tolerant of people for whom English is a 2nd language, but in either case, thank heaven for Alt-Sft-R in Eclipse!

link|flag
show 1 more comment
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 0 vote down

I was once told a story by a lecturer about a student project. The student decided that their code could also double up some kind of a religious story. With variables like Buddha and Enlightened statements became readable as...

if (Buddha == Enlightened) { SetPathsWalked(&paths); }

The lecturer had no idea what was going on in the code.

link|flag
vote up 5 vote down
doit()
{
    // lots of code
}
link|flag
1  
redoit() { doit(); } – nilamo Apr 10 at 23:28
vote up 0 vote down

In a VB4 project I was brought in to refactor, I found a horrible mess of spaghetti code written by a group from the long since absorbed firm of Coopers & Lybrand, where a recursive loop to traverse a tree spanned three procedures and had two control variables DontDoIt and DontDoItAgain!

In another VB4 project I was asked to review, the programmer was a mainframe developer by training and perhaps used to COBOL or Fortran. He wrote a program to perform EDI mapping. All of his variables had names like XY89123, AB891023, etc, and he also left every single control created in the IDE with the default name, so every form was named Form1, Form15, Command1, Command29, etc!!!

link|flag
vote up 0 vote down

Working on a code base originally written in Sweden, I kept running into the same identifier being used over and over for temporary variables. Turns out it was a Swedish cuss word.

link|flag
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 0 vote down

I've been working on an old legacy VB6 program and the butt of most jokes is the function called LoadShmulaka

Shmulaka is not a word that I can find in any dictionary and basically it has become a very bad word in our office. It is a word that means nothing containing code that nobody knows what it does.

link|flag
vote up 0 vote down

I was maintaining a VB6 app years ago, and came across a situation where I needed to create a single text file by combining two existing text files.

Lucky for me, someone had already written this code. But I had to choose from one of the following methods (which after investigation produced the same result with subtle implementation differences):

  • CombineFiles
  • ConcatFiles
  • JoinFiles
link|flag
vote up 2 vote down

In the old FORTRAN days, we were linking to a vendor library who had no sense of a naming convention, and used simple variables like x any y in the global namespace. Linking to their library was always filled with collisions. We called them and asked them to use a reasonable naming convention or prefix, and their answer was "we don't ever use anything starting with zz, so you guys can just use zz as the first 2 letters!".

As a result all our variables had to start with zz...

Talk about name space pollution.

We eventually dumped that vendor.

link|flag
vote up 21 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 1 vote down

I made a Time Clock program for my office. Every time a user clocks in/out the method called is PunchUser().

link|flag
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 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 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
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 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 1 vote down
  • $stmt (PHP / SQL statement member)
  • coi (I did once name a local variable coi - client object invoice - and in Romanian language that would mean "ball" - as in the singular of testicles). I got called in the executive's office for this at that time.
link|flag
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 19 vote down
void crawl_into_hole_and_die()
{
    while(1); // let the watchdog get us.
}
link|flag
show 2 more comments
vote up 0 vote down

Back in the COM days, when MS introduced the smart pointer concept, we had fun with our variable names. We used hungarian notation, and therfore would prefix the variable name with "sp" when using a smart pointer. We also used to truncate the name where possible to save column space. So, a generic IUnknown interface pointer would become "Unk".

You can see where this is going. Juvenile variable names that obey conventions for the win!

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

I think that the worst examples (other than the obviously funny ones) are the non-english ones. You should not defines variables or whatever in a language that few can recognize. You, at least, lose the semantic power of variable naming.

link|flag

Your Answer

Get an OpenID
or

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