vote up 73 vote down star
76

When I asked this question I got almost always a definite yes you should have coding standards.

What was the strangest coding standard rule that you were ever forced to follow?

And by strangest I mean funniest, or worst, or just plain odd.

In each answer, please mention which language, which team size, and which ill effects it caused you and your team.

flag
4  
After reading thru this list suddenly I feel like I've had a very lucky career to avoid any of this forced standard crap! – matt b Oct 20 '08 at 17:15
show 1 more comment

99 Answers

1 2 3 4 next
vote up 249 vote down check

I hate it when the use of multiple returns is banned.

link|flag
7  
What is the supposed point of this rule? Personally I'd fail a code review for code that could be made easier to read by putting in another return. – Mark Baker Oct 20 '08 at 15:31
3  
On the other hand, eliminating an option at the beginning like "if(param == null) return null" can clean up your code quite a bit, to prohibit this instead of encourage it is somewhat criminal. – Bill K Oct 20 '08 at 16:17
10  
Workaround: if (!Initialize()) { RetVal=ERR_BADINIT; goto ReturnPoint; } (lots more code) ReturnPoint: return RetVal; } Problem solved! ;) – Marc Bernier Oct 20 '08 at 16:38
4  
Up until recently, multiple returns were banned. Then the fact this was a leftover from C, rendered obsolete by C++ RAII and functions with size less than 15 lines, was revealed. Since then, like Braveheart: "FREEDOM !!!!" ... :-p ... – paercebal Oct 20 '08 at 21:13
43  
Your choice: multiple returns or more nested if statements. I'll take multiple returns. – Lance Fisher Dec 17 '08 at 9:19
show 20 more comments
vote up 208 vote down

Maybe not the most outlandish one you'll get, but I really really hate when I have to preface database table names with 'tbl'

link|flag
4  
Isn't this just hungarian notation for DB's? – ARKBAN Oct 20 '08 at 12:13
5  
Isn't that like prefixing variables with var? – Brian R. Bondy Oct 20 '08 at 12:13
7  
In a similar vein, I hate when ID columns in databases are prefixed with the table name, like in the product table there'd be a productid column. Redundancy that sometimes makes scripting without an ORM more of a headache than it needs to be – Andrew Ingram Oct 20 '08 at 17:27
2  
I actually prefer the ID column to be prefixed with the table name. Makes writing queries a bit easier. And for foreign keys you can have the foreign key field the same as the key field. – Craig Oct 20 '08 at 23:24
16  
On a similar note, I hate it when table names must be singular. My instinct is to name a table that holds, say, customers, "Customers", not "Customer". Sounds minor, till you realize all the trouble you would save if only you could name your table "Transactions" instead of "[Transaction]". – Atario Nov 17 '08 at 19:49
show 11 more comments
vote up 179 vote down

reverse indentation. For example:

    for(int i = 0; i < 10; i++)
        {
myFunc();
        }

and:

    if(something)
        {
// do A
        }
    else
        {
// do B
    }
link|flag
49  
Oh my god ... Can I meet the sociopath who came up with that one? He could teach me a thing or two about misanthropy. – John Rudy Oct 20 '08 at 21:46
57  
Every time you reverse the indentation, God kills a maintenance developer. – Christian Vest Hansen Oct 22 '08 at 13:32
3  
The second one is the Gnu style for C. So no, it is not a joke: gnu.org/prep/standards/… – David Cournapeau Nov 2 '08 at 11:26
4  
OMG, are you kidding? – Andrea Feb 13 at 14:17
6  
saves precious bytes... priceless, use it a lot – Spikolynn Mar 5 at 18:56
show 20 more comments
vote up 167 vote down

Almost any kind of hungarian notation.

The problem with hungarian notation is that it is very often misunderstood. The original idea was to prefix the variable so that the meaning was clear. For example:

int appCount = 0; // Number of apples.
int peaCount = 0; // Number of pears.

But most people use it to determine the type.

int iAppleCount = 0; // Number of apples.
int iPearCount = 0;  // Number of pears.

This is confusing, because although both numbers are integers, everybody knows, you can't compare apples with pears.

link|flag
24  
See this Joel on Software post about how proper use of Hungarian notation can help reduce bugs: joelonsoftware.com/articles/Wrong.html – flicken Oct 20 '08 at 15:48
2  
Of course by using C++ instead of C you can write code so that the compiler gives you an error when comparing apples to pears. – Andreas Magnusson Nov 5 '08 at 13:02
4  
Yes, Joel got it right. I wish compilers could be made to enforce Joel's version of it. – Loren Pechtel Nov 16 '08 at 6:00
4  
Shouldn't that be "int cntApples = 0; int cntPeas = 0;"? Ie. The prefix is the variable "kind". – Blorgbeard Feb 13 at 2:04
1  
Shouldn't that be "Number of peas"? – chryss Feb 13 at 19:59
show 9 more comments
vote up 135 vote down

No ternary operator allowed where I currently work:

int value = (a < b) ? a : b;

... because not everyone "gets it". If you told me, "Don't use it because we've had to rewrite them when the structures get too complicated" (nested ternary operators, anyone?), then I'd understand. But when you tell me that some developers don't understand them... um... Sure.

link|flag
69  
By everyone, your boss means himself. – Brian R. Bondy Oct 20 '08 at 12:08
6  
I used to fall into this camp ... But grew out of it, and have learned to love the conditional operator (when it's appropriate). – John Rudy Oct 20 '08 at 13:14
7  
If anything, the rule should be "always use the ternary operator", an operator of pure beauty :) – Bobby Jack Oct 20 '08 at 16:13
4  
I love it, but the reason I get most often for not using is is the same as your experience "people wont understand it". My argument is that they shouldn't be working if they can't understand the concept... – Aidos Oct 21 '08 at 3:28
4  
How else would you conditionally initialize a constant variable without writing a whole new function (which won't do much good for readability). The use of const for local "variables" does much more good for understanding and following the code than a ban of the ternary operator. – Andreas Magnusson Nov 5 '08 at 13:06
show 12 more comments
vote up 135 vote down

To NEVER remove any code when making changes. We were told to comment all changes. Bear in mind we use source control. This policy didn't last long because developers were in an uproar about it and how it would make the code unreadable.

link|flag
1  
I really hate that... there's a few people who do that here (it's not a standard or anything though) – chills42 Oct 20 '08 at 16:03
2  
Rules like that are why I feel a NEED to print source code I inherit from others in color. At a dime a page, that's not very nice to my company -- but it's the only way I can read it if I have to print it. (We've inherited a lot which followed this rule ... ) – John Rudy Oct 20 '08 at 21:38
2  
Sounds like a rule developed pre source control. Or due to programmers only checking in once a week. – Craig Oct 21 '08 at 0:09
show 4 more comments
vote up 87 vote down

I once worked under the tyranny of the Mighty Braindead VB King.

The VB King was the pure master of MS Excel (i.e.: He played with Excel while the developers worked with compilers), and had unparalleled skills on VBA (Hence his surname... And who cared about VB to contradict him about that?) and DataBases (*i.e. no one cared to dispute this, and anyway, using his manager power, he did squatch out into oblivion the developer who once tried to contradict him on one of his numerous mistakes - i.e. stocked procedures against string-appended SQL requests*).

Of course, his immense skills gave him an unique vision of development problems and project management solutions: While not exactly coding standards in the strictest sense, the VB King regularly had new ideas about "coding standards" and "best practices" he tried (and oftentimes succeeded) to impose us.

  • All C/C++ arrays shall start at index 1, instead of 0. Indeed, the use of 0 as first index of an array is obsolete, and has been superseded by Visual Basic 6's insightful array index management.

  • All functions shall return an error code: There are no exceptions in VB6, so why would we need them? (i.e. in C++)

  • Since "All functions shall return an error code" is not practical for functions returning meaningful types, all functions shall have an error code as first [in/out] parameter.

  • All our code will check the error codes (this led to the worst case of VBScript if-indentation I ever saw... Of course, as "else" were never handled, no error was actually found until too late)

  • Since we're working with C++/COM, starting this very day, we will code all our DOM utility functions in Visual Basic

  • ASP 115 errors are evil. For this reason, we will use On Error Resume Next in our VBScript/ASP code to avoid them

  • XSL-T is an object oriented language. Use inheritance to resolve your problems (dumb surprise almost broke my jaw open this one day).

  • Exceptions are not used, and thus should be removed. For this reason, we will uncheck the checkbox asking for destructor call in case of exception unwinding (it took days for an expert to search the cause of all those memory leaks, and he almost chocked our project leader to death when he found out they had willingly ignored (and hidden) his technical note about checking the option again, sent handfuls of weeks before)

  • catch all exceptions in the COM interface of our COM modules, and dispose them silently (this led to our best speed-up ever seen, as suddenly, a slow module went magnitudes faster... because an exception would interrupt its processing at its beginning, but no one would know about the crash... You can't have speed and correct results, can you?)

  • Starting today, our code base will split into four branches. We will manage their synchronization and integrate all bug corrections/evolutions by hand.

Edit: All but the C/C++ arrays, VB DOM utility functions and XSL-T as OOP language were implemented despite our protests. Of course, over the time, some were discovered, ahem, broken, and abandoned altogether.

Of course, the VB King credibility never suffered for that: Among the higher management, he remained a "top gun" technical expert, and for the developers, a dangerous incompetent.

This produced some amusing side effects, as you can see by following the link http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216744#216744

link|flag
5  
Re: 1-indexing. Sometimes you just have to stand up and say something strong like "that's stupid and wrong". Draw a line in the sand. Forget placating egos and just say it. I can almost guarantee that every other worthwhile programmer will immediately start nodding and joining in. – Just Some Guy Oct 21 '08 at 15:45
7  
@jrista: If YOU ARE NOT commenting the spelling of my text, please ignore the following ... ... ... ... ... ... ... ... If you are commenting my text, please consider (1) proposing corrections, (2) correcting the spelling yourself, or (3) Consider that not every developer in the world (far from it) are native english speaker, so I guess tolerating incorrect spelling is the minimum you can do, or prove you can do better by sending me the correct translation IN FRENCH... ^_^ ... – paercebal Jun 10 at 16:27
2  
@muusbolla: Who told you we did not complain? It escalated until a delegation of two (including me) went straight to the CEO to explain the problem. But I'm sorry to have to tell you there is a difference between a idealistic world, where justice reigns, and the real world, where some bosses believe "the management is never wrong, even when it is", and will crush anyone that will dare to contradict that dogma. The only happy souvenir I have from that time is the day I resigned, almost three years ago, and I am a happier man since that day. Anyway, if true, your downmod reason is lame. Sorry. – paercebal Jul 15 at 13:37
show 7 more comments
vote up 79 vote down

Back in the 80's/90's, I worked for an aircraft simulator company that used FORTRAN. Our FORTRAN compiler had a limit of 8 characters for variable names. The company's coding standards reserved the first three of them for Hungarian-notation style info. So we had to try and create meaningful variable names with just 5 characters!

link|flag
4  
Luxury: we had just 6 characters; the package had names starting with g; the internal functions all started gk; there were workstation drivers with codes such as 0p (so gk0p was the start), leaving us two characters for the rest of the Fortran name. gk0paa, gk0pab, ... – Jonathan Leffler Oct 21 '08 at 3:02
31  
"When I was your age, we only had 2 characters! And it was case-insensitive!" – pookleblinky Oct 21 '08 at 6:45
7  
We used to have to get up at 2 in the morning, 3 hours before going to bed, then write our own compilers and pay the company for the privilege of going to work. We were allowed just the letter A for our variable names. Then our boss would delete our code and dance on our listings singing hallelujah. – David Arno Oct 21 '08 at 7:02
3  
"50 possible identifiers ought to be enough for anyone" :p – Christian Vest Hansen Oct 22 '08 at 13:26
1  
If you think that's hard, look at this: stackoverflow.com/questions/218123/… – DR Nov 19 '08 at 7:22
show 8 more comments
vote up 72 vote down

I worked at a place that had a merger between 2 companies. The 'dominant' one had a major server written in K&R C (i.e. pre-ANSI). They forced the Java teams (from both offices -- probably 20 devs total) to use this format, which gleefully ignored the 2 pillars of the "brace debate" and goes straight to crazy:

if ( x == y ) 
    {
    System.out.println("this is painful");
    x = 0;
    y++;
    }
link|flag
5  
I would think that maintaining a greater visual distinction between C and Java would make the transitions easier. (+1 for "and goes straight to crazy.") – Jeffrey L Whitledge Oct 20 '08 at 15:03
1  
Looks like Whitesmiths style which was used in the original 'Programming Windows' by Petzold - go figure! ;) – Bobby Jack Oct 20 '08 at 16:12
1  
I find this the most intelligent brace style. Unfortunately, most people don't use it. If braces have semantic meaning, they should be treated like it, not stuck at the end of a line and ignored. – Kyralessa Oct 24 '08 at 15:56
2  
This is actually my preferred style, but everything in the world (Visual Studio especially) defaults to other modes, so I've given up. Why do I like it? The braces are "part of" the contained code -- they force it to "look like" a single statement to the if, which is what it expects. – Atario Nov 17 '08 at 19:33
1  
My workplace does this (and for Java). It made me twitch for a couple of weeks, but I got used to it pretty quickly and I like it now. It's better than "OTBS", at least (I was an ANSI/Allman guy before). – Adam Jaskiewicz Feb 27 at 22:37
show 13 more comments
vote up 63 vote down

Once worked on a project where underscores were banned. And I mean totally banned. So in a c# winforms app, whenever we added a new event handler (e.g. for a button) we'd have to rename the default method name from buttonName_Click() to something else, just to satisfy the ego of the guy that wrote the coding standards. To this day I don't know what he had against the humble underscore

link|flag
6  
Maybe _ was broken on his keyboard ;) – Roman Plášil Oct 20 '08 at 15:01
31  
buttonNameUnderscoreClick() – vitule Oct 20 '08 at 18:22
3  
Has the unfortunate side-effect of preventing the use of FILE and LINE for debugging. And #if __cplusplus extern "C" in header files. And the integral types in stdint.h. And size_t. – Steve 'onebyone' Jessop Oct 22 '08 at 2:06
3  
Good thing this was C# then – configurator Apr 29 at 14:48
show 5 more comments
vote up 62 vote down

Forbidden:

while (true) {

Allowed:

for (;;) {
link|flag
1  
Others have argued that for (;;) { is a C Idiom for the first. – Robert P Oct 22 '08 at 15:07
23  
If I understand modern, new-fangled smileys correctly, this standard is making the poor, overworked for statement cry! – Ben Blank Jan 15 at 18:01
7  
This is a de facto rule here. VC6 issues a compiler warning about while(true), but not about for(;;). Otherwise they're equivalent. So we pick the warning-free one. – user9876 Apr 20 at 12:55
5  
Bjarne S. said in his book, "for (;;) should be read as forever". If it's good enough for the creator of C++, it should be good enough for you. :-) – Frank Krueger Jun 4 at 23:43
show 4 more comments
vote up 55 vote down

A buddy of mine encountered this rule while working at a government job. The use of ++ (pre or post) was completely banned. The reason: Different compilers might interpret it differently.

link|flag
1  
Well, at that point you might as well give up, right? – Just Some Guy Oct 20 '08 at 13:56
23  
Some one got bitten by not understanding the difference between postfix and prefix, claimed compiler bug, then inflicted it on other people, me thinks. – Bernard Oct 22 '08 at 13:26
3  
He's right--the order of operations is not guaranteed when you use the same variable elsewhere in the statement. Just ban potentially ambiguous code, not all uses of it, though! – Loren Pechtel Nov 16 '08 at 6:05
show 5 more comments
vote up 48 vote down

At my current workplace:

  • "Normal" tables begin with T_
  • "System" tables (usually lookups) begin with TS_ (except when they don't because somebody didn't feel like it that day)
  • Cross-reference tables begin with TSX_
  • All field names begin with F_

Yes, that's right. All of the fields, in every single table. So that we can tell it's a field.

link|flag
1  
@Czimi: I forgot to mention that. Every table has a field called FI_ID used as the primary key. – Jeromy Irvine Nov 1 '08 at 23:36
5  
Holy sh... The T_guy who invented this nightmare should be killed with a F_gun and sent to TSX_hell. – Sergey Skoblikov Nov 6 '08 at 22:12
3  
We had tbl and fld for all fields and tables. Completely useless... – configurator Apr 29 at 14:50
show 1 more comment
vote up 46 vote down

Not being able to use Reflection as the manager claimed it involved too much 'magic'.

link|flag
4  
Yeah, magic is hard to maintain, appearantly ;) LOL, though. – Rik Oct 20 '08 at 12:17
6  
That's probably the right rule, for the wrong reasons :) – Bobby Jack Oct 20 '08 at 16:09
13  
for 'magic' read performance killing unmaintainable obscure nightmare code. He's right. – gbjbaanb Oct 20 '08 at 17:04
2  
I guess you weren't allowed to code in .Net at all then. After all, a lot of how the framework executes is through reflection. – Chris Lively Oct 21 '08 at 13:58
show 6 more comments
vote up 46 vote down

Totally useless database naming conventions. Every table name has to start with a number. The numbers show which kind of data is in the table.

  • 0: data that is used everywhere
  • 1: data that is used by a certain module only
  • 2: lookup table
  • 3: calendar, chat and mail
  • 4: logging

This makes it hard to find a table if you only know the first letter of its name. Also - as this is a mssql database - we have to surround tablenames with square brackets everywhere.

-- doesn't work
select * from 0examples;

-- does work
select * from [0examples];
link|flag
17  
I am sorry, so terribly sorry... – Just Some Guy Oct 21 '08 at 15:41
2  
ewwwwwwwwwwwwww – thomasrutter May 6 at 8:14
show 2 more comments
vote up 39 vote down

a friend of mine - we'll call him CodeMonkey - got his first job out of college [many years ago] doing in-house development in COBOL. His first program was rejected as 'not complying with our standards' because it used... [shudder!] nested IF statements

the coding standards banned the use of nested IF statements

now, CodeMonkey was not shy and was certain of his abilities, so he persisted in asking everyone up the chain and down the aisle why this rule existed. Most claimed they did not know, some made up stuff about 'readability', and finally one person remembered the original reason: the first version of the COBOL compiler they used had a bug and didn't handle nested IF statements correctly.

This compiler bug, of course, had been fixed for at least a decade, but no one had challenged the standards. [baaa!]

CodeMonkey was successful in getting the standards changed - eventually!

link|flag
1  
Steven, this reminds me the monkey experiment story :o) freekvermeulen.blogspot.com/2008/08/… – Nick D Jul 23 at 13:59
show 1 more comment
vote up 37 vote down

We were doing a C++ project and the team lead was a Pascal guy.

So we had a coding standard include file to redefine all that pesky C and C++ syntax:

#define BEGIN {
#define END }

but wait there's more!

#define ENDIF }
#define CASE switch

etc. It's hard to remember after all this time.

This took what would have been perfectly readable C++ code and made it illegible to anyone except the team lead.

We also had to use reverse Hungarian notation, i.e.

MyClass *class_pt  // pt = pointer to type

UINT32 maxHops_u   // u = uint32

although oddly I grew to like this.

link|flag
8  
Building unmaintainable code for the future – rshimoda Oct 21 '08 at 23:30
1  
Hungarian notation done right is okay. Done wrong... ick. A proper type system beats both. – Thelema Oct 31 '08 at 17:17
show 4 more comments
vote up 32 vote down

The very strangest one I had, and one which took me quite some time to overthrow, was when the owner of our company demanded that our new product be IE only. If it could work on FireFox, that was OK, but it had to be IE only.

This might not sound too strange, except for one little flaw. All of the software was for a bespoke server software package, running on Linux, and all client boxes that our customer was buying were Linux. Short of trying to figure out how to get Wine (in those days, very unreliable) up and running on all of these boxes and seeing if we could get IE running and training their admins how to debug Wine problems, it simply wasn't possible to meet the owner's request. The problem was that he was doing the Web design and simply didn't know how to make Web sites compliant with FireFox.

It probably won't shock you to know that that our company went bankrupt.

link|flag
8  
Yay for survival of the fittest...this guy didn't deserve to be running his own software business. – Mark Brittingham Mar 15 at 13:58
2  
The last sentence was great. How could someone be taken seriously when they make decisions like this? – TURBOxSPOOL Jun 4 at 23:57
show 2 more comments
vote up 31 vote down

Half of the team favored four-space indentation; the other half favorite two-space indentation.

As you can guess, the coding standard mandated three, so as to "offend all equally" (a direct quote).

link|flag
8  
Thats why tab identation is so great. Everyone can change the size in his editor ;) – xardias Oct 21 '08 at 14:24
10  
Yeah, tab indentation is great... until you actually open someone else's file, and find things misaligned because spaces got mixed in where they shouldn't have, or didn't get mixed in where they should have. Then you auto-reformat, and version control diffs get ugly. Ugh. – Alan Hensel Oct 23 '08 at 3:02
7  
that's why you're supposed to use only tabs to indent, and only spaces to align, and never the twain shall meet. and if you're going to make a change to the whitespace in a file, then that needs to be the only change you make for that particular check-in. – joh6nn Mar 6 at 21:50
4  
...and that never works. :P – Robert P Mar 27 at 0:59
show 7 more comments
vote up 26 vote down

Hungarian notation in general.

link|flag
4  
Well, I like H/N for control on a page. It's much easier to find all the textbox controls in an IntelliSense dropdown when all I have to look for is txtFooBar. – cciotti Oct 20 '08 at 17:21
7  
HUngarian notation is not evil, just need to be used properly joelonsoftware.com/articles/Wrong.html – Czimi Nov 1 '08 at 19:14
1  
I will concede with respect to controls. Then Hungarian notation can be helpful. In general though, I think Hungarian notation is obsolete, and generally misused. It has drifted from it's original intention. – vfilby Nov 6 '08 at 15:34
2  
Horribly misused, yes. Wrong, no. – Loren Pechtel Nov 16 '08 at 6:10
show 2 more comments
vote up 26 vote down

I've had a lot of stupid rules, but not a lot that I considered downright strange.

The sillyiest was on a NASA job I worked back in the early 90's. This was a huge job, with well over 100 developers on it. The experienced developers who wrote the coding standards decided that every source file should begin with a four letter acronym, and the first letter had to stand for the group that was responsible for the file. This was probably a great idea for the old FORTRAN 77 projects they were used to.

However, this was an Ada project, with a nice hierarchal library structure, so it made no sense at all. Every directory was full of files starting with the same letter, followed by 3 more nonsense leters, an underscore, and then part of the file name that mattered. All the Ada packages had to start with this same five-character wart. Ada "use" clauses were not allowed either (arguably a good thing under normal circumstances), so that meant any reference to any identifier that wasn't local to that source file also had to include this useless wart. There probably should have been an insurrection over this, but the entire project was staffed by junior programmers and fresh from college new hires (myself being the latter).

