vote up 516 vote down star
837

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
15  
I've got to stop reading this one, I've run out of votes 2 days in a row! – johnc Mar 17 at 0:57
7  
i love reading these quotes as i wait for my app to compile – sobbayi Mar 20 at 11:46
109  
Yeh, but you realise 10 minutes after your app has compiled that you are still reading – johnc Apr 19 at 21:44
67  
282 voted up, 445 favorited, and 5 closed it all down. Welcome to StackOverflow. – serg555 Jun 21 at 5:55
21  
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

646 Answers

prev 1 15 16 17 18 19 22 next
vote up 2 vote down

Not really programming, but I also like:

I think there's a world market for about five computers

(attr. Thomas J Watson Senior, 1945)

link|flag
vote up 2 vote down

C trades a slap on the wrist at compile time for a knife in the back at run time. -- as far as I know, my C teacher in college (can't find in google)

link|flag
vote up 2 vote down

Python's syntax succeeds in combining the mistakes of Lisp and Fortran. I do not construe that as progress.

-- Larry Wall

...and no, I do not agree.

link|flag
vote up 2 vote down

Make It Work Make It Right Make It Fast

link|flag
vote up 2 vote down

"The first time God created the world, it became a total mess. So God scraped the whole thing and started again, and the big thing we learn is that after six days, God shipped." - Dan Bricklin

link|flag
vote up 2 vote down

This quote directly from The Six Dumbest Ideas in Computer Security - I'm sure it's been stated by others in other similar terms... A lesson for the managers:

"It is often easier to not do something dumb than it is to do something smart."

link|flag
vote up 2 vote down

Every dark corner you haven't explored with your flashlight is full of bugs.

Kent Beck and Martin Fowlere in Planning Extreme Programming, page127.

link|flag
vote up 2 vote down

Do or do not; there is no "try".

-- Yoda

Oh yes there is.

-- James Gosling (unless I just made that up)

link|flag
vote up 2 vote down

Not my favorite, but I like it as well and it wasn't posted so far:

``The great thing about mod_rewrite is it gives you all the configurability and flexibility of Sendmail. The downside to mod_rewrite is that it gives you all the configurability and flexibility of Sendmail.''

-- Brian Behlendorf
Apache Group
link|flag
vote up 2 vote down

In effect, we conjure the spirits of the computer with our spells.

From SICP.

link|flag
vote up 2 vote down

There is always one more bug - Lubarsky's Law of Cybernetic Entomology

link|flag
vote up 2 vote down
"...basically, avoid comments. If your code needs a comment to be understood, it would be better to rewrite it so it's easier to understand." - Rob Pike, "Notes on Programming in C", February 21, 1989

A lot of code would be better if programmers kept this creed. Comments are all too often a crutch for bad code. And, of course, if your code is easy to understand sans comments, there is no risk of the comments and the code diverging.

link|flag
3  
comments are often required to indicate WHY you are doing something instead of WHAT it is that you are doing. In that sense, I would say comments are necessary. But I do understand the idea behind the saying. The WHAT part of the code should not need comments. – Mostlyharmless Oct 2 '08 at 21:16
2  
Pike is wrong. This might be true if everyone who would ever read the code would be a genius in said language. There are project managers, new hires, the guy maintaining the code when the language becomes a legacy language(as C now is), etc. – WolfmanDragon Oct 22 '08 at 17:38
1  
Most of my comments indicate why something was done. WHY? Because a lot of the time I'm integrating with third party systems that have "interesting" ideas about how things work. One I'm working on at the moment looks like what I'd imagine a web service would look like if someone explained it to a small child, who in turn explained it to the developer that implemented it. – Colin Mackay Jul 18 at 14:25
show 2 more comments
vote up 2 vote down

"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." - Donald Knuth/C.A.R. Hoare

http://www.cookcomputing.com/blog/archives/000084.html

http://en.wikipedia.org/wiki/Optimization_(computer_science)

http://en.wikipedia.org/wiki/C._A._R._Hoare

link|flag
vote up 2 vote down

Web Development is a lot like kickboxing: You have to watch your cookies

link|flag
vote up 2 vote down

Niklaus Wirt gave a talk at my school and told one of his jokes -- Europeans call him by name ("Nik-lous Vert"), while Americans call him by value ("Nickle's Worth").

link|flag
vote up 2 vote down

The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense.

Dijkstra

If you don't fail at least 90 percent of the time, you're not aiming high enough.

Alan Kay

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

"Hey, did someone turn off the database?"

link|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

I have 3 quotes to offer:

"The function of good software is to make the complex appear to be simple." -Grady Booch

"Intellectuals solve problems; geniuses prevent them." - Albert Einstein

Three Rules of Work:

  1. Out of clutter find simplicity
  2. From discord find harmony
  3. In the middle of difficulty lies opportunity.

-Albert Einstein

link|flag
vote up 2 vote down

"When you can measure what you are speaking about, ... you know something about it; but when you cannot measure it, ... your knowledge is of a meager and unsatisfactory kind..." —Lord Kelvin

link|flag
vote up 2 vote down

Never Base a Technical Decision on Political Issues

and

Never Base a Political Decision on Technical Issues

-Geoffrey James

link|flag
vote up 2 vote down

Difficult to code, impossible to maintain.

link|flag
vote up 2 vote down

If you don't think you're doing great things, you're probably right.

link|flag
vote up 2 vote down

Never comment your code - if it was hard to write, it should be hard to understand. -Anonymous

link|flag
vote up 2 vote down

Remember the original question said nothing about the quotes having to be funny:

"If it ain't broke, don't fix it" -- anonymous

link|flag
vote up 2 vote down

As my father used to say:

"In the land of the blind, the one-eyed man is king."

I find this quote useful in general when dealing with complex problems...

link|flag
vote up 2 vote down

I’ve finally learned what ‘upward compatible’ means. It means we get to keep all our old mistakes.

-- Dennie van Tassel

link|flag
vote up 2 vote down

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

Lawrence Flon

link|flag
vote up 2 vote down

Change causes problems

link|flag
vote up 2 vote down

I got two for you:

(1) Its not the size of the app but how you code it! (Rails Envy)

(2) A programmer never dies he just degrades gracefully ;-)

link|flag
show 1 more comment
prev 1 15 16 17 18 19 22 next

Your Answer

Get an OpenID
or

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