vote up 28 vote down star
30

There are many quotes from famous computer scientists that have become the wisdom that guides our profession. For example:

"Premature optimization is the root of all evil in programming."

  • Donald Knuth (citing Hoare's Dictum)

"Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it?"

  • Brian Kernighan

And so on. My question is, what are your favorite words of wisdom about programming from someone who is not famous? Was it a friend, a coworker, or a teacher, or a family member?

For example, a technical writer friend of mine said:

"You can't get the right answers unless you ask the right questions."


Thanks for all the contributions! The answer I selected was (a) specifically coding-related, and (b) stated by someone who is not technically famous (though he has a popular blog and a podcast and runs StackOverflow). I.e. he's no Bill Gates or Yogi Berra.

flag
show 3 more comments

73 Answers

vote up 14 vote down

Be very careful at what you type into Google Images.

link|flag
4  
that's too true I was looking for detail on how to imbed pictures into latex documents.... "pictures latex" is not a great search string – Colin Cassidy May 29 at 15:31
6  
@Colin, I wonder how many readers will actually type "pictures latex" into Google right after having read your comment :) I know I did. – MasterPeter May 29 at 15:53
7  
Heh, I did a skincare website for Latina women once. Needed some headshots, and accidentally typed "Latina Facials". Definitely regretted that... – Mike Robinson Jul 29 at 15:03
3  
My wife was on the phone with her friend's five year old daughter, explaining how to find pictures on the computer, when I overheard her stressing "no, no, no, type in CAT"...! – Colin Pickard Jul 29 at 15:30
2  
My wife wanted to download some stuff the dairy council had on their site for a class project. She mistyped and instead of gotmilk.com she typed gotmilf.com. Not what she was expecting. Also, my cousin when younger tried to find a local sporting goods store by simply typing the store name followed by .com. The store in question was Dick's. – monkeypushbutton Jul 30 at 12:18
show 3 more comments
vote up 3 vote down

"NOTHING is more important in a database than integrity."

from my friend Eric

"The whole idea of doing this opens up a huge can of Pandora's box" (not specifically IT related but too much fun not to include)

"Crap...I hate it when I drop the wrong table"

from my former boss

link|flag
vote up 0 vote down

"Nothing works until you try it." -- me

Assume everything is broken until verified.

Used in response to questions like, "If we combine feature X and feature Y in a way we've never done before, will it work?" and "Do we handle generic absurd but catastrophic error condition?"

Discovered after spending a week at a remote customer site implementing a clever use of our product I thought should work but didn't verify. We committed it to the customer, it didn't work, so I spent a week in a warehouse in Kansas City implementing said feature.

link|flag
vote up 25 vote down

"It is easier to optimize correct code than to correct optimized code." --Bill Harlan

link|flag
vote up 1 vote down

Check out my site: http://www.SoftwareQuotes.com - it has an excellent selection of quotations about software development.

Some quotes:

"The software isn't finished until the last user is dead." - Anonymous

"A well-written program is its own heaven; a poorly-written program is its own hell." - Geoffrey James

link|flag
vote up 15 vote down

I think it's a book title.

Learn to program in c++ in just 10 years.

It captures the idea that programming is not something you jump into, and getting good takes a long long time. Anyone who thinks otherwise is a fool, IMHO.

link|flag
2  
That's a great point! See also: norvig.com/21-days.html – Bill Karwin Dec 28 '08 at 6:38
vote up 10 vote down

Stupid should hurt.

Meaning if you got immediate feed back for making that bone-headed mistake, you'd stop.

link|flag
vote up 7 vote down

Make everything as simple as possible, but not simpler. -Albert Einstien

link|flag
vote up 17 vote down

"The definition of insanity is doing the same thing over and over again and expecting different results." -Einstein

This is my usual answer as to why I don’t want to attend another meeting where no decision making will occur.

link|flag
vote up 36 vote down

"Measuring programming progress by lines of code is like measuring aircraft building progress by weight." - Bill Gates

link|flag
2  
Exactly. Note that I don't mention that it is a useless metric, just one that has no insight into functional completeness. A very good example of using LOC as a metric is in identifying bloated areas of code that are likely candidates for refactoring - as it is a reasonable assumption that a class is either doing to much or not doing something effectively. Also, not 100% true, but it provides a means as an indicator for a potential issue. – joseph.ferris Aug 3 at 13:02
show 3 more comments
vote up 23 vote down

In my very first computer science class in college, the professor said, If you remember only one thing from this class, remember these two things:

A computer does what you tell it to do, not what you want it to do.

and

The IQ of a computer is zero.

