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 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 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

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

This was made in vb6, i think the code speaks for himself. I called this: "Temporal Coding"

                    Do While Not rstmp.EOF
                        tmp1 = 0:  tmp2 = 0: tmp3 = 0: tmp4 = 0: tmp5 = 0:  tmp6 = 0
                        Call barraProgr(IIf(rstmp.PercentPosition > ProgressBar1.Min, rstmp.PercentPosition, ProgressBar1.Min))
                        ttLinCod = rstmp.Fields("LINCODIGO")
                        tmpAdd = Trim(rstmp.Fields("LINDESCRIPCION")) + " (Cod:" + Trim(Str(ttLinCod)) + ")" + Chr(9)

                        sql = "SELECT Sum(CUOTA.CUOUNIDADES) AS SumaDeCUOUNIDADES, Sum(CUOTA.CUOMONTO) AS SumaDeCUOMONTO"
                        sql = sql + " FROM CUOTA INNER JOIN PRODUCTO ON CUOTA.PROCODIGO = PRODUCTO.PROCODIGO"
                        sql = sql + " WHERE CUOTA.VENCODIGO=" & iddUsuario
                        sql = sql + " AND PRODUCTO.LINCODIGO=" & ttLinCod
                        sql = sql + " AND CUOTA.CUOPERIODO=" & Format(fchDesdeHasta(0), "yyyymm")
                        Set rsCuota = dbMain.OpenRecordset(sql, dbOpenSnapshot)
                        If rsCuota.EOF Or rsCuota.BOF Then
                        Else
                            If Not IsNull(rsCuota.Fields("SumaDeCUOUNIDADES")) Then
                                tmp1 = rsCuota.Fields("SumaDeCUOUNIDADES") '2
                                tmp2 = rsCuota.Fields("SumaDeCUOMONTO") '3
                                mTotalesMSF(0) = mTotalesMSF(0) + tmp1
                                mTotalesMSF(1) = mTotalesMSF(1) + tmp2
                            End If
                        End If
                        tmpAdd = tmpAdd + Format(tmp1, "###,##0") + Chr(9)
                        tmpAdd = tmpAdd + Format(tmp2, "###,##0") + Chr(9)

                        sql = "SELECT Sum(HISTORIC.HISCANTORDENADA) AS SumaDeHISCANTORDENADA, Sum(HISTORIC.HISMONTO) AS SumaDeHISMONTO"
                        sql = sql + " FROM ((VENCLI INNER JOIN HISTORIC ON VENCLI.CLICODIGO = HISTORIC.CLICODIGO) INNER JOIN VENLIN ON VENCLI.VENCODIGO = VENLIN.VENCODIGO) INNER JOIN PRODUCTO ON (PRODUCTO.LINCODIGO = VENLIN.LINCODIGO) AND (HISTORIC.PROCODIGO = PRODUCTO.PROCODIGO)"
                        sql = sql + " WHERE VENCLI.VENCODIGO=" & iddUsuario
                        sql = sql + " AND VENLIN.LINCODIGO=" & ttLinCod
                        sql = sql + " AND HISTORIC.HISPERIODOFACT=" & Format(fchDesdeHasta(0), "yyyymm")
                        Set rsHist = dbMain.OpenRecordset(sql, dbOpenSnapshot)
                        If rsHist.EOF Or rsHist.BOF Then
                        Else
                            If Not IsNull(rsHist.Fields("SumaDeHISCANTORDENADA")) Then
                                tmp3 = rsHist.Fields("SumaDeHISCANTORDENADA") '4
                                tmp4 = rsHist.Fields("SumaDeHISMONTO") '5
                                mTotalesMSF(2) = mTotalesMSF(2) + tmp3
                                mTotalesMSF(3) = mTotalesMSF(3) + tmp4
                            End If
                        End If
                        tmpAdd = tmpAdd + Format(tmp3, "###,##0") + Chr(9)
                        tmpAdd = tmpAdd + Format(tmp4, "###,##0") + Chr(9)

                        If Month(CDate(fchDesdeHasta(0))) <> Month(Now) Then GoTo noCalcPed

                        sql = "SELECT Sum(ITEM.ITECANTAENTREGAR) AS SumaDeITECANTAENTREGAR, Sum([ITEM]![ITECANTAENTREGAR]*[ITEM]![ITEPRECIOUNIT]) AS PrecioTotal"
                        sql = sql + " FROM (VENLIN INNER JOIN (((ITEM INNER JOIN PEDIDO ON ITEM.PEDCODIGO = PEDIDO.PEDCODIGO) INNER JOIN ESTADO ON ITEM.ESTCODIGO = ESTADO.ESTCODIGO) INNER JOIN VENCLI ON PEDIDO.CLICODIGO = VENCLI.CLICODIGO) ON VENLIN.VENCODIGO = VENCLI.VENCODIGO) INNER JOIN PRODUCTO ON (PRODUCTO.LINCODIGO = VENLIN.LINCODIGO) AND (ITEM.PROCODIGO = PRODUCTO.PROCODIGO)"
                        sql = sql + " WHERE ESTADO.ESTACTIVO=1 AND VENCLI.VENCODIGO=" & iddUsuario
                        sql = sql + " AND VENLIN.LINCODIGO=" & ttLinCod
                        Set rsPed = dbMain.OpenRecordset(sql, dbOpenSnapshot)
                        If rsPed.EOF Or rsPed.BOF Then
                        Else
                            If Not IsNull(rsPed.Fields("SumaDeITECANTAENTREGAR")) Then
                                tmp5 = rsPed.Fields("SumaDeITECANTAENTREGAR") '4
                                tmp6 = rsPed.Fields("PrecioTotal") '5
                                mTotalesMSF(4) = mTotalesMSF(4) + tmp5
                                mTotalesMSF(5) = mTotalesMSF(5) + tmp6
                            End If
                        End If
