Programming Quotes

29 readers
2 users here now

Every day, one and only one programming quote is posted by the bot.

The core idea behind restricting posting is to encourage discussion. One quote a day is hopefully a good way to do that.

If you want to submit a quote, please use the following Google Form: https://forms.gle/n9g34eSZ7GVA4mFD8

Credits

founded 1 year ago
MODERATORS
26
10
Quality (programming.dev)
submitted 1 year ago by [email protected] to c/[email protected]
 
 

Quality is never an accident; it is always the result of intelligent effort.
--John Ruskin

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

27
 
 

Good programmers use their brains, but good guidelines save us having to think out every case.
--Francis Glassborow

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

28
 
 

Software and cathedrals are much the same. First we build them, then we pray.
--Sam Redwine

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

29
 
 

I couldn't resist the temptation to put in a null reference, simply because it was so easy to implement. This has led to innumerable errors, vulnerabilities, and system crashes, which have probably caused a billion dollars of pain and damage in the last forty years.
--Tony Hoare

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

30
 
 

Let us change our traditional attitude to the construction of programs: Instead of imagining that our main task is to instruct a computer what to do, let us concentrate rather on explaining to human beings what we want a computer to do.
--Donald E. Knuth

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

31
11
Moths (programming.dev)
submitted 1 year ago by [email protected] to c/[email protected]
 
 

Developers are drawn to complexity like moths to a flame, frequently with the same result.
--Neal Ford

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

32
 
 

Sometimes it is the people no one can imagine anything of who do the things no one can imagine.
--Alan Turing

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

33
8
Clever code (programming.dev)
submitted 1 year ago by [email protected] to c/[email protected]
 
 

Don't be (too) clever. My point was to discourage overly clever code because 'clever code' is hard to write, easy to get wrong, harder to maintain, and often no faster than simpler alternatives because it can be hard to optimize.
--Bjarne Stroustrup

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

34
 
 

The value of a prototype is in the education it gives you, not in the code itself.
--Alan Cooper

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

35
 
 

Mathematicians stand on each others' shoulders and computer scientists stand on each others' toes.
--Richard Hamming

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

36
 
 

The code you write makes you a programmer. The code you delete makes you a good one. The code you don't have to write makes you a great one.
--Mario Fusco

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

37
 
 

The last good thing written in C was Franz Schubert's Symphony Number 9.
-Erwin Dieterich

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

38
 
 

If you can get today’s work done today, but you do it in such a way that you can’t possibly get tomorrow’s work done tomorrow, then you lose.
--Martin Fowler

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

39
8
By accident (programming.dev)
submitted 1 year ago by [email protected] to c/[email protected]
 
 

The most likely way for the world to be destroyed, most experts agree, is by accident. That's where we come in; we're computer professionals. We cause accidents.
--Nathaniel S. Borenstein

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

40
9
No match (programming.dev)
submitted 1 year ago by [email protected] to c/[email protected]
 
 

A computer once beat me at chess, but it was no match for me at kick boxing.
--Emo Philips

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

41
 
 

The only truly secure system is one that is powered off, cast in a block of concrete and sealed in a lead-lined room with armed guards.
--Gene Spafford

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

42
 
 

There is an art to knowing where things should be checked and making sure that the program fails fast if you make a mistake. That kind of choosing is part of the art of simplification.
--Ward Cunningham

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

43
 
 

It is very hard to predict, especially the future.
--Niels Bohr (attributed to)

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

44
 
 

Telling a programmer there's already a library to do X is like telling a songwriter there's already a song about love.
--Pete Cordell

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

45
 
 

Never spend 6 minutes doing something by hand when you can spend 6 hours failing to automate it.
--Zhuowei Zhang

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

46
 
 

Beware of bugs in the above code; I have only proved it correct, not tried it.
--Donald Knuth

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

47
 
 

Being a young programmer today must be awful—you can choose 20 different programming languages, dozens of framework and operating systemsand you're paralyzed by choice. There was no paralysis of choice then. You just start doing it because the decision as to which language and things is just made—there's no thinking about what you should do, you just go and do it.
--Joe Armstrong

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

48
 
 

Optimism is an occupational hazard of programming: feedback is the treatment.
--Kent Beck

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

49
15
Any fool (programming.dev)
submitted 1 year ago by [email protected] to c/[email protected]
 
 

Any fool can write code that a computer can understand. Good programmers write code that humans can understand.
Martin Fowler

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

50
11
Reusability (programming.dev)
submitted 1 year ago by [email protected] to c/[email protected]
 
 

Before software can be reusable it first has to be usable.
--Ralph Johnson

More info
This post is created by a bot. If you want to contribute to this community, please take a look at the sidebar

view more: ‹ prev next ›