-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
422 lines (383 loc) · 19.1 KB
/
index.html
File metadata and controls
422 lines (383 loc) · 19.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marcelo Cordeiro — Senior Full Stack Software Engineer</title>
<meta name="description" content="Senior Full Stack Software Engineer with 8+ years of experience delivering high-availability global systems. Based in Berlin, Germany.">
<meta name="keywords" content="Marcelo Cordeiro, Senior Software Engineer, Full Stack, React, TypeScript, Java, Berlin">
<!-- Favicon -->
<link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16">
<!-- Google Fonts: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome 6 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" crossorigin="anonymous">
<!-- Stylesheet -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Navigation -->
<nav id="nav">
<div class="nav-inner">
<a href="#" class="nav-logo">MC</a>
<ul class="nav-links" id="navLinks">
<li><a href="#about" data-i18n="nav.about">About</a></li>
<li><a href="#experience" data-i18n="nav.experience">Experience</a></li>
<li><a href="#achievements" data-i18n="nav.achievements">Achievements</a></li>
<li><a href="#skills" data-i18n="nav.skills">Skills</a></li>
<li><a href="#education" data-i18n="nav.education">Education</a></li>
<li><a href="#contact" data-i18n="nav.contact">Contact</a></li>
</ul>
<div class="nav-actions">
<div class="lang-switcher">
<button class="lang-btn" data-lang="en" onclick="setLanguage('en')">EN</button>
<button class="lang-btn" data-lang="pt" onclick="setLanguage('pt')">PT</button>
<button class="lang-btn" data-lang="de" onclick="setLanguage('de')">DE</button>
</div>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
<i class="fa-solid fa-bars"></i>
</button>
</div>
</div>
</nav>
<!-- Hero -->
<section id="hero">
<div class="hero-content">
<div class="hero-text">
<h1>Marcelo Cordeiro</h1>
<p class="hero-title">
<span id="typewriter"></span><span class="cursor" aria-hidden="true"></span>
</p>
<p class="hero-location"><i class="fa-solid fa-location-dot"></i> <span data-i18n="hero.location">Berlin, Germany</span></p>
<div class="hero-links">
<a href="mailto:marcelo.augusto.cordeiro@gmail.com" title="Email">
<i class="fa-solid fa-envelope"></i>
</a>
<a href="https://github.com/marcelocordeiro" target="_blank" rel="noopener" title="GitHub">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/marceloacordeiro/" target="_blank" rel="noopener" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
</div>
</div>
<div class="hero-photo">
<img src="images/ab.jpg" alt="Marcelo Cordeiro">
</div>
</div>
<a href="#about" class="scroll-down" aria-label="Scroll to About">
<i class="fa-solid fa-chevron-down"></i>
</a>
</section>
<!-- About -->
<section id="about" class="section">
<div class="container">
<h2 class="section-title" data-i18n="about.title">About</h2>
<div class="about-grid">
<div class="about-text">
<p data-i18n="about.bio">Senior Full Stack Software Engineer with 8+ years of experience delivering high-availability global systems. At Delivery Hero, recognized as a Subject Matter Expert in Frontend Architecture and AI-Assisted Development. Proven track record of leading tribe-wide technical initiatives, automating complex engineering workflows, and being cross-functionally deployed to lead high-priority migrations across different business domains.</p>
</div>
<div class="about-info">
<div class="info-item">
<i class="fa-solid fa-location-dot"></i>
<div>
<span class="info-label" data-i18n="about.location.label">Location</span>
<span>Berlin, Germany</span>
</div>
</div>
<div class="info-item">
<i class="fa-solid fa-envelope"></i>
<div>
<span class="info-label" data-i18n="about.email.label">Email</span>
<a href="mailto:marcelo.augusto.cordeiro@gmail.com">marcelo.augusto.cordeiro@gmail.com</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience -->
<section id="experience" class="section section-alt">
<div class="container">
<h2 class="section-title" data-i18n="exp.title">Experience</h2>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<div>
<h3>Senior Full Stack Software Engineer</h3>
<p class="company">Delivery Hero · Berlin, Germany</p>
</div>
<span class="timeline-date">Apr 2023 – <span data-i18n="exp.present">Present</span></span>
</div>
<ul>
<li data-i18n-md="exp.dh.b1"><strong>AI Leadership & Innovation:</strong> Leads tribe-wide explorations into AI-assisted development; architected specialized LLM workflows and “skills” now adopted across the organization to accelerate engineering velocity.</li>
<li data-i18n-md="exp.dh.b2"><strong>Cross-Domain Subject Matter Expert:</strong> Acts as an expert consultant for high-priority frontend architecture migrations across different business domains.</li>
<li data-i18n-md="exp.dh.b3"><strong>AI-Powered Observability:</strong> Architected and developed an end-to-end AI tool that fetches system alerts and utilizes LLMs for intelligent categorization and root-cause hypothesis generation, automating the full lifecycle from alert detection to Jira ticket creation and Confluence reporting.</li>
<li data-i18n-md="exp.dh.b4"><strong>System Reliability:</strong> Spearheaded a total refactor of the audit logging architecture, reducing weekly production error noise from ~25,000 events to near-zero, restoring system trust for international stakeholders across Europe and the Middle East.</li>
<li data-i18n-md="exp.dh.b5"><strong>Infrastructure Strategy:</strong> Authored the technical design and led the migration of backoffice frontend applications to a standardized Internal Operations Platform, integrating STS authentication for global market expansions.</li>
<li data-i18n-md="exp.dh.b6"><strong>Process Automation:</strong> Architected an end-to-end configuration management tool replacing manual, error-prone deployments — reducing experiment launch delays from 1.5 weeks to near-instantaneous.</li>
<li data-i18n-md="exp.dh.b7"><strong>Global Market Expansion:</strong> Technical lead for E2E execution of market launches in Spain, Portugal, and South Korea, ensuring service readiness for millions of users.</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<div>
<h3>Full Stack Development Analyst</h3>
<p class="company">Marlabs · São Carlos, Brazil</p>
</div>
<span class="timeline-date">Sep 2018 – Feb 2023</span>
</div>
<ul>
<li data-i18n-md="exp.marlabs.b1">Collaborated on international high-stakes projects for <strong>VistaJet</strong> (Malta) and <strong>Delivery Hero</strong> (Germany) in a distributed global team environment.</li>
<li data-i18n-md="exp.marlabs.b2">Developed and maintained complex web interfaces using React and integrated robust backend services to support private aviation and global food delivery logistics.</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<div>
<h3 data-i18n="exp.ltia.title">Intern — Volunteer Software Developer & Team Coordinator</h3>
<p class="company">LTIA – UNESP · Bauru, Brazil</p>
</div>
<span class="timeline-date">Jun 2015 – Dec 2017</span>
</div>
<ul>
<li data-i18n="exp.ltia.b1">Volunteer software developer and team coordinator on high-end projects using innovative technology for companies such as Motorola Solutions.</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<div>
<h3 data-i18n="exp.uoft.title">Summer Intern</h3>
<p class="company">University of Toronto · Toronto, Canada</p>
</div>
<span class="timeline-date">May 2014 – Aug 2014</span>
</div>
<ul>
<li data-i18n="exp.uoft.b1">Summer internship at the Milstein Laboratory for Biological Physics of the University of Toronto Mississauga, under the supervision of Professor Joshua N. Milstein.</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-marker"></div>
<div class="timeline-content">
<div class="timeline-header">
<div>
<h3 data-i18n="exp.bauru.title">IT Intern</h3>
<p class="company">Bauru City Hall · Bauru, Brazil</p>
</div>
<span class="timeline-date">Jan 2010 – Jul 2010</span>
</div>
<ul>
<li data-i18n="exp.bauru.b1">Internship at the IT department of Bauru City Hall, responsible for providing technical support for government employees.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Key Achievements -->
<section id="achievements" class="section">
<div class="container">
<h2 class="section-title" data-i18n="ach.title">Key Achievements</h2>
<div class="achievements-grid">
<div class="achievement-card">
<i class="fa-solid fa-robot achievement-icon"></i>
<h3 data-i18n="ach.ai.title">AI Engineering Leadership</h3>
<p data-i18n="ach.ai.desc">Leads Delivery Hero’s AI-first engineering front across the tribe — building production-grade AI tools, authoring custom LLM “skills” now adopted company-wide, defining AI-assisted development workflows, and running continuous experiments that raise the ceiling of what engineering teams can ship.</p>
</div>
<div class="achievement-card">
<i class="fa-solid fa-bolt achievement-icon"></i>
<h3 data-i18n="ach.automation.title">Process Automation</h3>
<p data-i18n="ach.automation.desc">Architected a configuration management tool that replaced manual, error-prone deployments. Reduced experiment launch delays from 1.5 weeks to near-instantaneous, streamlining core business operations at scale.</p>
</div>
<div class="achievement-card">
<i class="fa-solid fa-shield-halved achievement-icon"></i>
<h3 data-i18n="ach.reliability.title">System Reliability Overhaul</h3>
<p data-i18n="ach.reliability.desc">Led a total refactor of the audit logging architecture, reducing weekly production error noise from ~25,000 events to near-zero and restoring system trust for international stakeholders across Europe and the Middle East.</p>
</div>
</div>
</div>
</section>
<!-- Skills -->
<section id="skills" class="section section-alt">
<div class="container">
<h2 class="section-title" data-i18n="skills.title">Skills</h2>
<div class="skills-grid">
<div class="skill-group">
<h3 class="skill-group-title">
<i class="fa-solid fa-microchip"></i> <span data-i18n="skills.ai.title">AI & Productivity</span>
</h3>
<div class="skill-tags">
<span class="tag">LLM Integration</span>
<span class="tag">AI-Assisted Development</span>
<span class="tag">Prompt Engineering</span>
<span class="tag">Automation Tooling</span>
</div>
</div>
<div class="skill-group">
<h3 class="skill-group-title">
<i class="fa-solid fa-display"></i> <span data-i18n="skills.frontend.title">Frontend</span>
</h3>
<div class="skill-tags">
<span class="tag">React</span>
<span class="tag">TypeScript</span>
<span class="tag">Redux</span>
<span class="tag">GraphQL</span>
<span class="tag">Material UI</span>
<span class="tag">Ant Design</span>
<span class="tag">React Query</span>
<span class="tag">React Hook Form</span>
</div>
</div>
<div class="skill-group">
<h3 class="skill-group-title">
<i class="fa-solid fa-server"></i> <span data-i18n="skills.backend.title">Backend</span>
</h3>
<div class="skill-tags">
<span class="tag">Java</span>
<span class="tag">Spring Boot</span>
<span class="tag">Node.js</span>
<span class="tag">Express</span>
<span class="tag">PostgreSQL</span>
<span class="tag">REST / SOAP APIs</span>
</div>
</div>
<div class="skill-group">
<h3 class="skill-group-title">
<i class="fa-solid fa-gear"></i> <span data-i18n="skills.devops.title">Testing & DevOps</span>
</h3>
<div class="skill-tags">
<span class="tag">Jest</span>
<span class="tag">React Testing Library</span>
<span class="tag">Docker</span>
<span class="tag">Kubernetes</span>
<span class="tag">AWS</span>
<span class="tag">Terraform</span>
<span class="tag">CI/CD (Drone)</span>
</div>
</div>
<div class="skill-group">
<h3 class="skill-group-title">
<i class="fa-solid fa-diagram-project"></i> <span data-i18n="skills.arch.title">Architecture & Tools</span>
</h3>
<div class="skill-tags">
<span class="tag">RFC Authoring</span>
<span class="tag">System Design</span>
<span class="tag">Swagger / OpenAPI</span>
<span class="tag">Git</span>
<span class="tag">Jira</span>
<span class="tag">Scrum</span>
</div>
</div>
</div>
</div>
</section>
<!-- Education & Languages -->
<section id="education" class="section">
<div class="container">
<h2 class="section-title" data-i18n="edu.title">Education</h2>
<div class="edu-grid">
<div class="edu-card">
<div class="edu-year">2022</div>
<div class="edu-info">
<h3 data-i18n="edu.specialization">Specialization in Web Software Development</h3>
<p>UFSCar · Brazil</p>
</div>
</div>
<div class="edu-card">
<div class="edu-year">2016</div>
<div class="edu-info">
<h3 data-i18n="edu.bachelor">Bachelor’s Degree in Computer Science</h3>
<p>São Paulo State University (UNESP) · Brazil</p>
</div>
</div>
<div class="edu-card">
<div class="edu-year">2015</div>
<div class="edu-info">
<h3 data-i18n="edu.visiting">Visiting Undergraduate Student</h3>
<p>University of Toronto · Canada <span class="badge" data-i18n="edu.scholarship">Full Scholarship</span></p>
</div>
</div>
</div>
<h2 class="section-title languages-title" data-i18n="lang.title">Languages</h2>
<div class="lang-row">
<div class="lang-item">
<span class="lang-name">Português</span>
<span class="lang-level native" data-i18n="lang.native">Native</span>
</div>
<div class="lang-item">
<span class="lang-name">English</span>
<span class="lang-level fluent" data-i18n="lang.fluent">Fluent</span>
</div>
<div class="lang-item">
<span class="lang-name">Deutsch</span>
<span class="lang-level basic" data-i18n="lang.basic">Basic</span>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="section section-dark">
<div class="container text-center">
<h2 class="section-title light" data-i18n="contact.title">Get in Touch</h2>
<p class="contact-sub" data-i18n="contact.sub">Feel free to reach out for collaboration or just a hello.</p>
<div class="contact-links">
<a href="mailto:marcelo.augusto.cordeiro@gmail.com" class="contact-link">
<i class="fa-solid fa-envelope"></i>
<span>marcelo.augusto.cordeiro@gmail.com</span>
</a>
<a href="https://github.com/marcelocordeiro" target="_blank" rel="noopener" class="contact-link">
<i class="fa-brands fa-github"></i>
<span>github.com/marcelocordeiro</span>
</a>
<a href="https://www.linkedin.com/in/marceloacordeiro/" target="_blank" rel="noopener" class="contact-link">
<i class="fa-brands fa-linkedin"></i>
<span>linkedin.com/in/marceloacordeiro</span>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p data-i18n="footer.text">© 2026 Marcelo Cordeiro · Berlin, Germany</p>
</footer>
<!-- i18n (includes typewriter init) -->
<script src="js/i18n.js"></script>
<script>
// Nav: transition from transparent to solid on scroll
const nav = document.getElementById('nav');
window.addEventListener('scroll', () => {
nav.classList.toggle('scrolled', window.scrollY > 60);
});
// Mobile nav toggle
document.getElementById('navToggle').addEventListener('click', () => {
document.getElementById('navLinks').classList.toggle('open');
});
// Smooth scroll + close mobile nav on link click
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', e => {
const target = document.querySelector(anchor.getAttribute('href'));
if (target) {
e.preventDefault();
target.scrollIntoView({ behavior: 'smooth' });
document.getElementById('navLinks').classList.remove('open');
}
});
});
</script>
</body>
</html>