summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Kerr <dwmkerr@gmail.com>2020-08-26 17:14:25 +0800
committerGitHub <noreply@github.com>2020-08-26 17:14:25 +0800
commit30008f11d5bb6f3dbf6467835ba029a069e5a116 (patch)
tree925c61af30b38291b5790e4d2c049b7632309a9b
parent442a63aab59656b6ecc44f459fa9a1ac93961c65 (diff)
parent2c29ebe1b6133a04b170f83628b529224bacf690 (diff)
Merge pull request #292 from puremana/two-pizza-rule
Two pizza rule and adding complete graph illustration
-rw-r--r--README.md12
-rw-r--r--images/complete_graph.pngbin0 -> 51241 bytes
2 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 42cd619..eb149ba 100644
--- a/README.md
+++ b/README.md
@@ -592,6 +592,18 @@ The Spotify Model also popularises the concepts of Tribes, Guilds, Chapters, whi
Members of the organisation have described that the actual meaning of these groups changes, evolves and is an on-going experiment. The fact that the model is a _process in motion_, rather than a fixed model continues to lead to varying interpretations of the structure, which may be based on presentations given by employees at conferences. This means 'snapshots' may be 're-packaged' by third parties as a _fixed structure_, with the fact that the model is dynamic being lost.
+### Two Pizza Rule
+
+> If you can't feed a team with two pizzas, it's too large.
+>
+> (Jeff Bezos)
+
+Jeff Bezos believes that regardless of the size of the company, teams should be no larger than what two pizzas can feed. This belief is rooted in the fact that as the team size increases linearly, the links between people grow exponentially; thus the cost of coordinating and communicating also grows exponentially.
+
+The number of links between people can be expressed as `n(n-1)/2` where n = number of people.
+
+<img width="200px" alt="Complete graph; Links between people" src="./images/complete_graph.png" />
+
### Wadler's Law
[Wadler's Law on wiki.haskell.org](https://wiki.haskell.org/Wadler's_Law)
diff --git a/images/complete_graph.png b/images/complete_graph.png
new file mode 100644
index 0000000..65a6928
--- /dev/null
+++ b/images/complete_graph.png
Binary files differ