-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
514 lines (464 loc) · 21 KB
/
index.html
File metadata and controls
514 lines (464 loc) · 21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV Lionel André</title>
<style>
:root {
--primary-color: #333333;
--secondary-color: #5f6368;
--accent-color: #2c3e50;
--bg-color: #ffffff;
--sidebar-bg: #f5f5f5;
--sidebar-text: #202124;
}
body {
font-family: 'Roboto', Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #e0e0e0;
color: var(--primary-color);
line-height: 1.5;
font-size: 10.5pt;
}
.page {
width: 210mm;
min-height: 297mm;
margin: 20px auto;
background: white;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
display: grid;
grid-template-columns: 30% 70%;
}
/* Sidebar Styling */
.sidebar {
background-color: var(--sidebar-bg);
padding: 30px 20px;
font-size: 9.5pt;
}
.sidebar h3 {
color: var(--accent-color);
text-transform: uppercase;
font-size: 11pt;
border-bottom: 2px solid #dadce0;
padding-bottom: 5px;
margin-top: 30px;
margin-bottom: 15px;
letter-spacing: 1px;
}
.sidebar h3:first-child {
margin-top: 0;
}
.contact-info div {
margin-bottom: 10px;
display: flex;
align-items: center;
word-break: break-all;
}
.contact-info i {
margin-right: 10px;
color: var(--secondary-color);
}
.skills-list, .stack-list, .lang-list {
list-style: none;
padding: 0;
}
.skills-list li, .stack-list li, .lang-list li {
margin-bottom: 6px;
}
/* Main Content Styling */
.main-content {
padding: 40px 40px;
}
header {
margin-bottom: 30px;
}
h1 {
margin: 0;
font-size: 24pt;
color: var(--accent-color);
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 700;
}
h2.job-title {
margin: 5px 0 0 0;
font-size: 14pt;
font-weight: 400;
color: var(--secondary-color);
}
.job-subtitle {
margin: 2px 0 0 0;
font-size: 11pt;
font-weight: 300;
font-style: italic;
color: var(--secondary-color);
}
.section-title {
font-size: 14pt;
color: var(--accent-color);
text-transform: uppercase;
border-bottom: 1px solid #dadce0;
padding-bottom: 5px;
margin-top: 30px;
margin-bottom: 20px;
font-weight: bold;
display: flex;
align-items: center;
}
.section-title span {
margin-right: 10px;
}
.about-text {
color: var(--primary-color);
text-align: justify;
margin-bottom: 20px;
}
.experience-item {
margin-bottom: 25px;
}
.exp-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 5px;
}
.exp-role {
font-weight: bold;
font-size: 11pt;
color: #000;
}
.exp-date {
font-size: 9pt;
color: var(--secondary-color);
font-style: italic;
}
.exp-company {
font-weight: 500;
color: var(--accent-color);
margin-bottom: 8px;
font-size: 10.5pt;
display: flex;
align-items: center; /* Align verticalement le texte et le badge */
}
.exp-details ul {
margin: 5px 0 10px 0;
padding-left: 20px;
}
.exp-details li {
margin-bottom: 3px;
}
.tags {
font-size: 8.5pt;
color: var(--secondary-color);
}
/* Style pour le badge Freelance discret */
.badge-freelance {
background-color: #e8e8e8; /* Gris très clair */
color: var(--secondary-color); /* Couleur secondaire du thème */
font-size: 0.7em;
padding: 1px 6px;
border-radius: 4px;
margin-left: 8px;
font-weight: bold;
text-transform: uppercase;
}
/* Print styles */
@media print {
body {
background: none;
}
.page {
box-shadow: none;
margin: 0;
width: 100%;
height: auto;
display: grid; /* Maintain grid for print */
}
}
/* Responsive for mobile viewing */
@media screen and (max-width: 768px) {
.page {
display: block;
width: 100%;
margin: 0;
}
.sidebar {
background: #f1f3f4;
padding: 20px;
}
.main-content {
padding: 20px;
}
}
</style>
<!-- Font Awesome for Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
</head>
<body>
<div class="page">
<!-- LEFT COLUMN (Sidebar) -->
<aside class="sidebar">
<!-- Contact -->
<h3>Contact</h3>
<div class="contact-info">
<div><i class="fas fa-phone-alt"></i> +33 6 18 49 37 69</div>
<div><i class="fas fa-envelope"></i> lionel.andre.pro@gmail.com</div>
<div><i class="fas fa-map-marker-alt"></i> Salon-de-Provence (13300)</div>
</div>
<!-- Skills -->
<h3>Skills</h3>
<ul class="skills-list">
<li>Software architecture</li>
<li>CQRS</li>
<li>Event-Sourcing</li>
<li>Clean code</li>
<li>Agile methodologies</li>
<li>Collaboration</li>
<li>Problem-Solving</li>
<li>Leadership</li>
<li>Mentoring</li>
</ul>
<!-- Technical Stack -->
<h3>Technical Stack</h3>
<ul class="stack-list">
<li>Java</li>
<li>Elixir</li>
<li>Javascript</li>
<li>Spring</li>
<li>Quarkus</li>
<li>Angular</li>
<li>NodeJS</li>
<li>MongoDB</li>
<li>Oracle</li>
<li>PostgreSQL</li>
</ul>
<!-- Languages -->
<h3>Languages</h3>
<ul class="lang-list">
<li><strong>French</strong> (native)</li>
<li><strong>English</strong> (advanced)</li>
</ul>
<!-- Education -->
<h3>Education</h3>
<div style="margin-bottom: 15px;">
<strong>Software Engineer and Project Manager (Master)</strong><br>
Institut G4 - Marseille<br>
<a href="https://institut-g4.fr/" style="color: inherit; text-decoration: none; font-size: 8.5pt;">https://institut-g4.fr/</a><br>
<span style="font-size: 9pt; color: #666;">2014</span>
</div>
<div>
<strong>DUT Software Development</strong><br>
IUT Aix-Marseille II - Aix-en-Provence<br>
<span style="font-size: 9pt; color: #666;">2012</span>
</div>
<!-- Certificates -->
<h3>Certificates</h3>
<div style="margin-bottom: 10px;">
<strong>Oracle Certified Professional</strong><br>
Java SE Programmer (2018)
</div>
<div>
<strong>Oracle Certified Associate</strong><br>
Java SE Programmer (2018)
</div>
</aside>
<!-- RIGHT COLUMN (Main) -->
<main class="main-content">
<header>
<h1>Lionel ANDRÉ</h1>
<h2 class="job-title">Software Engineer</h2>
<div class="job-subtitle">Fullstack - Techlead - Passionate</div>
</header>
<!-- About Me -->
<section>
<div class="section-title">
<i class="fas fa-user" style="font-size: 1rem; margin-right: 10px;"></i> About me
</div>
<div class="about-text">
<p>Not only a developer but definitely a software engineer.<br>Clean code and architecture enthusiast. I place great importance on quality and pragmatism.<br>Product oriented, user centric. The technology matters less than the challenge.</p>
<p>With over 10 years of experience in software development, I have mainly worked on projects as a developer, but also as a software architect and/or tech lead. Although most of my experience is in Java projects, my curiosity has led me to train on different technologies, including NodeJs and more recently Elixir.</p>
</div>
</section>
<!-- Experience -->
<section>
<div class="section-title">
<i class="fas fa-briefcase" style="font-size: 1rem; margin-right: 10px;"></i> Experience
</div>
<!-- XP 1 - Freelance (après Fév 2017) -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Technical Leader</span>
<span class="exp-date">Aug. 2025 - Today</span>
</div>
<div class="exp-company">ADSN - Notariat <span class="badge-freelance">Freelance</span></div>
<div class="exp-details">
<ul>
<li><strong>Craft culture:</strong> promoted a culture of technical excellence by <strong>introducing</strong> Hexagonal Architecture and TDD.</li>
<li><strong>Collaborative design:</strong> organized regular <strong>workshops</strong> to co-construct solutions with the team, anticipate technical blockers, and improve quality.</li>
<li><strong>Delivery automation:</strong> implemented a CI/CD pipeline to automate the release process.</li>
</ul>
<div class="tags">#Hexagonal-architecture #Testing #Java #Spring</div>
</div>
</div>
<!-- XP 2 - Freelance (après Fév 2017) -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Technical Leader</span>
<span class="exp-date">Oct. 2021 - May 2025</span>
</div>
<div class="exp-company">Softway Medical - Healthcare <span class="badge-freelance">Freelance</span></div>
<div class="exp-details">
<ul>
<li><strong>Technical mentorship:</strong> supported dev teams in <strong>clean code</strong> and refactoring practices.</li>
<li><strong>Performance & Observability:</strong> identified performance issues and implemented corrective actions. Set up observability and performance testing campaigns.</li>
<li><strong>Architecture:</strong> identified areas for improvement and planned a roadmap. Introduced Architecture Decision Records (ADR).</li>
</ul>
<div class="tags">#Java #Quarkus #Hexagonal-architecture #Testing #Web-component</div>
</div>
</div>
<!-- XP 3 - Freelance (après Fév 2017) -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Technical Leader</span>
<span class="exp-date">Sept. 2020 - Jun. 2021</span>
</div>
<div class="exp-company">France Travail <span class="badge-freelance">Freelance</span></div>
<div class="exp-details">
<ul>
<li><strong>Frontend Development:</strong> contributed to the development of an Angular application within a 10-person agile team.</li>
<li><strong>Technical Mentorship:</strong> enhanced code quality and team skills by introducing <strong>Testing</strong>, <strong>BDD</strong>, and <strong>Reactive Programming</strong>.</li>
</ul>
<div class="tags">#Angular #Reactive-programming #Web-component</div>
</div>
</div>
<!-- XP 4 - Freelance (après Fév 2017) -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Technical Leader</span>
<span class="exp-date">Feb. 2020 - Mars 2020</span>
</div>
<div class="exp-company">Airbus Helicopter <span class="badge-freelance">Freelance</span></div>
<div class="exp-details">
<ul>
<li><strong>Application Development:</strong> developed a flight data visualization tool for preventive maintenance within an agile team.</li>
<li><strong>Technical Leadership:</strong> aligned code culture, mentored junior developers, and conducted technological POCs.</li>
<li><strong>DevOps:</strong> implemented and maintained CI/CD pipelines.</li>
</ul>
<div class="tags">#NodeJS #Angular</div>
</div>
</div>
<!-- XP 5 - Freelance (après Fév 2017) -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Senior Software Engineer</span>
<span class="exp-date">Oct. 2019 - Jan. 2020</span>
</div>
<div class="exp-company">Atos / DGA <span class="badge-freelance">Freelance</span></div>
<div class="exp-details">
<ul>
<li><strong>Feature Development:</strong> designed and implemented features for an army force planning tool within a 15-person team.</li>
<li><strong>Architecture:</strong> contributed to a distributed system based on <strong>Micro-services</strong> and <strong>Kafka</strong>.</li>
<li><strong>Innovation:</strong> explored and validated new technologies through POCs (OpenCensus).</li>
</ul>
<div class="tags">#Java #Spring #Angular #Micro-services</div>
</div>
</div>
<!-- XP 6 - Freelance (après Fév 2017) -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Senior Software Engineer</span>
<span class="exp-date">Nov. 2018 - Sept. 2019</span>
</div>
<div class="exp-company">Manageo <span class="badge-freelance">Freelance</span></div>
<div class="exp-details">
<p>In an agile team of 5 people (3 developers, 1 architect, 1 product owner), I contributed to the design and develop a B2B web application which help companies in targeting prospects.</p>
<p>As a senior software developer, my roles were :</p>
<ul>
<li>Bootstrap CQRS / Event Sourcing architecture and transfer skills</li>
<li>Share knowledges on hexagonal architecture and testing culture</li>
<li>Help to improve process</li>
</ul>
<div class="tags">#Java #Spring #CQRS #Event-sourcing #Hexagonal-architecture</div>
</div>
</div>
<!-- XP 7 - Freelance (Fév 2017 - après Fév 2017) -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Senior Software Engineer</span>
<span class="exp-date">Feb. 2017 - Oct. 2018</span>
</div>
<div class="exp-company">ADSN <span class="badge-freelance">Freelance</span></div>
<div class="exp-details">
<p>In an agile team of 6 people (3 developers, 1 architect, 1 QA, 1 scrum master), I contributed to develop and application for dematerializing Notary and DGFIP exchanges.</p>
<p>The application was composed of different modules : web application, batches, messaging.</p>
<p>As a senior software developer, my roles were to :</p>
<ul>
<li>Propose and implement technical solutions</li>
<li>Improve process</li>
</ul>
<div class="tags">#Agile #Java #Spring #Angular #Elasticsearch #Logstash #Redis</div>
</div>
</div>
<!-- XP 8 - Salarié (Sept 2016 - Jan 2017) -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Software Engineer</span>
<span class="exp-date">Sept. 2016 - Jan. 2017</span>
</div>
<div class="exp-company">Diginext</div>
<div class="exp-details">
<p>Develop a web application for near realtime information display for mass transit travelers.</p>
<div class="tags">#Spring #Swing #Hibernate</div>
</div>
</div>
<!-- XP 9 -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Java Architect</span>
<span class="exp-date">Jul. 2012 - Aug. 2016</span>
</div>
<div class="exp-company">SII / CMA-CGM</div>
<div class="exp-details">
<p>Design and develop a web application in a team of 7 developers (3 in France, 4 in Lebanon).</p>
<p>My roles were to :</p>
<ul>
<li>Lead developers</li>
<li>Implement and maintain continuous integration (Jenkins)</li>
</ul>
<div class="tags">#Agile #Java #Spring #Architecture #Webapp #Batches #Messaging</div>
</div>
</div>
<!-- XP 10 -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Software Engineer</span>
<span class="exp-date">Sept. 2010 - Sept. 2012</span>
</div>
<div class="exp-company">International Engineering Assistance</div>
<div class="exp-details">
<p>As an autonomous developer, I was in charge to design and implement a project management system dedicated to aircraft certifications.</p>
<p>Organize and lead workshops with end-users.</p>
<div class="tags">#Architecture #Java #Spring</div>
</div>
</div>
<!-- XP 11 -->
<div class="experience-item">
<div class="exp-header">
<span class="exp-role">Software Engineer</span>
<span class="exp-date">Sept. 2008 - Sept. 2010</span>
</div>
<div class="exp-company">BNP Paribas Factor</div>
<div class="exp-details">
<p>Develop a application for risk management</p>
<div class="tags">#C++</div>
</div>
</div>
</section>
</main>
</div>
</body>
</html>