A typical assignment statement (already verbose in Ada) would end up looking something like this:

NABC_The_Package_Name.X := NABC_The_Package_Name.X + 
  CXYZ_Some_Other_Package_Name.Delta_X;

Fortunately they were at least enlightened enough to allow us more than 80 columns! Still, the facility wart was hated enough that it became boilerplate code at the top of everyone's source files to use Ada "renames" to get rid of the wart. There'd be one rename for each imported ("withed") package. Like this:

package Package_Name renames NABC_Package_Name;
package Some_Other_Package_Name renames CXYZ_Some_Other_Package_Name;
--// Repeated in this vein for an average of 10 lines or so

What the more creative among us took to doing was trying to use the wart to make an acutally sensible (or silly) package name. (I know what you are thinking, but explitives were not allowed and shame on you! That's disgusting). For example, I was in the Common code group, and I needed to make a package to interface with the Workstation group. After a brainstorming session with the Workstation guy, we decided to name our packages so that someone needing both would have to write:

with CANT_Interface_Package;
with WONT_Interface_Package;
link|flag
1  
Damn, and I really thought you were going to go all out and use a CUN*_ and W*NK_ package naming convention. Sorry, I have slow-burning, explosive, textual tourettes. But yours were much, much, funnier! – defmeta Nov 24 '08 at 0:47
show 1 more comment
vote up 25 vote down

Using generic numbered identifier names

At my current work we have two rules which are really mean:

Rule 1: Every time we create a new field in a database table we have to add additional reserve fields for future use. These reserve fields are numbered (because no one knows which data they will hold some day) The next time we need a new field we first look for an unused reserve field.

So we end up with with customer.reserve_field_14 containing the e-mail address of the customer.

At one day our boss thought about introducing reserve tables, but fortunatly we could convince him not to do it.

Rule 2: One of our products is written in VB6 and VB6 has a limit of the total count of different identifiers and since the code is very large, we constantly run into this limit. As a "solution" all local variable names are numbered:

  • Lvarlong1
  • Lvarlong2
  • Lvarstr1
  • ...

Although that effectively circumvents the identifier limit, these two rules combined lead to beautiful code like this:

...

If Lvarbool1 Then
  Lvarbool2 = True
End If

If Lvarbool2 Or Lvarstr1 <> Lvarstr5 Then
  db.Execute("DELETE FROM customer WHERE " _ 
      & "reserve_field_12 = '" & Lvarstr1 & "'")
End If

...

You can imagine how hard it is to fix old or someone else's code...

Latest update: Now we are also using "reserve procedures" for private members:

Private Sub LSub1(Lvarlong1 As Long, Lvarstr1 As String)
  If Lvarlong1 >= 0 Then 
    Lvarbool1 = LFunc1(Lvarstr1)
  Else
    Lvarbool1 = LFunc6()
  End If
  If Lvarbool1 Then
    LSub4 Lvarstr1
  End If
End Sub
link|flag
2  
No kidding. I bet it took forever to go through and remove all those SQL injections. ;-) – Just Some Guy Oct 21 '08 at 16:03
2  
omg, who the hell would come up with rules like this??? most importantly: how the hell does your team manage to code?? – hasen j Dec 2 '08 at 8:14
1  
I think he meant that you would select all fields by default so you got all the 'reserve' fields as well, without needing to specify them all. – TURBOxSPOOL Jun 4 at 23:49
show 8 more comments
vote up 23 vote down

