vote up 21 vote down star
11

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
1  
I vote for reopening this – Gordon Wilson Jan 11 '09 at 4:03
show 15 more comments

36 Answers

1 2 next
vote up 17 vote down

How about, Unit-testing doubles development time

link|flag
7  
One of the greatest related quotes I heard a bit ago freely paraphrased "*I read twitter the other day and noticed that some management guy was complaining that unit tests are bad and hurt the product he's responsible for because now his team of bug hunters find only a fraction of the amount of bugs as they did before and now he feels a lot less safe allowing the release of new versions because of that.*" – Esko Dec 2 at 19:04
show 1 more comment
vote up 14 vote down

C++ is slower than C

link|flag
vote up 2 vote down

Always use stored procedures.

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

Everything should be done in stored procedures

or inversely

Never use stored procedures

link|flag
1  
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 '09 at 3:22
8  
@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 '09 at 3:26
show 1 more comment
vote up 30 vote down

Java is slow

link|flag
1  
Beat me by 30 seconds. :) – Bill the Lizard Jan 11 '09 at 2:14
4  
You must be running a lot of Java – Michael Haren Jan 11 '09 at 3:08
1  
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 '09 at 3:26
12  
It started back when Java was first released. Back when it really was slow. – Bill the Lizard Jan 11 '09 at 3:35
4  
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 '09 at 4:12
show 2 more comments
vote up 14 vote down

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

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

Never hard code any value.

link|flag
1  
Oh man, +5 if I could have given it. this one is sometimes treated as the word of god. – shoosh Jan 11 '09 at 2:28
2  
or, "Everything should be driven from the database... " – Charles Bretana Jan 11 '09 at 2:31
6  
#define FOURTY_TWO (42) – LiraNuna Dec 3 at 0:31
show 2 more comments
vote up 9 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
show 1 more comment
vote up 24 vote down

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

link|flag
5  
I have to admit that I read this and the stopped and thought to myself, "When was this EVER true?" – Jason Dec 2 at 21:54
vote up 12 vote down

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

link|flag
vote up 18 vote down

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

link|flag
vote up 10 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 2 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 17 vote down

Programmers at the same level are completely interchangeable

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

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

link|flag
show 1 more comment
vote up 2 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
show 1 more comment
vote up 3 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
vote up 5 vote down

"SQL in code is bad! Get the SQL out, and then we're good on data access." This simplistic thinking contains some truth but causes a lot of problems. Good data access strategy is sooooo important.

  1. Unless you know how and why data layers, sql functions, etc. can make things much better, just busting things out into procedures and functions can actually decrease the quality of your solution.
  2. Thinking simplistically that getting sql out of your code is what really matters keeps you from really thinking through your data access scheme.
  3. SQL in code is a bad smell. In an imperfect world though, you take short cuts, and this can be a legitimate place to cut corners. If you're not really going to separate your concerns properly, making 60 poorly named sql procedures and functions just makes life harder on the guy who has to come fix the mess a few years later. I know because I've been that guy several times.
link|flag
vote up 2 vote down

Pair programming means double the development time!

Pair programming. What researches say on the costs and benefits of the practice. would be a source to counter that.

link|flag
vote up 13 vote down

One Entry One Exit

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

Exponential-time algorithms are slower than polynomial-time algorithms.

In linear programming, the simplex algorithm is exponential, but it is typically much faster than its polynomial ellipsoid algorithm counterpart.

link|flag
vote up 1 vote down

Based on a paper from 1978, people quote that maintenance is 20% corrective, 20% adaptive, and 60% perfective. These percentages came from a survey of managers' opinions, and no empirical evidence. In 2003, another group of researchers (Stephen R. Schach, Bo Jin, Liguo Yu, Gillian Z. Heller and Jeff Offutt) challenged this by studying maintenance data for Linux, RTP, and GCC, and found wildly different numbers. See their paper here: Determining the Distribution of Maintenance Categories: Survey versus Measurement.

link|flag
vote up 9 vote down

Big-O Notation: O(1) < O(n)

We all make this mistake -- especially me :)

I can't find the post, but I remember reading a microcontroller blogger who described a case where his hardware needed to store some key/value pairs. Performance was critical and a hashtable with constant time lookup seemed to make sense; if I remember correctly, this setup performed quite well for years.

