From f4072d20a16e26e81151b481220593da2f72d422 Mon Sep 17 00:00:00 2001
From: Christian Krause <christian.krause@idiv.de>
Date: Mon, 17 Feb 2020 15:33:16 +0100
Subject: [PATCH] simplifies motivation structure to flowchart

gitk was not a good vis
---
 .gitignore                                      |   5 +++--
 basics.html                                     |   7 ++++---
 ....png => motivation-draft-mess-half-size.png} | Bin
 ...draft_mess.png => motivation-draft-mess.png} | Bin
 img/motivation-structure.dot                    |  16 ++++++++++++++++
 5 files changed, 23 insertions(+), 5 deletions(-)
 rename img/{draft_mess_half_size.png => motivation-draft-mess-half-size.png} (100%)
 rename img/{draft_mess.png => motivation-draft-mess.png} (100%)
 create mode 100644 img/motivation-structure.dot

diff --git a/.gitignore b/.gitignore
index 7eb5a5d..cb3b59c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,10 @@
-paper.html
-paper.pdf
 img/git-remote-contributor.svg
 img/git-remote-maintainer.svg
 img/git-remote-solo.svg
 img/license-chooser.svg
+img/motivation-structure.svg
 img/motivation-throwaway-playground.svg
 img/staging-area.svg
+paper.html
+paper.pdf
 *.pdf
diff --git a/basics.html b/basics.html
index 5fbdf28..a7fa81f 100644
--- a/basics.html
+++ b/basics.html
@@ -117,7 +117,7 @@
             - statistics and R support @ iDiv since 2014
             - knows that kind of pain:
 
-            ![blah](img/draft_mess_half_size.png)
+            ![blah](img/motivation-draft-mess-half-size.png)
           </section>
 
           <section id="intro-about-you" data-markdown>
@@ -153,7 +153,7 @@
             ## motivation #1
             ### avoid mess
 
-            ![blah](img/draft_mess.png)
+            ![blah](img/motivation-draft-mess.png)
 
             notes:
             - who has seen such a mess?
@@ -165,11 +165,12 @@
             ## motivation #1
             ### want structure
 
-            ![blah](img/gitk-pretty-history.png)
+            ![blah](img/motivation-structure.svg)
 
             notes:
             - structure
             - who, when, why
+            - (and you can see how fast you are with git *joke*)
           </section>
 
           <section id="motivation-playground" data-markdown>
diff --git a/img/draft_mess_half_size.png b/img/motivation-draft-mess-half-size.png
similarity index 100%
rename from img/draft_mess_half_size.png
rename to img/motivation-draft-mess-half-size.png
diff --git a/img/draft_mess.png b/img/motivation-draft-mess.png
similarity index 100%
rename from img/draft_mess.png
rename to img/motivation-draft-mess.png
diff --git a/img/motivation-structure.dot b/img/motivation-structure.dot
new file mode 100644
index 0000000..19dd760
--- /dev/null
+++ b/img/motivation-structure.dot
@@ -0,0 +1,16 @@
+digraph {
+    node [shape = "box", style = "filled, rounded"]
+
+    subgraph clustermaster {
+        label = "master"
+
+        node [color = limegreen]
+
+        master4[label = "Dirk (today)\nupdates methods chapter", color = limegreen]
+        master3[label = "Christian (yesterday)\nfixes typos", color = darkorchid1]
+        master2[label = "Dirk (three days ago)\nadds methods chapter", color = limegreen]
+        master1[label = "...", color = grey]
+
+        master4 -> master3 -> master2 -> master1
+    }
+}
-- 
GitLab