vote up 475 vote down star
780

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
18  
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 6 more comments

630 Answers

prev 1 10 11 12 13 14 21 next
vote up 4 vote down

C++ is to C as Lung Cancer is to Lung.

link|flag
vote up 4 vote down

If the automobile had followed the same development cycle as the computer, a Rolls-Royce would today cost $100, get a million miles per gallon, and explode once a year, killing everyone inside.

-- Robert X. Cringely

link|flag
vote up 4 vote down

This is missing from the list:

"Premature optimization is the root of all evil"

or...

"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." (Knuth, Donald. Structured Programming with go to Statements, ACM Journal Computing Surveys, Vol 6, No. 4, Dec. 1974. p.268.)

link|flag
vote up 4 vote down

Inside every small program is a large program struggling to get out. -- C.A.R. (Tony) Hoare

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

This is one that I came up with to use in my .signature, I believe it's original:

If you've seen one picture of the Mandelbrot Set, you've seen them all.

This was in response to the great number of calendars and coffee table books with pictures of fractals.

link|flag
vote up 4 vote down

Not sure if these were mentioned, however they come from this site

  • Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end.
  • Thou shalt check the array bounds of all strings (indeed, all arrays), for surely where thou typest "foo" someone someday shall type "supercalifragilisticexpialidocious".
link|flag
vote up 4 vote down

Here's one from American Gods by Neil Gaiman:

...Tell him that language is a virus and that religion is an operating system and that prayers are just so much f*ng spam.

link|flag
vote up 4 vote down

"Complexity has nothing to do with intelligence, simplicity does." - Larry Bossidy.

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

Documentation is like sex: when it is good, it is very, very good; and when it is bad, it is better than nothing.


If you want to confuse your enemies, give them the source code. If you want to really confuse them, give them the documentation.

link|flag
vote up 4 vote down

I don't know who said it originally, but

There's no such thing as temporary code.

link|flag
vote up 4 vote down

Late but I'll try. Jon Bentley had one column composed of many quotes, but one sticks in my mind. IIRC it was from 1976.

"Use four digits. A new millenium is coming."

link|flag
vote up 4 vote down

Processes and methodologies can make good servants but are poor masters

Mark Dowd, John McDonald & Justin Schuh in "The Art of Software Security Assessment"

link|flag
vote up 4 vote down

Selecting a project due date before the requirements are properly gathered is like selecting which corner you want to paint yourself into, while simultaneously negating the doorway as a viable option. - Chris Ames

link|flag
vote up 4 vote down

Like a gas, software expands to fill its containing memory completely.

link|flag
vote up 4 vote down

C++ is more of a rube-goldberg type thing full of high-voltages, large chain-driven gears, sharp edges, exploding widgets, and spots to get your fingers crushed. And because of it's complexity many (if not most) of it's users don't know how it works, and can't tell ahead of time what's going to cause them to loose an arm.

-- Grant Edwards

C: a language that combines all the elegance and power of assembly language with all the readability and maintainability of assembly language

-- Unknown

link|flag
vote up 4 vote down

a quote from my prev. manager

- will it work on 19 inch monitor too
link|flag
1  
That is not a trivial question depending on the application until a few years ago the software I am working on was resolution dependent .... – hhafez Jun 1 at 4:53
show 1 more comment
vote up 4 vote down

If architects built buildings the way programmers build programs, the first woodpecker to come along would destroy the whole civilization.

-- Gerald Weinberg

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

If you use copy and paste while you're coding, you're probably committing a design error.

-- David Parnas

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

Friend of mine: "Artificial Intelligence is a technic for making computers act like Paris Hilton."

link|flag
vote up 4 vote down

Programming is not like being in the CIA; you don't get credit for being sneaky. It's more like advertising; you get lots of credit for making your connections as blatant as possible.

Steve McConnell on coupling from, "Code Complete."

link|flag
vote up 4 vote down

Matthew Leffler:

You want a dot operator in PHP?

eval(str_replace('.', '->', $code_with_dot_operator))
link|flag
vote up 4 vote down

"Good programmers know what to write. Great ones know what to rewrite (and reuse)."

Eric Raymond

link|flag
vote up 4 vote down

If you get it free, it is worthless. If you pay for it, is has value. If you build it yourself, it is priceless.

- Raj More
link|flag
vote up 4 vote down

I finally found a definition for "middleware". "Middleware" is the software nobody wants to pay for. - Chris Stone, President of the Object Management Group

Lamenting the difficulty of cost-justifying infrastructure software like CORBA.

link|flag
vote up 4 vote down

A logician trying to explain logic to a programmer is like a cat trying to explain to a fish what it's like to get wet." - unknown

link|flag
vote up 4 vote down

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

link|flag
vote up 4 vote down

"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." ---- Martin Golding

link|flag
vote up 4 vote down
"If all you have is a hammer, everything looks like a nail"

"have" can be swapped for "know"; too many developers just repeat what they did last time without checking that it is the best solution to the new problem.

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

"The Free Lunch Is Over."

Herb Sutter

link|flag
prev 1 10 11 12 13 14 21 next

Your Answer

Get an OpenID
or

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