This repository was archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbooks.ts
270 lines (267 loc) · 8.45 KB
/
books.ts
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
interface Toc {
title: string;
link?: string;
subsections?: Toc[];
}
const tocEn = [
{
title: "Table of contents",
link: "https://eventuallycoding.com/en/2023/02/impactful-software-engineering",
subsections: [
{
title: "Introduction - Being in the room",
link: "https://eventuallycoding.com/en/2023/03/being-in-the-room",
},
],
},
{
title: "Individual Impact",
link: "https://eventuallycoding.com/en/2023/03/individual-impact",
subsections: [
{
title: "It's not just a matter of technique",
link: "https://eventuallycoding.com/en/2023/02/not-only-about-technique",
},
{
title: "Measure everything",
link: "https://eventuallycoding.com/en/2023/02/measuring-everything",
},
{
title: "Choose your battles",
link: "https://eventuallycoding.com/en/2023/03/choose-your-battles",
},
{
title: "Accepting boredom",
link: "https://eventuallycoding.com/en/2023/03/accept-boredom",
},
{
title: "Tech Marketing",
link: "https://eventuallycoding.com/en/2023/05/tech-marketing",
},
],
},
{
title: "Engineering Leadership",
link: "https://eventuallycoding.com/en/2023/05/engineering-leadership",
subsections: [
{
title: "Soft versus hard leadership",
},
{
title: "Alignment, autonomy and context",
link: "https://eventuallycoding.com/en/2023/05/alignment-autonomy-context",
},
{
title: "Create a technical vision",
},
{
title: "Building 10x teams",
},
{
title: "Anti-patterns",
},
],
},
{
title: "Engineering Organization",
subsections: [
{
title: "Should we measure performance of engineering teams?",
link: "https://medium.com/nerds-malt/should-we-measure-the-performance-of-an-engineering-team-e461ccff1cd4",
},
{
title: "Engineering culture and agility",
},
{
title: "Continuous discovery",
},
{
title: "The benefits of constraints",
link: "https://eventuallycoding.com/en/2022/09/working-with-constraints",
},
{
title: "Fighting complexity",
link: "https://eventuallycoding.com/en/2023/07/fighting-complexity",
},
{
title: "Estimation and planning within impactful teams",
link: "https://eventuallycoding.com/en/2023/10/planning-efficient-teams",
},
{
title: "Team engineering maturity model",
},
],
},
{
title: "Engineering and Discovery",
subsections: [
{
title: "The trio PM/UX/Engineering",
},
{
title: "The role of engineering team in discovery",
},
{
title: "Being the 10th person",
},
{
title: "Being an explorer",
},
],
},
{
title: "Engineering and Delivery",
subsections: [
{
title: "The role of engineering team in delivery",
},
{
title: "Tech Lead Vs/And Engineering Manager",
link: "https://eventuallycoding.com/en/2024/01/tech-lead-engineering-manager",
},
{
title: "What does an engineering manager do?",
link: "https://medium.com/nerds-malt/what-does-an-engineering-manager-bae1929850ba",
},
{
title: "Claim your independence",
},
{
title: "Buy or build?",
},
],
},
];
const tocFr = [
{
title: "Table des matières",
link: "https://eventuallycoding.com/2023/02/impactful-software-engineering",
subsections: [
{
title: "Introduction - Amenez des ingénieurs dans la salle",
link: "https://eventuallycoding.com/2023/03/amenez-ingenieurs-dans-la-salle",
},
],
},
{
title: "L'impact individuel",
link: "https://eventuallycoding.com/2023/03/individual-impact",
subsections: [
{
title: "Ce n'est pas juste une question de technique",
link: "https://eventuallycoding.com/2023/02/not-only-about-technique",
},
{
title: "Tout mesurer",
link: "https://eventuallycoding.com/2023/02/measuring-everything",
},
{
title: "Choisissez vos batailles",
link: "https://eventuallycoding.com/2023/03/choisissez-vos-batailles",
},
{
title: "Accepter l'ennui",
link: "https://eventuallycoding.com/2023/03/accept-boredom",
},
{
title: "Tech Marketing",
link: "https://eventuallycoding.com/2023/05/tech-marketing",
},
],
},
{
title: "Engineering Leadership",
link: "https://eventuallycoding.com/2023/05/engineering-leadership",
subsections: [
{
title: "Soft versus hard leadership",
},
{
title: "Alignement, autonomie et contexte",
link: "https://eventuallycoding.com/2023/05/alignment-autonomy-context",
},
{
title: "Créer une vision technique",
},
{
title: "Construire des équipes 10x",
},
{
title: "Anti-patterns",
},
],
},
{
title: "Engineering Organization",
subsections: [
{
title: "Faut-il mesurer la performance d’une équipe engineering ?",
link: "https://eventuallycoding.com/2021/10/07/faut-il-mesurer-la-performance-dune-equipe-engineering",
},
{
title: "Culture engineering et agilité",
},
{
title: "Continuous discovery",
},
{
title: "Travailler avec des contraintes",
link: "https://eventuallycoding.com/2022/09/travailler-avec-contraintes",
},
{
title: "Combattre la complexité",
link: "https://eventuallycoding.com/2023/07/fighting-complexity",
},
{
title: "Estimation et planification dans les équipes à impact",
link: "https://eventuallycoding.com/2023/10/planning-efficient-teams",
},
{
title: "Modèle de maturité des équipes engineering",
},
],
},
{
title: "Engineering et Discovery",
subsections: [
{
title: "Le trio PM/UX/Engineering",
},
{
title: "Le rôle de l'engineering dans la discovery",
},
{
title: "Devenir explorateur(rice)",
},
],
},
{
title: "Engineering et Delivery",
subsections: [
{
title: "Le rôle de l'Engineering dans la delivery",
},
{
title: "Tech Lead Vs/et Engineering Manager",
link: "https://eventuallycoding.com/2024/01/tech-lead-engineering-manager",
},
{
title: "Que fait un engineering Manager?",
link: "https://eventuallycoding.com/2022/01/31/que-fait-un-engineering-manager",
},
{
title: "Réclamez votre indépendance",
},
{
title: "Buy or build?",
},
],
},
];
const books: { [key: string]: { [key: string]: Toc[] } } = {
impactfulSoftwareEngineering: {
en: tocEn,
fr: tocFr,
},
};
export default books;