summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Kerr <dwmkerr@gmail.com>2018-10-08 23:55:26 +0800
committerGitHub <noreply@github.com>2018-10-08 23:55:26 +0800
commit8940d720667538c6ef6bb079b545559b6621d204 (patch)
tree00c739ef2fd1c9eceeb87871cb953eb8b9b3bc56
parent9c3148ea950d21de91a54a1984a87ffd302a005f (diff)
parent10f8e3d32d6deb5ab40d4d90d8d291e94a950fda (diff)
Merge pull request #16 from dwmkerr/feat/law-of-triviality
feat: the law of triviality
-rw-r--r--README.md14
1 files changed, 12 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9c8b375..000ba87 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,4 @@
-# hacker-laws
-
+# hacker-laws
Laws, Theories, Patterns and Ideas that all developers should know about!
<!-- vim-markdown-toc GFM -->
@@ -9,6 +8,7 @@ Laws, Theories, Patterns and Ideas that all developers should know about!
* [⭐⭐ Conway's Law](#-conways-law)
* [⭐ Hofstadter's Law](#-hofstadters-law)
* [⭐⭐ The Law of Conservation of Complexity (Tesler's Law)](#-the-law-of-conservation-of-complexity-teslers-law)
+ * [⭐The Law of Triviality](#the-law-of-triviality)
* [⭐⭐ The Robustness Principle (Postel's Law)](#-the-robustness-principle-postels-law)
* [⭐⭐⭐ The Unix Philosophy](#-the-unix-philosophy)
* [⭐The Spotify Model](#the-spotify-model)
@@ -54,6 +54,16 @@ Some complexity in a system is 'inadvertent'. It is a consequence of poor struct
One interesting element to this law is the suggestion that even by simplifying the entire system, the intrinsic complexity is not reduced, it is _moved to the user_, who must behave in a more complex way.
+### ⭐The Law of Triviality
+
+[The Law of Triviality on Wikipedia](https://en.wikipedia.org/wiki/Law_of_triviality)
+
+This law suggests that managers will give far more time and attention to trivial or cosmetic issues rather than serious and substantial ones.
+
+The common fictional example used is that of a committee approving plans for nuclear power plant, who spend the majority of their time discussing the structure of the bike shed, rather than the far more important design for the power plant itself. It can be difficult to give valuable input on discussions about very large, complex topics without a high degree of subject matter expertise or preparation. However, people want to be seen to be contributing valuable input. Hence a tendency to focus too much time on small details, which can be reasoned about easily, but are not necessarily of particular importance.
+
+The fictional example above led to the usage of the term 'Bike Shedding' as an expression for wasting time on trivial details.
+
### ⭐⭐ The Robustness Principle (Postel's Law)
[The Robustness Principle on Wikipedia](https://en.wikipedia.org/wiki/Robustness_principle)