link|flag
1  
When someone curses at the computer I usually say "it's probably your fault", and, as a fellow developer pointed, "I am my worst enemy". – Ravi Wallau Jun 12 at 5:07
1  
I had a comp-sci professor in one of the introductory courses who said, "the computer is a super-sonic idiot." – smcameron Jul 30 at 10:16
vote up 17 vote down

Trying is the first step towards failure
--Homer Simpson

This has been proven almost every time we try out a new technology at work.

link|flag
15  
On the other hand: "I haven't failed, I've found 10000 ways that don't work" -- Edison – Adam Liss Jul 19 at 12:49
show 2 more comments
vote up 4 vote down

"i m the best programmer in the world."

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

Don't try to build multi-threaded application in the languages that aren't designed for it.

link|flag
vote up 10 vote down

Whenever someone says something like "in theory, this should work..." I sometimes reply with this:

In theory, theory and practice is the same.

I don't recall where it's from, or even if I made it up myself (in that case I probably wasn't the first to come up with it).

link|flag
12  
I think the original goes: "In theory there is no difference between theory and practice. In practice there is a big difference.". – ldigas Feb 8 at 0:44
1  
The version I heard was "The difference between theory and practice is, in theory there is none and in practice there is." – GalacticCowboy May 29 at 16:05
5  
"In theory, everything works and nobody knows why. In practice, nothing works and everybody knows why. Here, we combine theory and practice: nothing works and nobody knows why." --anon – MSalters Jul 30 at 10:20
show 2 more comments
vote up 0 vote down

IGNORANCE IS STRENGTH.

FREEDOM IS SLAVERY.

(Sadly, I've never seen WAR IS PEACE to apply particularly well in computing.)

link|flag
vote up 1 vote down

Here's something i came up with one day:

You can't have just madness, you have to have a method to the madness.

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

A hard problem is seldom worth solving.

Meaning that if it seems hard you should spend time making it simple: either by understanding it better, by rephrasing it or by limiting (or extending) the scope.

link|flag
vote up 17 vote down

If you don't understand the problem you're trying to solve, writing more code will only make it worse.

link|flag
vote up 1 vote down

A computer is like a sewer. What you get out of it depends on what you put into it. -- Paraphrased from Tom Lehrer

link|flag
vote up 4 vote down

I don't believe in documentation; if it was hard to write, it should be hard to read. Why do you think they call it "code"?

link|flag
4  
Documentation is like sex. When it's good it's very very good ... and when it's bad, it's still better than nothing. – ldigas Feb 8 at 0:46
show 2 more comments
vote up 20 vote down

I saw a quote on here about an app. "Software by Stephen King, Interface by Salvador Dali"

link|flag
14  
hey, i've been quoted, how cool is that! stackoverflow.com/questions/263273/… – Steven A. Lowe Nov 13 '08 at 4:58
show 4 more comments
vote up 3 vote down

My bit o' wisdom would be this: Don't fix what ain't broke.

link|flag
vote up 31 vote down

Another one of my favourites is from Larry Osterman:

One in a million is next Tuesday

Basically what he meant was computers operate at such high speeds, with so many people using one system, that even bugs that occur only once in a million, still come up quite frequently.

link|flag
4  
True. I tried to explain to a co-worker the other day that if a bad things happens once every billion instructions they theoretically happen ~16 times per second on a 4GHz quad-core machine... – christoffer Jul 30 at 12:03
vote up 44 vote down

"Fast, good, cheap: pick any two."

link|flag
23  
I've seen this parody: "Pick two: fast, good, cheap, Windows (counts as 2)" – aardvark Jan 26 at 17:26
5  
@aardvark: yawn – peterchen Jul 30 at 11:21
show 2 more comments
vote up 5 vote down

The much underrated:

"If you build it, they will come"

(Field of dreams?)

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

"The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time."

(Tom Cargill)

Because it is scarily true!

link|flag
vote up 2 vote down

Don't know whether it is not famous, but it is good advice anyway.

make it work, make it pretty, make it fast

link|flag
vote up -1 vote down

In order to understand recursion, you must first understand recursion.

Damn, beat to the punch, I should read these threads first.

link|flag
1  
please delete this mate... it's already there in the list as you found out :) ... that delete link that you have there... click on it! :) – balexandre Jul 30 at 10:40
vote up 5 vote down

ILLEGITIMI NON CARBORUNDUM

link|flag
1  
Classic. My favourite one of the mock latins is "Carpe Canem". – Ali A Nov 12 '08 at 19:51

Your Answer

Get an OpenID
or

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