-
Notifications
You must be signed in to change notification settings - Fork 48
/
dict.js
144 lines (141 loc) · 3.66 KB
/
dict.js
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
const dict = {
"phrase": [
"As a {{role}}, I want to {{verb}} {{noun}} so that I can {{verb}} {{adjective}} {{noun}} to {{verb}} {{adjective}} {{noun}}.",
"We're Hiring! Are you our next {{adjective}} {{role}}? You will create {{adjective}} {{noun}} and work together with our {{adjective}} {{role}}.",
"Aww crap, our {{adjective}} {{role}} messed up the {{adjective}} {{noun}} again. Now we are blocked! Please {{verb}} the {{noun}} so we can meet our sprint goal.",
"HR announced that one {{adjective}} {{role}} didn't {{verb}} the {{noun}}. Therefore his/her contract has been terminated.",
"CTO believes {{noun}} is the new hot thing. Therefore she hired 200 new {{adjective}} {{role}}s to implement it within the company.",
"Dear {{role}}, thank you for your email. I wanted to get back to you about that \"{{adjective}} {{noun}}\" you were talking about. Would you mind having a coffee with me and {{role}}?",
"I haven't seen our {{adjective}} {{role}} recently. Is he on vacation again? He needs to finish the {{adjective}} {{noun}} together with the {{adjective}} {{role}}."
],
"role": [
"Product Owner",
"Developer",
"Scrum Master",
"Stakeholder",
"Release Train Engineer",
"Product Manager",
"Jira Engineer",
"\"DevOps\" guy",
"10x Engineer",
"Developer Advocate",
"Enterprise Architect",
"Vendor Management",
"CTO",
"CEO",
"Agile Coach",
],
"noun": [
"agile",
"sprint",
"SAFe",
"comfagile",
"scrum",
"retrospective",
"feature",
"milestone",
"planning",
"PI",
"review",
"SoDa",
"Software Development Agile",
"Burndown Chart",
"increment",
"kanban",
"task",
"mindset",
"backlog",
"user stories",
"burn down",
"LESS",
"iteration",
"commit",
"freaky friday",
"controversial",
"misalignment",
"Shane",
"Lean",
"story point",
"Feedback",
"DevOps",
"Agile Style Script (ASS)",
"Agile Cyborg Security (ACS)",
"Fist of Five",
"Time to Market",
"daily standup",
"deadline",
"management",
"KISS",
"communication",
"scrum board",
"Jira",
"deployment",
"CI/CD",
"prod Deployment",
"dev Environment",
"Metaverse",
"big data",
"AI",
"MVP",
"silo",
"outcome",
"velocity",
"planning poker",
"vision",
"magic estimation",
"timebox",
"DoD",
"product roadmap",
"sprint boundary",
"scrum values",
"crypto",
"web3",
"NFTs",
"Chat GPT",
],
"verb": [
"review",
"revel",
"visualize",
"monitor",
"extrapolate",
"improve",
"improvise",
"adapt",
"overcome",
"generate",
"randomize",
"mitigate",
"overcommit",
"increase",
"deliver",
],
"adjective": [
"lean",
"fast",
"modern",
"stupid",
"awesome",
"ugly",
"attractive",
"bald",
"beautiful",
"elegant",
"fit",
"angry",
"clumsy",
"grumpy",
"huge",
"massive",
"handsome",
"skinny",
"lazy",
"under-resourced",
"goal-oriented",
"time-boxed",
"cross-functional",
"self-organized",
"releasable",
]
}
module.exports = dict