vote up 10 vote down star
11

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

prev 1 2 3
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 0 vote down

For me it was a Fortran Logical called LNOGRAF (7 character limit). It was used to determine if a graphics terminal was available. The software it was used in only checked if the graphics terminal was available, so the source code was full of

IF .NOT. LNOGRAF

What was worse is that at the time that I became involved a lot of the code was also in PL/I and that same logical was called LNOGRAF for consistencies sake. I worked on it for 4 years and I'm not sure if we ever got rid of all the LNOGRAF's.

The application was 3D mission planning software for B-52's and Cruise Missiles. It had the distinction of being name GASCAP (mainly because of the 1979 gas crisis).

GASCAP stands for Graphics Application Software for Cruise missile and Aircraft Planning.

link|flag
vote up 0 vote down

Maybe not the worst, but one of the funnier ones were from a form for defining Table Type Assignment properties (allow table combining, allow smoking, etc)

TableTypeAssCombine

TableTypeAssSmoking

link|flag
vote up 0 vote down

I was contracted a long time ago to port and add features to a reasonably complicated legacy application to a new platform. They didn't let me fix any of the obvious existing flaws in functionality.

Another programmer took over parts of the project for a while. And then a bit later I came back to the code he had changed. He'd introduced variables whose names were variations on STUPIDMARK and MARKSANIDIOT.

sigh. Thanks, man. Look, I do the best I can with the restraints I got.

link|flag
vote up 0 vote down

SQL Variable name

Declare @InfiniteLoopCatcher int

Then it was use like

If InfiniteLoopCatcher = 10000 return 0

link|flag
vote up 0 vote down

I remember encountering a variable called 'iMinSecureCode' ostensibly for storing an integer holding the mininum security code. But when I pronounced the variable name out loud, somebody asked me: why are you insecure?

link|flag
vote up 0 vote down

getIsLocked() or somesuch; it jarred with me in a horrible fashion. Odd names, pop culture references and even long winded drivel I can deal with, but for some reason, this one little method name caused me to die a tiny bit inside.

The rest of the code in question was somewhat...questionable.

link|flag
vote up 0 vote down
static int i;  /* file scope */

Someone added a harmless looking for (i = 0; ... ) deep inside a function, assuming that a function this big probably had a local variable called i. It didn't. The compiler didn't complain obviously and the unrelated piece of code that depended on the static variable broke as a result.

link|flag
show 3 more comments
vote up 0 vote down
bool etalon;

Near as I could figure from deciphering the code, it means "default" in some other language.

link|flag
1  
etalon in french rather means "reference value" – Eric Aug 26 at 21:15
show 1 more comment
vote up 0 vote down

obja,objc,objd,objx,objr,objp... many ex-VB6 programmers in my country like to prefix every object they made with obj. Perhaps that made sense in VB6 but it only reduces readibility in VB.Net.
The problem is that these programmers often are the ones that teach, so the habit is passed to the new generations.

link|flag
vote up 0 vote down

On a recent Ruby project, someone had added a method to all numeric types to fromat them as currency. You called it like this:

total.to_buxx

Not the worst thing I ever saw, but it gave me a chuckle.

link|flag
vote up 0 vote down

Hmmm...

Public Shared Sub RoboMouse()
    Dim MyRobot As Point
    ' ... '
End Sub
link|flag
vote up 0 vote down

There was this really rough migration project I worked on long ago. The specs kept shifting, and the end client hadn't asked for what they wanted or needed, so it was slow going with a lot of rewriting. At one point they brought in this other guy to do further changes to some code I'd already done a lot of work on.

The new guy wasn't aware of the complex and somewhat misguided history of this code, and as you might expect, some of it made me look less than brilliant. That happens when the code is rough to start with, specs are poor, and they absolutely will not let you refactor.

Anyway, a few months later I returned to some of these rough spots to make even more changes. Only to find variables with names like STUPIDMARK and MARKSANIDIOT.

Yeah, thanks dude. Appreciate your support.

link|flag
vote up 0 vote down

The use of foo and bar in examples, everywhere, all the time. Because since those words have explicitly no meaning, almost -anything- would be better names for whatever the variables are there for.

link|flag
vote up 0 vote down

One that always makes me laugh is kNullObject in the Maya API. However, it's one of those localized jokes so I don't expect anyone that don't speak Swedish to enjoy it.

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

Full disclosure: Something I did in my first couple programming classes while learning Pascal:

done := False;
repeat
  { do stuff }
  if end_condition_met then done := True;
until done;

This might be useful if there are several ways to get out of the loop, but I did this even when there was only one end condition. Fortunately, I outgrew that after a while.

Alas, in trying to remember enough Pascal to make this look right, I just found an online example doing the same thing. :-(

link|flag
vote up 0 vote down

I had to maintain a file littered with:

int link_state;
int lnk_handle;
int lnk_hdl;
int grp_lnk_index;
int grp_link;
int blk_hdl;
int active_link;
int group_handle;
int group_cfg;
control_block_config* ctrl_block;

No rhyme or reason to whether the name would be abbreviated. What a minefield. The first thing I did was global search & replace each name with the spelled-out version. (Not that big a risk given that the code was a disaster to begin with...)

link|flag
vote up 0 vote down

I can't believe no one has mentioned HasThisTypePatternTriedToSneakInSomeGenericOrParameterizedTypePatternMatchingStuffAnywhereVisitor yet. (At least it works as a bit of humor as well.)

link|flag
vote up 0 vote down

I did encoutered :

if (!$this->get("justdoit"))
{
    $this->setError(True);
}

One of my colleague had to refactor this code, lost in a 5OOO lines long PHP script without single class but full of nested "if". Needingless to say that after 3 months, he rewrote it entirely and we never knew what was that line for.

link|flag
vote up 0 vote down

An ex-coworker of mine decided that he didn't like the usual way of appending strings in PHP, so created his two functions: StringAppend and dneppAGnirts. Both functions took two arguments, and returned a concatenation, except that the latter would concatenate the two parameters in reverse order.

link|flag
vote up 0 vote down

I once wrote some machine path optimization code in FORTRAN, where the underlying data structure was a huge array of points (punch hits). In order to optimize the points, I needed to track the start and end of a given range of hits. I did so with the following variables:

ishit
iehit

For the year or so that I worked in and around that code, I always read the variables as "i start hit" and "i end hit". It wasn't until much later, when the code was less familiar to me, that I saw "ishit" for what it really was... ;^)

link|flag
vote up 0 vote down

I honestly encountered complete applications written almost entirely with generic method/variable names...

Variables:

  • MyA
  • MyB
  • Txt122

Functions:

  • DoThis
  • DoFunction
link|flag
vote up -3 vote down
i

I know, we all love using i for loops, but it's pretty much always the worst choice. Be more descriptive!

I hate seeing loops such as:

for ($i = 0; $i < 10; $i++) {
    for ($j = 0; $j < $i; $j++) {
            $k = $j * $i;
    }
}

It isn't readable, and it doesn't help anyone!

link|flag
1  
i ... as in integer? – palm3D Sep 28 '08 at 11:56
show 6 more comments
prev 1 2 3

Your Answer

Get an OpenID
or

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