1
0
Fork 0
This commit is contained in:
Dirk Nederveen 2023-05-19 20:08:46 +02:00
parent 72e51fbbc1
commit b74dc2dcb2
Signed by: dirk
GPG Key ID: 30C016E96E2219B8
2 changed files with 146 additions and 136 deletions

7
.editorconfig Normal file
View File

@ -0,0 +1,7 @@
root = true
[*]
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space

View File

@ -1,5 +1,6 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
@ -13,6 +14,7 @@
<!-- Theme used for syntax highlighted code --> <!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css"> <link rel="stylesheet" href="plugin/highlight/monokai.css">
</head> </head>
<body> <body>
<div class="reveal"> <div class="reveal">
<div class="slides"> <div class="slides">
@ -34,7 +36,6 @@
<h1>TOC</h1> <h1>TOC</h1>
<ol style="list-style: lower-roman;"> <ol style="list-style: lower-roman;">
<li><a href="#/deployment-anxiety-disorder">Deployment Anxiety Disorder</a></li> <li><a href="#/deployment-anxiety-disorder">Deployment Anxiety Disorder</a></li>
<li><a href="#/regulation">Regulation</a></li>
<li><a href="#/feedback-latency">Feedback latency</a></li> <li><a href="#/feedback-latency">Feedback latency</a></li>
</ol> </ol>
</section> </section>
@ -50,7 +51,8 @@
<span class="fragment">with a service disruption as a consequence 😱💥</span> <span class="fragment">with a service disruption as a consequence 😱💥</span>
</li> </li>
<li class="fragment">deployed code that you <em>did</em> trust <li class="fragment">deployed code that you <em>did</em> trust
<span class="fragment">that did boom anyway 😱💥</span></li> <span class="fragment">that did boom anyway 😱💥</span>
</li>
<li class="fragment">worked with an acceptance/staging environment <li class="fragment">worked with an acceptance/staging environment
<span class="fragment">and production still did boom 😱💥</span> <span class="fragment">and production still did boom 😱💥</span>
</li> </li>
@ -74,20 +76,18 @@
* natural response to stress * natural response to stress
* acute stress: adrenaline * acute stress: adrenaline
* fight-or-flight response - fight-or-flight response
* prepares your body for action - prepares your body for action
* prolonged stress: cortisol * prolonged stress: cortisol
* freeze response - freeze response
* restlessness - restlessness
* anxiety disorders, depression - anxiety disorders, depression
* mortal enemy AND big ally * mortal enemy AND big ally
* big ally if you learn to regulate the body response to stress hormones - big ally if you learn to regulate the body response to stress hormones
</section>
</section> </section>
<section id="regulation">
<section data-markdown style="font-family: 'Comic Sans','Comic Neue';"> <section data-markdown style="font-family: 'Comic Sans','Comic Neue';">
# Regulation # Regulation 🏗️
* Respond to stress hormones for your benefit * Respond to stress hormones for your benefit
- from *fight* to *take control* - from *fight* to *take control*
@ -96,25 +96,27 @@
* Apply brakes * Apply brakes
* Control emotions * Control emotions
</section> </section>
<section data-markdown style="font-family: 'Comic Sans','Comic Neue';"> <section data-markdown style="font-family: 'Comic Sans','Comic Neue';">
# Emotional regulation in software delivery # Emotional regulation in software delivery 🏗️🏗️
* Apply brakes * Apply brakes
- Commit to an *acceptable* workload - Commit to an *acceptable* workload
- Communicate about your needs - Communicate about your needs
</section> </section>
</section> </section>
<section> <section>
<section data-markdown style="font-family: 'Comic Sans','Comic Neue';"> <section data-markdown>
# Value stream mapping # Value stream mapping
How does the value stream through the organisation? How does the value stream through the organisation?
</section> </section>
<section data-markdown> <section data-markdown>
- Customer calls with a question about sending an invoice on Monday 1 May, Support Hero logs ticket BS-1234 in Jira - Customer calls with a question about sending an invoice on Monday 1 May, Support Hero logs ticket BS-1234 in
- Product Owner, Tech Lead and Support Hero have triage meeting on Thursday 4 May, bug confirmed, priority 'Highest' Jira
- Product Owner, Tech Lead and Support Hero have triage meeting on Thursday 4 May, bug confirmed, priority
'Highest'
- Product Owner and Tech Lead have backlog grooming meeting on Friday 5 May - Product Owner and Tech Lead have backlog grooming meeting on Friday 5 May
- Team has Sprint Planning meeting on Monday 8 May, commit to BS-1234 for 2 Story Points - Team has Sprint Planning meeting on Monday 8 May, commit to BS-1234 for 2 Story Points
</section> </section>
@ -153,4 +155,5 @@
forEach(a => a.setAttribute('target', '_blank')) forEach(a => a.setAttribute('target', '_blank'))
</script> </script>
</body> </body>
</html> </html>