vote up 4 vote down star
1

I wanted to answer this question (best comment) but I wanted to answer with a variable name... and figuring that there are some fun variable or function names out there...

What is the best variable/function name you have ever encountered?

Edit:

(I am not suggesting that anyone vote to close any of the following topics, I am just using them to show my rationale for asking the question the way I did. I am also not saying that the posts below represent the same information that I was trying to get)

Assuming you took a critical thinking class at school (some people may not have) you might remember that there are a number of ways to present an argument (or in the case of SO get information). One way is to pick an extreme position that is so far out that it clearly highlights the major point. If someone were to ask a question along the lines of How do you know when your team is not communicating effectively (as is the style of some of the questions below) you will get certain answers. If you ask the question in the way that the commenting question or the question I asked above was asked you will get very different types of answers.

Are the different types of answers less valuable? Probably not. You will get good and bad answers or both types of questions. In some ways the "fun" question will get clearer answers as it will likely be shorter, more to the point, and clearly highlight what is "wrong".

I can understand the desire of some people to close the question, I don't have any issue with int being closed. I do have an issue with it being close for not being programming related. Programming is social (weather individuals writing the code are social or not). No programmer works in isolation, and the communication between them is important. Variables name/method names/comments are a big part about how programmers communicate with one another. A question that relates to how programmers communicate to one another is a programming related question (at least it is IMHO).

Sometimes asking a question in a "fun" way gets better answers. If you read the answers to that commenting post there is a lot you can get out of it from a social point of view. Yes it seems like a silly question on the surface but if you dig into the responses you can actually get a lot out of it from a psychological point of view (and, again, given that programming is social the psychological stuff matters);

flag
1  
There's no need to close this. If that "Best Comment" question is valid, then so is this one. – Outlaw Programmer Mar 5 at 18:27
1  
If someone successfully robs a bank, all future bank robberies are fine. – EBGreen Mar 5 at 18:30
Actually, if you look at one of the comment ones, page 12, 13 votes by Mark Bessey, you will see that you can actually get useful information about programming based on things like this. Yes it is a "fun" thing - but it also give valid information that you would not get with a serious question. – TofuBeer Mar 5 at 18:34
1  
Oh my goodness me. Not programming related? The usual suspects closing this one. – Ali A Mar 5 at 19:03
2  
Does question-closing earn badges or something? – Ali A Mar 5 at 19:09
show 14 more comments

closed as not programming related by Andrew Hare, EBGreen, Alex Fort, Robert S., Jason Punyon Mar 5 at 19:00

13 Answers

vote up 13 vote down

A variable used to store "pixels per mm" came out as:

 pixelspermm

It still causes sniggers several years on.

link|flag
1  
That_is_why_I_always_use_underscores_to_separate_words_in_variable_names. – voyager Nov 25 at 20:04
Exactly. But it wouldn't have been that funny! – Nick Nov 27 at 0:05
vote up 10 vote down

we had a program called anal_entry. it was analyst's to enter data :P

link|flag
vote up 7 vote down

I've always been kinda tickled by "umount", because someone decided to abbreviate a 7-character command by randomly removing only one character from the middle.

Once upon a time I found this documentation for it:

When a filesystem no longer needs to be mounted, it can be unmounted with umount.*

*It should of course be unmount, but the n mysteriously disappeared in the 70's, and hasn't been seen since. Please return it to Bell Labs, NJ, if you find it.

link|flag
vote up 6 vote down
//Attempt to predict the result
int uition()
{
}
link|flag
That is really just a pun. You know where we got the word "punish" from, right? :-) – T.E.D. Mar 5 at 18:45
vote up 5 vote down

I once used perf_anal as a variable to store the email address for the "performance analyst". Didn't think anything of it until someone else laughed at my code.

link|flag
vote up 4 vote down

I've always liked

double d;

but that's just me...

link|flag
vote up 3 vote down

After an annoying debate with a number of people over email about a change that added error checking to our system to checkout code (basically it was a series of batch files with no error checking) I added an environment variable to turn off the error checking again:

LIFE_IS_A_LEMON_AND_I_WANT_MY_MONEY_BACK

Set it and error checking was turned off.

I also smile for some reason whenever I write

super(model);
link|flag
Meatloaf reference ? – alex Mar 9 at 6:41
yes, yes it was. – TofuBeer Mar 9 at 6:41
vote up 3 vote down
print l.O
=> displays "One", not 1.0

This is because the variable l (lowercase L) is an object whose attribute O (capital o), is equal to the string "One". ;-)

I just love the variable l.

link|flag
lol ........... – hasen j Apr 27 at 11:11
You are an evil, evil person. Is it Ok if I use that too? – Philip Kelley Nov 25 at 20:12
vote up 3 vote down

From Microsoft of course:

MessageSecurityVersion.WSSecurity11WSTrustFebruary2005 WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10

Edit: split apart to multiple lines for layout sake

link|flag
silly microsoft... – rmeador Mar 5 at 19:37
vote up 2 vote down

There was a bug in Powerbuilder that our server had to get around, but we only wanted to do this if the bug was actually present, otherwise we'd cause other problems, so we added a hidden switch that enabled a global variable:

GrossKludgeToGetAroundPowerbuilderBugCreatingDatabase = TRUE;
link|flag
vote up 1 vote down

WhyOnEarthIsThisFunctionalityNecessary_NoOneKnows_ButTheBAInsistsTheClientNeedsIt();

link|flag
vote up 1 vote down
/**
*  Do not use, ever - left in place for testing purposes
*/
function  I_David_WillHuntYouDownAndHurtYou_Badly_IfIFindThisUsedAnyWhereInTheAppLibrary(){
...
}

This was a method inside a Memcache management class that if called, would nuke the companies entire cache array of services... If the website was underload when it happened, the result would be a furious thrashing of hard drives and possibly the death of the Database from too many expensive queries at once.

link|flag
vote up 0 vote down

In college, back when you had to write your own linked list in C++, one of my buddies always took amusement when writing the "Remove Node" function.

He would always name the "node to be removed" as "condemned"

link|flag

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