-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathservices.go
59 lines (57 loc) · 2.72 KB
/
services.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package website
type waste struct {
name string
description string
short string
image string
}
var wastes = []waste{
{
name: "Conflict",
description: "Conflicts reduce flow. Ranging from conflicting interests and priorities, all the way down to merge conflicts.",
short: "Conflicts reduce flow.",
image: "/static/work/cd-workshop/waste/conflict-title.png",
},
{
name: "Handover",
description: "Handovers cause loss of information and breaks in the flow. Handovers can happen between teams, tools and even team members.",
short: "Handovers cause loss of information and breaks in the flow.",
image: "/static/work/cd-workshop/waste/handover-title.png",
},
{
name: "Manual work",
description: "Manual work is prone to inconsistency and human error. Automation will be your friend.",
short: "Manual work is prone to inconsistency and human error.",
image: "/static/work/cd-workshop/waste/manual-work-title.png",
},
{
name: "Legacy",
description: "Previously developed processes, scripts or tools that are no longer compatible may need to be refactored, replaced or remade.",
short: "Previously developed processes, scripts or tools that are no longer compatible.",
image: "/static/work/cd-workshop/waste/legacy-title.png",
},
{
name: "Late discovery",
description: "Discovery of a flaw or fault in the process that forces you to return to a previous step. The later in the process, the higher the impact.",
short: "Discovery of a flaw or fault in the process that forces you to return to a previous step.",
image: "/static/work/cd-workshop/waste/late-discovery-title.png",
},
{
name: "Unplanned work",
description: "Any work that comes as a surprise for the team and needs to be done “ASAP”. This could be urgent bugs, scope creep or new requirements.",
short: "Any work that comes as a surprise for the team and needs to be done “ASAP”.",
image: "/static/work/cd-workshop/waste/unplanned-title.png",
},
{
name: "Queue",
description: "A break in the flow that is predictable and can be planned around. Examples are overloaded automation or process steps where “it's your turn”.",
short: "A break in the flow that is predictable and can be planned around.",
image: "/static/work/cd-workshop/waste/queue-title.png",
},
{
name: "Waiting",
description: "Waiting is when the break in the flow isn't predictable; waiting for other processes, teams, team members, resources to be available, etc. ",
short: "Waiting is when the break in the flow isn't predictable.",
image: "/static/work/cd-workshop/waste/waiting-title.png",
},
}