vote up 468 vote down star
769

There are a lot of great programming quotes out there. Which do you like?

Today (Sept 12, 2008) I heard a new one from a friend, Lars-Gunnar, he said "Gud finns i Emacs" (in Swedish). This basically means "God is in Emacs". Still laughing about it here :) What he meant was that a function "gud is grand-unified-debugger" is in Emacs.

A great one I think all programmers should know is The Three Great Virtues of a Programmer.

flag
12  
I've got to stop reading this one, I've run out of votes 2 days in a row! – lagerdalek Mar 17 at 0:57
6  
i love reading these quotes as i wait for my app to compile – sobbayi Mar 20 at 11:46
96  
Yeh, but you realise 10 minutes after your app has compiled that you are still reading – lagerdalek Apr 19 at 21:44
61  
282 voted up, 445 favorited, and 5 closed it all down. Welcome to StackOverflow. – serg555 Jun 21 at 5:55
17  
Closing doesn't prevent voting, it prevents adding more answers. If you think that the people adding new 'great quotes' are reading every single one of the 500+ answers beforehand to avoid duplicates, you are sadly mistaken. If the site were designed to efficiently vote for polls like this (ie, a programming quote "kitten war") then having thousands of quotes with duplicates would be ok. Not so good for this site though. Alternately, if there were an easy way to avoid duplicates then it could work ok. As is, though, I don't believe there's a compelling reason to keep it open. – Adam Davis Jul 30 at 15:30
show 5 more comments

625 Answers

prev 1 2 3 4 5 21 next
vote up 30 vote down

"Question: How does a large software project get to be one year late? Answer: One day at a time!" - Fred Brooks (The Mythical Man-Month)

I like this one because on a lot of projects people seem to think those disaster projects we all hear of happen to other people and not to them. Their assumption is that something really huge and drastic has to happen for projects to get horribly delayed, when really all a project needs is multiple incremental delays to throw the delivery dates way off.

link|flag
vote up 29 vote down

Java: Write Once, Debug Everywhere

link|flag
2  
Can apply to JavaScript (a version by browser vendor! and more...) and even worse to CSS. – PhiLho Sep 23 '08 at 10:33
show 1 more comment
vote up 29 vote down

Debugging code is at least twice as hard as writing it in the first place. Therefore, if you write a program as cleverly as possible you are, by definition, not smart enough to debug it. (Brian W. Kernighan)

Well over half of the time you spend working on a project (on the order of 70 percent) is spent thinking, and no tool, no matter how advanced, can think for you. Consequently, even if a tool did everything except the thinking for you -- if it wrote 100 percent of the code, wrote 100 percent of the documentation, did 100 percent of the testing, burned the CD-ROMs, put them in boxes, and mailed them to your customers -- the best you could hope for would be a 30 percent improvement in productivity. In order to do better than that, you have to change the way you think.

There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code.

Human beings are not accustomed to being perfect, and few areas of human activity demand it. Adjusting to the requirement for perfection is, I think, the most difficult part of learning to program.

link|flag
2  
Programming languages can improve productivity by removing the need to do much thinking. Most of this thinking that can be removed starts with "WTF?!?!?" or "How the?!!?.." – BCS Sep 13 '08 at 0:16
show 2 more comments
vote up 27 vote down

I love the project triangle as my software quote (http://en.wikipedia.org/wiki/Project_triangle):

Good, Fast, Cheap: Pick Two

link|flag
1  
Feature is in Good, isn't it ? – e-satis Nov 18 at 14:18
show 2 more comments
vote up 27 vote down

Confidence, n.: The feeling you have before you understand the situation

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

Rules for optimization:

  1. Don't do it.
  2. (for experts only) Don't do it yet.

Michael A Jackson

link|flag
2  
Michael Jackson? – Martinho Fernandes Jan 20 at 12:18
1  
Not that one, this one... en.wikipedia.org/wiki/Michael_A._Jackson – Ray Hayes Jan 22 at 17:56
show 2 more comments
vote up 26 vote down

All problems in computer science can be solved with another level of indirection.

-- David Wheeler

link|flag
3  
... except too many levels of indirection ;-) – David Schmitt Sep 12 '08 at 10:44
3  
except performance. All performance problems can be solved by removing a level of indirection – Mendelt Sep 12 '08 at 11:02
4  
The rest of this quotation is "... but that creates another problem". – joel.neely Sep 12 '08 at 12:42
show 2 more comments
vote up 25 vote down

