vote up 525 vote down star
854

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
111  
Yeh, but you realise 10 minutes after your app has compiled that you are still reading – johnc Apr 19 at 21:44
69  
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

654 Answers

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

Whenever someone thinks that they can replace SSL/SSH with something much better that they designed this morning over coffee, their computer speakers should generate some sort of penis-shaped sound wave and plunge it repeatedly into their skulls until they achieve enlightenment.

Peter Gutmann

link|flag
vote up 3 vote down
I am not an engineer, I am a software engineer.

:)

link|flag
vote up 3 vote down

One must learn from design patterns, not the design patterns.

link|flag
vote up 3 vote down

UNIX is simple. It just takes a genius to understand its simplicity.

-- Dennis Ritchie

link|flag
vote up 3 vote down

Only in wealth, there is room for a bad idea -- Jasper van der Meer

link|flag
vote up 3 vote down

Artificial intelligence is no match for real stupidity.

link|flag
vote up 3 vote down

I keep a very long collection of my favorite programming quotes.

But I think that my favorite that has not been posted yet is:

"The cheapest, fastest, and most reliable components are those that aren't there." — Gordon Bell

link|flag
vote up 3 vote down

"Go away or I will replace you with a very small shell script!"

link|flag
vote up 2 vote down

Re: analyzing requirements.

"Never always; rarely never."

link|flag
vote up 2 vote down

Any problem in computer science can be solved with another layer of indirection. But that usually will create another problem. -- David Wheeler

link|flag
vote up 2 vote down

Real programmers don't document If it was hard to write, it should be hard to understand!

link|flag
vote up 2 vote down

The source is the documentation.

link|flag
vote up 2 vote down

A computer scientist counts to ten: 0, 1, 2, 3, 4 ...

everyone else counts to ten: 1, 2, 3, 4, 5

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

"I've never written the best code I've ever written."

Awesome quote from an old friend.

link|flag
vote up 2 vote down

"Good web applications should look like trifle."

Cal Henderson - http://www.iamcal.com/

link|flag
vote up 2 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

link|flag
vote up 2 vote down

The programming language [abc] was invented so that any idiot could program a computer, and, as a result, many do.
(Unknown author)

Plus a variant of the Omnipotence Paradox:

Can God write a Program so complex that He cannot debug it?

link|flag
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
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.