vote up 14 vote down star
7

In addition to his "I never met a man I didn't like.", Will Rogers had another great little ditty I've always remembered. It went

"It's not what you don't know that'll hurt you, it's what you do know that ain't so."

We all know or subscribe to, many IT "truisms" that mostly, have a strong basis in fact, in something in our professional careers, or something we learned from others, lessons learned the hard way by ourselves, or by others who came before us.

Unfortuntely, as these truisms spread throughout the community, the details of why they came about, and/or the caveats that affect when they are actually true and when they don't matter, tend to not spread along with them...

We all have a tendency to look for, and latch on to, small "rules" or principles that we can use to avoid doing a complete exhaustive analysis for every decision we make. But even though they are correct 90% of the time, when we misapply them in the other 10%, we pay a penalty we might avoid if we also understood the details behind them.

For example, when User defined functions were first introduced in SQL Server, within a year or so it became "common knowledge" that this feature had extremely bad performance (because it required a re-compilation for each time it ran), and be avoided. This "trusim" still increases many database developers' aversion to using UDFs, even though Microsoft's introduction of InLine UDFs, which do not suffer from this issue at all, mitigates this issue substantially. In recent years I have run into numerous DBAs who still believe you should "never" use UDFs, because of this.

What other common not-so-"trusims" do you know of, that many developers believe in, that are not quite as universally true as is commonly understood, and which the developer community would benefit from being better educated about?

  • Please include why it was "true" to start off with, and why/when it's not true...

EDIT: Please try to limit responses to issues that are technical, where the "common" application of a "rule or principle" is in fact correct most of the time, or was correct back when it was first elucidated, but when, in the edge cases, or because of not understanding the principle thoroughly, or because technology has changed since it first spread, applying the rule today, without understanding the details behind the rule, can easily backfire or cause the opposite effect from what is intended.

flag
should be a wiki – ocdecio Jan 11 at 2:12
Does SO have a wiki ? Where is it? I'll move it there... – Charles Bretana Jan 11 at 2:25
Press edit. There's a little gray checkbox that says "community wiki". – A. Rex Jan 11 at 2:28
Thanks! Did that! How do I see other stuff there? – Charles Bretana Jan 11 at 2:30
It's just a 'state' of the question, allows it to be community editable, and all up/down votes don't count to reputation – lagerdalek Jan 11 at 2:32
show 11 more comments

19 Answers

vote up 10 vote down

How about, Unit-testing doubles development time

link|flag
vote up 8 vote down

C++ is slower than C

link|flag
vote up 1 vote down

Always use stored procedures.

link|flag
vote up 18 vote down

You need to know all of your requirements ahead of time because it's too expensive to change things later in development.

In reality, no one ever knows all of their requirements ahead of time and you can develop code in such a way as to mitigate the inevitable changes and new requirements. This might not be as much as truism as it used to be now that Agile development methods have gained currency.

link|flag
I don't like down voting, but this is not a truism. Numerous large corporations use Agile Methologies now, and this answer is simply a vote in favor of Agile, which is really a completely different discussion. – WindyCityEagle Jan 11 at 3:31
Regarding requirements, it's good to get as much as possible up front, but it's not good to rely on it. – Mike Dunlavey Jan 11 at 3:52
vote up 6 vote down

Everything should be done in stored procedures

or inversely

Never use stored procedures

link|flag
Never use stored procedures is a really great rule. Cases where stored procedures are a good idea are extremely unusual, it's pretty much always a very bad thing. – taw Jan 11 at 3:22
2  
@Taw: Your statement is a broad generalization that lacks any supporting documentation whatsoever. Could you please provide some sort of statistical analysis that proves your claim? My experiences, though anecdotal at best, would argue otherwise. – Mike Hofer Jan 11 at 3:26
vote up 19 vote down

Java is slow

link|flag
Beat me by 30 seconds. :) – Bill the Lizard Jan 11 at 2:14
You must be running a lot of Java – Michael Haren Jan 11 at 3:08
An aside question, where did this idea start? I swear on my first day ten years ago I was told "Here is you seat, your computer, and oh by the way, Java is slow" – WindyCityEagle Jan 11 at 3:26
4  
It started back when Java was first released. Back when it really was slow. – Bill the Lizard Jan 11 at 3:35
3  
The JVM has come a long way since the early releases. Back then it was all interpreted, and yes... SLOW. Since then it's got a lot of snazzy features like just in time compilation, and ever improving garbage collection. It is definitely not slow now days. – madlep Jan 11 at 4:12
show 1 more comment
vote up 6 vote down

