vote up 438 vote down star
704

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 means basically "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
10  
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
83  
Yeh, but you realise 10 minutes after your app has compiled that you are still reading – lagerdalek Apr 19 at 21:44
52  
282 voted up, 445 favorited, and 5 closed it all down. Welcome to StackOverflow. – serg555 Jun 21 at 5:55
10  
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

592 Answers

prev 1 7 8 9 10 11 20 next
vote up 5 vote down

To Err is human, to Debug is Divine...

link|flag
vote up 5 vote down

"on a clear disk you can seek forever"

link|flag
vote up 5 vote down

Applies to a lot, but also to software:

Never on schedule, always on time

link|flag
vote up 5 vote down

Managing programmers is like herding cats.

link|flag
vote up 5 vote down

I wish I could attribute this, but it is just something I heard 30 years ago and it still seems applicable:

All programs have at least one bug remaining and can be optimized by one byte. Thus, by mathematical induction, all programs can be reduced to one byte. And it won't work.

link|flag
vote up 5 vote down

The manager's function is not to make people work, it is to make it possible for people to work. from "Peopleware: Productive Projects and Teams"

link|flag
vote up 5 vote down

All programmers are optimists

Frederick Brooks, The Mythical Man-Month

link|flag
vote up 5 vote down

"A fool with a tool is still a fool." (I don't know who originated it, but I believe it is true)

link|flag
vote up 5 vote down

“C is quirky, flawed and an enormous success.” - Dennis Ritchie

link|flag
vote up 5 vote down

"I would change the world, but I don't have the source code" a programmer

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

"Inside every complex program is a simple program trying to get out." - My Mentor

link|flag
vote up 5 vote down

My best effort:

"Software is either testable or detestable."

link|flag
vote up 5 vote down

It's not specifically about programming, but it matches the way I often find myself debugging:

The definition of insanity is doing the same thing over and over and expecting a different result.

Attributed variously to, inter alia, Ben Franklin and Albert Einstein.

link|flag
vote up 5 vote down

"Are you quite sure that all those bells and whistles, all those wonderful facilities of your so called powerful programming languages, belong to the solution set rather than the problem set?"

Edsger W. Dijkstra

link|flag
vote up 5 vote down

"C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off" - Bjarne Stroustrup

link|flag
vote up 5 vote down

Friend: "The problem with this code is it has far too many levels of misdirection"

Me: "don't you mean indirection?"

Friend: "I meant what I said"

I won't start a flame war by telling you which 3rd party library he was talking about.

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

H.L. Mencken:

For every problem, there is a solution that is simple, elegant, and wrong.

George Neville-Neil:

People who think, "Oh this is a one-off," need to be offed, or perhaps politely removed from the project.

Conway's Law:

Organizations which design systems are constrained to produce designs which are copies of the communication structures of these organizations.

Charles Babbage:

On two occasions, I have been asked [by members of Parliament], 'Pray, Mr. Babbage, if you put into the machine wrong figures, will the right answers come out?' I am not able to rightly apprehend the kind of confusion of ideas that could provoke such a question.

link|flag
vote up 5 vote down

From Paul Graham's "On Lisp":

An ideal world is left as an exercise to the reader.

link|flag
vote up 5 vote down

I like this one because, joking aside, it's often how things end up getting done. I don't know who said it but it stuck in my mind....

"Right. You lot start coding, I'll go and see what they want"

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

Alan Perlis's Epigrams on Programming has some great ones:

"If you have a procedure with 10 parameters, you probably missed some."

"It is easier to write an incorrect program than understand a correct one."

"You can measure a programmer's perspective by noting his attitude on the continuing vitality of FORTRAN."

"There are two ways to write error-free programs; only the third one works."

I love the guy because he was oppressively pessimistic about programming.

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

All real programmers know C of course -- Jeff Atwood

I'm not sure if he is the original author of this quote, but I heared it in episode 23 of the stackoverflow podcast.

link|flag
vote up 5 vote down

Not strictly programming, but I find it often fits:

Good enough is neither.

-- Jim Spivey, though I don't know if he coined it

And speaking of fits, this one is surprisingly useful in many facets of life:

If it doesn't fit, make it fit.

link|flag
vote up 5 vote down

When a manager I had was put under pressure by a client to throw more developers at a project to try and get it in under time he said;

"No matter how many men a woman sleeps with, it's still going to take her 9 months to have a baby"

link|flag
1  
This is from Fred Brooks' Mythical Man Month (ca. 1975). – Jim Ferrans Jun 21 at 5:46
vote up 5 vote down

Saying Java is better because of multi platforms is like saying anal sex is better because it works on all genders.

-- Origin unknown by poster

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

"Good Programmer code and Great reuse"

"Pick any three lines from my code and i will tell you from where they are coming and what they do"

link|flag
vote up 5 vote down

Good programmers invest the effort to learn how to use current practices. Not-so-good programmers just learn the buzzwords, and that’s been a software industry constant for a half century.

Boris Beizer

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

Keep It Simple Stupid

KISS

link|flag
vote up 5 vote down

Quoting here the zen of python

$ python
>>> import this

The Zen of Python, by Tim Peters

Brought to you as is, unedited:

Beautiful is better than ugly.

Explicit is better than implicit.

Simple is better than complex.

Complex is better than complicated.

Flat is better than nested.

Sparse is better than dense.

Readability counts.

Special cases aren't special enough to break the rules.

Although practicality beats purity.

Errors should never pass silently.

Unless explicitly silenced.

In the face of ambiguity, refuse the temptation to guess.

There should be one-- and preferably only one --obvious way to do it.

Although that way may not be obvious at first unless you're Dutch.

Now is better than never.

Although never is often better than right now.

If the implementation is hard to explain, it's a bad idea.

If the implementation is easy to explain, it may be a good idea.

Namespaces are one honking great idea -- let's do more of those!

link|flag
vote up 5 vote down

"code that ALMOST works looks NOTHING like the code that ACTUALLY works."

http://bash.org/?696919

link|flag
vote up 5 vote down

Don't code today what you can't debug tomorrow

link|flag
prev 1 7 8 9 10 11 20 next

Your Answer

Get an OpenID
or

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