vote up 469 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 7 8 9 10 11 21 next
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 7 vote down

This one has to be on the list. Credits go to Darren Thomas wo posted it in the comments here.

There are 10 types of people. Those who can read ternary, those who can't and those who mistake it for binary.

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

"Compatibility means deliberately repeating other people's mistakes."

and the often incompletely quoted...

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

Software Engineering isn't rocket science ...

It's harder

link|flag
vote up 1 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
2  
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 1 vote down
"This is important, and a little hard to understand. English is useful because it's a mess. Since English is a mess, it maps well onto the problem space, which is also a mess, which we call reality. Similarly, Perl was designed to be a mess (though in the nicest of possible ways)." - Larry Wall "2nd State of the Onion", August 1998
link|flag
vote up 24 vote down

"Saying that Java is good because it works on all platforms is like saying anal sex is good because it works on all genders."

No offense to Java developers :)

link|flag
6  
Here, "no offence" actually means "offence meant in a sly way" :D – harshath.jr May 21 at 8:45
4  
Don't forget the animals ;) – Kevin D. Jun 3 at 20:52
1  
that's obviously true for all 'cross platform' languages, not just for java – Chris Oct 10 at 14:11
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 4 vote down

Sure, it's overkill. But you can never have too much overkill...

A good programmer looks both ways before crossing a one-way street

Fatal exception at address: Ox13374A40. Press OK to continue.

The reason we plan ahead is so that we don't have to do anything right now

link|flag
vote up 4 vote down

From Alan J. Perlis' "Epigrams in Programming"

A language that doesn't affect the way you think about programming, is not worth knowing.

A program without a loop and a structured variable isn't worth writing.

Simplicity does not precede complexity, but follows it.

In programming, as in everything else, to be in error is to be reborn.

Sometimes I think the only universal in the computing field is the fetch-execute cycle.

There are two ways to write error-free programs; only the third one works.

The eleventh commandment was "Thou Shalt Compute" or "Thou Shalt Not Compute" - I forget which.

Wherever there is modularity there is the potential for misunderstanding: Hiding information implies a need to check communication.

Symmetry is a complexity-reducing concept (co-routines include subroutines); seek it everywhere.

If you have a procedure with ten parameters, you probably missed some.

link|flag
vote up 6 vote down

My other car is a cdr

link|flag
vote up 2 vote down

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

link|flag
vote up 10 vote down

Great Larry Wall Quotes:

  • We all agree on the necessity of compromise. We just can't agree on when it's necessary to compromise.

  • And don't tell me there isn't one bit of difference between null and space, because that's exactly how much difference there is.

  • It won't be covered in the book. The source code has to be useful for something, after all...

  • Just don't create a file called -rf.

  • Sex is fun, but it probably doesn't solve all your problems.

  • My assertion that we can do better with computer languages is a persistent belief and fond hope, but you'll note I don't actually claim to be either rational or right. Except when it's convenient.

  • I try not to confuse roles and traits in my own life. Being the Perl god is a role. Being a stubborn cuss is a trait.

And lots more here

link|flag
vote up 18 vote down

I had a mentor who was fond of quoting this (and it's turned out to be good advice):

It was a turning point in my programming career when I realized that I didn't have to win every argument. I'd be talking about code with someone, and I'd say, "I think the best way to do it is A." And they'd say, "I think the best way to do it is B. I'd say, "Well no, it's really A." And they'd say, "Well, we want to do B." It was a turning point for me when I could say, "Fine. Do B. It's not going to hurt us that much if I'm wrong. It's not going to hurt us that much if I'm right and you do B, because, we can correct mistakes. So lets find out if it's a mistake." ... Usually it turns out to be C.

Ward Cunningham

link|flag
4  
So often you get stuck in opinion-only battles which aren't ever going to be won, where the correct answer doesn't really exist. Usually the fact C is the final choice lets you avoid the "I told you so" line ;) – Matthew Iselin Jul 9 at 3:04
vote up 10 vote down

From my personal compilation:

“New technologies aren’t adopted because they are great, new, and disruptive; they are adopted only if the user’s crisis solved by the technology is greater than the perceived pain of adoption.”

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

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

In my experience, one of the most significant problems in software development is assuming. If you assume a method will passed the right parameter value, the method will fail. – Paul M. Duvall

