simple

There are two ways of constructing a software design; one way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult.

-- SLB PYK: Hoare's 1980 ACM Turing Award lecture (alternate , original ).

KISS


Keep It Simple. A simple solution has elegance. It is the result of exacting effort to understand the real problem and is recognized by its compelling sense of rightness. I stress this point because it contradicts the conventional view that power increases with complexity. Simplicity provides confidence, reliability, compactness, and speed.

-- Charles Moore, in Starting Forth , by Leo Brodie

The Future of Computing: Logic or Biology (alternate ,alternate ), by Leslie Lamport, is a nice essay (ironic that this is by the guy who wrote LaTeX, of all things, but it's a good essay nonetheless).


Design Fragility , by Bob Colwell

  • Complexity breeds fragility.
  • Fragility breeds surprises.
  • Surprises are bad.

There's one kind of simplicity that I like to call simplexity. When you take something incredibly complex and try to wrap it in something simpler, you often just shroud the complexity. You don't actually design a truly simple system. And in some ways you make it even more complex, because now the user has to understand what was omitted that they might sometimes need. That's simplexity. So to me, simplicity has to be true, in the sense that the further down you go the simpler it gets. It shouldn't get more complicated as you delve down.

-- Delegates, Components, and Simplexity A Conversation with Anders Hejlsberg, Part III , by Bill Venners and Bruce Eckel

We have simple solutions, what we need are simple problems.

-- Benjamin Franklin

RS: Objection: But our problems are so frightfully complex... Reply: Well, then simplify them...


The mistake frequency of programmers and coders increases with the quantity of coding to be written. Short pieces of program can be written error-free, whereas long routines will inevitably contain mistakes.

-- Grace Murray Hopper, 1958

Programming languages should be designed not by piling feature on top of feature, but by removing the weaknesses and restrictions that make additional features appear necessary.

-- Revised5 Report on the Algorithmic Language Scheme

Personally, I think the dodekalogue hits this mark much better than (at least the later) Scheme reports.

TCV: To be fair to the Schemers, there are many who feel that the latest Scheme standard (R6RS) went somewhat against this grain of simplicity. The ratification results page [L1 ] contains some interesting rationales from both sides.)


The above can be taken as a paraphrase of Antoine de Saint-Exupery:

Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.


dbohdan 2015-09-09: The talk Simple Made Easy (transcript ) by Rich Hickey of Clojure fame is relevant here. It pays to not confuse the simple with the merely easy.