Doing all database queries via stored procedures in Sql Server 2000. From complex multi-table queries to simple ones like:

select id, name from people

The arguments in favor of procedures were:

  • Performance
  • Security
  • Maintainability

I know that the procedure topic is quite controversial, so feel free to score my answer negatively ;)

link|flag
2  
I agree that for general purposes it's not 100% wtf, but see this link: codinghorror.com/blog/archives/… – azkotoki Oct 20 '08 at 15:41
1  
Performance could be much worse as only single execution plan can be cached and that plan may be no good for for certain parameters passed to the procedure. SQL Server caches execution plans for adhoc queries anyway -- they don't even need to be prepared! Security is the same -- you must always escape any ad-hoc data sent to the server. Failure to do so will not prevent bad things from occuring. On maintainability they got you there :) I've lost track of the number of times I was able to "patch" a running system with no compiled code changes simply by updating procs. – Einstein Jun 10 at 17:47
show 13 more comments
vote up 21 vote down

Back in my C++ days we were not allowed to use ==,>=, <=,&&, etc. there were macros for this ...

if (bob EQ 7 AND alice LEQ 10)
{
   // blah
}

this was obviously to deal with the "old accidental assignment in conditional bug", however we also had the rule "put constants before variables", so

if (NULL EQ ptr); //ok
if (ptr EQ NULL); //not ok