"Getting a SCSI chain working is perfectly simple if you remember that there must be exactly three terminations: one on one end of the cable, one on the far end, and the goat, terminated over the SCSI chain with a silver-handled knife whilst burning black candles." -- Anthony DeBoer

"SCSI is not magic. There are fundamental technical reasons why you have to sacrifice a young goat to your SCSI chain every now and then." -- John F. Woods

link|flag
vote up 25 vote down
Subject: Re: Computers in Science Fiction 
From: Steve Taylor 
Newsgroups: alt.folklore.computers, alt.history.future, rec.arts.sf.science rec.arts.sf.written

> howard wrote:
> I have been using computers since 1969. Some of the programs I
> wrote in the 70's are still running.

Bummer. Have you tried moving variable initialisations out of inner loops? That can speed things up a bit...
link|flag
vote up 25 vote down

"Debugging is like farting - it's not so bad when it's your own code."

link|flag
2  
Hahaha this made me laugh irl... – Filip Ekberg Feb 2 at 8:32
vote up 24 vote down

Man is the best computer we can put aboard a spacecraft...and the only one that can be mass produced with unskilled labor.

Wernher von Braun

link|flag
1  
If the labor was unskilled how skilled was the conception? – Kenneth Cochran Oct 13 at 15:21
show 1 more comment
vote up 24 vote down

"Saying that Java is good because it works on all platforms is like saying anal sex is good because it works on all genders."

No offense to Java developers :)

link|flag
6  
Here, "no offence" actually means "offence meant in a sly way" :D – harshath.jr May 21 at 8:45
4  
Don't forget the animals ;) – Kevin D. Jun 3 at 20:52
1  
that's obviously true for all 'cross platform' languages, not just for java – Chris Oct 10 at 14:11
show 2 more comments
vote up 23 vote down

"The best code is no code at all."

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

Before software can be reusable it first has to be usable.

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

"There are only two hard problems in Computer Science: cache invalidation and naming things."

  • Phil Karlton
link|flag
show 1 more comment
vote up 22 vote down

Beware of programmers who carry screwdrivers.

-- Leonard Brandwein

link|flag
2  
I think it refers back to the days when writing bad code could seriously wreck computer equipment, so programmers who had screwdrivers was a good sign that they needed watching. I've certainly known some great programmers who should be kept well away from tinkering with hardware at all costs! – Jonathan Webb Feb 18 at 22:23
vote up 22 vote down

One of my favourites is written as a definition

Program, n.: (1) A magic spell cast upon a computer to enable it to turn your input into error messages. (2) v.t., A pastime similar to banging your head against a wall but with fewer opportunities for reward.

By Graham Storr (The Fairly Concise New Scientist Magazine Dictionary of scientific words in current use)

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

"Good judgement is the result of experience ... Experience is the result of bad judgement."

Fred Brooks

link|flag
vote up 22 vote down

One programmer can do in one day what two programmers can do in two.

link|flag
vote up 21 vote down

From the Linux kernel (2.4 series I believe), drivers/usb/printer.c:

static char *usblp_messages[] = { "ok", "out of paper", "off-line", "on fire" };

link|flag
1  
en.wikipedia.org/wiki/Lp0_on_fire – BCS Sep 13 '08 at 0:22
2  
That's going on my next error message. – Martinho Fernandes Jan 20 at 12:17
show 2 more comments
vote up 21 vote down
There are only two types of people in the world:
1. Those that start array indices at 1
1. Those that start array indices at 0

-- Unknown

