vote up 489 vote down star
802

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
14  
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
6  
i love reading these quotes as i wait for my app to compile – sobbayi Mar 20 at 11:46
101  
Yeh, but you realise 10 minutes after your app has compiled that you are still reading – johnc Apr 19 at 21:44
63  
282 voted up, 445 favorited, and 5 closed it all down. Welcome to StackOverflow. – serg555 Jun 21 at 5:55
19  
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

634 Answers

prev 1 18 19 20 21 22 next
vote up 1 vote down

"Prematurely quoting someone else won't get you to the root of anything."

(Emphasis on "prematurely" here. The point in the Knuth quote this references is of course valid, but too often that quote is used to reflexively shoot down any question about performance. An intellectual curiosity about performance first principles is better than that kind of faux "wisdom", something I'm sure Knuth would agree with.)

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

"Good software, like wine, takes time." - Joel Spolsky

link|flag
vote up 1 vote down

"Errors, like straws, upon the surface flow; He who would search for pearls must dive down below."

John Dryden

link|flag
vote up 2 vote down

"Fixing Unix is easier than living with NT." - Jonathan Gilpin

link|flag
vote up 2 vote down

No code is faster than no code. -- merb motto

link|flag
vote up 6 vote down

i like the Quotes

1)

What I hear, I forget. What I see, I remember. What I do, I understand. - Confucius

2)

Any fool can write code that a computer can understand... But only good programmers write code that humans can understand. -- Martin Fowler

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

If debugging is the process of removing software bugs, then programming must be the process of putting them in” – Edsger Dijkstra

link|flag
vote up 6 vote down

Few of the quotes from my collection (that I didn't see in the earlier answers):

Artificial Intelligence is no match for natural stupidity.

-Unknown

Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.

-Rich Cook

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

-Edsger Dijkstra

APL is a mistake, carried through to perfection. It is the language of the future for the programming techniques of the past: it creates a new generation of coding bums.

-Edsger Dijkstra

If you give someone a program, you will frustrate them for a day; if you teach them how to program, you will frustrate them for a lifetime.

-Unknown

link|flag
vote up 6 vote down

Now I'm a pretty lazy person and am prepared to work quite hard in order to avoid work.

Martin Fowler, "Refactoring", page 90

link|flag
vote up 2 vote down

"Be Jack of all you can be Master at any time and on any programming language"

link|flag
vote up 1 vote down

Any sufficiently well-documented lisp program contains an ML program in its comments -- Unknown

link|flag
vote up 3 vote down
WTF?!

Attributed to anybody ready anybody else's code.

link|flag
vote up 4 vote down

Ravera's observation on premature optimization: "If it doesn't work, it doesn't matter how fast it doesn't work"

Ravera's First Law of System Administration: "Any set of procedures, no matter how well intentioned or useful, that are too difficult to follow, will be circumvented."

You can have it cheap, fast, or right -- pick any two.

If you make it a constant today, you will have to make it a variable in a couple of weeks. If, however, you think that you need to look it up in a table somewhere, it will become a univeral constant that could have been completely factored out of your code, not just hardcoded.

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

Nihilism:

while (true) { 
    return null;
}
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 2 vote down

The function of good software is to make the complex appear to be simple.

link|flag
vote up -1 vote down

Good code is its own best documentation.

link|flag
vote up 2 vote down

One of my collegues had a great quote in french: "Tout nouveau développement contient au moins un bug. Toute correction de bug est un nouveau développement."

Which translates to "Every new development contains at least one bug. Every bug correction is a new development"

Where I work it sadly happens to be true...

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

Team debugging: the act of intimidating a PC into doing for two people what it refuses to do for one.

link|flag
vote up 2 vote down

I stumbled upon this quote and I sympathize with it:

I get as much enjoyment from trashing code as I do from scratching it out in the first place!

credit: http://www.codeproject.com/KB/cs/PropertyWatch.aspx

link|flag
vote up 9 vote down

C++ : Where friends have access to your private members.

source

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

All parts should go together without forcing. You must remember that the parts you are reassembling were disassembled by you. Therefore, if you can't get them together again, there must be a reason. By all means, do not use a hammer. (IBM Manual, 1925)

link|flag
vote up 4 vote down

"Never trust a computer you can’t throw out a window." - Steve Wozniak

link|flag
vote up 4 vote down

Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.

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

"Every revolutionary idea seems to evoke three stages of reaction: One, it's completely impossible. Two, it's possible, but it's not worth doing. Three, I said it was a good idea all along." - Arthur C. Clarke

link|flag
vote up 0 vote down

I don't understand why "you" can't get it to work. It works on "my" machine.

:This is a brilliant way to deflect criticism away from your own code and deflect the blame on the person finding the fault in your code/software.

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

You can't parse [X]HTML with regex. Because HTML can't be parsed by regex. Regex is not a tool that can be used to correctly parse HTML. As I have answered in HTML-and-regex questions here so many times before, the use of regex will not allow you to consume HTML. Regular expressions are a tool that is insufficiently sophisticated to understand the constructs employed by HTML. HTML is not a regular language and hence cannot be parsed by regular expressions. Regex queries are not equipped to break down HTML into its meaningful parts. so many times but it is not getting to me. Even enhanced irregular regular expressions as used by Perl are not up to the task of parsing HTML. You will never make me crack. HTML is a language of sufficient complexity that it cannot be parsed by regular expressions. Even Jon Skeet cannot parse HTML using regular expressions. Every time you attempt to parse HTML with regular expressions, the unholy child weeps the blood of virgins, and Russian hackers pwn your webapp. Parsing HTML with regex summons tainted souls into the realm of the living. HTML and regex go together like love, marriage, and ritual infanticide. The cannot hold it is too late

//snip (click link for rest)

bobince on StackOverflow

link|flag
prev 1 18 19 20 21 22 next

Your Answer

Get an OpenID
or

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