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