summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Kerr <dwmkerr@gmail.com>2019-02-28 23:31:38 +0800
committerDave Kerr <dwmkerr@gmail.com>2019-02-28 23:31:38 +0800
commit5aacda2ff8ba52779f87357c2bf0da17786852d4 (patch)
tree3ab252ebedef88da314a1207d10848dbb1134be9
parent5c8828030a5309124e321e0914c0a83d70da0b8b (diff)
feat: parkinson's law
Closes #15.
-rw-r--r--README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
index 077db6b..9005a14 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,7 @@ Laws, Theories, Principles and Patterns that developers will find useful.
* [Brooks's Law](#brookss-law)
* [Conway's Law](#conways-law)
* [Hofstadter's Law](#hofstadters-law)
+ * [Parkinson's Law](#parkinsons-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 Unix Philosophy](#the-unix-philosophy)
@@ -66,6 +67,20 @@ See also: 'The Spotify Model'.
You might hear this law referred to when looking at estimates for how long something will take. It seems a truism in software development that we tend to not be very good at accurately estimating how long something will take to deliver.
+### Parkinson's Law
+
+[Parkinson's Law on Wikipedia](https://en.wikipedia.org/wiki/Parkinson%27s_law)
+
+> Work expands so as to fill the time available for its completion.
+
+In it's original context, this Law was based on studies of bureaucracies. It may be pessimistically applied to software development initiatives, the theory being that teams will be inefficient until deadlines near, then rush to complete work by the deadline, thus making the actual deadline somewhat arbitrary.
+
+If this law were combined with [Hofstadter's Law](#hofstadters-law), an even more pessimistic viewpoint is reached - work will expand to fill the time available for it's completion and *still take longer than expected*.
+
+See also:
+
+- [Hofstadter's Law](#hofstadters-law)
+
### The Law of Conservation of Complexity (Tesler's Law)
[The Law of Conservation of Complexity on Wikipedia](https://en.wikipedia.org/wiki/Law_of_conservation_of_complexity)