Just remembered, the simplest coding standard I ever heard was "Write code as if the next maintainer is a vicious psychopath who knows where you live."

link|flag
show 4 more comments
vote up 17 vote down

My weirdest one was at a contract a couple years ago. @ZombieSheep's weird one was part of it, but not the weirdest one in that company.

No, the weirdest one in that company was the database naming scheme. Every table was named in all caps, with underscores between the words. Every table had a prefix (generally 1 - 6 characters) which was usually an acronym or an abbreviation of the main table name. Every field of the table was prefixed with the same prefix as well. So, let's say you have a simple schema where people can own cats or dogs. It'd look like this:

PER_PERSON
    PER_ID
    PER_NameFirst
    PER_NameLast
    ...
CAT_CAT
    CAT_ID
    CAT_Name
    CAT_Breed
    ...
DOG_DOG
    DOG_ID
    DOG_Name
    DOG_Breed
    ...
PERCD_PERSON_CAT_DOG (for the join data)
    PERCD_ID
    PERCD_PER_ID
    PERCD_CAT_ID
    PERCD_DOG_ID

That said, as weird as this felt initially ... It grew on me. The reasons behind it made sense (after you wrapped your brain around it), as the prefixes were there to be reminders of "recommended" (and enforced!) table aliases when building joins. The prefixing made the majority of join queries easier to write, as it was very rare that you'd have to explicitly reference a table before the field.

