What was the strangest coding standard rule that you were forced to follow? - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T10:44:05Zhttp://stackoverflow.com/feeds/question/218123http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow73What was the strangest coding standard rule that you were forced to follow?Brian R. Bondy2008-10-20T11:38:15Z2009-11-11T23:40:41Z
<p>When I asked <a href="http://stackoverflow.com/questions/167575/should-a-project-manager-enforce-coding-standards">this question</a> I got almost always a definite yes you should have coding standards. </p>
<p>What was the strangest coding standard rule that you were ever forced to follow?</p>
<p>And by strangest I mean funniest, or worst, or just plain odd. </p>
<p>In each answer, please mention which language, which team size, and which ill effects it caused you and your team.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218128#218128208Answer by Galwegian for What was the strangest coding standard rule that you were forced to follow?Galwegian2008-10-20T11:41:46Z2008-10-20T11:41:46Z<p>Maybe not the most outlandish one you'll get, but <strong>I really really hate when I have to preface database table names with 'tbl'</strong></p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218129#218129250Answer by Simon Johnson for What was the strangest coding standard rule that you were forced to follow?Simon Johnson2008-10-20T11:43:35Z2008-10-20T11:43:35Z<p>I <em>hate</em> it when the use of multiple returns is banned.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218135#218135167Answer by Gamecat for What was the strangest coding standard rule that you were forced to follow?Gamecat2008-10-20T11:45:43Z2008-10-20T15:55:25Z<p>Almost any kind of hungarian notation.</p>
<p>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:</p>
<pre><code>int appCount = 0; // Number of apples.
int peaCount = 0; // Number of pears.
</code></pre>
<p>But most people use it to determine the type.</p>
<pre><code>int iAppleCount = 0; // Number of apples.
int iPearCount = 0; // Number of pears.
</code></pre>
<p>This is confusing, because although both numbers are integers, everybody knows, you can't compare apples with pears.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218136#21813626Answer by vfilby for What was the strangest coding standard rule that you were forced to follow?vfilby2008-10-20T11:46:02Z2008-10-20T11:46:02Z<p>Hungarian notation in general.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218138#2181380Answer by Daok for What was the strangest coding standard rule that you were forced to follow?Daok2008-10-20T11:46:50Z2008-10-20T11:46:50Z<p>Use _ or m_ in front of global variable when you can simply use the keyword this. when you need to access global variable...</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218139#2181391Answer by VonC for What was the strangest coding standard rule that you were forced to follow?VonC2008-10-20T11:47:24Z2008-10-20T11:47:24Z<p>Anything having to do with formatting (especially place of '{' and other block character) is always a pain to enforce.</p>
<p>Even with an automatic format at each source file checking, you can not be sure every developer will <em>ever always</em> use the same formatter, with the same formatting set of rules...</p>
<p>And then you have to merge those files back to trunk. And you commit suicide ;)</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218142#2181425Answer by Ralph Rickenbach for What was the strangest coding standard rule that you were forced to follow?Ralph Rickenbach2008-10-20T11:49:22Z2008-10-20T11:58:12Z<p>In <strong>Delphi</strong> we had to change from</p>
<pre><code>if something then
begin
...
end
else
begin
...
end;
</code></pre>
<p>to</p>
<pre><code>if something then begin
...
end else begin
...
end;
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218145#21814546Answer by leppie for What was the strangest coding standard rule that you were forced to follow?leppie2008-10-20T11:49:58Z2008-10-20T11:49:58Z<p>Not being able to use Reflection as the manager claimed it involved too much 'magic'.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218148#21814810Answer by Adrian for What was the strangest coding standard rule that you were forced to follow?Adrian2008-10-20T11:50:45Z2008-10-20T11:50:45Z<p>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.</p>
<p>Plus this was extended into the column names as well.</p>
<p>ACC100_AccountCode</p>
<p>it was a nightmare to read a query, they were so unreadable.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218149#21814979Answer by David Arno for What was the strangest coding standard rule that you were forced to follow?David Arno2008-10-20T11:50:53Z2008-10-20T11:57:02Z<p>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!</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218172#2181726Answer by BubbaT for What was the strangest coding standard rule that you were forced to follow?BubbaT2008-10-20T11:58:34Z2008-10-20T11:58:34Z<p>It was a coding standard I did not follow myself ( got in trouble for other things, but never that ).
We had three 19" monitors, so we could have two editors open to full screen and still have access to the desktop.
Everyone else did not use comments, but used meaningful names. Extremely long meaningful names. The longest I remember was in the 80 character range. The average was around 40~50.</p>
<p>Guess what, they didn't accurately describe the whole thing.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218188#21818810Answer by Zsolt Botykai for What was the strangest coding standard rule that you were forced to follow?Zsolt Botykai2008-10-20T12:01:33Z2008-10-20T12:01:33Z<p>You must use only five letter table names and the last two character is reserved for <code>IO</code>. </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218191#21819163Answer by ZombieSheep for What was the strangest coding standard rule that you were forced to follow?ZombieSheep2008-10-20T12:02:58Z2008-10-20T12:02:58Z<p>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</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218197#2181972Answer by Martin Spamer for What was the strangest coding standard rule that you were forced to follow?Martin Spamer2008-10-20T12:04:13Z2008-10-20T12:04:13Z<p>The strangest was that type qualified variable naming must be used in Java, and the types where those of the columns from the database. So a java.sql.ResultSet had to be called tblClient etc.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218203#218203135Answer by Jarrett Meyer for What was the strangest coding standard rule that you were forced to follow?Jarrett Meyer2008-10-20T12:07:26Z2008-10-20T12:07:26Z<p>No ternary operator allowed where I currently work:</p>
<pre><code>int value = (a < b) ? a : b;
</code></pre>
<p>... 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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218205#21820511Answer by itsmatt for What was the strangest coding standard rule that you were forced to follow?itsmatt2008-10-20T12:08:07Z2008-10-20T12:08:07Z<p>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... </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218215#2182150Answer by tfehrs for What was the strangest coding standard rule that you were forced to follow?tfehrs2008-10-20T12:14:53Z2008-10-20T12:14:53Z<p>We have a no code past the 80th character column that is controversial in our C++ development team. Liked and code review enforced by some; Despised by others.</p>
<p>Also, we have a very controversial C++ throw(), throw(...) specification standard. Religiously used by some and demonized by others. Both camps cite discussions and experts to enforce their respective positions. </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218222#21822223Answer by azkotoki for What was the strangest coding standard rule that you were forced to follow?azkotoki2008-10-20T12:18:09Z2009-08-31T14:00:56Z<p>Doing all database queries via stored procedures in Sql Server 2000. From complex multi-table queries to simple ones like:</p>
<p><code>select id, name from people</code></p>
<p>The arguments in favor of procedures were:</p>
<ul>
<li>Performance</li>
<li>Security</li>
<li>Maintainability</li>
</ul>
<p>I know that the procedure topic is quite controversial, so feel free to score my answer negatively ;)</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218243#2182436Answer by Kevin for What was the strangest coding standard rule that you were forced to follow?Kevin2008-10-20T12:26:29Z2008-10-20T12:26:29Z<p>If I remember correctly the delphi IDE did a default indent of two spaces. Most of the legacy code for the company had three spaces and was written by the VP IT and the CEO. One day, all the programmers were talking about what we should do to make our lives easier and a contractor who knew Delphi pretty well said, "Hey the ide defaults to two spaces does anyone have a problem with us doing this going forward for new code?" All of us looked at each other, and pretty much thought it was a no brainer and said that we agreed. </p>
<p>Two days later the VP and CEO found out we were going to make such a dangerous change that could "cause problems" and instructed us that we would be using three indents for everything until the two of them could accurately evaluate the impact of such a change. Now I am all for following standards, but these are the same people who thought oo programming was creating an object with one function that had <strong>all</strong> of the logic necessary to perform an action, and that source control was moving the code files to a different directory. </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218268#21826872Answer by Michael Easter for What was the strangest coding standard rule that you were forced to follow?Michael Easter2008-10-20T12:34:34Z2008-10-20T12:34:34Z<p>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:</p>
<pre><code>if ( x == y )
{
System.out.println("this is painful");
x = 0;
y++;
}
</code></pre>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218286#2182866Answer by hmemcpy for What was the strangest coding standard rule that you were forced to follow?hmemcpy2008-10-20T12:40:47Z2008-10-20T12:40:47Z<p>I worked in a place where the coding standard was one giant WTF: strange Hungarian notation, prefixing globals with 'g' and members with 'm' (so there were gems like gsSomeVariable), adding 'ref string sError' to every single function, instead of throwing exceptions (which was a BIG nono!).</p>
<p>The killer, though, was prefixing the function parameters with I_ for input parameters, and O_ for output parameters.</p>
<p>I work now in a much better place :)</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218339#21833916Answer by harriyott for What was the strangest coding standard rule that you were forced to follow?harriyott2008-10-20T13:01:09Z2008-10-20T13:01:09Z<p>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. </p>
<p>Needless to say, some of the lines of code are quite long, and functions return <em>this</em> pointers to allow chaining.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218341#21834155Answer by JaredPar for What was the strangest coding standard rule that you were forced to follow?JaredPar2008-10-20T13:01:50Z2008-10-20T13:01:50Z<p>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. </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218393#2183931Answer by jmcd for What was the strangest coding standard rule that you were forced to follow?jmcd2008-10-20T13:21:01Z2008-10-20T13:21:01Z<p><em>All</em> file names must be in lower case...</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218406#2184063Answer by CobolGuy for What was the strangest coding standard rule that you were forced to follow?CobolGuy2008-10-20T13:24:41Z2008-10-20T13:24:41Z<p>We have to put a comment above every sql statement. So, you may have an sql statement as such</p>
<p>Select USER_ID
FROM USERS
WHERE NAME = :NAME;</p>
<p>And you still have to have a comment above it that would say:</p>
<p>Select USER_ID from the USERS table, where name equals the name entered. </p>
<p>Now, when the actual comment is longer than the code, and the code is simple enough for a second grader to read, i really don't see the point of commenting... But, alas, I have had to go back and add comments to statements just like this.</p>
<p>This has been on a mainframe, coding in cobol. Team size is usually about 4 or 5, but this rule has bitten everyone here from time to time.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218414#21841417Answer by John Rudy for What was the strangest coding standard rule that you were forced to follow?John Rudy2008-10-20T13:26:25Z2008-10-20T13:26:25Z<p>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.</p>
<p>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:</p>
<pre><code>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
</code></pre>
<p>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. </p>
<p>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. </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218440#2184407Answer by David for What was the strangest coding standard rule that you were forced to follow?David2008-10-20T13:33:06Z2008-10-20T13:33:06Z<p>The one that got me was similar to the other poster's "tbl" prefix for SQL table names.</p>
<p>In this case, the prefix for all stored procedures was to be "sp_" despite the fact that "sp_" is a prefix used by Microsoft for system-level stored procedures in SQL Server. Well, they had their standards from an old, non-MS database and weren't about to change just because their standard might cause a stored procedure to collide with a system stored procedure and produce unpredictable results. No, that just wouldn't be proper.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218452#2184525Answer by Rob Stevenson-Leggett for What was the strangest coding standard rule that you were forced to follow?Rob Stevenson-Leggett2008-10-20T13:36:08Z2008-10-20T13:36:08Z<p>What drives me nuts is people suffixing the ID field of a table with the name of the table. What the hell is wrong with just ID? You're going to have to alias it anyway... for the love of all that is sacred!</p>
<p>Imagine what your SQL statements look like when you've got id fields called IDSEWEBLASTCUSTOMERACTION and IDSEEVENTLOGGER.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218715#218715135Answer by George for What was the strangest coding standard rule that you were forced to follow?George2008-10-20T14:53:39Z2008-10-20T15:19:31Z<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218824#21882426Answer by T.E.D. for What was the strangest coding standard rule that you were forced to follow?T.E.D.2008-10-20T15:29:30Z2009-07-09T13:47:34Z<p>I've had a lot of <em>stupid</em> rules, but not a lot that I considered downright strange.</p>
<p>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. </p>
<p>However, this was an <strong>Ada</strong> 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 <em>also</em> 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).</p>
<p>A typical assignment statement (already verbose in Ada) would end up looking something like this:</p>
<pre><code>NABC_The_Package_Name.X := NABC_The_Package_Name.X +
CXYZ_Some_Other_Package_Name.Delta_X;
</code></pre>
<p>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:</p>
<pre><code>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
</code></pre>
<p>What the more creative among us took to doing was trying to <em>use</em> 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 <strong>C</strong>ommon code group, and I needed to make a package to interface with the <strong>W</strong>orkstation group. After a brainstorming session with the Workstation guy, we decided to name our packages so that someone needing both would have to write:</p>
<pre><code>with CANT_Interface_Package;
with WONT_Interface_Package;
</code></pre>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218842#21884248Answer by Jeromy Irvine for What was the strangest coding standard rule that you were forced to follow?Jeromy Irvine2008-10-20T15:35:52Z2008-10-20T15:35:52Z<p>At my current workplace:</p>
<ul>
<li>"Normal" tables begin with T_</li>
<li>"System" tables (usually lookups) begin with TS_ (except when they don't because somebody didn't feel like it that day)</li>
<li>Cross-reference tables begin with TSX_</li>
<li>All field names begin with F_</li>
</ul>
<p>Yes, that's right. All of the fields, in every single table. So that we can tell it's a field.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218869#21886917Answer by Binary Worrier for What was the strangest coding standard rule that you were forced to follow?Binary Worrier2008-10-20T15:43:12Z2008-10-20T15:43:12Z<p>Several WTF's in one VB6 shop (I'm not proud, I was hungry and needed to eat) back in 2002 - 2004.</p>
<p>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, <em>even though he had absoutely no evidence to back him up what so ever</em>. 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.</p>
<p>Others in the same shop.</p>
<ul>
<li>Never delete code, always comment it
out (even though we were using
source control).</li>
<li>Prefixes on table names that were
meaning less when I got there, but
had to be enforced on new tables.</li>
<li>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.</li>
</ul>
<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218901#2189012Answer by Sam Hoice for What was the strangest coding standard rule that you were forced to follow?Sam Hoice2008-10-20T15:50:45Z2008-10-20T15:50:45Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218915#2189152Answer by Bobby Ortiz - DotNetBob for What was the strangest coding standard rule that you were forced to follow?Bobby Ortiz - DotNetBob2008-10-20T15:52:59Z2009-04-24T13:07:21Z<p>I completly disagree with this one, but I was forced to follow it:<br /><br />
"All HTML LINKS will ALWAYS be underlined."<br /><br />
A while back I explained why I disagree on my <a href="http://dotnetbob.blogspot.com/2007/11/links-and-usability.html" rel="nofollow">blog</a>.</p>
<p><strong>Note: Even Stackoverflow ONLY underlines links when you move the mouse over them.</strong></p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218971#2189715Answer by tim for What was the strangest coding standard rule that you were forced to follow?tim2008-10-20T16:04:41Z2008-10-20T16:04:41Z<p>no single character variable names - even for a simple iterator like i. Had to use ii or something. I thought this was stupid.</p>
<p>Another one - perhaps the craziest of all, but maybe not a coding standard...</p>
<p>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...</p>
<p>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. </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219034#2190348Answer by Cory Foy for What was the strangest coding standard rule that you were forced to follow?Cory Foy2008-10-20T16:21:29Z2008-10-20T16:21:29Z<p>Every beginning and ending brace was <em>required</em> to have a comment:</p>
<pre>
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)
</pre>
<p>That's what led me to write my first Visual Studio plugin to automate that.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219085#2190852Answer by AlfredBaudisch for What was the strangest coding standard rule that you were forced to follow?AlfredBaudisch2008-10-20T16:36:41Z2008-10-20T16:36:41Z<p>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:</p>
<p><strong>All functions must be named "ProjectName_FunctionName"</strong>.</p>
<p>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.</p>
<p>I could have used something like "package_FunctionName".</p>
<p><em></em></p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219134#21913446Answer by Kristof Neirynck for What was the strangest coding standard rule that you were forced to follow?Kristof Neirynck2008-10-20T16:52:00Z2008-10-20T16:52:00Z<p>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.</p>
<ul>
<li>0: data that is used everywhere</li>
<li>1: data that is used by a certain module only</li>
<li>2: lookup table</li>
<li>3: calendar, chat and mail</li>
<li>4: logging</li>
</ul>
<p>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.</p>
<pre><code>-- doesn't work
select * from 0examples;
-- does work
select * from [0examples];
</code></pre>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219153#2191531Answer by Patrick Cuff for What was the strangest coding standard rule that you were forced to follow?Patrick Cuff2008-10-20T16:59:01Z2008-10-20T16:59:01Z<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219177#21917731Answer by Tim Lesher for What was the strangest coding standard rule that you were forced to follow?Tim Lesher2008-10-20T17:06:23Z2008-10-20T17:06:23Z<p>Half of the team favored four-space indentation; the other half favorite two-space indentation.</p>
<p>As you can guess, the coding standard mandated three, so as to "offend all equally" (a direct quote).</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219214#2192141Answer by Lance Kidwell for What was the strangest coding standard rule that you were forced to follow?Lance Kidwell2008-10-20T17:19:34Z2008-10-20T17:19:34Z<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219227#2192275Answer by Giovanni Galbo for What was the strangest coding standard rule that you were forced to follow?Giovanni Galbo2008-10-20T17:27:56Z2008-10-20T17:27:56Z<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219855#219855179Answer by code_g03s_g00d for What was the strangest coding standard rule that you were forced to follow?code_g03s_g00d2008-10-20T20:48:53Z2008-10-20T20:48:53Z<p>reverse indentation. For example:</p>
<pre><code> for(int i = 0; i < 10; i++)
{
myFunc();
}
</code></pre>
<p>and:</p>
<pre><code> if(something)
{
// do A
}
else
{
// do B
}
</code></pre>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219874#21987462Answer by bh213 for What was the strangest coding standard rule that you were forced to follow?bh2132008-10-20T20:52:56Z2008-10-20T20:52:56Z<p>Forbidden:</p>
<pre><code>while (true) {
</code></pre>
<p>Allowed:</p>
<pre><code>for (;;) {
</code></pre>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219940#21994021Answer by adam straughan for What was the strangest coding standard rule that you were forced to follow?adam straughan2008-10-20T21:12:30Z2009-11-11T23:40:41Z<p>Back in my C++ days we were not allowed to use ==,>=, <=,&&, etc. there were macros for this ...</p>
<pre><code>if (bob EQ 7 AND alice LEQ 10)
{
// blah
}
</code></pre>
<p>this was obviously to deal with the "old accidental assignment in conditional bug", however we <em>also</em> had the rule "put constants before variables", so</p>
<pre><code>if (NULL EQ ptr); //ok
if (ptr EQ NULL); //not ok
</code></pre>
<p>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."</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219948#2199482Answer by void for What was the strangest coding standard rule that you were forced to follow?void2008-10-20T21:14:43Z2008-10-20T21:14:43Z<p>Writing methods comments with pointless information for almost all methods.</p>
<p>Not allowing multiple exit points from a method.</p>
<p>Hungarian notation for all variables, enums, structures and even classes, e.g. iMyInt, tagMySturcture, eMyEnum and CMyClass.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220101#22010187Answer by paercebal for What was the strangest coding standard rule that you were forced to follow?paercebal2008-10-20T21:58:03Z2009-05-26T12:07:13Z<p>I once worked under the tyranny of the <em>Mighty Braindead VB King</em>.</p>
<p>The <em>VB King</em> was the pure master of MS Excel (<em>i.e.: He played with Excel while the developers worked with compilers</em>), and had unparalleled skills on VBA (<em>Hence his surname... And who cared about VB to contradict him about that?</em>) and DataBases (*i.e. no one cared to dispute this, and anyway, using his <em>manager power</em>, 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*).</p>
<p>Of course, his <em>immense</em> skills gave him an <em>unique</em> vision of development problems and project management solutions: While not exactly coding standards in the strictest sense, the <em>VB King</em> regularly had new ideas about "coding standards" and "best practices" he tried (and oftentimes succeeded) to impose us.</p>
<ul>
<li><p>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.</p></li>
<li><p>All functions shall return an error code: There are no exceptions in VB6, so why would we need them? (<em>i.e. in C++</em>)</p></li>
<li><p>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.</p></li>
<li><p>All our code will check the error codes (<em>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</em>)</p></li>
<li><p>Since we're working with C++/COM, starting this very day, we will code all our DOM utility functions in Visual Basic</p></li>
<li><p>ASP 115 errors are evil. For this reason, we will use On Error Resume Next in our VBScript/ASP code to avoid them</p></li>
<li><p>XSL-T is an object oriented language. Use inheritance to resolve your problems (<em>dumb surprise almost broke my jaw open this one day</em>).</p></li>
<li><p>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 (<em>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</em>)</p></li>
<li><p>catch all exceptions in the COM interface of our COM modules, and dispose them silently (<em>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?</em>)</p></li>
<li><p>Starting today, our code base will split into four branches. We will manage their synchronization and integrate all bug corrections/evolutions by hand.</p></li>
</ul>
<p><strong>Edit:</strong> 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, <em>ahem</em>, broken, and abandoned altogether.</p>
<p>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.</p>
<p>This produced some amusing side effects, as you can see by following the link <a href="http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216744#216744">http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/216744#216744</a></p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220287#22028737Answer by billmcc for What was the strangest coding standard rule that you were forced to follow?billmcc2008-10-20T23:24:34Z2008-11-23T23:16:52Z<p>We were doing a C++ project and the team lead was a Pascal guy.</p>
<p>So we had a coding standard include file to redefine all that pesky C and C++ syntax:</p>
<pre><code>#define BEGIN {
#define END }
</code></pre>
<p>but wait there's more!</p>
<pre><code>#define ENDIF }
#define CASE switch
</code></pre>
<p>etc. It's hard to remember after all this time.</p>
<p>This took what would have been perfectly readable C++ code and made it illegible to anyone except the team lead.</p>
<p>We also had to use reverse Hungarian notation, i.e.</p>
<pre><code>MyClass *class_pt // pt = pointer to type
UINT32 maxHops_u // u = uint32
</code></pre>
<p>although oddly I grew to like this. </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220485#2204850Answer by Jason Sundram for What was the strangest coding standard rule that you were forced to follow?Jason Sundram2008-10-21T01:25:35Z2008-10-21T07:28:42Z<p>Postfixing _ to member variables. e.g.</p>
<pre><code>int numberofCycles_;
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220535#2205358Answer by moffdub for What was the strangest coding standard rule that you were forced to follow?moffdub2008-10-21T02:08:16Z2008-10-21T02:08:16Z<p>One that no one has mentioned is being forced to write unit tests for classes that are brainless getters and setters.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220559#2205597Answer by Tim Stewart for What was the strangest coding standard rule that you were forced to follow?Tim Stewart2008-10-21T02:18:31Z2008-10-21T02:18:31Z<p>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.</p>
<pre><code>/// <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>
</code></pre>
<p>I've got to stop there....</p>
<p>The downsides were many.</p>
<ul>
<li>Files were made up mostly of comments. </li>
<li>We were not using our version control system for tracking changes to files.</li>
<li>Writing many small functions hurt readability.</li>
<li>Lots of scrolling.</li>
<li>Some people did not update the comments. </li>
</ul>
<p>I used a code snippet (Emacs YAS) to add this code to my methods.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220591#2205910Answer by Hans for What was the strangest coding standard rule that you were forced to follow?Hans2008-10-21T02:40:36Z2008-10-21T02:40:36Z<p>I am not allowed to use <code>this-></code> to reference local variables in our c++ code...</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220602#22060215Answer by Nat for What was the strangest coding standard rule that you were forced to follow?Nat2008-10-21T02:47:59Z2008-10-21T02:47:59Z<p>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.</p>
<p>(same tech lead wrote an app to remove all comments from our source code).</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220677#2206774Answer by jas511 for What was the strangest coding standard rule that you were forced to follow?jas5112008-10-21T03:20:40Z2008-10-21T03:20:40Z<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/221510#22151025Answer by DR for What was the strangest coding standard rule that you were forced to follow?DR2008-10-21T11:24:17Z2009-10-27T19:19:07Z<h2>Using generic numbered identifier names</h2>
<p>At my current work we have two rules which are really mean:</p>
<p><strong>Rule 1:</strong> 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.</p>
<p>So we end up with with <code>customer.reserve_field_14</code> containing the e-mail address of the customer.</p>
<p>At one day our boss thought about introducing <em>reserve tables</em>, but fortunatly we could convince him not to do it.</p>
<p><strong>Rule 2:</strong> 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:</p>
<ul>
<li><code>Lvarlong1</code></li>
<li><code>Lvarlong2</code></li>
<li><code>Lvarstr1</code> </li>
<li>...</li>
</ul>
<p>Although that effectively circumvents the identifier limit, these two rules combined lead to beautiful code like this:</p>
<blockquote>
<pre><code>...
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
...
</code></pre>
</blockquote>
<p>You can imagine how hard it is to fix old or someone else's code...</p>
<p><strong>Latest update:</strong> Now we are also using "reserve procedures" for private members:</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/221924#2219243Answer by Gorpik for What was the strangest coding standard rule that you were forced to follow?Gorpik2008-10-21T13:42:17Z2008-10-21T13:42:17Z<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/222004#2220043Answer by Rob Sanders for What was the strangest coding standard rule that you were forced to follow?Rob Sanders2008-10-21T14:07:25Z2008-10-21T14:07:25Z<p>Perhaps one of the more frustrating situations I've encountered was where people insisted on prefixing Stored Procedures with the prefix "sp_". </p>
<p>If you don't know why this is a bad thing to do, check out this blog entry <a href="http://www.sqlmag.com/articles/index.cfm?articleid=23011&" rel="nofollow">here!</a></p>
<p>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. </p>
<p>It may sound like a small thing, but it adds up in high volume or busy database server environments!</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/222094#2220944Answer by DarthNoodles for What was the strangest coding standard rule that you were forced to follow?DarthNoodles2008-10-21T14:31:06Z2008-10-21T14:31:06Z<p>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:</p>
<pre><code>/*********...80charswide...***
* START INSPECT
*/
some changed code...
/*
* END INSPECT
*********...80charswide...****/
</code></pre>
<p>After the inspection you'd have to go back and remove all those comment blocks before committing. ugh.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/222097#2220973Answer by for What was the strangest coding standard rule that you were forced to follow?2008-10-21T14:31:45Z2008-10-21T14:31:45Z<p>In a large group at my company, we use C++ almost exclusively. Passing by non-const reference is forbidden.</p>
<p>If you want to modify a parameter to a function, you must pass it by pointer.</p>
<p>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.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/224775#2247751Answer by Niklas Winde for What was the strangest coding standard rule that you were forced to follow?Niklas Winde2008-10-22T07:44:18Z2008-10-22T07:44:18Z<p>"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).</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/224860#2248605Answer by jakamo for What was the strangest coding standard rule that you were forced to follow?jakamo2008-10-22T08:24:21Z2008-10-22T08:24:21Z<p>inserting line breaks <br/>
(//--------------------------------------------------------------------------------)<br/>
between methods in a c# project.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/224922#22492232Answer by Ovid for What was the strangest coding standard rule that you were forced to follow?Ovid2008-10-22T08:48:11Z2008-10-22T08:48:11Z<p>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.</p>
<p>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.</p>
<p>It probably won't shock you to know that that our company went bankrupt.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/225217#2252175Answer by widgisoft for What was the strangest coding standard rule that you were forced to follow?widgisoft2008-10-22T10:50:55Z2008-10-22T10:50:55Z<p>Being forced to have only 1 return statement at the end of a method and making the code fall down to that.</p>
<p>Also not being able to re-use case statements in a switch and let it drop through; I had to write a convoluted script that did a sort of loop of the switch to handle both cases in the right order.</p>
<p>Lastly, when I started using C, I found it very odd to declare my variables at the top of a method and absolutely hated it. I'd spent a good couple of years in C++ and just declared them wherever I wanted; Unless for optimisation reasons I now declare all method variables at the top of a method with details of what they all do - makes maintenance A LOT easier.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/225679#2256791Answer by schonarth for What was the strangest coding standard rule that you were forced to follow?schonarth2008-10-22T13:15:47Z2008-10-22T13:15:47Z<p>All documents in my company are version-controlled. So far, so good.</p>
<p>But for EVERY single file, upon first committing to CVS, you must immediately add two tags to it: <strong>CRE</strong> (for CREation) and <strong>DEV001</strong> (for 1st DEVelopment cycle). As if it being the first version of the file itself wasn't enough.</p>
<p>After that, the process gets a bit more reasonable, fortunately.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/228309#22830912Answer by Stefan for What was the strangest coding standard rule that you were forced to follow?Stefan2008-10-23T02:10:11Z2008-10-23T02:10:11Z<p>Prefix tables with dbo_</p>
<p>Yes, as in dbo.dbo_tablename.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/234194#2341942Answer by Kyralessa for What was the strangest coding standard rule that you were forced to follow?Kyralessa2008-10-24T16:13:44Z2008-10-24T16:13:44Z<p>I worked in a VB .NET shop three years ago, where the "technical lead" decreed that all methods accepting a reference type parameter (i.e., an object) must use <strong>ByRef</strong> instead of <strong>ByVal</strong>. I found this especially odd because they'd asked me the ByVal/ByRef-what's-the-difference question in my interview, and I explained how it worked for value types and for reference types.</p>
<p>His explanation for the practice: "Some of the newer, less-experienced devs will get confused otherwise."</p>
<p>At the time, I was the most recently hired, and it was my first permanent .NET job. And <strong>I</strong> wasn't confused by it.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/275482#2754820Answer by Alex Brault for What was the strangest coding standard rule that you were forced to follow?Alex Brault2008-11-09T01:34:20Z2008-11-09T01:34:20Z<p>The first language I used professionally was 4D. It supported interprocess variables prefixed by a <>, process variables with no prefixes and local variables which started with a $. All those prefixes (or lack thereof) are used by the compiler/interpreter to determine the variable's scope. </p>
<p>The actual strange coding standard was some sort of hungarian notation. The catch was that instead of naming variables based on their types, they had to be prefixed according to their scope. </p>
<p>Variables, whose scope were determined by their prefix, had to be prefixed with redundant information!</p>
<p>I don't dare ask the guy responsible for the standards why it had to be this way...</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/279107#2791071Answer by for What was the strangest coding standard rule that you were forced to follow?2008-11-10T20:46:07Z2008-11-10T20:46:07Z<p>I ran into two rules that I really hated on a C job a few years ago:</p>
<ol>
<li><p>"One module per file," where "module" was defined as a C function.</p></li>
<li><p>Function-local variables allowed only at the top of the function, so this sort of thing was illegal:</p></li>
</ol>
<blockquote>
<pre><code>if (test)
{
int i;
...
}
</code></pre>
</blockquote>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/279171#2791712Answer by Malfist for What was the strangest coding standard rule that you were forced to follow?Malfist2008-11-10T21:05:05Z2008-11-10T21:05:05Z<p>I absolutely hate it when someone doesn't use a naming convention. At where I worked, the lead developer (who I replaced) couldn't figure out if he wanted to use camelCase, or way_over_used_underscores. Personally, I hate the underscores and the camel case is easier to read, but it doesn't really matter as long as you keep to one standard.</p>
<p>PHP is especially bad at this, take a look at mysql_numrows which merges the too without the caps.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/293552#29355239Answer by Steven A. Lowe for What was the strangest coding standard rule that you were forced to follow?Steven A. Lowe2008-11-16T05:49:13Z2008-11-16T05:49:13Z<p>a friend of mine - we'll call him CodeMonkey - got his first job out of college [<em>many</em> 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</p>
<p><strong>the coding standards banned the use of nested IF statements</strong></p>
<p>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.</p>
<p>This compiler bug, of course, had been fixed for at least a decade, but <em>no one had challenged the standards</em>. [baaa!]</p>
<p>CodeMonkey was successful in getting the standards changed - eventually!</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/371441#3714416Answer by Richard E for What was the strangest coding standard rule that you were forced to follow?Richard E2008-12-16T14:21:10Z2008-12-16T14:21:10Z<p>Not quite a coding standard, but in 1998 I worked for a company where C++ was banned, in favour of C. This was because OO was considered too complex for the software engineers to grasp.</p>
<p>In our C code we were required to prefix all semi-colons with a space</p>
<pre><code>int someInt = 5 ;
</code></pre>
<p>I could never find out a reason for this, but after a while it did grow on me.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/447508#4475082Answer by Mark Thistle for What was the strangest coding standard rule that you were forced to follow?Mark Thistle2009-01-15T16:38:38Z2009-01-15T18:39:38Z<p>Adding an 80 character comment at the end of each method so it is easy to find the end of the method. Like this:</p>
<pre><code>void doSomething()
{
}
//----------------------------------------------------------------------------
</code></pre>
<p>The rationale being that:</p>
<ul>
<li>some users don't use IDE's that have code folding (Ok I will give them that).</li>
<li>a space between methods is not clear since people may not follow the other coding standards about indenting and brace placement, hence it would be hard to find the end of a function. (Not releavent; if you need to add this because people don't follow your coding standard then why should they follow this one?)</li>
</ul>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/545811#5458113Answer by Ryan for What was the strangest coding standard rule that you were forced to follow?Ryan2009-02-13T12:56:45Z2009-02-13T12:56:45Z<p>SCORM for sure. (<a href="http://en.wikipedia.org/wiki/SCORM" rel="nofollow">http://en.wikipedia.org/wiki/SCORM</a>)</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/545833#5458333Answer by Kris for What was the strangest coding standard rule that you were forced to follow?Kris2009-02-13T13:04:00Z2009-02-13T13:04:00Z<p>I've been getting worked up over naming table columns after mysql keywords. It requires stupid column name escaping in every single query you write.</p>
<pre><code>SELECT this, that, `key` FROM sometable WHERE such AND suchmore;
</code></pre>
<p>Just horrible.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/546000#5460002Answer by Skizz for What was the strangest coding standard rule that you were forced to follow?Skizz2009-02-13T13:52:00Z2009-02-13T13:52:00Z<p>At place place I'm currently working, the official coding standard stipulates a maximum line length of eighty characters. The rational was to enable hard-copies of the code to be formatted. Needless to say, this led to very odd code layout. I've worked to eliminate this standard, mainly through the argument of 'when was the last time you made a hard-copy of code?' Readability now versus chance of making a hard-copy on an eighty column DMP?</p>
<p>Skizz</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/546001#5460011Answer by MunkiPhD for What was the strangest coding standard rule that you were forced to follow?MunkiPhD2009-02-13T13:52:11Z2009-02-13T13:52:11Z<p>Although this wasn't at a job, we had a massive project for a class in college. One of the requirements was commenting <em>every</em> line of code in our application -- regardless of what it did... and each line had to be specific e.g.</p>
<pre><code>int x=0; //declare variable x and assign it to 0
</code></pre>
<p>We weren't allowed to do this:</p>
<pre><code>int x, y, z = 0; //declare and assign to 0
</code></pre>
<p>As it wasn't detailed enough. And that's not even following the naming conventions forced upon us.</p>
<p>Needless to say we spent a few hours going back through the code...</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/546230#5462305Answer by Chris Needham for What was the strangest coding standard rule that you were forced to follow?Chris Needham2009-02-13T14:53:48Z2009-02-13T14:53:48Z<p>(Probably only funny in the uk)</p>
<p>An insurer I worked at wanted a combination "P" or "L" to denote the scope, concatenated with hungarian for the type, on all properties.</p>
<p>The plus point was we had a property called pintMaster! Made us all fancy a drink. </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/546306#5463060Answer by blowdart for What was the strangest coding standard rule that you were forced to follow?blowdart2009-02-13T15:11:35Z2009-02-13T15:11:35Z<p>At a major UK bank I was brought in to act as a design authority on a new .NET system.</p>
<p>Their rules state that the database tables had to be a maximum of 8 characters long, with the project code (a 5 digit code) as the prefix.</p>
<p>They were enforcing old DB2 rules onto Windows projects <em>sigh</em></p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/573836#5738362Answer by Andy for What was the strangest coding standard rule that you were forced to follow?Andy2009-02-21T22:28:25Z2009-02-21T22:28:25Z<p>Only one variable can be declared per logical line. [Rational: Multiple declaration per line results in an inaccurate line-of-code count.]</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/596840#5968409Answer by abeger for What was the strangest coding standard rule that you were forced to follow?abeger2009-02-27T21:55:51Z2009-02-27T21:55:51Z<p>At my first job, all C programs, no matter how simple or complex, had only four functions. You had the main, which called the other three functions in turn. I can't remember their names, but they were something along the lines of begin(), middle(), and end(). begin() opened files and database connections, end() closed them, and middle() did <em>everything else</em>. Needless to say, middle() was a <em>very</em> long function. </p>
<p>And just to make things even better, all variables had to be global.</p>
<p>One of my proudest memories of that job is having been part of the general revolt that led to the destruction of those standards.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/647782#6477820Answer by for What was the strangest coding standard rule that you were forced to follow?2009-03-15T13:01:20Z2009-03-15T13:01:20Z<p>No Hungarian whatsoever.</p>
<p>OK, you're thinking this is bad why? Well, because they considered this to be Hungarian:</p>
<pre>int foo;
int *pFoo;
int **hFoo;</pre>
<p>Now, any old-school Mac programmer will remember dealing with Handles and Ptrs. The above is the easiest way to tell them apart - Apple sample code is full of it, and Apple was hardly a hotbed of Hungarianism. And so when I had to write some old-school Mac code, naturally I did that, and got it shot down for being Hungarian.</p>
<p>But nobody could propose an alternate naming scheme that preserved the clarity of three variables referring to the same data in different ways, so I checked it in as-is.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/647789#6477891Answer by Bryan Oakley for What was the strangest coding standard rule that you were forced to follow?Bryan Oakley2009-03-15T13:11:24Z2009-03-15T13:11:24Z<p>I had to spell and grammar check my comments. They had to be complete sentences, properly capitalized and finished with a period.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/649033#6490338Answer by Robert Rossney for What was the strangest coding standard rule that you were forced to follow?Robert Rossney2009-03-16T02:06:20Z2009-03-16T02:06:20Z<p>In 1987 or so, I took a job with a company that hired me because I was one of a small handful of people who knew how to use Revelation. Revelation, if you've never heard of it, was essentially a PC-based implementation of the Pick operating system - which, if you've never heard of it, got its name from its inventor, the fabulously-named Dick Pick. Much can be said about the Pick OS, most of it good. A number of supermini vendors (Prime and MIPS, at least) used Pick, or their own custom implementations of it.</p>
<p>This company was a Prime shop, and for their in-house systems they used Information. (No, that was really its name: it was Prime's implementation of Pick.) They had a contract with the state to build a PC-based system, and had put about a year into their Revelation project before the guy doing all the work, who was also their MIS director, decided he couldn't do both jobs anymore and hired me.</p>
<p>At any rate, he'd established a number of coding standards for their Prime-based software, many of which derived from two basic conditions: 1) the use of 80-column dumb terminals, and 2) the fact that since Prime didn't have a visual editor, he'd written his own. Because of the magic portability of Pick code, he'd brought his editor down into Revelation, and had built the entire project on the PC using it.</p>
<p>Revelation, of course, being PC-based, had a perfectly good full-screen editor, and didn't object when you went past column 80. However, for the first several months I was there, he insisted that I use his editor and his standards.</p>
<p>So, the first standard was that every line of code had to be commented. Every line. No exceptions. His rationale for that was that even if your comment said exactly what you had just written in the code, having to comment it meant you at least thought about the line twice. Also, as he cheerfully pointed out, he'd added a command to the editor that formatted each line of code so that you could put an end-of-line comment.</p>
<p>Oh, yes. When you commented every line of code, it was with <em>end-of-line</em> comments. In short, the first 64 characters of each line were for code, then there was a semicolon, and then you had 15 characters to describe what your 64 characters did. In short, we were using an assembly language convention to format our Pick/Basic code. This led to things that looked like this:</p>
<pre><code>EVENT.LIST[DATE.INDEX][-1] = _ ;ADD THE MOST RECENT EVENT
EVENTS[LEN(EVENTS)] ;TO THE END OF EVENT LIST
</code></pre>
<p>(Actually, after 20 years I have finally forgotten R/Basic's line-continuation syntax, so it may have looked different. But you get the idea.)</p>
<p>Additionally, whenever you had to insert multiline comments, the rule was that you use a flower box:</p>
<pre><code>************************************************************************
** IN CASE YOU NEVER HEARD OF ONE, OR COULDN'T GUESS FROM ITS NAME, **
** THIS IS A FLOWER BOX. **
************************************************************************
</code></pre>
<p>Yes, those closing asterisks on each line were required. After all, if you used his editor, it was just a simple editor command to insert a flower box.</p>
<p>Getting him to relent and let me use Revelation's built-in editor was quite a battle. At first he was insistent, simply because those were the rules. When I objected that a) I already knew the Revelation editor b) it was substantially more functional than his editor, c) other Revelation developers would have the same perspective, he retorted that if I didn't train on his editor I wouldn't ever be able to work on the Prime codebase, which, as we both knew, was not going to happen as long as hell remained unfrozen over. Finally he gave in.</p>
<p>But the coding standards were the last to go. The flower-box comments in particular were a stupid waste of time, and he fought me tooth and nail on them, saying that if I'd just use the right editor maintaining them would be perfectly easy. (The whole thing got pretty passive-aggressive.) Finally I quietly gave in, and from then on all of the code I brought to code reviews had his precious flower-box comments.</p>
<p>One day, several months into the job, when I'd pretty much proven myself more than competent (especially in comparison with the remarkable parade of other coders that passed through that office while I worked there), he was looking over my shoulder as I worked, and he noticed I wasn't using flower-box comments. Oh, I said, I wrote a source-code formatter that converts my comments into your style when I print them out. It's easier than maintaining them in the editor. He opened his mouth, thought for a moment, closed it, went away, and we never talked about coding standards again. Both of our jobs got easier after that.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/766278#7662784Answer by Dave for What was the strangest coding standard rule that you were forced to follow?Dave2009-04-19T22:39:44Z2009-04-19T22:39:44Z<p>In Java, when contracting somewhere that shall remain nameless, <em>Interfaces</em> were banned. The logic? The guy in charge couldn't find implementing classes with Eclipse...</p>
<p>Also banned - anonymous inner classes, on the grounds that the guy in charge didn't know what they were. Which made implementing a Swing GUI all kinds of fun.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/953601#9536011Answer by dverespey for What was the strangest coding standard rule that you were forced to follow?dverespey2009-06-04T23:21:16Z2009-06-04T23:21:16Z<p>The worst is a nameless place I still earn money from, there are no standards. Every program is new adventure. </p>
<p>Fortunately another contractor and I are slowly training the real employees and forcing some structure on the mess.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/953638#9536384Answer by Dan Esparza for What was the strangest coding standard rule that you were forced to follow?Dan Esparza2009-06-04T23:38:07Z2009-06-04T23:38:07Z<p>Wow -- this brings back so many memories of one particular place that I worked: Arizona Department of Transportation. </p>
<p>There was a project manager there that didn't understand object-based programming (and didn't want to understand it). <strong>She was convinced that object-based programming was a fad, and refused to let anybody check-in code that used any kind of object based programming.</strong> </p>
<p>(Seriously -- she actually spent a lot of her day reviewing code that we had checked-in to Visual SourceSafe just to make sure we weren't breaking the rules). </p>
<p>Considering Visual Basic 4 had just released (this was about 12 years ago), and considering that the Windows forms application we were building in VB4 <em>used objects to describe the forms</em>, this made development ... complicated. </p>
<p>A buddy of mine actually tried to get around this problem by encapsulating his 'object code' inside dummy 'forms' and she eventually caught on that he was just (* <em>gasp</em> *) hiding his objects!</p>
<p>Needless to say, I only lasted about 3 months there. </p>
<p>Gosh, I disliked that woman's thinking.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/976657#9766572Answer by sondra for What was the strangest coding standard rule that you were forced to follow?sondra2009-06-10T16:17:26Z2009-06-10T16:17:26Z<p>This isn't a coding standard issue, but is surely a tale of restrictive thinking. We had completed a short 4 week project in no less than 7 weeks. The schedule was loosely based on guestimating a feature list. The development process consisted of coding furiously. During the postmortem I suggested using milestones and breaking feature requests into tasks. Incredibly, my director dismissed my ideas, saying that because it was such a short project, we didn't need to use milestones or tasks, and asked for other suggestions. The room fell silent.</p>
<p>Language: Java, C++, HTML
Team size: Two teams, totaling 10 engineers
Which ill effects it caused you and your team: I felt like I was caught in a Dilbert cartoon.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/976892#9768922Answer by David Filip for What was the strangest coding standard rule that you were forced to follow?David Filip2009-06-10T16:59:12Z2009-06-10T16:59:12Z<p>Giving numbers to our tables, like tbl47_[some name]</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/976939#9769391Answer by Carlo for What was the strangest coding standard rule that you were forced to follow?Carlo2009-06-10T17:09:24Z2009-07-09T13:50:42Z<p>In my last job, my supervisor always enforced Murphy's Law:</p>
<p>"Anything that can go wrong will go wrong."</p>
<p>I guess it was so we didn't slack off doing some quick fixes in the code or something like that. And now I constantly have that phrase in my head.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1060195#10601951Answer by cfrantz for What was the strangest coding standard rule that you were forced to follow?cfrantz2009-06-29T20:01:04Z2009-06-29T20:01:04Z<p>My coding standards gripes are pretty tame compared to some of the heinous stuff I've seen here, but here goes:</p>
<p>I was on a project where some of the developers insisted on the most peculiar form of indenting I've ever seen:</p>
<pre>
if (condition)
{
x++;
printf("Hello condition!\n");
}
else
{
y++;
}
</pre>
<p>We were developing for an embedded environment with a really rotten debugger. In fact, printf(), hexdump() and the mapfile were the preferred method of debugging. This of course meant using <code>static</code> was forbidden and all global variables and functions had to be of the form <code>modulename_variablename</code>.</p>
<p>Checking in code with warnings was forbidden (not such a bad thing), but the compiler would warn about any conditional that was constant. Therefore, the old macro/statement trick of <code>do { something(); } while(0)</code> was forbidden.</p>
<p>Lastly, leaving a trailing comma on a enumerator list or initializer was considered lazy, and thus forbidden:</p>
<pre>
enum debuglevel
{
NONE,
FATAL,
WARNING,
VERBOSE, // Naughty, naughty!
};
</pre>
<p>As I've said, rather tame. But as a follower of "The Ten Commandments for C Programmers", I found the unconventional bracing style absolutely maddening.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1357845#13578454Answer by soru for What was the strangest coding standard rule that you were forced to follow?soru2009-08-31T14:49:54Z2009-08-31T14:49:54Z<p>An externally-written C coding standard that had the rule 'don't rely on built in operator precedence, always use brackets'</p>
<p>Fair enough, the obvious intent was to ban:</p>
<pre><code>a = 3 + 6 * 2;
</code></pre>
<p>in favour of:</p>
<pre><code>a = 3 + (6 * 2);
</code></pre>
<p>Thing was, this was enforced by a tool that followed the C syntax rules that '=', '==', '.' and array access are operators. So code like:</p>
<pre><code>a[i].x += b[i].y + d - 7;
</code></pre>
<p>had to be written as:</p>
<p>((a[i]).x) += (((b[i]).y + d) - 7);</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1358589#13585891Answer by Brian Surowiec for What was the strangest coding standard rule that you were forced to follow?Brian Surowiec2009-08-31T17:52:50Z2009-08-31T17:52:50Z<p>My old boss insisted that we use constants instead of enums but never gave a reason and in all the scenarios these were used an enum made more sense.</p>
<p>The better one though was insisting that all table names be singular and then making the classes in code singular as well. But not only did they represent the object, such as a user or group, they also represented the table and contained all of the CRUD for that table and numerous other actions. But wait, there’s more! They also had to contain a publicly visible name/value collection so that way you could get the properties with an indexer, by column name, just in case you added a new column but didn't want to add in a new property. There were a bunch of other "must do's" that not only didn't make sense, but put a big performance hit on the code as well. I could try to point them all out but the code speaks for itself and sadly this is almost an exact copy of the User class I just pulled out of an old archive folder:</p>
<pre><code>public class Record
{
private string tablename;
private Database database;
public NameValueCollection Fields;
public Record(string TableName) : this(TableName, null) { }
public Record(string TableName, Database db)
{
tablename = TableName;
database = db;
}
public string TableName
{
get { return tablename; }
}
public ulong ID
{
get { return GetULong("ID"); }
set { Fields["ID"] = value.ToString(); }
}
public virtual ulong GetULong(string field)
{
try { return ulong.Parse(this[field]); }
catch(Exception) { return 0; }
}
public virtual bool Change()
{
InitializeDB(); // opens the connection
// loop over the Fields object and build an update query
DisposeDB(); // closes the connection
// return the status
}
public virtual bool Create()
{
// works almost just like the Change method
}
public virtual bool Read()
{
InitializeDB(); // opens the connection
// use the value of the ID property to build a select query
// populate the Fields collection with the columns/values if the read was successful
DisposeDB(); // closes the connection
// return the status
}
}
public class User
{
public User() : base("User") { }
public User(Database db) : base("User", db) { }
public string Username
{
get { return Fields["Username"]; }
set
{
Fields["Username"] = value.ToString(); // yes, there really is a redundant ToString call
}
}
}
</code></pre>
<p>sorry if this double posts, first time around I might not of been human or maybe the site just has a limit to how bad code can be to be posted</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1414204#14142042Answer by SeanJA for What was the strangest coding standard rule that you were forced to follow?SeanJA2009-09-12T03:40:31Z2009-09-12T03:40:31Z<p>Marking private variables with an _ just to make sure that we know we are dealing with private variables within the class. Then using php's magic methods __get and __set to provide access to each of the variables as if they were public anyway...</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1450928#14509282Answer by Jai for What was the strangest coding standard rule that you were forced to follow?Jai2009-09-20T12:35:33Z2009-09-20T12:35:33Z<p>While coding for a VB project I was asked to add the following comment section for each of the methods
'Module Name
'Module Description
'Parameters and description of each parameter
'Called by
'Calls</p>
<p>While I found the rest quite alright but I was against the last two, the reason I argued was the as the project becomes large it will become difficult to maintain. If we are creating the library function then we can never be able to maintain Called by. We were small team of 6, so the argument made by manager was that since you are going to call the functions this should be maintained. Anyway I had to give up this argument as the manager was adamant. The result was as expected, as the project become larger no one cared to maintain Called by and Calls.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1601287#16012876Answer by Avihu Turzion for What was the strangest coding standard rule that you were forced to follow?Avihu Turzion2009-10-21T14:40:32Z2009-10-21T14:40:32Z<p>When I started working at one place, and started entering my code into the source control, my boss suddenly came up to me, and asked me to stop committing so much. He told me it is discouraged to do more than 1 commit per-day for a developer because it litters the source control. I simply gaped at him...</p>
<p>Later I understood that the reason he even came up to me about it is because the SVN server would send him (and 10 more high executives) a mail for each commit someone makes. And by littering the source control I guessed he ment his mailbox.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1713149#17131490Answer by nobar for What was the strangest coding standard rule that you were forced to follow?nobar2009-11-11T05:09:44Z2009-11-11T05:09:44Z<h2>Capitalizing Acronyms</h2>
<p><strong>DO</strong> capitalize both characters of two-character acronyms except the first word of a camel-cased identifier.</p>
<pre><code>System.IO
public void StartIO(Stream ioStream)
</code></pre>
<p><strong>DO</strong> capitalize only the first character of acronyms with three or more characters except the first word of a camel-cased identifier.</p>
<pre><code>System.Xml
public void ProcessHtmlTag(string htmlTag)
</code></pre>
<p><strong>DO NOT</strong> capitalize any of the characters of any acronyms, whatever their length, at the beginning of a camel-cased identifier.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1713189#17131891Answer by fuzzy lollipop for What was the strangest coding standard rule that you were forced to follow?fuzzy lollipop2009-11-11T05:18:41Z2009-11-11T05:18:41Z<p>having to put m_ prefix on java instance variables and g_ prefix on java static variables, most un-Java idiot cruft I have ever had to deal with. </p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1713235#17132351Answer by Rob Pelletier for What was the strangest coding standard rule that you were forced to follow?Rob Pelletier2009-11-11T05:30:05Z2009-11-11T05:30:05Z<p>The last place I worked was primarily a C++ shop, and before I was hired my boss (who was the director of research and development) had issued a decree that "dynamic memory allocation is not allowed". No "new", not even a "malloc" -- because "those can lead to memory leaks if a developer forgets the corresponding delete/free operation". As a corollary to this particular rule, "pointers are also not allowed" (although <em>references</em> were totally acceptable, being both awesome and safe).</p>
<p>I repealed those rules (as opposed to, say, rewriting all our software in other languages) but I did have to add a few awesome rules of my own, like "you may not launch a new thread without written approval from someone qualified to do that sort of thing" based on an unfortunate series of code reviews (sigh).</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/1713294#17132940Answer by Dmitriy Matveev for What was the strangest coding standard rule that you were forced to follow?Dmitriy Matveev2009-11-11T05:44:58Z2009-11-11T05:44:58Z<p>On one of my first jobs the boss said that we should always use fully qualified type names in C# and forbid usings, since we should always know which type we're using when declaring variable, parameter, etc.</p>