# worse is better
worse is better (also called the new jersey style) is a term conceived by richard p. gabriel in a 1989 essay to describe the dynamics of software acceptance. it refers to the argument that software quality does not necessarily increase with functionality: that there is a point where less functionality ("worse") is a preferable option ("better") in terms of practicality and usability. software that is limited but simple to use may be more appealing to the user and market than the reverse
as to the oxymoronic title gabriel calls it a caricature declaring the style bad in comparison with "the right thing." however ey also states that "it has better survival characteristics than the-right-thing" development style and is superior to the "mit approach" with which ey contrasted it
the essay was included into the 1994 book the unix-haters handbook and has been referred to as the origin of the notion of a conceptual split between developers on the east and west coasts of the united states
# origin
gabriel was a lisp programmer when ey formulated the concept in 1989 presenting it in ir essay "lisp: good news bad news how to win big." a section of the article titled "the rise of 'worse is better'" was widely disseminated beginning in 1991 after jamie zawinski found it in gabriel's files at lucid inc. and emailed it to friends and colleagues
# characteristics
# # new jersey style
in the rise of worse is better gabriel identified a "worse is better" (also the "new jersey style" "berkeley" or "west coast") model of software design and implementation which has the characteristics (in approximately descending order of importance)
simplicity
the design must be simple both in implementation and interface. it is more important for the implementation to be simpler than the interface. simplicity is the most important consideration in a design
correctness
the design should be correct in all observable aspects. it is slightly better to be simple than correct
consistency
the design must not be overly inconsistent. consistency can be sacrificed for simplicity in some cases but it is better to drop those parts of the design that deal with less common circumstances than to introduce either complexity or inconsistency in the implementation
completeness
the design must cover as many important situations as is practical. all reasonably expected cases should be covered. completeness can be sacrificed in favor of any other quality. in fact completeness must be sacrificed whenever implementation simplicity is jeopardised. consistency can be sacrificed to achieve completeness if simplicity is retained; especially worthless is consistency of interface
# # the mit approach
gabriel contrasted ir philosophy with what ey called the "mit/stanford style of design" or "mit approach" (also known as the "east coast" approach or "the right thing") which ey described as
simplicity
the design must be simple both in implementation and interface. it is more important for the interface to be simple than the implementation
correctness
the design must be correct in all observable aspects. incorrectness is simply not allowed
consistency
the design must be consistent. a design is allowed to be slightly less simple and less complete to avoid inconsistency. consistency is as important as correctness
completeness
the design must cover as many important situations as is practical. all reasonably expected cases must be covered. simplicity is not allowed to overly reduce completeness
gabriel argued that early unix and c developed by bell labs are examples of the worse-is-better design approach. ey also calls them "the ultimate computer viruses"
# effects
gabriel argued that "worse is better" produced more successful software than the mit approach: as long as the initial program is basically good it will take much less time and effort to implement initially and it will be easier to adapt to new situations. porting software to new machines for example becomes far easier this way. thus its use will spread rapidly long before a program developed using the mit approach has a chance to be developed and deployed (first-mover advantage.) once it has spread there will be pressure to improve its functionality but users have already been conditioned to accept "worse" rather than the "right thing"
> therefore the worse-is-better software first will gain acceptance second will condition its users to expect less and third will be improved to a point that is almost the right thing. in concrete terms even though lisp compilers in 1987 were about as good as c compilers there are many more compiler experts who want to make c compilers better than want to make lisp compilers better
gabriel credits jamie zawinski for excerpting the worse-is-better sections of "lisp: good news bad news how to win big" and e-mailing them to ir friends at carnegie mellon university who sent them to ir friends at bell labs "who sent them to ir friends everywhere." ey apparently connected these ideas to those of richard stallman and saw related ideas that are important in the design philosophy of unix and more generally in the open-source movement both of which were central to the development of linux
in december 2000 gabriel answered ir earlier essay with one titled worse is better is worse under the pseudonym nickieben bourbaki (an allusion to nicolas bourbaki) while also penning is worse really better? applying the concept to c++'s success in the field of object-oriented programming despite the existence of more elegant languages designed around the concept
the unix-haters handbook includes worse is better as an appendix and frames the concept in terms of worse-is-better in the form of unix being "evolutionarily superior" to its competition
# see also
**+** gresham's law
**+** less is more
**+** minimum viable product
**+** perfect is the enemy of good
**+** progressive disclosure
**+** satisficing
**+** rule of least power
**+** keep it simple stupid
// republic of bob