noCalcPed:
                        tmpAdd = tmpAdd + Format(tmp5, "###,##0") + Chr(9)
                        tmpAdd = tmpAdd + Format(tmp6, "###,##0") + Chr(9)
                        tmpAdd = tmpAdd + Format(tmp3 + tmp5, "###,##0") + Chr(9)
                        tmpAdd = tmpAdd + Format(tmp4 + tmp6, "###,##0") + Chr(9)
                        mTotalesMSF(6) = mTotalesMSF(6) + tmp6 + tmp4
                        If tmp1 = 0 Then
                            tmpCero = 100
                        Else
                            If tmp3 + tmp5 = 0 Then
                                tmpCero = 0
                            Else
                                tmpCero = ((tmp3 + tmp5) / tmp1) * 100
                            End If
                        End If
                        tmpAdd = tmpAdd + Format(tmp3 + tmp5 - tmp1, "#,##0") + Chr(9)
                        tmpAdd = tmpAdd + Format(tmpCero, "#,##0") + "%" + Chr(9)
                        If tmp2 = 0 Then
                            tmpCero = 100
                        Else
                            If tmp4 + tmp6 = 0 Then
                                tmpCero = 0
                            Else
                                tmpCero = ((tmp4 + tmp6) / tmp2) * 100
                            End If
                        End If
                        tmpAdd = tmpAdd + Format(tmp4 + tmp6 - tmp2, "#,##0") + Chr(9)
                        tmpAdd = tmpAdd + Format(tmpCero, "#,##0") + "%"
                        mTotalesMSF(7) = mTotalesMSF(7) + tmp4 + tmp6 - tmp2
                        If tmp1 + tmp2 + tmp3 + tmp4 + tmp5 + tmp6 <> 0 Then msfConsulta.AddItem tmpAdd
                        rstmp.MoveNext
                    Loop
link|flag
show 1 more comment
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

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

This one was in C# code. Don't ask me what it was supposed to do.

static Func<T, Func<T>> HeavyMetalIsFun<T>(Func<T> fun);
link|flag
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

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

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

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

Hmmm...

Public Shared Sub RoboMouse()
    Dim MyRobot As Point
    ' ... '
End Sub
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

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
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
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

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

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

SQL Variable name

Declare @InfiniteLoopCatcher int

Then it was use like

If InfiniteLoopCatcher = 10000 return 0

link|flag
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 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

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

I also once worked on a project which defined a C++ enum of values returned from a DB search call and included the value "DB_NOTAGOATATALL". I think it was originally DB_NOTAGOATALL for "Not a 'go' at all", i.e. the search failed utterly, however someone decided that "Not a goat all" was bad English and inserted the missing "at", and it just stuck.

link|flag
vote up 1 vote down

Anything mis-spelled which has spread its way through the code thanks to the miracle of intellisense/identifier completion, especially once it surfaces in a public API, which means you then can't correct it without screwing with some customer's software.

link|flag
vote up 1 vote down
private void rape(TimFlop victim) {
    if (Math.random() < 0.7) {
        flop.getGameObject().AddFlop(new TimFlop(flop, victim));
    }
}
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 1 vote down

I had to fix bugs in an application that had to delete itself after execution.

The function that performed the (indirect) deletion was called:

void Harakiri();
link|flag
vote up 1 vote down

From the perverse and happily defunct world of Authorware where spaces in variable names was legal:

booBoolMoveOnIsOn True

Laughably, it was a constant, defined as 1

link|flag
vote up 1 vote down

A few years ago I had finnish a program started by an intern. He had created a lot of methods like

void Bla(); 
void Blo(short Bla); 
void Bli(int Bla, double Blo);

These methods were used like this throughout the entire project. A complete mess... Horrible...

link|flag
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.