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
5  
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

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 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 2 vote down

The creator of the file (doesn't have to put any code in) has to put their name in the file. So if you create stubs or placeholders, you "own" them forever.

The guy who actually writes the code doesn't add his name; we had source control so that we'd know, always who to blame.

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

I completly disagree with this one, but I was forced to follow it:

"All HTML LINKS will ALWAYS be underlined."

A while back I explained why I disagree on my blog.

Note: Even Stackoverflow ONLY underlines links when you move the mouse over them.

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

no single character variable names - even for a simple iterator like i. Had to use ii or something. I thought this was stupid.

Another one - perhaps the craziest of all, but maybe not a coding standard...

no STL allowed. and this was in 2007/2008. I left there soon after I found out about that nonsense. Apparently some idiots thought that there was no "standard" (As in 15 years ago...) I guess they missed the memo about stl being in the C++ standard...

Use of the stupid COM HRESULTs as return types for just about ALL methods - even if they are not COM. It was ludicrous. So now instead of returning some enumerated type or a useful value that indicates a result, etc, we had to look up what S_OK or E_FAIL or whatever meant in the context of each of the methods. Again, I left there shortly after that.

link|flag
1  
if the scope of an iterator variable is that long/large then there is something wrong with the coding. Arbitrary rules to try to make searching for variable names easier is a bad idea. Additionally, with the IDEs these days, who needs to do a search? – tim Oct 25 '08 at 4:03
show 5 more comments
vote up 8 vote down

Every beginning and ending brace was required to have a comment:

public void HelloWorld(string name)
{

  if(name == "Joe")
  {
    Console.WriteLine("Hey, Joe!");
  } //if(name == "Joe")
  else
  {
    Console.WriteLine("Hello, " + name);
  } //if(name == "Joe")
} //public void HelloWorld(string name)

That's what led me to write my first Visual Studio plugin to automate that.

link|flag
2  
God I hate those types of comments - all they do is add visual litter to the screen – matt b Oct 20 '08 at 17:17
3  
if you have very long nested if's, then this kind of comments is just a little duct tape instead of a real fix (that is, extracting methods and such) – Tetha Nov 11 '08 at 4:02
show 2 more comments
vote up 2 vote down

As I always worked self-employed/freelancer/project leader, I never got into someone's standards, all standards are my decisions. But, I recently found a fun piece of "coding standards document" back when I was 15:

All functions must be named "ProjectName_FunctionName".

Well, procedural PHP, anyone? Those weren't times of hard PHP OOP yet, but still. If I wanted to use code from one project to another, I would have to rewrite all references, etc.

I could have used something like "package_FunctionName".

link|flag
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 1 vote down

Back in my COBOL days, we had to use three asterisks for comments (COBOL requires only one asterisk in column 7). We even had a pre-compiler that checked for this, and wouldn't compile your program if you used anything but three asterisks.

link|flag
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 1 vote down

I implemented and modified an open-source asp classic shopping cart (that is mostly a long string of dailyWTF candidates,) that started every variable with a lower case p. As in, pTax_Amount or pFirst_Name.

There was no explanation for this, tho I read somewhere on one of their forums it was to avoid using reserved words like State - you'd have pState instead. They also append temp to things kinda randomly. like rsTemp, and connTemp. As opposed to the permanent record sets and database connections, I guess.

link|flag
vote up 5 vote down

I was told that old code should be commented out rather than being removed; in case we needed to refer to the old code (yes, the code was in source control...). This doesn't seem that bad, until major changes are made. Then it becomes a nightmare, with entire sections deleted all over the code.

link|flag
show 1 more comment
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
58  
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 Ambu 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 63 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 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 2 vote down

Writing methods comments with pointless information for almost all methods.

Not allowing multiple exit points from a method.

Hungarian notation for all variables, enums, structures and even classes, e.g. iMyInt, tagMySturcture, eMyEnum and CMyClass.

link|flag
show 1 more comment
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 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 0 vote down

Postfixing _ to member variables. e.g.

int numberofCycles_;

This was in C++ on an open source project with a couple of developers. The main side effect was not knowing that a variable had class scope until getting to the end of the name. Not something I had thought much about before, but clearly backwards.

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

One that no one has mentioned is being forced to write unit tests for classes that are brainless getters and setters.

link|flag
3  
in that case, write yourself a script "Generate Getter- and SetterTests". – Tetha Nov 11 '08 at 3:56
2  
They need to be tested. I was driven absolutely nuts by a bug eons ago--the answer turned out to be in the runtime library, a piece of code that amounted to a setter. To compound it, there was a bug in the debugger (continued) – Loren Pechtel Nov 16 '08 at 6:18
1  
Step through the code and it would work correctly. Execute it and you almost certainly got a protection violation. (The debugger swallowed the error and somehow produced a working result. This was possible as the data was correct, just not valid in a segment register.) – Loren Pechtel Nov 16 '08 at 6:21
show 4 more comments
vote up 7 vote down

The team size was about a dozen. For C# methods we had to put a huge XML formatted function before every function. I don't remember the format exactly but it involved XML tags nested about three to five levels deep. Here's a sketch from memory of the comment.

/// <comment>
/// </comment>
/// <table>
///    <thead>
///       <tcolumns>
///          <column>Date</column>
///          <column>Modified By</column>
///          <column>Comment</column>
///       </tcolumns>
///    </thead>
///    <rows>
///       <row>
///          <column>10/10/2006</column>
///          <column>Fred</column>
///          <column>Created function</column>
///       </row>
///    </rows>
/// <parameters>

I've got to stop there....

The downsides were many.

  • Files were made up mostly of comments.
  • We were not using our version control system for tracking changes to files.
  • Writing many small functions hurt readability.
  • Lots of scrolling.
  • Some people did not update the comments.

I used a code snippet (Emacs YAS) to add this code to my methods.

link|flag
vote up 0 vote down

I am not allowed to use this-> to reference local variables in our c++ code...

link|flag
show 3 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 4 vote down

I once had to spell out all acronyms, even industry standard ones such as OpenGL. Variable names such as glu were not good, but we had to use graphicsLibraryUtility.

link|flag
3  
I hope you didn't use any software from GNU = "GNU is Not Unix". – Justsalt Oct 23 '08 at 17:42
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 3 vote down

In C++, we had to write explicitly everything that the compiler is supposed to write for us (default constructor, destructor, copy constructor, copy assignment operator) for every class. Looks like whoever wrote the standards was not very confident on the language.

link|flag
vote up 3 vote down

Perhaps one of the more frustrating situations I've encountered was where people insisted on prefixing Stored Procedures with the prefix "sp_".

If you don't know why this is a bad thing to do, check out this blog entry here!

In a nutshell, if SQL Server is looking for a Stored Procedure with an sp_ prefix, it will check the master database first (which it won't find unless the SP is actually in the master database). Assuming it isn't in the master DB, SQL Server assumes the SP isn't in the cache and therefore recompiles it.

It may sound like a small thing, but it adds up in high volume or busy database server environments!

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

The worst I've experienced was to do with code inspections. For some reason even though we had and used the diff tool of our vcs to see what had changed, when you wanted your code inspected you had to surround your changes in a file/function with some comment blocks like so:

/*********...80charswide...***
 * START INSPECT
 */

 some changed code...

 /*
  * END INSPECT
  *********...80charswide...****/

After the inspection you'd have to go back and remove all those comment blocks before committing. ugh.

link|flag
vote up 3 vote down

In a large group at my company, we use C++ almost exclusively. Passing by non-const reference is forbidden.

If you want to modify a parameter to a function, you must pass it by pointer.

We have an internal flame war over the pros (easier to identify function calls that can modify variables) and cons (ridiculousness; having to deal with possible NULL pointers when you want a parameter to be required) about once a year.

link|flag
vote up 1 vote down

"The guys who wrote the compiler are probably a lot smarter than you so don't try something clever" is what one guide line document said (not quite literally).

link|flag
show 1 more comment

Your Answer

Get an OpenID
or

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