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 12 13 14 15 16 21 next
vote up 81 vote down

The question of whether computers can think is just like the question of whether submarines can swim.

-- Edsger W. Dijkstra

link|flag
2  
Excellent observation... – Jason Bunting Feb 27 at 18:08
6  
Define swim.... – Janie Jul 24 at 20:57
4  
@Janie: That's the whole point of the quote -- to draw attention to the fact that "think" and "swim" are not well defined notions. – j_random_hacker Aug 16 at 10:50
1  
Edsger W. Dijkstra has excellent quotes so far. Is it the product of algorithmic thinking? – aartist Oct 21 at 3:21
show 3 more comments
vote up 3 vote down

If it doesn't have to work, we can do it real quick.

-- Watts Humphrey

link|flag
vote up 0 vote down

from Larry Wall in Perl manpage

Perl is at the mercy of your machine's definitions of various operations such as type casting, atof() and sprintf(). The latter can even trigger a coredump when passed ludicrous input values.

link|flag
vote up 8 vote down

It’s hard to read through a book on the principles of magic without glancing at the cover periodically to make sure it isn’t a book on software design.

Bruce Tognazzini

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

Perilous to us all are the devices of an art deeper than that which we possess ourselves

J.R.R. Tolkien

link|flag
vote up 3 vote down

“You want to enjoy life, don't you? If you get your job done quickly and your job is fun, that's good isn't it? That's the purpose of life, partly. Your life is better.

I want to solve problems I meet in the daily life by using computers, so I need to write programs. By using Ruby, I want to concentrate the things I do, not the magical rules of the language, like starting with public void something something something to say, "print hello world." I just want to say, "print this!", I don't want all the surrounding magic keywords."

Yukihiro Matsumoto, The Philosophy of Ruby

link|flag
vote up 39 vote down

"There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence." - Jeremy S. Anderson

link|flag
5  
actually it is BSD, not UNIX – Mario Oct 3 '08 at 15:34
show 5 more comments
vote up 5 vote down

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

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 1 vote down

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

  • Edsger Dijkstra
link|flag
vote up -1 vote down

Found in some comments relating to an automated zip

// zip it, zip it good.

I'm just guessing that the people that downvoted this didn't get the reference to the Devo song called Whip It

Oh well. :(

link|flag
13  
I'm guessing they did, and still downvoted you. – Ty Mar 23 at 20:56
vote up 6 vote down

"Never attribute to malice that which can be adequately explained by stupidity" - Hanlon's Razor.

You'd think it wouldn't be applicable to programming until you start thinking about endless requirements changes from clients who don't know what they want, etc...

link|flag
vote up 5 vote down

Never trust a programer who can spel.

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 3 vote down

"Rules are for the obedience of the inexperienced and the guidance of the wise." -- Author unknown

"There is a great satisfaction in building good tools for other people to use." - Freeman Dyson

"Process is no substitute for synaptic activity" - Jeff DeLuca

link|flag
vote up 48 vote down

A side-bar in Code Complete, chapter 5:

When I am working on a problem I never think about beauty. I think only how to solve the problem. But when I have finished, if the solution is not beautiful, I know it is wrong. R. Buckminster Fuller

link|flag
vote up 4 vote down

Never underestimate the disparity between developer excitement and user apathy.

From this great article.

link|flag
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 4 vote down

"I do not fear computers. I fear the lack of them." -Isaac Asimov

link|flag
vote up 4 vote down

“The limits of my language mean the limits of my world”

Ludwig Wittgenstein

link|flag
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 109 vote down

Whereas Europeans generally pronounce my name the right way ('Nick-louse Veert'), Americans invariably mangle it into 'Nickel's Worth.' This is to say that Europeans call me by name, but Americans call me by value.

-- Niklaus Wirth

link|flag
1  
really funny! but not a programming quote, -1 – hasen j Feb 28 at 9:59
33  
it is a programming quote... if you remember that in procedural programming you can pass arguments to function by value (if you change it in function, you change copy), and by name (in C++ it would be by reference: changing value inside function changes it outside). – Jakub Narębski Feb 28 at 13:34
2  
Ive seen several downvotes on this question by users claiming its not programming related. But more often than not (especially in this case) it is in fact PR! And I, for one, like the sublimity in these kind of quotes. – mizipzor Mar 18 at 10:03
9  
saying this is not programming related is ignorant – Tnay Jul 24 at 20:20
6  
Some depressingly stupid users on SO... – Janie Jul 24 at 20:53
show 4 more comments
vote up 3 vote down

If I have not seen as far as others, it is because giants were standing on my shoulders.

-- Hal Abelson

link|flag
vote up 5 vote down

Good programmers learn more from "That's not what I expected!" than from getting it right the first time.

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

If at first you don't succeed, try/catch, try/catch again.

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 366 vote down

Linux is only free if your time has no value

Jamie Zawinski

link|flag
46  
"Free software" is a matter of liberty, not price. To understand the concept, you should think of "free" as in "free speech," not as in "free beer." - www.gnu.org – SHODAN Jan 19 at 6:24
21  
windows vista: 300$ , linux: free, this quote, priceless! – hasen j Jan 19 at 6:44
30  
The quote is perfectly accurate, in a non-ironic way. If a "free" piece of software that duplicates all the features of one that costs $500, but it takes you 10 hours to get working the way the non-free version does, then the only way that's a net positive is if your time is worth <$50/hour. – bigmattyh Feb 13 at 21:41
30  
Although I agree that Linux will often require tweeking and configuring, thus costing you money, I usually spend twice that much on windows for the same end result, so Free + 10h << $$$ + 20h my 2 cent – Newtopian Apr 7 at 9:32
62  
If you can do something in 10h on linux but it takes you 20h on windows then you probably don't know how to use either. – jellomonkey May 15 at 17:57
show 21 more comments
vote up 3 vote down

Hardware is the part of a system you can kick. Software is the one you can only curse at

link|flag
vote up 1 vote down

There is always one more bug!

link|flag
vote up 2 vote down

The most likely way for the world to be destroyed, most experts agree, is by accident. That's where we come in; we're computer professionals. We cause accidents.

-Nathaniel Borenstein

link|flag
prev 1 12 13 14 15 16 21 next

Your Answer

Get an OpenID
or

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