Heck, after a while, all of us on the team (6 people on our project) were able to begin referring to tables in conversation by nothing more than the prefix. An acquired taste, to be sure ... But one that grew on me. So much so that I still use it, when I have that freedom.

link|flag
show 7 more comments
vote up 17 vote down

Several WTF's in one VB6 shop (I'm not proud, I was hungry and needed to eat) back in 2002 - 2004.

The most annoying IMHO, was setting all object references to nothing at the end of the sub/function. This was to "help" the compiler reference count. It didn't matter how many tests I performed for the TA to prove it wasn't necessary, Oh no, it still had to be done, even though he had absoutely no evidence to back him up what so ever. Eventually I gave up and about a year later found an article explaining why it was pants. I bring this to the TA thinking "Got the fecker!". He goes "Yeah, I've known about that for years, but if you start changing the standard the sheep " meaning other developers, the people he worked with everyday "will screw it up". Gob sh1te.

Others in the same shop.

  • Never delete code, always comment it out (even though we were using source control).
  • Prefixes on table names that were meaning less when I got there, but had to be enforced on new tables.
  • Prefixing all objects with o_ (lo_ for procedure level references, mo_ for module, go_ for global). Absoutely pointless in a project where every other variable was an object reference.

Mostly I was writing c++ there (only c++ developer, so made own standards, and enforced with rigor!) with occasional vb, otherwise I wouldn't have lasted.

link|flag
2  
Sadly, at my last job we were working with Java, and haing OutOfMemory issues and seemed to have a memory leak. The consulting company we were working with actually proposed and implemented, setting every variablse back to null at the end of methods. Needless to say, the problems didn't go away :) – rally25rs Oct 21 '08 at 6:47
show 1 more comment
vote up 16 vote down

There must be 165 unit tests (not necessarily automated) per 1000 lines of code. That works out at one test for roughly every 8 lines.

Needless to say, some of the lines of code are quite long, and functions return this pointers to allow chaining.

link|flag
2  
More like 6 lines. – recursive Feb 21 at 23:36
show 5 more comments
vote up 15 vote down

We had to sort all the functions in classes alphabetically, to make them "easier to find". Never mind the ide had a drop down. That was too many clicks.

(same tech lead wrote an app to remove all comments from our source code).

link|flag
show 3 more comments
vote up 12 vote down

Prefix tables with dbo_

Yes, as in dbo.dbo_tablename.

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

Applying s_ to variables and methods which were deemed "safety critical" for software that was part of a control system. Couple this with the other rule about putting m_ on the front of member variables and you'd get something ridiculous like "s_m_blah()", which is darn annoying to write and not very readable in my opinion. In the end some 'safety expert' was supposed to gain insight by looking at the code and determining something from it by using those "s_" - in practice, they didn't know c++ too well so they couldn't do much other than make reports on the number of identifiers that we'd marked as 'safety critical'. Utter nonsense...

link|flag
show 4 more comments
1 2 3 4 next

Your Answer

Get an OpenID
or

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