Out of curiosity, the programmer swapped the hashtable with an unsorted linked list, which easily beat the hash table for dictionaries < 20 items. Later, a sorted array and binary search, with O(lg n) lookup, absolutely demolished the hash table with items less than 500 key/value pairs, although slightly slower than a linked list for less than 10 items.

Since the original hardware never stored more than 15-30 keys at any given time, a sorted array replaced the hash table and our blogger becomes dev team hero for a day.

link|flag
1  
Hopefully anyone who's taken even the most basic Data Structures and Algorithms course won't be fooled by this. – Cogwheel Dec 3 at 0:30
1  
Just to clarify, the problem here is people misapplying Big O by ignoring constants, locality of reference, and other real-world concerns. Your first sentence makes it sound like Big O notation itself is flawed. – rossfabricant Dec 3 at 0:33
4  
Yup. O(1) means "Constant Lookup", not "fast". If an algorithm takes 5 seconds regardless of size of the lookup, it's O(1), but inferior to something that takes (50 ms * number of items) for sets below 100 items. – Michael Stum Dec 3 at 0:54
show 1 more comment
vote up 2 vote down

SQL Server specific: Stored procedures perform better than dynamic SQL because they're precompiled.

Don't know how many times I see this one, but its wrong.

See SQL Server 2000 documentation:

SQL Server 2000 and SQL Server version 7.0 incorporate a number of changes to statement processing that extend many of the performance benefits of stored procedures to all SQL statements. SQL Server 2000 and SQL Server 7.0 do not save a partially compiled plan for stored procedures when they are created. A stored procedure is compiled at execution time, like any other Transact-SQL statement. SQL Server 2000 and SQL Server 7.0 retain execution plans for all SQL statements in the procedure cache, not just stored procedure execution plans.

See SQL Server 2005/2008 documentation:

When any SQL statement is executed in SQL Server 2005, the relational engine first looks through the procedure cache to verify that an existing execution plan for the same SQL statement exists. SQL Server 2005 reuses any existing plan it finds, saving the overhead of recompiling the SQL statement. If no existing execution plan exists, SQL Server 2005 generates a new execution plan for the query.

SQL Server creates an execution plan for all SQL statements on their first invocation, then caches the execution in memory for future use. Apart from edge cases where network latency slows down transmission of huge SQL strings over a network, there is no performance benefit gained by using stored procedures over dynamic SQL.

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

Microsoft IIS is insecure / Apache is secure

You hear this one a lot too, but the criticisms of MS/IIS security are about 10 years outdated. Compare vulnerabilities on Secunia:

  • Apache

    • Apache 1.3.x: 22 advisories, 11 vulnerabilities, 1 unpatched (less critical)
    • Apache 2.0.x: 41 advisories, 26 vulnerabilities, 4 unpatched (less critical)
    • Apache 2.2.x: 17 advisories, 28 vulnerabilities, 2 unpatched (less critical)
  • Microsoft IIS

    • IIS 4.0: 2 advisories, 2 vulnerabilities, 0 unpatched
    • IIS 5.x: 19 advisories, 10 vulnerabilities, 1 unpatched (not critical)
    • IIS 6: 8 advisories, 8 vulnerabilities, 0 unpatched
    • IIS 7: 2 advisories, 2 vulnerabilities, 0 unpatched

To look at it another way, there is a well known article from Mar 2008 which summarizes some findings by Netcraft and Zone-H. Although there are 1.66x as many Apache sites as IIS sites, Apache sites are defaced 2.32x as often, so the ratio of attacks to site is about 1.4. The Slashdot reaction to this article is worth reading.

link|flag
vote up 0 vote down

Design your application from the ground up: start with the database model.

link|flag
vote up 0 vote down

"Premature optimization is the root of all evil" Knuth

In print it is very often used without the context of the full quote.

Additionally, neither of the two people who are said to have created it, (Hoare is the other) do not claim to have created it.

I typically associate the above quote with laziness and excuses when I hear or read it.

The full quote (whatever the origin):

"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil."

The difference (by the the added qualification) is huge.

link|flag
vote up 3 vote down

The more design patterns you use the better.

Applying design patterns can make code better, and it's great to have a shared vocabulary for developers. However, many solutions don't require patterns, and knowledge of patterns is no substitute for understanding algorithms, data structures, and the fundamentals of problem solving.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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