vote up 12 vote down star
5

I was reading through my daily doze of RSS when I noticed a link to the python compiler documentation where class names like assList, assName and assTuple exist. While starting names with 'ass' is perfectly acceptable to me, it just sparked this idea that there probably exist much better examples of this.

Have you personally used or otherwise encountered any inappropriate function or variable names?

Personally I have used 'crap' and 'moo' for temporary purposes, forgot them and at a later point they came too integrated for me to bother with fixing them.

flag
2  
Why are those inappropriate? – 1800 INFORMATION May 25 at 7:30

29 Answers

vote up 15 vote down check

Theere was this function:

public void doNotCall() {...}

And

private bool Punch(Employee e)

The prefix stood for "false checkbox"

 bool fckMan
 bool fckWoman

Edit:

Just ran across this SQL:

select ...
where finite = 1 and infinite = 1

This select actually returns a bunch of rows. Apparently, SQL > number theory.

Edit 2:

To show again how engineers love contradictions:

class DynamicStaticDataManager {
link|flag
vote up 27 vote down

I could not help smiling when I encountered:

def anal( self, CFG ) :
  self.do_anal_dominate( CFG                        )
  self.do_anal_frontier( CFG, CFG.get_flow_header() )

It's about analyzing control flow graphs as part of a compiler...

link|flag
+1 for sheer entertainment! LOL.. – Swanand May 25 at 8:20
2  
Anal, the final frontier. – Ólafur Waage May 25 at 10:48
4  
Reminds me of our database: Annals Extra -> tbl_analsex – Mike Robinson Jun 23 at 19:49
vote up 16 vote down

Who hasn't used this before:

On Error Goto HELL

HELL:
link|flag
vote up 13 vote down

i saw somewhere in some old code:

if (isFalse == true)
    // code
link|flag
vote up 12 vote down

I worked for a summer as an intern in a computer game development studio while studying. One of my tasks was to improve the performance of an exporter for animated 3D vertex data from within Alias|Wavefront Maya. The version of the script the were currently using was written in Maya's MelScript language and was atrociously slow, requiring the animator to get up and have a cup of tea for half an hour every time he wanted to export more than 10 frames of a character with more than 10 animated vertices. There was no way to speed up the script as written, so I was going to have to dive into Maya's C++ API, which was at the time very poorly documented with scant few examples.

Now, Maya has a remarkable plugin architecture that allows any data input in the scenegraph to be plugged in to basically any data output anywhere else in the scenegraph. This means that, at the C++ level, there are many levels of abstraction to get from a high-level object representation to the raw vertex data that I was interested in. At the time I was a computer science undergrad, and this was my first real job of any kind. So, I was navigating structures I had next to no understanding of, built with an amazingly complex plugin architecture the likes of which I had never used before.

Having got the base plugin stuff compiling and not crashing, I spent the next several days navigating the dense graph structure to locate where I thought the vertex data might be, then hit a brick wall of epic proportions. From memory, I had to get something called a Plug to the value, which then needed to be Adapted somehow, which gave me back another kind of Plug which I then had to dereference several times to reach a pointer to a pointer to an array of pointers to actual vertex data. And at the time, I hadn't actually quite grasped what a pointer meant.

After spending 16 frustrating hours on the four lines of code that did this, the variables names had morphed from sensible things like Plug thePlug to Plug* adaptedPlugFromPlug to Plug adaptedDereferencedPlugFromPlugArrayMaybe to Vector* iDontUnderstandAnymore to Vector* JUSTCOMPILEYOUMOTHERF--KER, and so on. The end product was a function where the variables were named, in order, sh-tsh-t, f-ckf-ck, c-ntyc-nt and f-cksh-tf-ck. When it finally worked, it worked stunningly well, exporting in 5 seconds flat what used to take a full 30 minutes. To the company's credit (or not), they only cared that it worked, and didn't review the code any further; and to this day, as far as I know, these variable names persist in their CVS repository.

link|flag
1  
A search on TDWTF would be appropriate to see if anyone found that gem :) – Damir Jun 20 at 19:50
vote up 6 vote down

Anything postfixed with 2 (3,4,5..) or New/Old is most annoying.

link|flag
vote up 6 vote down

For years (as long as I can remember and I'm 44) programmers have been using foo and bar as function or variable names in example code and we all know what they mean.

This is worth looking at - swear count in the Linux Kernel:

www.vidarholen.net/contents/wordcount/

link|flag
vote up 5 vote down

From one of our view functions in Django:

    sorts = {
    "date": lambda direction: "%spublished_date" % ("-" if direction=="desc" else ""),
    "reads": lambda direction:"%shit_count" % ("" if direction=="asc" else "-"),
    "comments": lambda direction:"%snum_comments" % ("" if direction=="asc" else "-")       
}
link|flag
I lol'd at %shit_count. – musicfreak Nov 19 at 7:20
vote up 4 vote down

I wrote A.R.S.E. (Advanced Reusable Site Engine) and used arse as a prefix for all vars. Also S.H.I.T (Superior Human Interface Tools). Luckily neither system is open-source.

link|flag
My university dissertation was the "Advanced Redundant Server Environment"... – Rowland Shaw May 25 at 11:56
vote up 4 vote down

int onehundred = 200;

(Of course, it started as 100, but appeared too little);

link|flag
1  
Just to prove the name for the symbolic constant is also important. – Gamecat Jun 20 at 20:38
vote up 4 vote down
bool shit; // sorry shift
link|flag
vote up 4 vote down

Not a function name but I saw code like this once that passed the spellchecker but uhm... yeah not quite.

function doStuff(data, witch){
  if(witch == 'customer'){
    //...
  } else if(witch == 'employee'){
    //...
  } else if(witch == 'distributer'){
    //...
  } else {
    //...
  }
}

There were several checks against the witch but none were like what I was expecting... canDrown(witch), isGoodWitch(witch), isSheAWitch(witch) or burnHerAtTheStake(witch) ;-)

