-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_FR.html
More file actions
368 lines (349 loc) · 16.8 KB
/
Copy pathindex_FR.html
File metadata and controls
368 lines (349 loc) · 16.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Michael Lapadula • Portfolio</title>
<meta name="description" content="Portfolio of Michael Lapadula — Software Engineering student at UQAM. Projects, skills, and contact links." />
<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@400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg: #0b0d11;
--panel: #11151c;
--muted: #a2a9b6;
--text: #e6eaf2;
--accent: #5cc8ff;
--accent-2: #9dffb0;
--ring: rgba(92, 200, 255, 0.45);
--maxw: 1080px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
background: var(--bg); color: var(--text);
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(100%, var(--maxw)); margin-inline: auto; padding-inline: 24px; }
.hero {
position: relative; isolation: isolate; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.06);
background: linear-gradient(180deg, #18202c 0%, #121720 100%);
}
.cover {
height: 180px; border-radius: 0 0 16px 16px;
background: radial-gradient(1200px 400px at 20% 0%, rgba(92, 200, 255, .20), transparent 55%),
radial-gradient(800px 300px at 80% 10%, rgba(157, 255, 176, .18), transparent 60%),
linear-gradient(180deg, #1a2431 0%, #141a24 100%);
box-shadow: inset 0 -1px 0 rgba(255,255,255,.06);
}
.profile-wrap { display: grid; grid-template-columns: 208px 1fr; gap: 16px; align-items: end; margin-top: -100px; }
.avatar {
width: 208px; height: 208px; border-radius: 50%; object-fit: cover;
border: 3px solid #0f131a; outline: 3px solid var(--ring); background:#222;
box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.name-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.name { font-size: clamp(24px, 4vw, 36px); line-height: 1.15; font-weight: 700; }
.title { color: var(--muted); margin-top: 4px; }
.meta { display:flex; flex-wrap:wrap; gap:12px; margin-top:10px; color: var(--muted); }
.pill { display:inline-flex; align-items:center; gap:8px; background: #0f131a; border:1px solid rgba(255,255,255,.08); padding:8px 12px; border-radius:999px; font-size: 14px; }
.actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.btn { display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius:10px; border:1px solid rgba(255,255,255,.12); background:#0f131a; color:var(--text); text-decoration:none; font-weight:600; }
.btn.primary { background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%); color:#0a0f15; border-color: transparent; }
.btn:hover { filter: brightness(1.05); }
section { padding-top: 36px; }
h2 { font-size: 22px; margin: 0 0 16px; }
.projects { display:grid; grid-template-columns: repeat( auto-fit, minmax(260px, 1fr) ); gap:16px; }
.card {
background: var(--panel);
border:1px solid rgba(255,255,255,.06);
border-radius:14px;
padding:18px;
display: flex;
flex-direction: column;
}
.card h3 { margin: 0 0 6px; font-size: 18px; }
.stack { color: var(--muted); font-size: 14px; margin: 8px 0 12px; }
.links { display:flex; gap:12px; flex-wrap: wrap; }
.card .content {
flex: 1;
}
.card .footer {
margin-top: auto;
}
footer { padding: 30px 0 60px; color: var(--muted); text-align: center; }
@media (max-width: 520px){
.container {
margin-top: 0 !important; /* remove the big negative margin */
}
.profile-wrap {
display: flex;
flex-direction: column;
align-items: center;
margin-top: -50px; /* just a small overlap with the cover */
text-align: center;
}
.avatar {
width: 100px;
height: 100px;
margin-bottom: 12px;
}
.name-row,
.title,
.meta,
.actions {
justify-content: center;
}
.title {
font-size: 14px;
line-height: 1.4;
margin-top: 8px;
}
.cover {
height: 120px;
}
}
.pill-row {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.lang-btn {
position: absolute;
top: 20px;
right: 20px;
padding: 6px 14px;
border-radius: 8px;
border: 1px solid rgba(255,255,255,.2);
background: #0f131a;
color: var(--text);
font-size: 14px;
font-weight: 600;
cursor: pointer;
}
.lang-btn:hover {
filter: brightness(1.2);
}
</style>
</head>
<body>
<header class="hero">
<div class="cover"></div>
<a class="lang-btn" href="index.html" rel="noopener">EN</a>
<div class="container" style="margin-top:-84px;">
<div class="profile-wrap">
<img class="avatar" src="profile_pic.jpg" alt="Headshot of Michael Lapadula" />
<div>
<div class="name-row">
<div class="name">Michael Lapadula</div>
</div>
<div class="title">Étudiant en Génie Logiciel @ UQAM • Web, C/C++, Java, Programmation Fonctionnelle, Bases de données</div>
<div class="meta">
<!-- Row 1 -->
<div class="pill-row">
<span class="pill" title="Location">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" aria-hidden="true"><path d="M12 21s-7-5.686-7-11a7 7 0 0 1 14 0c0 5.314-7 11-7 11Z" stroke="currentColor" stroke-width="1.5"/><circle cx="12" cy="10" r="3" stroke="currentColor" stroke-width="1.5"/></svg>
Grand Montreal, QC
</span>
<span class="pill" title="Education">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" aria-hidden="true"><path d="M3 10L12 5l9 5-9 5-9-5Z" stroke="currentColor" stroke-width="1.5"/><path d="M7 12v4c0 1.657 2.686 3 6 3s6-1.343 6-3v-4" stroke="currentColor" stroke-width="1.5"/></svg>
UQAM — Bac. (Génie Logiciel)
</span>
<span class="pill" title="Languages">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" aria-hidden="true">
<circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="1.5"/>
<path d="M2 12h20M12 2a15 15 0 010 20M12 2a15 15 0 000 20" stroke="currentColor" stroke-width="1.5"/>
</svg>
Bilingue - Français & Anglais
</span>
</div>
</div>
<div class="actions">
<a class="btn primary" href="#projects">Projets</a>
<a class="btn" href="mailto:mikelap123@icloud.com" rel="noopener">Email</a>
<a class="btn" href="https://www.linkedin.com/in/michael-lapadula-469a552a3/" target="_blank" rel="noopener">LinkedIn</a>
<a class="btn" href="https://github.com/lapadulamichael" target="_blank" rel="noopener">GitHub</a>
<a class="btn" href="CV_FR.pdf" target="_blank" rel="noopener">CV</a>
</div>
</div>
</div>
</div>
</header>
<main class="container">
<section id="about">
<h2>À Propos</h2>
<p>
Je suis un étudiant en troisième année en génie logiciel avec une bonne fondation en programmation orientée-objet (Java, C et C++),
développement web, structures de données, bases de données, programmation fonctionnelle et plus. Au cours des deux dernières années
j'ai complété au dessus de 20 projets qui varient de programmes systèmes de bas niveau à des applications web complètes, deployables
et basées sur une base de données.
<br><br>
Mon objectif est maintenant d'acquérir de l'expérience dans l'industrie à travers des stages oû je pourrai appliquer mes nouvelles
connaissances. J'ai hâte de continuer d'apprendre et de pouvoir participer à créer des logiciels qualitatifs en équipe.
<h2>À la recherche d'une opportunité</h2>
<p>
Je suis actuellement à la <strong>recherche de stages professionnels ou de postes de niveau débutant</strong> dans des rôles liés
aux technologies et aux logiciels. Je prévois <strong>terminer mon baccalauréat fin avril 2026</strong> et je souhaite commencer à
travailler sur des problématiques concrètes, apprendre de nouvelles technologies et contribuer à des projets significatifs dès que possible.
</p>
</p>
</section>
<section id="projects">
<h2>Projets</h2>
<div class="projects">
<article class="card">
<div class="content">
<h3>ClientHub (50-100 clients actifs) - Northview</h3>
<p>Plateforme web full-stack pour gérer les clients, la documentation interne des comptes et plus encore.
Sert de principal canal de communication entre l’entreprise et ses clients. Construite avec une authentification sécurisée, un
accès basé sur les rôles, des mises à jour en temps réel et des notifications.</p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> TypeScript, React (Vite), Supabase (Postgres, Auth, Storage), Edge Functions, RLS policies</div>
<div class="links">
<a href="https://algoconnect.io/" target="_blank" rel="noopener"> Demo: test@test.com / DemoML!!</a>
</div>
</article>
<article class="card">
<div class="content">
<h3>Groupe Construction DMR — Site de compagnie</h3>
<p>Un site web moderne et multi-page conçu pour une entreprise locale de construction et de carrelage.
Il présente les services offerts, les projets réalisés, les fournisseurs ainsi qu'un formulaire de contact/soumission personnalisé.
Le site est conçu pour offrir une navigation claire et une expérience entièrement responsive.</p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> HTML, CSS, JavaScript, Vercel, Cloudflare DNS</div>
<div class="links">
<a href="https://www.groupedmr.com/" target="_blank" rel="noopener">Site</a>
</div>
</div>
</article>
<article class="card">
<div class="content">
<h3>Kover app - Optimiseur de placement d'antennes</h3>
<p>Application en lignes de commande qui modélise une scène faites de bâtiments d'antennes, et
fournit des outils pour analyser et mesurer la couverture du signal des éléments de la scène. </p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> C, Make, Bats</div>
<div class="links">
<a href="https://github.com/lapadulamichael/kover1" target="_blank" rel="noopener">Sprint 1</a>
<a href="https://github.com/lapadulamichael/kover2" target="_blank" rel="noopener">Sprint 2</a>
<a href="https://github.com/lapadulamichael/kover3" target="_blank" rel="noopener">Sprint 3</a>
</div>
</div>
</article>
<article class="card">
<div class="content">
<h3>SoundTracker - OCaml</h3>
<p>Séquenceur musical qui compile des compositions structurées en fichiers WAV à l'aide de synthèse fonctionnelle.</p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> OCaml</div>
<div class="links">
<a href="https://github.com/lapadulamichael/Functional-Programming/tree/main/SoundTracker" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
</article>
<article class="card">
<div class="content">
<h3>Validateur de Sudoku</h3>
<p>Validateur multi-thread de Sudoku.</p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> C, POSIX Threads</div>
<div class="links">
<a href="https://github.com/lapadulamichael/Sudoku_validator" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
</article>
<article class="card">
<div class="content">
<h3>Simulateur de transmission d'engrenages</h3>
<p>Simulateur basé sur la logique qui modélise la transmission du mouvement entre engrenages en Prolog.</p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> Prolog</div>
<div class="links">
<a href="https://github.com/lapadulamichael/Functional-Programming/tree/main/Gear_Transmission_Simulator" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
</article>
<article class="card">
<div class="content">
<h3>SoccerHub - Application web de gestion de terrains</h3>
<p>Application web qui gère des ligues de soccer, des tournois et des réservations.</p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> FastAPI, PostgreSQL (Supabase), JS/HTML/CSS</div>
<div class="links">
<a href="#" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
</article>
<article class="card">
<div class="content">
<h3>Implémentations de structures de données</h3>
<p>Implémentations en C++ de structures et d'algorithmes fondamentaux.</p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> C++, Make</div>
<div class="links">
<a href="https://github.com/lapadulamichael/Data-Structures-in-Cpp/tree/main/BigInt" target="_blank" rel="noopener">BigInt</a>
<a href="https://github.com/lapadulamichael/Data-Structures-in-Cpp/tree/main/AVLTree" target="_blank" rel="noopener">AVLTree</a>
<a href="https://github.com/lapadulamichael/Data-Structures-in-Cpp/tree/main/TreeMap" target="_blank" rel="noopener">TreeMap</a>
<a href="https://github.com/lapadulamichael/Data-Structures-in-Cpp/tree/main/Digraph" target="_blank" rel="noopener">Digraph</a>
</div>
</div>
</article>
<article class="card">
<div class="content">
<h3>Formation - Validateur de formation</h3>
<p>Application Java en lignes de commande qui valide des déclarations de formation continue en JSON pour des ordres
professionnels et génère des rapports. Les statistiques des déclarations peuvent être affichées ou rénitialisées.
Ce projet a été fait en équipe de deux.
</p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> Java, Maven, Gson, Apache Commons IO, JUnit</div>
<div class="links">
<a href="https://gitlab.info.uqam.ca/bousselmi.mohamed_yassine/inf2050-a24-projet-equipe8" target="_blank" rel="noopener">GitLab</a>
</div>
</div>
</article>
<article class="card">
<div class="content">
<h3>Application web d'adoption d'animaux</h3>
<p>Application web en Flask qui permet d'afficher les animaux disponible à l'adoption ainsi que d'en ajouter d'autres. Inclut
aussi une barre de recherche, la génération dynamique d'une page pour chaque animal et des validations frontend.
</p>
</div>
<div class="footer">
<div class="stack"><strong>Stack:</strong> Flask, SQLite, JS/HTML/CSS</div>
<div class="links">
<a href="https://github.com/lapadulamichael/animal-adoption-app" target="_blank" rel="noopener">GitHub</a>
</div>
</div>
</article>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<p>
<strong>Email:</strong> <a href="mailto:mikelap123@icloud.com">mikelap123@icloud.com</a><br>
<strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/michael-lapadula-469a552a3/" target="_blank" rel="noopener">linkedin.com/in/michael-lapadula-469a552a3</a><br>
<strong>GitHub:</strong> <a href="https://github.com/lapadulamichael" target="_blank" rel="noopener">github.com/lapadulamichael</a>
</p>
</section>
</main>
<footer>
<div class="container">© <span id="y"></span> Michael Lapadula</div>
</footer>
<script>
document.getElementById('y').textContent = new Date().getFullYear();
</script>
</body>
</html>