Documentation can be written after the software has been deployed. (We'll have time to do it then)

link|flag
Saved by the parenthetical remark!! – jmucchiello Jan 11 at 3:23
vote up 10 vote down

Never hard code any value.

link|flag
Oh man, +5 if I could have given it. this one is sometimes treated as the word of god. – shoosh Jan 11 at 2:28
or, "Everything should be driven from the database... " – Charles Bretana Jan 11 at 2:31
Incorrect #defines aren't a valid argument for using magic numbers. – Bill the Lizard Jan 11 at 3:54
vote up 3 vote down

Our project is going to miss it's deadline!....quick lets throw more people onto the project! (ie Mythical Man Month)

link|flag
vote up 11 vote down

Lines of Code is a good way to track productivity of your developers and overall project health.

link|flag
vote up 6 vote down

Your user interface doesn't matter so long as the code works.

link|flag
vote up 12 vote down

You don't need to worry about security until later on in the project.

link|flag
vote up 5 vote down

There is a "one true way" of programming that's suitable for everything, and any other way is always wrong. Mostly seen among OO or functional fanatics.

link|flag
vote up 1 vote down

Performance-related falsisms:

  • To find performance problems you have to run the code as fast as possible and time it every which way, guessing where the problems are based on how long things take or how many times they are invoked.

That is fine for monitoring program health, but pinpointing problems is not about measuring. It's about finding cycles that have poor reasons. This does not require running fast. It requires detailed insight into what the program is doing (typically via sampling as much of the program state as possible and understanding in detail why it's doing what it's doing at each sample time).

  • To find performance problems you need a large number of samples so as to get high measurement precision.

Typical performance problems worth pursuing take from 10% to 90% of execution time. (That is how much execution time is reduced after you fix them.) The object is to find the problem, not to know precisely how big it is. Even a small number of random-time samples is virtually guaranteed to display the problem, assuming they are taken during the overall time span when the performance problem exists.

  • Compiler optimization matters.

It only matters in code that 1) you actually compile (as opposed to libraries), 2) you actually spend much time in (as opposed to code that spends all its time calling functions, explicitly or implicitly).

link|flag
vote up 9 vote down

Programmers at the same level are completely interchangeable

link|flag
vote up 3 vote down

The one that irks me the most: Published "best practices" work for everyone.

Malarky.

Every company is different. The staff is different, the business model is different, the clients are different, the fiscal outlook is different, the culture is different, the politics are different, the technology is different, the long and short term goals are different, and on and on and on.

What works for one company will not necessarily work for another company. And I cannot repeat this enough: There is no silver bullet. Just because some guy (or some group of guys) wrote it in a book and slapped a fancy title on it does not make it irrefutable, beyond reproach, or an iron-clad guarantee that it will work in your situation.

You should carefully review any given "best practice" (or mediocre practice, for that matter) for its suitability for what you're doing, where you are, and where you're going before you even think about putting it in place.

Two words, folks: Risk analysis.

link|flag
I agree, although I think silver bullets do exist for certain very specific situations. As an example, for situations in which it applies, code generation is a silver bullet. – Mike Dunlavey Jan 11 at 3:42
vote up 0 vote down

Reference types live on the heap, value types on the stack

link|flag
vote up 1 vote down

Computers are really clever and will solve any problem we encounter.

From what I've seen over the years, there appears to be two distinct groups of people: those who think computers are really clever and those who think computers are really dumb. Unfortunately, most people think the former is true when in fact computers are really dumb - they do exactly what we tell them do, even if that is to start a global themonuclear war.

Skizz

link|flag
"I really hate this damn machine, I wish that they would sell it. It never does quite what i want, but only what I tell it!" – NVRAM Oct 27 at 2:33
vote up 1 vote down

Use a simple editor or IDE and you will be productive at once.

Not spending your time learning hotkeys, regex-based editing and other power features of a professional tool may save you some days and will cost you hundreds of them.

link|flag

Your Answer

Get an OpenID
or

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