link|flag
2  
Don't forget isSheMadeOfWood(witch) and doesSheWeighTheSameAsADuck(witch). :) – Bill the Lizard Nov 19 at 5:24
1  
If this were written in Python, I think it would have been just a tad more epic. ;) – musicfreak Nov 19 at 7:21
vote up 2 vote down

While doing contract work for another company, they ran some kind of tool to check the submitted code that choked on our use of the Microsoft defined Shell Item ID struct or SHITEMID

link|flag
vote up 1 vote down

I used names like:

  • shit
  • dontMessWithTheBest
  • killEmAll
  • shutUpCompiler
  • sux
  • meSucks fooSucks, youSucks, *Sucks
  • aName
link|flag
vote up 1 vote down

CWaitCursor wc;

GetViewImage(), which was actually not returning an image handle, but saving the current image on disk. In one sense, ok, you were getting the image on disk, but experienced programmers usually call such functions "Save...()".

link|flag
vote up 1 vote down

A fortran variable for isotope calculation read "CylindricalSquare=...

link|flag
I think I've encountered that somewhere also. AFAIR, the "square" part is ment in the term of exponent (**2). But still sounds weird when you see it :-) – ldigas May 25 at 11:19
vote up 1 vote down
 bool IsNot=true;
link|flag
vote up 1 vote down

When I was a TA helping grade ML programs, the students quickly realized they could name the methods whatever identifier they pleased rather than use the signatures the professor gave. In brash attempts to get better grades, they came up with names such as:

fun chetIsHot() = let....end;
link|flag
Now the question is, did their efforts to get better grades work, Mr. Hotness? – Chris Lutz Nov 19 at 5:20
Not in the least. Cute, but doesn't contribute to correctness. – Chet Nov 24 at 16:51
vote up 1 vote down
for(pete=1 ; pete<max ; pete++) {
    if( pete==1 ) {
       // Some lines stuff to do with the first pete
    } else {
       // Some lines stuff to do during the rest of the petes
    }
 }

The thing is that in spanish pete means blowjob.

link|flag
1  
+1 Thanks bud ... my wife is spanish, and I've been trying to learn some good swear words for years. I can't wait to see her tonight. ;-) – John MacIntyre Sep 16 at 16:16
jejeje you're welcome. By the way. I don't know if in spain they use this term. As far as I know is a latin american slang. – The Disintegrator Sep 16 at 17:01
vote up 0 vote down

foo

-.-

link|flag
vote up 0 vote down

I once saw some code from a guy how was lazy about naming variables, so he named them like:

var
  A, B, C: string;
  X, Y, Z: Integer;

I guess he understood what he was doing at the moment, but nor him nor anyone else could understand his code later.

Luckly he was an intern which just stayed for a couple of days, until people started to saw his code and fired him.

Every time somebody stepped into his code they just deleted everything and wrote all again from scratch.

No, they didn't use source control, nor had code reviews, they just shared a network folder where everyone changed everything right there, I bet that some of this guy's code are still there :)

link|flag
vote up 0 vote down

Not too exciting, but when I was a developer at the school I attended I came across a little tool that made SQL dumps, writing out to a file named "dump.shit".

link|flag
vote up 0 vote down

My all time favorite variable name that I've seen is:

int capitalX=0;

link|flag
vote up 0 vote down

My favorite is:

if (loadObjectFromDatabase(obj)) {
 //Figure Out what to do
}

This method was actually causing a big bottleneck on the database because of not using indexes and when we drilled down finally to the place where it is called from, we were shocked to see the comment

link|flag
vote up 0 vote down

I wrote some code once that automatically sent email to $perf_anal under certain circumstances. I don't think the performance analyst was too thrilled with that variable name.

link|flag
vote up 0 vote down

GetEcks()

a function in a codebase for a PS3 title I worked on to check the state of the X button on the controller.

link|flag
vote up 0 vote down

Well there was always the project I worked on that had

public void doIt()

and

public void doIt2()

This was of course in the class Form7.cs which was actually documented elsewhere explaining that the original dev had made a few different versions and this was the one that worked best.

link|flag
vote up 0 vote down

bigSmellyMonkeyButt

link|flag
vote up -1 vote down

I worked with a designer who had... well .. issues. I found this and others like it in at least three HTML templates he had worked on:

<p>
Please click on an option below to choose the package you want. 
Each package offers it's own beneficial moose, 
if you can't find a moose to suit your needs, go f**k a dead moose.
</p>

When I queried him on it he said he puts it in files he's working on so he can search for them later and finish them. Suffice to say he never did.

link|flag
4  
I found that very offensive. Mostly because he used "it's" for "its." – Nosredna Jun 20 at 19:42
I mean, what's the problem with grammar and (I guess) americans? it's basic grammar the distinction between it's and its (and the same with your and you're). I've never made this mistake during my English classes, and I'm Italian, so by definition my English sucks, but on the net it's a constant. – Stefano Borini Nov 19 at 5:21

Your Answer

Get an OpenID
or

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