link|flag
3  
In some languages like Delphi you can do things like [3..7], so you can define the min index and the max index. – tuinstoel Feb 28 at 10:39
1  
Defining any indexes you want is just super confusing, and almost totally useless. It's worse than totally useless if things thus defined can be passed as parameters to places where there definition is not in lexical scope. – Doug McClean Jul 17 at 8:59
1  
Doug: that is a C centric view. Most languages that do this pass the bounds as well under the hood, so the information is preserved, including range checking. (which is the main advantage of this) – Marco van de Voort Jul 20 at 19:24
show 3 more comments
vote up 20 vote down

Two favorite quotes about merits of dynamic typing vs. static typing:

Think of compilation as cooking. Dynamic typing means the steak is juicy and still a little red, like red meat is supposed to be. Static typing means you burnt it to a crisp.

Erik Naggum

It seems to me you can program with discipline or you can program with bondage and discipline. You can't avoid the discipline either way, but bondage appeals to some people.

Patrick Logan

The next one is not primarily about programming but can be applied to it as well:

One who works with their hands is a laborer.
One who works with their hands and their mind is a craftsman.
One who works with their hands, mind and heart is an artist.

link|flag
5  
The problem with that first quote is that I (along with quite a few other people) prefer my steak closer to well done. I also prefer my software well done. :-) – T.E.D. Nov 24 '08 at 18:56
vote up 20 vote down

Easy things should be easy and hard things should be possible

Larry Wall

link|flag
vote up 20 vote down

There are only two industries that refer to their customers as users.

link|flag
5  
I believe the full quote is: "There are only two industries that refer to their customers as users: the computer industry and the drug trade." I don't know who originally said it, though. – RobH Jan 16 at 2:57
show 1 more comment
vote up 20 vote down

Pasting code from the internet into production code is like chewing gum found in the street.

link|flag
5  
Sometimes you just can't afford gum, and don't want to build a gum factory. – Ian Boyd Jul 19 at 4:21
2  
But if you run it through the washing machine (a little sanity checking) first, surely it's okay to chew (include)... – sblom Sep 23 at 15:39
1  
Or how about "is like reusing a syringe" – Chris Pietschmann Nov 14 at 15:04
vote up 18 vote down

How do we convince people that in programming simplicity and clarity —in short: what mathematicians call "elegance"— are not a dispensable luxury, but a crucial matter that decides between success and failure?

Edsger W. Dijkstra

link|flag
vote up 18 vote down

I had a mentor who was fond of quoting this (and it's turned out to be good advice):

It was a turning point in my programming career when I realized that I didn't have to win every argument. I'd be talking about code with someone, and I'd say, "I think the best way to do it is A." And they'd say, "I think the best way to do it is B. I'd say, "Well no, it's really A." And they'd say, "Well, we want to do B." It was a turning point for me when I could say, "Fine. Do B. It's not going to hurt us that much if I'm wrong. It's not going to hurt us that much if I'm right and you do B, because, we can correct mistakes. So lets find out if it's a mistake." ... Usually it turns out to be C.

Ward Cunningham

link|flag
4  
So often you get stuck in opinion-only battles which aren't ever going to be won, where the correct answer doesn't really exist. Usually the fact C is the final choice lets you avoid the "I told you so" line ;) – Matthew Iselin Jul 9 at 3:04
vote up 18 vote down

Stroustrup:

In C, its easy to shoot yourself in the foot. C++ makes it more difficult, but when you do, you'll blow your whole leg off.

link|flag
vote up 18 vote down

On a wall in our building:

Theory is when one knows everything, but nothing works.

Practice is when everything works, but nobody knows why.

In this building, Theory and Practice are in perfect harmony. Nobody knows why nothing works.

link|flag
vote up 17 vote down

Program testing can be a very effective way to show the presence of bugs, but is hopelessly inadequate for showing their absence.

and

The competent programmer is fully aware of the limited size of his own skull. He therefore approaches his task with full humility, and avoids clever tricks like the plague.

Both from Edsger Dijkstra's paper - The Humble Programmer (EWD340).

link|flag
prev 1 2 3 4 5 21 next

Your Answer

Get an OpenID
or

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