Programming languages are like girlfriends: The new one is better because you are better. – Derek Sivers

The sooner we start coding fewer frameworks and more programs the sooner we’ll become better programmers. – Warped Java Guy Elementary Java Solutions

Starting a startup is hard, but having a 9 to 5 job is hard too, and in some ways a worse kind of hard. – Paul Graham The Future of Web Startups

In essence, let the market design the product. – Paul Graham The Future of Web Startups

A startup now can be just a pair of 22 year old guys. A company like that can move much more easily than one with 10 people, half of whom have kids. – Paul Graham The Future of Web Startups

Startups almost never get it right the first time. Much more commonly you launch something, and no one cares. Don’t assume when this happens that you’ve failed. That’s normal for startups. But don’t sit around doing nothing. Iterate. – Paul Graham How Not to Die

The key to performance is elegance, not battalions of special cases. – Jon Bentley and Doug McIlroy

You’ll spend far more time babysitting old technologies than implementing new ones. – Jason Hiner IT Dirty Secrets

To Iterate is Human, to Recurse, Divine. – James O. Coplien

No one hates software more than software developers. – Jeff Atwood Hanselminutes Podcast 74

I was a C++ programmer before I started designing Ruby. I programmed in C++ exclusively for two or three years. And after two years of C++ programming, it still surprised me. – Matz The Philosophy of Ruby

Good architecture is necessary to give programs enough structure to be able to grow large without collapsing into a puddle of confusion. – Douglas Crockford The Elements of JavaScript Style

Programming is difficult. At its core, it is about managing complexity. Computer programs are the most complex things that humans make. Quality is illusive and elusive. – Douglas Crockford The Elements of JavaScript Style

Code reuse is the Holy Grail of Software Engineering. – Douglas Crockford The Elements of JavaScript Style

The structure of software systems tend to reflect the structure of the organization that produce them. – Douglas Crockford The Elements of JavaScript Style

The definition of Hell is working with dates in Java, JDBC, and Oracle. Every single one of them screw it up. – Dick Wall CommunityOne 2007: Lunch with the Java Posse

I went to school to learn how to program software applications, which inevitably have bug defects. There was no course at my university on testing, debugging, profiling, or optimization. These things you have to learn on your own, usually in a tight deadline. – Juixe TechKnow

To most Java developers, Ruby/Rails is like a mistress. Ruby/Rails is young, new, and exciting; but eventually we go back to old faithful, dependable, and employable Java with some new tricks and idioms and we are the better programmer for it. – Juixe TechKnow

You might as well pay your customers 50K because they are just your QA. – Juixe TechKnow

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

Run this in Python:

import this

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

Here's a humorous, sarcastic one:

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.

Rick Cook, The Wizardry Compiled

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

Here is mine

Meet the deadline and we'll get another client!

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

"Code never lies, comments sometimes do"

Ron Jeffries said this once, someone else could have say it before.

link|flag
vote up 23 vote down

"There are only two hard problems in Computer Science: cache invalidation and naming things."

  • Phil Karlton
link|flag
show 1 more comment
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 3 vote down

Software with no bugs is obsolete

link|flag
vote up 49 vote down

If I had more time, I would have written a shorter letter.

Cicero

link|flag
1  
There is a nice collection at: dangerousintersection.org/2006/04/… – Thomas Bratt Jun 22 at 11:15
show 1 more comment
vote up 3 vote down

On LOC: Lines of code are only worth counting, when times as come to delete them.

Rephrased from Warren' answer.

link|flag
vote up 7 vote down

I don't know where it came from, but

2B | !2B, that's FF

link|flag
1  
You're very right. In this case, it's about the tiny bits :) – xtofl Jul 21 at 10:22
show 1 more comment
vote up 1 vote down

it works on my machine

link|flag
vote up 1 vote down

I believe the hard part of building software to be the specification, design, and testing of this conceptual construct, not the labor of representing it and testing the fidelity of the representation. We still make syntax errors, to be sure; but they are fuzz compared to the conceptual errors in most systems. If this is true, building software will always be hard. There is inherently no silver bullet.

From The mythical man-month

link|flag
vote up 1 vote down

Lisp programmers know the value of everything and the cost of nothing

link|flag
prev 1 7 8 9 10 11 21 next

Your Answer

Get an OpenID
or

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