What is the worst class/variable/function name you have ever encountered - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T12:44:35Zhttp://stackoverflow.com/feeds/question/143701http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered10What is the worst class/variable/function name you have ever encounteredChris Noe2008-09-27T14:28:01Z2009-09-24T13:55:40Z
<p>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?</p>
<p><hr /></p>
<p>Just to get things started:</p>
<p>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: <code>DL2WhateverTheHellThatIs</code>.</p>
<p>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 <em>not</em> reference this, er, <em>thing</em>! A few actual examples:</p>
<pre>
DL2WhateverTheHellThatIsBean cos = (DL2WhateverTheHellThatIsBean)itr.next();
String code = getDL2WhateverTheHellThatIs().getCode();
From from = new From("DL2WhateverTheHellThatIs");
String filter = "_dL2WhateverTheHellThatIs._code";
</pre>
<p>(Very difficult to refactor)</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/143707#1437074Answer by Doug T. for What is the worst class/variable/function name you have ever encounteredDoug T.2008-09-27T14:32:31Z2008-09-27T15:08:52Z<p>Single letter variable names.</p>
<pre><code>float p, x, y;
</code></pre>
<p>because</p>
<pre><code> x = sqrt(p * p + y * y);
</code></pre>
<p>is much clearer than:</p>
<pre><code> hypotenuse = sqrt(edge1 * edge1 + edge2 * edge2);
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/143724#1437245Answer by korchev for What is the worst class/variable/function name you have ever encounteredkorchev2008-09-27T14:42:45Z2008-09-27T14:42:45Z<p>There was a class called "HelperFunc" in one of the projects I have worked on. That class contained only static "helper" methods which had nothing in common - just a place to throw in random code.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/143729#1437295Answer by Pablo Fernandez for What is the worst class/variable/function name you have ever encounteredPablo Fernandez2008-09-27T14:44:47Z2008-09-27T14:44:47Z<p>I used to work with Powerbuilder and people keep naming variables var1, var2, var3, var4 ... etc. We usually had up to var20. It was hell (I resigned :) )</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/143752#1437522Answer by dacracot for What is the worst class/variable/function name you have ever encountereddacracot2008-09-27T14:57:21Z2008-09-27T14:57:21Z<p>Profanity... I won't type the example.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/143759#143759-3Answer by Rich Bradshaw for What is the worst class/variable/function name you have ever encounteredRich Bradshaw2008-09-27T15:01:48Z2008-09-27T15:01:48Z<pre><code>i
</code></pre>
<p>I know, we all love using i for loops, but it's pretty much always the worst choice. Be more descriptive!</p>
<p>I hate seeing loops such as:</p>
<pre><code>for ($i = 0; $i < 10; $i++) {
for ($j = 0; $j < $i; $j++) {
$k = $j * $i;
}
}
</code></pre>
<p>It isn't readable, and it doesn't help anyone!</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/143777#1437770Answer by Leon Tayson for What is the worst class/variable/function name you have ever encounteredLeon Tayson2008-09-27T15:10:13Z2008-09-27T15:10:13Z<p>Anything that doesn't describe the variable's content.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/143896#14389612Answer by Ben Hoffstein for What is the worst class/variable/function name you have ever encounteredBen Hoffstein2008-09-27T15:58:50Z2008-09-27T15:58:50Z<p>Anything prefixed with "My". We once hired a junior programmer who came up with such doozies as "MyClass", "MyInterface", and "MyMethod1". It was clear he was copying/pasting from a general tutorial (we later found it online), but couldn't be troubled to modify the sample.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/144144#14414413Answer by olle for What is the worst class/variable/function name you have ever encounteredolle2008-09-27T17:58:35Z2008-09-27T17:58:35Z<p>JesusBuysCookies()</p>
<p>Private method in an inhouse cookie handlig library.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/144153#14415311Answer by Jacob for What is the worst class/variable/function name you have ever encounteredJacob2008-09-27T18:02:50Z2008-09-27T18:02:50Z<p>I don't remember the actual collection name, but <strong>assMaster</strong> was named by my mentor on my last project (and he is a guy who doesn't swear).</p>
<pre><code>foreach(var assMaster in assembly.LinkedAssemblies)
{
ProcessTypes(assMaster)
}
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/144183#14418317Answer by Gamecat for What is the worst class/variable/function name you have ever encounteredGamecat2008-09-27T18:19:29Z2008-09-27T18:28:42Z<p>From the Windows 3.x kernel:</p>
<pre><code>void FAR Bunny_351(void);
Long FAR PASCAL BozosLiveHere(HWND, WORD, WORD, DWORD);
WORD FAR PASCAL PrestoChangoSelector(WORD, WORD);
</code></pre>
<p>Bunny_351 is a an internal function called when windows shuts down. It's name was to honor a stuffed bunny that had an unfortunate accident with a paper shredder.</p>
<p>BozosLiveHere, a mysterious function that returns the string <em>"USER: Invalid function called. System state potentially trashed,"</em>.</p>
<p>PrestoChangoSelector generates a code selector without validating the parameters so it is quicker than ChangeSelector.</p>
<p>Source: Undocumented Windows</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146353#1463530Answer by Constantin for What is the worst class/variable/function name you have ever encounteredConstantin2008-09-28T17:55:37Z2008-09-28T17:55:37Z<p><strong>Toto</strong></p>
<p>I maintained a project created by French developers and many local variables were named "toto". There were also some "koko", i think it's a derivative from "toto". I still have no idea what it means :)</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146357#1463570Answer by Bill James for What is the worst class/variable/function name you have ever encounteredBill James2008-09-28T17:58:39Z2008-09-28T17:58:39Z<p>In our World Series Baseball code for the Sega Genesis, we had a variable put in by an irate programmer whose name I can't quite type in here, but I think you'll get the idea:</p>
<p>int StupidFxxkingFlagThatSegaMakesUsFxxkingHave</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146364#1463641Answer by roosteronacid for What is the worst class/variable/function name you have ever encounteredroosteronacid2008-09-28T18:01:05Z2008-09-28T18:01:05Z<p>Using our graph-library, with JavaScript support for dynamic manipulation. No documentation provided:</p>
<pre><code>doThatGraphThing( ... );
</code></pre>
<p>I laughed a bit, then went to have a talk with the developer, as this was release-code.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146375#14637520Answer by Christopher for What is the worst class/variable/function name you have ever encounteredChristopher2008-09-28T18:05:43Z2008-09-28T18:05:43Z<p>I have a coworker that routinely uses sentences for method names. For example:</p>
<p>LetsProceedWithHandlingTheErrorFromThatOneMethod()</p>
<p>(oh yeah, he begins lots of method names with "Lets")</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146420#14642013Answer by Boo for What is the worst class/variable/function name you have ever encounteredBoo2008-09-28T18:24:54Z2008-09-28T18:24:54Z<p>All variable names that "saves" you 2 or 3 keystrokes.</p>
<p>Like <strong>bta</strong> instead of <strong>beta</strong>, <strong>prmtr</strong> instead of <strong>parameter</strong> etc.</p>
<p>With intellisense you usually only need the first 3 letters anyway so why not use long descriptive names? </p>
<p>Who came up with this crap from the beginning btw? Was it the low-resolution displays that forced you to do this to get all code on one line or maybe language limitations?</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146459#1464598Answer by yrp for What is the worst class/variable/function name you have ever encounteredyrp2008-09-28T18:38:57Z2008-09-28T18:38:57Z<p>IsHardwareSoundPlaying_PleaseDontUseThis(). Called in at least 50 places in the code base, working perfectly.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146475#1464753Answer by Dan Udey for What is the worst class/variable/function name you have ever encounteredDan Udey2008-09-28T18:47:14Z2008-09-28T18:47:14Z<p>Anything that uses i, I, l, 1, o, O, or 0.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146478#14647843Answer by Ólafur Waage for What is the worst class/variable/function name you have ever encounteredÓlafur Waage2008-09-28T18:47:56Z2008-09-28T18:47:56Z<p>A function to return a parentID of some product</p>
<pre><code><?php
function whoIsYourDaddy($id)
{
return $this->parentID;
}
?>
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146487#14648752Answer by Brian Carper for What is the worst class/variable/function name you have ever encounteredBrian Carper2008-09-28T18:51:38Z2008-09-28T18:51:38Z<p><strong>isHasDeletePrivilege</strong>. One tiny step away from <strong>canHasDeletePrivilege</strong>, leading me to suspect it may have been written by a cat.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146501#1465010Answer by iAn for What is the worst class/variable/function name you have ever encounterediAn2008-09-28T19:00:49Z2008-09-28T19:00:49Z<p>PHP - in the middle of a controller file, subclassing some of the models:</p>
<pre><code>class X extends Office {
/* <snip 250 lines of function overloads > */
}
class y extends Employee {
/* <snip another 250 lines> */
}
$instance = new y();
</code></pre>
<p>Absolutely no comments as to why x & y are sub-classing the models (or why it was necessary to do it in the middle of a controler given the pains we went to put in place a framework). The best thing is only one of the two classes are actually used - freelancers, gawd bless 'em …</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146503#1465030Answer by Bill Drissel for What is the worst class/variable/function name you have ever encounteredBill Drissel2008-09-28T19:02:39Z2008-09-28T19:02:39Z<p>Worked with a guy in FORTRAN days who named all his variables: AA1, AA2 etc.
He didn't beliwve in continuation lines so he wrote:</p>
<p>AA1 = expression</p>
<p>then most often but not always on the next line:</p>
<p>AA1 = AA1 + expression</p>
<p>In C, functions named f(), c(), cc().</p>
<p>One I really liked was a flag named: AtLeastOneAntennaPulseInTheLastTenSeconds.</p>
<p>Regards,
Bill Drissel</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146527#1465278Answer by Carl for What is the worst class/variable/function name you have ever encounteredCarl2008-09-28T19:20:35Z2008-09-28T19:20:35Z<p>While not the "worst" name, this one came to mind.</p>
<p>We have a class used to iterate objects called LOOPER. Here's a code fragment:</p>
<pre><code>LOOPER theSuperDooperLooperScooper( drawing );
theSuperDooperLooperScooper.GetSelected ( GET_ONLY );
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146534#1465342Answer by Kevin for What is the worst class/variable/function name you have ever encounteredKevin2008-09-28T19:23:23Z2008-09-28T19:23:23Z<p>supercalifragilisticexpialidocious -- needless to say, this occurred before we had code reviews.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/146570#1465700Answer by rhymes for What is the worst class/variable/function name you have ever encounteredrhymes2008-09-28T19:41:48Z2008-09-28T19:41:48Z<p>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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/148638#1486388Answer by s_t_e_v_e for What is the worst class/variable/function name you have ever encountereds_t_e_v_e2008-09-29T13:28:07Z2008-09-29T13:28:07Z<p>I came across this method signature which takes full advantage of java case sensitivity.</p>
<pre><code>public void collectOtherProductsData(
BigDecimal productSeqId,
BigDecimal seqId,
BigDecimal SeqId)</code></pre>
<p>Now I need to add another sequence id. Any suggestions?</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/148692#1486920Answer by Code Trawler for What is the worst class/variable/function name you have ever encounteredCode Trawler2008-09-29T13:43:57Z2008-09-29T13:43:57Z<p>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".</p>
<p>You can see where this is going. Juvenile variable names that obey conventions for the win!</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/155051#15505119Answer by Robert for What is the worst class/variable/function name you have ever encounteredRobert2008-09-30T20:53:32Z2008-09-30T20:53:32Z<pre><code>void crawl_into_hole_and_die()
{
while(1); // let the watchdog get us.
}
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/155081#1550818Answer by Cade Roux for What is the worst class/variable/function name you have ever encounteredCade Roux2008-09-30T21:02:32Z2008-09-30T21:02:32Z<p>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:</p>
<pre><code>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
</code></pre>
<p>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).</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/155372#1553721Answer by Andrei Rinea for What is the worst class/variable/function name you have ever encounteredAndrei Rinea2008-09-30T22:27:57Z2008-09-30T22:27:57Z<ul>
<li>$stmt (PHP / SQL statement member)</li>
<li>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.</li>
</ul>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179139#1791393Answer by James Curran for What is the worst class/variable/function name you have ever encounteredJames Curran2008-10-07T15:48:08Z2008-10-07T15:48:08Z<p>Some years ago, I came upon some code like this: (translated in C# from the rather scary scripting language that it was originally in)</p>
<pre><code>foreach(DocumentType shakes in GetDocumentTypes())
{
ProcessDocumentType(shakes);
}
</code></pre>
<p>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 "<a href="http://en.wikipedia.org/wiki/Delirium_Tremens" rel="nofollow">Delirium tremens</a>" which is also knows as "The shakes"</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179150#1791509Answer by James Curran for What is the worst class/variable/function name you have ever encounteredJames Curran2008-10-07T15:50:53Z2008-10-07T15:50:53Z<p>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).</p>
<pre><code>char cArnold = '|';
foreach(char c in GetSomeString())
{
...
if (c == cArnold)
break;
}
</code></pre>
<p>So, why is the end-of-data indicator called "Arnold"? --- Because he's the Terminator!</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179165#1791652Answer by theprise for What is the worst class/variable/function name you have ever encounteredtheprise2008-10-07T15:54:59Z2008-10-07T15:54:59Z<p>Function name:</p>
<pre><code>GiveItAWhirl();
</code></pre>
<p>followed closely in the code by</p>
<pre><code>GiveItAWhirl2();
</code></pre>
<p>These functions just pieced together unrelated data manipulation and UI code.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179175#1791755Answer by ZombieSheep for What is the worst class/variable/function name you have ever encounteredZombieSheep2008-10-07T15:56:32Z2008-10-07T15:56:32Z<p>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".</p>
<p>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 </p>
<pre><code>UploadedObjectValidationParseEmailAddressAndFullNameUsingStandard<companyname>RegularExpressions
</code></pre>
<p>Childish, I know, but this was in response to the guy who once rejected some code during code review on the basis that </p>
<blockquote>
<p>"The comment on line 96 has too many words that begin with the letter 'P'"</p>
</blockquote>
<p>Seriously.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179179#17917913Answer by Ryan for What is the worst class/variable/function name you have ever encounteredRyan2008-10-07T15:57:33Z2008-10-07T15:57:33Z<p>One of these days I'm going to find Kerninghan or Ritchie and make them answer to this</p>
<pre><code>//this function takes a character and converts it to an integer
public int atoi(char a){}
</code></pre>
<p>atoi? really?</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179184#1791841Answer by Ian Jacobs for What is the worst class/variable/function name you have ever encounteredIan Jacobs2008-10-07T15:59:25Z2008-10-07T15:59:25Z<p>I made a Time Clock program for my office. Every time a user clocks in/out the method called is PunchUser().</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179202#17920223Answer by akalenuk for What is the worst class/variable/function name you have ever encounteredakalenuk2008-10-07T16:04:17Z2008-10-07T16:04:17Z<p>"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:</p>
<pre><code>Obj1->SetGetSet(Obj2->GetGetSet())
</code></pre>
<p>Looks like a piece of Morse code.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179207#1792072Answer by Dan Hewett for What is the worst class/variable/function name you have ever encounteredDan Hewett2008-10-07T16:05:30Z2008-10-07T16:05:30Z<p>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!".</p>
<p>As a result all our variables had to start with zz...</p>
<p>Talk about name space pollution.</p>
<p>We eventually dumped that vendor.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179861#1798610Answer by Shawn Miller for What is the worst class/variable/function name you have ever encounteredShawn Miller2008-10-07T18:58:26Z2008-10-07T18:58:26Z<p>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.</p>
<p>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):</p>
<ul>
<li>CombineFiles</li>
<li>ConcatFiles</li>
<li>JoinFiles</li>
</ul>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179877#1798770Answer by Christopher Klein for What is the worst class/variable/function name you have ever encounteredChristopher Klein2008-10-07T19:03:49Z2008-10-07T19:03:49Z<p>I've been working on an old legacy VB6 program and the butt of most jokes is the function called LoadShmulaka</p>
<p>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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179882#1798824Answer by MidnightGun for What is the worst class/variable/function name you have ever encounteredMidnightGun2008-10-07T19:05:59Z2008-10-07T19:05:59Z<p>Maybe not 'worst' as it was actually quite descriptive, but a game project had a method:</p>
<pre><code>void removeUnderwear()
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179906#1799060Answer by mmyers for What is the worst class/variable/function name you have ever encounteredmmyers2008-10-07T19:11:57Z2008-10-07T19:11:57Z<p>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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179908#1799080Answer by Bill for What is the worst class/variable/function name you have ever encounteredBill2008-10-07T19:12:37Z2008-10-07T19:12:37Z<p>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 <strong>DontDoIt</strong> and <strong>DontDoItAgain</strong>!</p>
<p>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 <strong>Form1</strong>, <strong>Form15</strong>, <strong>Command1</strong>, <strong>Command29</strong>, etc!!!</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179913#1799135Answer by spotcatbug for What is the worst class/variable/function name you have ever encounteredspotcatbug2008-10-07T19:15:01Z2008-10-07T19:15:01Z<pre><code>doit()
{
// lots of code
}
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/179948#1799480Answer by Derek Smyth for What is the worst class/variable/function name you have ever encounteredDerek Smyth2008-10-07T19:25:56Z2008-10-07T19:25:56Z<p>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...</p>
<p>if (Buddha == Enlightened)
{
SetPathsWalked(&paths);
}</p>
<p>The lecturer had no idea what was going on in the code. </p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/194107#1941073Answer by nickf for What is the worst class/variable/function name you have ever encounterednickf2008-10-11T14:12:50Z2008-10-11T14:12:50Z<p>Some PHP code: A function which returns a reference. You can't just <code>return null;</code> because that's not a reference to anything. The workaround:</p>
<pre><code>function &getUser() {
if (/* there's some sort of error... */) {
$aStupidFuckingVariableIHaveToMakeBecausePHPWontLetMeJustReturnNullBecauseThatWouldMakeTooMuchSenseAndWouldBeWayTooEasy = null;
return $aStupidFuckingVariableIHaveToMakeBecausePHPWontLetMeJustReturnNullBecauseThatWouldMakeTooMuchSenseAndWouldBeWayTooEasy;
}
}
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/194122#1941220Answer by Michael Easter for What is the worst class/variable/function name you have ever encounteredMichael Easter2008-10-11T14:25:45Z2008-10-11T14:25:45Z<p>It is jarring to have variables with spelling or grammatical errors. e.g.</p>
<pre><code>Object corbaProxie = service.getProxie();
List recordsFindedWithPrivlidge = new ArrayList();
</code></pre>
<p>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!</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/194124#1941242Answer by Nik Reiman for What is the worst class/variable/function name you have ever encounteredNik Reiman2008-10-11T14:28:05Z2008-10-11T14:28:05Z<p>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:</p>
<pre><code>#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 ->
</code></pre>
<p>...which he then used to create monstrosities like the following:</p>
<pre><code>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);
}
</code></pre>
<p>I'm so glad he at least put that comment in there; that <em>really</em> 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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/194141#1941412Answer by Keith Elder for What is the worst class/variable/function name you have ever encounteredKeith Elder2008-10-11T14:40:56Z2008-10-11T14:40:56Z<p>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:</p>
<pre><code>Request.TakePostedValuesAndSetPropertiesOfTheObjectWithTheSameNameToThePostedValueUsingReflection(product);
</code></pre>
<p>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(). </p>
<p>The complete article is <a href="http://keithelder.net/blog/archive/2008/03/23/What-Software-Developers-Can-Learn-from-Forrest-Gump.aspx" rel="nofollow">here</a> for anyone that cares.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/239431#2394310Answer by Zizzencs for What is the worst class/variable/function name you have ever encounteredZizzencs2008-10-27T09:39:19Z2008-10-27T09:39:19Z<p>I've seen classes named after their author like JohnDoesModule and JaneBanesClass. Enough said.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/239473#2394734Answer by Dave for What is the worst class/variable/function name you have ever encounteredDave2008-10-27T10:04:54Z2008-10-27T10:04:54Z<p>not the worst class name ever, but very very funny when i first saw it in a previous role.</p>
<pre>
CHandJob
</pre>
<p>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).</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/239581#2395811Answer by for What is the worst class/variable/function name you have ever encountered2008-10-27T11:12:31Z2008-10-27T11:12:31Z<p>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..</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/239637#2396370Answer by Skizz for What is the worst class/variable/function name you have ever encounteredSkizz2008-10-27T11:43:27Z2008-10-27T11:43:27Z<p>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.</p>
<p>Skizz</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/381584#3815841Answer by Andrea Francia for What is the worst class/variable/function name you have ever encounteredAndrea Francia2008-12-19T17:17:06Z2008-12-19T17:17:06Z<p>kill - send signal to a process</p>
<p>Synopsis:</p>
<pre><code>int kill(pid_t pid, int sig);
</code></pre>
<p>Do you want kill something or do you want send signal?</p>
<p>In my old MSX BASIC you could delete files with <code>KILL filename</code>.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/439522#4395221Answer by Sorskoot for What is the worst class/variable/function name you have ever encounteredSorskoot2009-01-13T15:58:06Z2009-01-13T15:58:06Z<p>A few years ago I had finnish a program started by an intern. He had created a lot of methods like </p>
<pre><code>void Bla();
void Blo(short Bla);
void Bli(int Bla, double Blo);
</code></pre>
<p>These methods were used like this throughout the entire project. A complete mess... Horrible...</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/439542#4395421Answer by annakata for What is the worst class/variable/function name you have ever encounteredannakata2009-01-13T16:02:16Z2009-01-13T16:02:16Z<p>From the perverse and happily defunct world of <a href="http://en.wikipedia.org/wiki/Authorware" rel="nofollow">Authorware</a> where spaces in variable names was legal:</p>
<pre><code>booBoolMoveOnIsOn True
</code></pre>
<p>Laughably, it was a constant, defined as <code>1</code></p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/439610#4396101Answer by vobject for What is the worst class/variable/function name you have ever encounteredvobject2009-01-13T16:14:30Z2009-01-13T16:14:30Z<p>I had to fix bugs in an application that had to delete itself after execution. </p>
<p>The function that performed the (indirect) deletion was called: </p>
<pre><code>void Harakiri();
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/439838#4398380Answer by bruceatk for What is the worst class/variable/function name you have ever encounteredbruceatk2009-01-13T17:04:40Z2009-01-13T17:04:40Z<p>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 </p>
<p>IF .NOT. LNOGRAF</p>
<p>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.</p>
<p>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). </p>
<p>GASCAP stands for Graphics Application Software for Cruise missile and Aircraft Planning.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/439865#4398651Answer by utdiscant for What is the worst class/variable/function name you have ever encounteredutdiscant2009-01-13T17:11:16Z2009-01-13T17:11:16Z<pre><code>private void rape(TimFlop victim) {
if (Math.random() < 0.7) {
flop.getGameObject().AddFlop(new TimFlop(flop, victim));
}
}
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/439916#4399161Answer by raimesh for What is the worst class/variable/function name you have ever encounteredraimesh2009-01-13T17:25:01Z2009-01-13T17:25:01Z<p>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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/439950#4399501Answer by raimesh for What is the worst class/variable/function name you have ever encounteredraimesh2009-01-13T17:33:31Z2009-01-13T17:33:31Z<p>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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/439993#4399930Answer by Rob McCready for What is the worst class/variable/function name you have ever encounteredRob McCready2009-01-13T17:42:47Z2009-01-13T17:42:47Z<p>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)</p>
<p>TableTypeAssCombine</p>
<p>TableTypeAssSmoking </p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/539601#5396010Answer by catfood for What is the worst class/variable/function name you have ever encounteredcatfood2009-02-12T01:10:12Z2009-02-12T01:10:12Z<p>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.</p>
<p>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 <code>STUPIDMARK</code> and <code>MARKSANIDIOT</code>.</p>
<p><em>sigh.</em> Thanks, man. Look, I do the best I can with the restraints I got.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/739113#73911338Answer by Juliet for What is the worst class/variable/function name you have ever encounteredJuliet2009-04-10T22:54:47Z2009-04-10T22:54:47Z<p>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:</p>
<p><strong>HarvestOrphans</strong> - queries the database for orphaned images, pulls images into a grid on the UI.</p>
<p><strong>KillsOrphans</strong> - deletes all orphans in the pending deletion queue.</p>
<p><strong>MakeOrphanDirty</strong> - method is called when a user modifies an orphan. Sets the "IsDirty" flag on the orphan.</p>
<p><strong>TouchDirtyOrphans</strong> - reprocesses orphans modified by the user. First comment in method is <code>// no ! bad touch!</code></p>
<p>This funny in-joke lasted for 5 years until one of our customers commented on some of our error logs, specifically the <code>OrphanMolestationException</code> recently thrown in the <code>TouchDirtyOrphans</code> method. Its a miracle no one was fired :)</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/739116#7391160Answer by hcoohc03 for What is the worst class/variable/function name you have ever encounteredhcoohc032009-04-10T22:58:51Z2009-04-10T22:58:51Z<p>SQL Variable name</p>
<p>Declare @InfiniteLoopCatcher int</p>
<p>Then it was use like </p>
<p>If InfiniteLoopCatcher = 10000
return 0</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/739146#7391460Answer by George Jempty for What is the worst class/variable/function name you have ever encounteredGeorge Jempty2009-04-10T23:22:34Z2009-04-10T23:22:34Z<p>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?</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/739162#7391620Answer by Rob for What is the worst class/variable/function name you have ever encounteredRob2009-04-10T23:33:22Z2009-04-10T23:33:22Z<p><code>getIsLocked()</code> 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.</p>
<p>The rest of the code in question was somewhat...questionable.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/739188#7391880Answer by sigjuice for What is the worst class/variable/function name you have ever encounteredsigjuice2009-04-10T23:52:00Z2009-04-10T23:52:00Z<pre><code>static int i; /* file scope */
</code></pre>
<p>Someone added a harmless looking <code>for (i = 0; ... )</code> deep inside a function, assuming that a function this big probably had a local variable called <code>i</code>. 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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/739215#7392150Answer by Chris Doggett for What is the worst class/variable/function name you have ever encounteredChris Doggett2009-04-11T00:09:39Z2009-04-11T00:09:39Z<pre><code>bool etalon;
</code></pre>
<p>Near as I could figure from deciphering the code, it means "default" in some other language.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/739245#7392450Answer by ggf31416 for What is the worst class/variable/function name you have ever encounteredggf314162009-04-11T00:23:56Z2009-04-11T00:23:56Z<p>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.<br />
The problem is that these programmers often are the ones that teach, so the habit is passed to the new generations.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/773192#7731920Answer by Matt Grande for What is the worst class/variable/function name you have ever encounteredMatt Grande2009-04-21T15:31:38Z2009-04-21T15:31:38Z<p>On a recent Ruby project, someone had added a method to all numeric types to fromat them as currency. You called it like this:</p>
<pre><code>total.to_buxx
</code></pre>
<p>Not the worst thing I ever saw, but it gave me a chuckle.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/773245#7732450Answer by Lucas Jones for What is the worst class/variable/function name you have ever encounteredLucas Jones2009-04-21T15:40:45Z2009-04-21T15:40:45Z<p>Hmmm...</p>
<pre><code>Public Shared Sub RoboMouse()
Dim MyRobot As Point
' ... '
End Sub
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1114049#11140490Answer by catfood for What is the worst class/variable/function name you have ever encounteredcatfood2009-07-11T16:23:32Z2009-07-11T16:23:32Z<p>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 <em>wanted</em> or <em>needed</em>, 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.</p>
<p>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.</p>
<p>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 <strong>STUPIDMARK</strong> and <strong>MARKSANIDIOT</strong>.</p>
<p>Yeah, thanks dude. Appreciate your support.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337333#13373330Answer by Tchalvak for What is the worst class/variable/function name you have ever encounteredTchalvak2009-08-26T20:37:27Z2009-08-26T20:37:27Z<p>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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337442#13374420Answer by Laserallan for What is the worst class/variable/function name you have ever encounteredLaserallan2009-08-26T20:56:34Z2009-08-26T20:56:34Z<p>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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337537#13375370Answer by PTBNL for What is the worst class/variable/function name you have ever encounteredPTBNL2009-08-26T21:16:15Z2009-08-26T21:16:15Z<p>Full disclosure: Something I did in my first couple programming classes while learning Pascal:</p>
<pre><code>done := False;
repeat
{ do stuff }
if end_condition_met then done := True;
until done;
</code></pre>
<p>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.</p>
<p>Alas, in trying to remember enough Pascal to make this look right, I just found an online example doing the same thing. :-(</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337613#13376131Answer by Pavel Minaev for What is the worst class/variable/function name you have ever encounteredPavel Minaev2009-08-26T21:31:28Z2009-08-26T21:31:28Z<p>This one was in C# code. Don't ask me what it was supposed to do.</p>
<pre><code>static Func<T, Func<T>> HeavyMetalIsFun<T>(Func<T> fun);
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337650#13376500Answer by bstpierre for What is the worst class/variable/function name you have ever encounteredbstpierre2009-08-26T21:39:55Z2009-08-26T21:39:55Z<p>I had to maintain a file littered with:</p>
<pre><code>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;
</code></pre>
<p>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...)</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337682#13376820Answer by Michael Madsen for What is the worst class/variable/function name you have ever encounteredMichael Madsen2009-08-26T21:46:06Z2009-08-26T21:46:06Z<p>I can't believe no one has mentioned <a href="http://dev.eclipse.org/viewcvs/index.cgi/org.aspectj/modules/weaver/src/org/aspectj/weaver/patterns/HasThisTypePatternTriedToSneakInSomeGenericOrParameterizedTypePatternMatchingStuffAnywhereVisitor.java?revision=1.1&root=Tools%5FProject" rel="nofollow">HasThisTypePatternTriedToSneakInSomeGenericOrParameterizedTypePatternMatchingStuffAnywhereVisitor</a> yet. (At least it works as a bit of humor as well.)</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1337746#13377460Answer by e-satis for What is the worst class/variable/function name you have ever encounterede-satis2009-08-26T21:58:27Z2009-08-26T21:58:27Z<p>I did encoutered :</p>
<pre><code>if (!$this->get("justdoit"))
{
$this->setError(True);
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1341800#13418001Answer by Burnsys for What is the worst class/variable/function name you have ever encounteredBurnsys2009-08-27T15:23:41Z2009-08-27T15:23:41Z<p>This was made in vb6, i think the code speaks for himself.
I called this: "Temporal Coding"</p>
<pre><code> 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
</code></pre>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1341990#13419900Answer by Daniel Vandersluis for What is the worst class/variable/function name you have ever encounteredDaniel Vandersluis2009-08-27T15:51:56Z2009-08-27T15:51:56Z<p>An ex-coworker of mine decided that he didn't like the usual way of appending strings in PHP, so created his two functions: <strong>StringAppend</strong> and <strong>dneppAGnirts</strong>. Both functions took two arguments, and returned a concatenation, except that the latter would concatenate the two parameters in reverse order.</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1471811#14718110Answer by Jeff Godfrey for What is the worst class/variable/function name you have ever encounteredJeff Godfrey2009-09-24T13:48:11Z2009-09-24T13:48:11Z<p>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:</p>
<pre><code>ishit
iehit
</code></pre>
<p>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... ;^)</p>
http://stackoverflow.com/questions/143701/what-is-the-worst-class-variable-function-name-you-have-ever-encountered/1471846#14718460Answer by Mayo for What is the worst class/variable/function name you have ever encounteredMayo2009-09-24T13:55:40Z2009-09-24T13:55:40Z<p>I honestly encountered complete applications written almost entirely with generic method/variable names...</p>
<p>Variables:</p>
<ul>
<li>MyA</li>
<li>MyB</li>
<li>Txt122</li>
</ul>
<p>Functions:</p>
<ul>
<li>DoThis</li>
<li>DoFunction</li>
</ul>