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

prev 1 2 3 4
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 10 vote down

The strangest one i saw was database table naming where the tables were prefaced with a TLA for functional area, eg accounting ACC then a 3 digit number to (overide the default sort) and then the table name.

Plus this was extended into the column names as well.

ACC100_AccountCode

it was a nightmare to read a query, they were so unreadable.

link|flag
show 2 more comments
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 5 vote down

In Delphi we had to change from

if something then
begin
  ...
end
else
begin
 ...
end;

to

if something then begin
  ...
end else begin
 ...
end;

in a project with 1.5 million lines of code. Imagine how easy this was on source control, diff, and merge! It also led to forgetting begin and not noticing it right away when the compiler announced a superflous end.

link|flag
show 2 more comments
vote up 1 vote down

Anything having to do with formatting (especially place of '{' and other block character) is always a pain to enforce.

Even with an automatic format at each source file checking, you can not be sure every developer will ever always use the same formatter, with the same formatting set of rules...

And then you have to merge those files back to trunk. And you commit suicide ;)

link|flag
show 2 more comments
vote up 0 vote down

Use _ or m_ in front of global variable when you can simply use the keyword this. when you need to access global variable...

link|flag
1  
This is part of "How to write unmaintainable code" -- you can use m_ for module, member, and method. – ARKBAN Oct 20 '08 at 12:16
5  
I've grown fond of _varName for private class variables, VarName for accessors, and varName for function parameters and local variables. It gives me a quick visual identifier as to scope. – toast Oct 20 '08 at 16:03
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 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 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
prev 1 2 3 4

Your Answer

Get an OpenID
or

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