vote up 471 vote down star
773

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

627 Answers

prev 1 13 14 15 16 17 21 next
vote up 3 vote down

Reiser, a French drawer once wrote this little chat :

  • Today's computers are amazing. Then can perform 20 billion calculations a second, making only one mistake every 10 billion calculations !

  • 2 screw up a second, so that's progress ?

link|flag
vote up 3 vote down

Some OOP jokes:


Q: What is the difference between an object methodologist and a terrorist?
A: You can negotiate with the terrorist.
From comp.object:
Q: How many object programmers does it take to screw in a lightbulb?
A: None. You just send a change bulb message to the socket object!
Have you hear they are developing an OO version of COBOL? It's called "ADD ONE TO COBOL"
This is an object-oriented system: if we change anything, the users object.
// Definition of a Software professional in C++:

class cSoftwareProfessional
{
    private:
        double salary;
        long   lunches;
        float  jobs;
        char   unstable;
        void   work;

    private:
        UpdateSkills();
        DownloadPictures();
        ProcessH1();
        GetVisa();

    public:
        PaintTheManagers();
        FTP(); // FTP: Full Time Pass
        SendMails();
        ReceiveMails();
        Send(Pictures);
        Send(Jokes);
};
link|flag
vote up 3 vote down

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

-- Watts Humphrey

link|flag
vote up 3 vote down

Think of it this way: threads are like salt, not like pasta. You like salt, I like salt, we all like salt. But we eat more pasta.

-- Larry McVoy

from kernelnewbies fortune cookie

link|flag
vote up 3 vote down

We had a good one recently from one of our developers on staff:

If our customers wanted a product that worked that way, tell them to purchase a product that works that way.

I like it because it speaks towards the never ending list of requests from our customers, and how some customers have EXACTLY the opposite opinion of how another customer likes our software to work.

But without those picky customers, we wouldn't have a job... oh well...

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

My all time favourite adaptation of Shakespeare:

0x2B || !0x2B

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

One Page Principle: A specification that will not fit on one page of 8.5x11 inch paper cannot be understood. -- Mark Ardis

link|flag
vote up 3 vote down

It's difficult to express the sorrow of losing code that you spent hours on, simply because you forgot to save...

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

j++; // increment j

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

Don't use web services to transfer data between databases located in the same room.

Some of the architects after realising failure of his provided architecture.

link|flag
vote up 3 vote down

Here are a couple that aren't directly programming-related but fit nicely anyway :

I love deadlines, I love the whooshing noise they make as they go by.

Douglas Adams

This one is of unknown origin but I find it funny:

Jesus saves but only Buddha makes incremental backups.

This one really isn't programming related, but programmers certainly know what it means anyway:

Writing about music is like dancing about architecture.

Frank Zappa

Then you think about that pointy haired boss, or your lost job, or your ailing startup and you get this one for you :

Dope will get you through times of no money better than money will get you through times of no dope.

Freewheelin' Franklin

link|flag
vote up 3 vote down

Application written in Java is Platform independent but Version dependent

This quote came from our Manager because Java is not backward compatible and so Application running on 1.5 needs to be port at client side on java 1.5 only and if it is ported on java 1.6 than it would not run properly and would get some wierd things happening.

link|flag
vote up 3 vote down

“Computers are useless. They can only give you answers.” (Pablo Picasso)

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

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

link|flag
vote up 3 vote down

Nihilism:

while (true) { 
    return null;
}
link|flag
vote up 3 vote down

"It compiles. Ship it!" -- anon.

"People who find Wiki-markup too difficult to use and need a WYSIWYG-editor shouldn't be using a Wiki in the first place." -- me

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

"The programmer, like the poet, works only slightly removed from pure thought-stuff. He builds his castles in the air, from air, creating by exertion of the imagination. Few media of creation are so flexible, so easy to polish and rework, so readily capable of realizing grand conceptual structures."

— Frederick P. Brooks Jr.

link|flag
vote up 3 vote down

UNIX is simple. It just takes a genius to understand it's simplicity.

-- Dennis Ritchie

link|flag
vote up 3 vote down

"Any sufficiently advanced bug is indistinguishable from a feature." - Carl Franklin

link|flag
vote up 3 vote down

It can scarcely be denied that the supreme goal of all theory is to make the irreducible basic elements as simple and as few as possible without having to surrender the adequate representation of a single datum of experience. -Albert Einstein

This has been requoted as "Everything should be made as simple as possible, but no simpler." but I've never seen where he was actually been documented as saying exactly that.

There are two facets of this quote that relate to software development and maintaining a balance between complexity and simplicity.

The key thing not to miss is "as simple as possible" or "without having to surrender the adequate representation of a single datum" means that sacrifices should not be made in the name of simplification which would result in over-simplification.

Never make a solution more complex because it feels more clever. Sometimes in the face of a deadline, it could also mean don't make something more complex trying to satisfy non-existent "what if" requirements. The "What if our [insert software used by 10 internal staff] goes commercial and we need to provide it in 20 different languages?" Reusability and generalization can be good, but there is a sweet spot of balance between the extra effort becoming wasteful, and the lack of effort creating future challenges.

There are those developers who sometimes don't completely feel out all the scenarios their software will encounter, and then there is the flip side where you have overly passionate developers that sometimes make things far more complex than necessary. Both of which have a lot to gain from this quote.

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

"It depends" is the answer to all good software engineering questions, but to be a good software engineer, you should know on what it depends, and why.

-- User:hexium, on StackOverflow.

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

"Rob say 'Code Monkey very diligent, but his output stinks. His code not functional or elegant, what does code monkey think' _codeMonkey think 'Maybe manager Rob want to write gosh darn log-in page him self."

Jonathan Coulton - Code Monkey. (song)

"Aperture Science, we do what we must because we can. For the good of all of us, except the ones who are dead. But there's no sense crying over every mistake, you just keep on trying 'till you run out of cake."

Jonathan Coulton & GlaDOS - Still Alive (song)

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

There are 10 kinds of people -- those who understand binary and those who do not.

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

Your Answer

Get an OpenID
or

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