Reformat
This commit is contained in:
parent
72e51fbbc1
commit
b74dc2dcb2
|
@ -0,0 +1,7 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
indent_size = 2
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
indent_style = space
|
45
index.html
45
index.html
|
@ -1,6 +1,7 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
|
||||
|
@ -12,8 +13,9 @@
|
|||
|
||||
<!-- Theme used for syntax highlighted code -->
|
||||
<link rel="stylesheet" href="plugin/highlight/monokai.css">
|
||||
</head>
|
||||
<body>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="reveal">
|
||||
<div class="slides">
|
||||
<section>
|
||||
|
@ -34,7 +36,6 @@
|
|||
<h1>TOC</h1>
|
||||
<ol style="list-style: lower-roman;">
|
||||
<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>
|
||||
</ol>
|
||||
</section>
|
||||
|
@ -50,7 +51,8 @@
|
|||
<span class="fragment">with a service disruption as a consequence 😱💥</span>
|
||||
</li>
|
||||
<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
|
||||
<span class="fragment">and production still did boom 😱💥</span>
|
||||
</li>
|
||||
|
@ -74,20 +76,18 @@
|
|||
|
||||
* natural response to stress
|
||||
* acute stress: adrenaline
|
||||
* fight-or-flight response
|
||||
* prepares your body for action
|
||||
- fight-or-flight response
|
||||
- prepares your body for action
|
||||
* prolonged stress: cortisol
|
||||
* freeze response
|
||||
* restlessness
|
||||
* anxiety disorders, depression
|
||||
- freeze response
|
||||
- restlessness
|
||||
- anxiety disorders, depression
|
||||
* mortal enemy AND big ally
|
||||
* big ally if you learn to regulate the body response to stress hormones
|
||||
</section>
|
||||
- big ally if you learn to regulate the body response to stress hormones
|
||||
</section>
|
||||
|
||||
<section id="regulation">
|
||||
<section data-markdown style="font-family: 'Comic Sans','Comic Neue';">
|
||||
# Regulation
|
||||
# Regulation 🏗️
|
||||
|
||||
* Respond to stress hormones for your benefit
|
||||
- from *fight* to *take control*
|
||||
|
@ -96,25 +96,27 @@
|
|||
* Apply brakes
|
||||
* Control emotions
|
||||
</section>
|
||||
|
||||
<section data-markdown style="font-family: 'Comic Sans','Comic Neue';">
|
||||
# Emotional regulation in software delivery
|
||||
# Emotional regulation in software delivery 🏗️🏗️
|
||||
|
||||
* Apply brakes
|
||||
- Commit to an *acceptable* workload
|
||||
- Communicate about your needs
|
||||
|
||||
</section>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<section data-markdown style="font-family: 'Comic Sans','Comic Neue';">
|
||||
<section data-markdown>
|
||||
# Value stream mapping
|
||||
|
||||
How does the value stream through the organisation?
|
||||
</section>
|
||||
<section data-markdown>
|
||||
- Customer calls with a question about sending an invoice on Monday 1 May, Support Hero logs ticket BS-1234 in Jira
|
||||
- Product Owner, Tech Lead and Support Hero have triage meeting on Thursday 4 May, bug confirmed, priority 'Highest'
|
||||
- Customer calls with a question about sending an invoice on Monday 1 May, Support Hero logs ticket BS-1234 in
|
||||
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
|
||||
- Team has Sprint Planning meeting on Monday 8 May, commit to BS-1234 for 2 Story Points
|
||||
</section>
|
||||
|
@ -145,12 +147,13 @@
|
|||
hash: true,
|
||||
|
||||
// Learn about plugins: https://revealjs.com/plugins/
|
||||
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
|
||||
plugins: [RevealMarkdown, RevealHighlight, RevealNotes]
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
document.querySelectorAll('.slides section a[href^="http"]').
|
||||
forEach(a => a.setAttribute('target', '_blank'))
|
||||
</script>
|
||||
</body>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue