-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
584 lines (512 loc) · 17.1 KB
/
index.html
File metadata and controls
584 lines (512 loc) · 17.1 KB
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>David van der Zande — Technical Program Manager</title>
<meta name="description" content="Technical Program Manager on Alexa projects with a focus on AI, automation, and internal tooling.">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,600;1,600&display=swap" rel="stylesheet">
<style>
:root {
--bg: #ffffff;
--surface: #f9fafb;
--surface-hover: #f3f4f6;
--ink: #111827;
--muted: #6b7280;
--accent: #2563eb;
--accent-hover: #1d4ed8;
--line: #e5e7eb;
--max-width: 900px;
--spacing-page: 2rem;
}
/* Dark Mode Preference */
@media (prefers-color-scheme: dark) {
:root {
--bg: #111827;
--surface: #1f2937;
--surface-hover: #374151;
--ink: #f9fafb;
--muted: #9ca3af;
--accent: #60a5fa;
--accent-hover: #93c5fd;
--line: #374151;
}
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
scroll-behavior: smooth;
}
body {
background: var(--bg);
color: var(--ink);
font-family: 'Inter', system-ui, -apple-system, sans-serif;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
/* Layout */
.container {
max-width: var(--max-width);
margin: 0 auto;
padding: 0 var(--spacing-page);
}
/* Navigation */
nav {
position: sticky;
top: 0;
background: rgba(var(--bg), 0.8);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid var(--line);
z-index: 100;
padding: 1rem 0;
}
.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo {
font-weight: 700;
font-size: 1.1rem;
color: var(--ink);
font-family: 'Lora', serif;
}
.nav-links {
display: flex;
gap: 1.5rem;
}
.nav-links a {
color: var(--muted);
font-size: 0.9rem;
font-weight: 500;
}
.nav-links a:hover {
color: var(--ink);
}
/* Hero */
.hero {
padding: 6rem 0 4rem;
}
.hero h1 {
font-family: 'Lora', serif;
font-size: 3rem;
line-height: 1.1;
margin-bottom: 1rem;
color: var(--ink);
}
.hero-role {
font-size: 1.25rem;
color: var(--muted);
margin-bottom: 2rem;
font-weight: 400;
}
.hero-bio {
font-size: 1.1rem;
color: var(--muted);
max-width: 600px;
margin-bottom: 2.5rem;
}
.hero-actions {
display: flex;
gap: 1rem;
}
.btn {
display: inline-flex;
align-items: center;
padding: 0.6rem 1.2rem;
border-radius: 6px;
font-weight: 500;
font-size: 0.95rem;
transition: all 0.2s;
}
.btn-primary {
background: var(--ink);
color: var(--bg);
}
.btn-primary:hover {
background: var(--accent);
color: white;
transform: translateY(-1px);
}
.btn-outline {
border: 1px solid var(--line);
color: var(--ink);
}
.btn-outline:hover {
border-color: var(--accent);
color: var(--accent);
}
/* Sections */
section {
padding: 4rem 0;
border-bottom: 1px solid var(--line);
}
section:last-of-type {
border-bottom: none;
}
.section-title {
font-family: 'Lora', serif;
font-size: 1.75rem;
margin-bottom: 2.5rem;
color: var(--ink);
}
/* Experience Cards */
.experience-list {
display: flex;
flex-direction: column;
gap: 3rem;
}
.job-card {
display: grid;
grid-template-columns: 200px 1fr;
gap: 2rem;
}
.job-meta {
font-size: 0.9rem;
}
.job-dates {
color: var(--muted);
margin-bottom: 0.5rem;
font-feature-settings: "tnum";
}
.job-company {
font-weight: 600;
color: var(--ink);
}
.job-location {
color: var(--muted);
}
.job-content h3 {
font-size: 1.2rem;
margin-bottom: 0.5rem;
color: var(--ink);
}
.job-content ul {
list-style: none;
padding: 0;
}
.job-content li {
position: relative;
padding-left: 1.25rem;
margin-bottom: 0.75rem;
color: var(--muted);
}
.job-content li::before {
content: "—";
position: absolute;
left: 0;
color: var(--accent);
}
.job-content li strong {
color: var(--ink);
font-weight: 600;
}
/* Skills Grid */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
/* Projects Grid */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.project-card {
background: var(--surface);
padding: 1.5rem;
border-radius: 8px;
border: 1px solid var(--line);
transition: transform 0.2s, border-color 0.2s;
}
.project-card:hover {
transform: translateY(-2px);
border-color: var(--accent);
}
.project-title {
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--ink);
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
}
.project-metric {
font-size: 0.75rem;
background: var(--accent);
color: white;
padding: 0.2rem 0.6rem;
border-radius: 99px;
white-space: nowrap;
font-weight: 500;
}
.project-desc {
font-size: 0.95rem;
color: var(--muted);
line-height: 1.5;
}
.skill-category h3 {
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 1rem;
color: var(--muted);
}
.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.tag {
background: var(--surface);
border: 1px solid var(--line);
padding: 0.4rem 0.8rem;
border-radius: 99px;
font-size: 0.9rem;
color: var(--ink);
}
/* Footer */
footer {
padding: 4rem 0;
text-align: center;
color: var(--muted);
font-size: 0.9rem;
}
/* Mobile */
@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.job-card { grid-template-columns: 1fr; gap: 0.5rem; }
.job-meta { margin-bottom: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: baseline; }
.job-dates { margin-bottom: 0; }
}
</style>
</head>
<body>
<nav>
<div class="container nav-content">
<div class="nav-logo">David van der Zande</div>
<div class="nav-links">
<a href="#about">About</a>
<a href="#experience">Experience</a>
<a href="#projects">Tools</a>
<a href="#skills">Skills</a>
<a href="#contact">Contact</a>
</div>
</div>
</nav>
<main class="container">
<section id="about" class="hero">
<h1>Technical Program Manager <br><span style="color:var(--muted)">focused on AI & Automation</span></h1>
<div class="hero-role">Currently at Amazon Alexa • Munich, Germany</div>
<p class="hero-bio">
I handle scoping, planning, and coordination with Product, Engineering, and Research teams, and build data and automation tools in Python and AWS to accelerate delivery.
</p>
<div class="hero-actions">
<a href="mailto:davidzande@icloud.com" class="btn btn-primary">Get in Touch</a>
<a href="https://linkedin.com/in/david-zande" target="_blank" class="btn btn-outline">LinkedIn</a>
</div>
</section>
<section id="experience">
<h2 class="section-title">Experience</h2>
<div class="experience-list">
<article class="job-card">
<div class="job-meta">
<div class="job-dates">Jun 2022 – Present</div>
<div class="job-company">Amazon Alexa</div>
<div class="job-location">Munich, Germany</div>
</div>
<div class="job-content">
<h3>Project Manager (Technical)</h3>
<ul>
<li><strong>Led delivery & onboarding of Alexa Preview programs</strong> for 3,000+ testers; managed technical requirements and cross-functional coordination for multiple EU launches.</li>
<li>Built and shipped <strong>internal automation and insights tools</strong> that cut manual effort by about <strong>80%</strong> and accelerated operations across global teams.</li>
<li>Developed a <strong>Claude (AWS Bedrock)</strong> tool in Python to analyze 20k+ multilingual customer feedback.</li>
<li><strong>Managed cross-functional collaboration</strong> between UX research, QA, and engineering; drove adoption of automation frameworks and operational excellence.</li>
<li>Owned the internal <strong>Automation Hub</strong>, creating documentation and enablement materials to scale adoption across global teams.</li>
</ul>
</div>
</article>
<article class="job-card">
<div class="job-meta">
<div class="job-dates">Jun 2021 – Jun 2022</div>
<div class="job-company">WIP Renewable Energies</div>
<div class="job-location">Munich, Germany</div>
</div>
<div class="job-content">
<h3>Project Manager</h3>
<ul>
<li><strong>Coordinated EU-funded renewable energy projects</strong> from planning through reporting; managed timelines, risks, and partner communication across several EU member states.</li>
<li>Owned day-to-day delivery for work packages, aligning technical workstreams (modelling, data collection) with grant requirements and stakeholder expectations.</li>
<li>Built project websites and communication materials to support dissemination, and consolidated research outputs into clear summaries for non-technical audiences.</li>
<li>Delivered market and policy data analysis to inform new proposal ideas and internal decisions on which initiatives to pursue.</li>
</ul>
</div>
</article>
<article class="job-card">
<div class="job-meta">
<div class="job-dates">Jun 2020 – Dec 2020</div>
<div class="job-company">HortiPower</div>
<div class="job-location">Netherlands</div>
</div>
<div class="job-content">
<h3>Data Science Consultant</h3>
<ul>
<li><strong>Data science & ML consultant</strong> on dynamic lighting for vertical farming, using machine learning and computer vision to optimise growth conditions.</li>
<li>Worked with agronomists and engineers to translate crop and lighting requirements into measurable KPIs and data collection plans.</li>
<li>Prototyped models and analysis pipelines on sensor and image data, and summarised findings into actionable recommendations for product and engineering teams.</li>
<li>Advised on data strategy and use of cloud services for storing, processing, and accessing sensor and image data for future experimentation.</li>
</ul>
</div>
</article>
<article class="job-card">
<div class="job-meta">
<div class="job-dates">2013 – 2018</div>
<div class="job-company">D-Telecom.nl</div>
<div class="job-location">Netherlands</div>
</div>
<div class="job-content">
<h3>Founder & Owner</h3>
<ul>
<li>Built and ran online webshops selling China-OEM smartphones, owning technical backend, webshop design, marketing and customer support.</li>
</ul>
</div>
</article>
</div>
</section>
<section id="projects">
<h2 class="section-title">Selected Automation Tools</h2>
<div class="projects-grid">
<div class="project-card">
<div class="project-title">
LLM Insights
<span class="project-metric">Customer insights ↑</span>
</div>
<div class="project-desc">
Claude Bedrock pipeline for large-scale feedback analysis and reporting.
</div>
</div>
<div class="project-card">
<div class="project-title">
Tester Portal
<span class="project-metric">−70% lookup time</span>
</div>
<div class="project-desc">
Unified data aggregator for KCSI, Sensai, Device Tracker; single & bulk lookups.
</div>
</div>
<div class="project-card">
<div class="project-title">
PreviewPoint
<span class="project-metric">10× faster runs</span>
</div>
<div class="project-desc">
Qualtrics survey automation pipeline and execution helper.
</div>
</div>
<div class="project-card">
<div class="project-title">
Kamino Account Creator
<span class="project-metric">−90% manual setup</span>
</div>
<div class="project-desc">
Automated creation/management of test accounts.
</div>
</div>
<div class="project-card">
<div class="project-title">
Netflix Test Accounts
<span class="project-metric">40+ hrs saved</span>
</div>
<div class="project-desc">
Bulk account creator replacing manual one-by-one creation.
</div>
</div>
<div class="project-card">
<div class="project-title">
QuickSight Dashboards
<span class="project-metric">Visibility ↑</span>
</div>
<div class="project-desc">
Interactive KPI views for customer signals & research ops with LLM insights.
</div>
</div>
</div>
</section>
<section id="skills">
<h2 class="section-title">Skills & Technologies</h2>
<div class="skills-grid">
<div class="skill-category">
<h3>Leadership & Coordination</h3>
<div class="skill-tags">
<span class="tag">Stakeholder Management</span>
<span class="tag">Technical Program Management</span>
<span class="tag">Process Automation</span>
<span class="tag">Documentation</span>
<span class="tag">Staged Launches</span>
<span class="tag">Agile/Scrum</span>
</div>
</div>
<div class="skill-category">
<h3>AI & Technical</h3>
<div class="skill-tags">
<span class="tag">Python</span>
<span class="tag">LLMs & RAG</span>
<span class="tag">AWS Bedrock</span>
<span class="tag">AWS QuickSight</span>
<span class="tag">SQL</span>
<span class="tag">APIs & Webhooks</span>
<span class="tag">Data Pipelines</span>
</div>
</div>
<div class="skill-category">
<h3>Languages</h3>
<div class="skill-tags">
<span class="tag">Dutch (Native)</span>
<span class="tag">English (Fluent)</span>
<span class="tag">German (C1)</span>
</div>
</div>
</div>
</section>
<section id="education">
<h2 class="section-title">Education</h2>
<div class="experience-list">
<article class="job-card">
<div class="job-meta">
<div class="job-dates">2018 – 2020</div>
<div class="job-company">Wageningen University</div>
</div>
<div class="job-content">
<h3>MSc Economics & Management</h3>
<p style="color:var(--muted); margin-bottom:0.5rem">Specialisation: Data Science & Sustainability</p>
<ul>
<li><strong>Thesis:</strong> Machine Vision for Deforestation Detection from Satellite Imagery.</li>
<li><strong>Methods:</strong> CNN-based classification & change detection; Python (pandas, scikit-learn, OpenCV).</li>
</ul>
</div>
</article>
<article class="job-card">
<div class="job-meta">
<div class="job-dates">2015 – 2018</div>
<div class="job-company">Wageningen University</div>
</div>
<div class="job-content">
<h3>BSc Economics & Management</h3>
<ul>
<li><strong>Thesis:</strong> Blockchain Applications for Smart Grids and Energy Trading.</li>
<li><strong>Scope:</strong> Smart-contract PoC on Ethereum for grid balancing and incentive design.</li>
</ul>
</div>
</article>
</div>
</section>
<footer id="contact">
<p>© 2024 David van der Zande. Built with ♥ in Munich.</p>
</footer>
</main>
</body>
</html>