-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
613 lines (604 loc) · 24.6 KB
/
Copy pathindex.html
File metadata and controls
613 lines (604 loc) · 24.6 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
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/png" href="./dist/img/ico.png" /> -->
<link rel="stylesheet" href="/dist/css/main.css" />
<meta
name="description"
content="Computer science and mathematics student in Switzerland. I am looking for a first professional experience."
/>
<meta property="og:site_name" content="Evan Massonnet" />
<meta property="og:url" content="https://evanmassonnet.github.io/" />
<meta
property="og:description"
content="Computer science and mathematics student in Switzerland. I am looking for a first professional experience."
/>
<meta
property="og:image"
content="https://evanmassonnet.github.io/dist/img/AstraBadge.png"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://evanmassonnet.github.io/dist/img/AstraBadge.png"
/>
<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@200;300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<script
src="https://kit.fontawesome.com/6df08405e1.js"
crossorigin="anonymous"
></script>
<script defer src="src/js/App.js"></script>
<script
async
src="https://unpkg.com/es-module-shims@1.6.3/dist/es-module-shims.js"
></script>
<script type="importmap">
{
"imports": {
"three": "./src/js/three.js/build/three.module.js",
"three/addons/": "./src/js/three.js/examples/jsm/"
}
}
</script>
<script type="module" src="src/js/ISS.js"></script>
<script type="module" src="src/js/Asteroids.js"></script>
<script type="module" src="src/js/AstronauteHead.js"></script>
<script type="module" src="src/js/AstronauteArm.js"></script>
<script type="module" src="src/js/Astra.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/js/splide.min.js "></script>
<link
href=" https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/css/splide.min.css "
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio - Evan Massonnet</title>
</head>
<body>
<!-- <nav class="main_nav">
<a class="current_page" href="index.html">
<h1 class="logo_title">PORTFOLIO</h1>
</a>
<ul>
<li>
<a href="#"><i class="fas fa-code fa"></i>A</a>
</li>
<li>
<a href="#"><i class="fas fa-lightbulb fa"></i>B</a>
</li>
<li>
<a href="#"><i class="fas fa-pen"></i>C</a>
</li>
</ul>
</nav> -->
<header class="header">
<div class="header_container">
<div class="header_content hidden hiddenOpacity hiddenLeftReduce">
<h1 class="cta_title">Evan Massonnet</h1>
<p class="cta_catch">
I am a <strong>computer science student</strong> with a
multidisciplinary background in <strong>mathematics</strong> and
<strong>economics</strong>. Currently learning
<strong>entrepreneurship</strong> and <strong>management</strong>.
Used to working in a <strong>team</strong>, looking for a new
<strong>intellectual challenge</strong>.
</p>
<div class="cta_group">
<a
href="#skill"
class="btn btn_cta hidden hiddenOpacity hiddenLeftNoBlur"
style="--order: 4"
>
Show more
</a>
<a
href="#contact"
class="btn btn_cta_outline hidden hiddenOpacity hiddenRightNoBlur"
style="--order: 4"
>
Contact Me</a
>
</div>
</div>
<div class="header_canvas hidden hiddenOpacity hiddenLonger"></div>
</div>
<div class="transition hidden hiddenLonger"></div>
</header>
<main>
<section class="bg_skill hidden hiddenLonger mt_4" id="skill">
<div class="container_width">
<h2 class="hidden hiddenLonger"><span>Skills and Softwares</span></h2>
<ul class="cards_skill">
<li class="card_skill_item hidden hiddenLeftNoBlur">
<div class="card card_skill">
<h3>Coding</h3>
<i class="fa fa-code shadow_purple"></i>
<p>
Experienced in <strong>Python</strong> and
<strong>Java</strong>. Used to code with
<strong>C#</strong> for game making. Knowledge in
<strong>Html / CSS /Javascript</strong>. Proficiency in
<strong>ROS2, Django framework</strong>.
</p>
<div class="card_img">
<i class="fa fa-html5 fa-2xl"></i>
<i class="fa fa-css3 fa-2xl"></i>
<i class="fab fa-js-square fa-2xl"></i>
<i class="fa-brands fa-python fa-2xl"></i>
<img src="./dist/img/icon/cSharp.png" width="30px" alt="" />
</div>
</div>
</li>
<li class="card_skill_item hidden hiddenBottomNoBlur">
<div class="card card_skill">
<i class="fa fa-display shadow_blue"></i>
<h3>Softwares</h3>
<p>
Bulding game with <strong>Unity</strong>,
<strong>Blender</strong>, <strong>Substance painter</strong>.
Creation of mechanical part in <strong>Solidworks</strong> for
many school project and 3D printed <strong>art build</strong>.
</p>
<div class="card_img">
<i class="fa-brands fa-unity fa-2xl"></i>
<img
src="./dist/img/icon/SubstancePainter.png"
width="30px"
alt=""
/>
<img src="./dist/img/icon/SolidWorks.png" width="30px" alt="" />
</div>
</div>
</li>
<li class="card_skill_item hidden hiddenRightNoBlur">
<div class="card card_skill">
<i class="fa fa-toolbox shadow_green"></i>
<h3>Tools</h3>
<p>
Extensive use of <strong>VSCode</strong>,
<strong>JetBrains</strong> IDEs. Good practices with
<strong>Github's </strong>versionning tools. Able to work in
team using <strong>Trello</strong> or
<strong>Miro</strong> collaboration tools.
</p>
<div class="card_img">
<img src="./dist/img/icon/VSCode.png" width="30px" alt="" />
<img src="./dist/img/icon/Trello.png" width="30px" alt="" />
<img src="./dist/img/icon/GitHub.png" width="30px" alt="" />
</div>
</div>
</li>
</ul>
</div>
</section>
<div class="transition_star transition_star_bgSingle">
<div class="night">
<div class="shooting_star"></div>
</div>
</div>
<section class="section_education bg_stars_vertical hidden hiddenLonger">
<div class="container_width">
<h2><span>Education</span></h2>
<div id="timeline">
<div class="timeline_item hidden hiddenLeftReduce">
<div
class="timeline_icon hidden hiddenOpacity hiddenTop"
style="--order: 7"
></div>
<div class="timeline_canvas_right"></div>
<div class="timeline_content card shadow_purple border_purple">
<div class="card_icon_info">
<span>2018 - 2020</span>
<div>
<span>France</span>
<i class="fa-solid fa-location-dot"></i>
</div>
</div>
<h3>CPGE Mathematics</h3>
<div class="timeline_card_tag">
<span>Maths</span><span>Economics</span
><span>Computer science</span>
</div>
<p>
<strong>Preparatory class</strong> for the
<strong>French Grandes Ecoles</strong> at the Lycée Fabert,
<strong>2 years</strong> of intensive courses in mathematics,
physics and <strong>theoretical computer science</strong>.
</p>
</div>
</div>
<div class="timeline_item hidden hiddenRightReduce">
<div class="timeline_icon hidden hiddenOpacity" style="--order: 7"></div>
<div class="timeline_canvas_left"></div>
<div class="timeline_content card right shadow_blue border_blue">
<div class="card_icon_info">
<span>2020 - 2021</span>
<div>
<span>France</span>
<i class="fa-solid fa-location-dot"></i>
</div>
</div>
<h3>Bachelor in applied mathematics</h3>
<div class="timeline_card_tag">
<span>Maths</span><span>Economics</span>
</div>
<p>
<strong>Course of mathematics</strong> applied to the economy
at the <strong>University of Lorraine</strong>, research work
on <strong>Benforde's law</strong> applied to tax and
electoral fraud.
</p>
</div>
</div>
<div class="timeline_item hidden hiddenBottomNoBlur">
<div
class="timeline_icon timeline_icon_last hidden hiddenOpacity hiddenBottomNoBlur"
style="--order: 7"
></div>
<div
class="timeline_content card timeline_last shadow_green border_green"
>
<div class="card_icon_info">
<span>2021 - 2024</span>
<div>
<span>Switzerland</span>
<i class="fa-solid fa-location-dot"></i>
</div>
</div>
<h3>EFPL - Bachelor in computer science</h3>
<div class="timeline_card_tag">
<span>Maths</span><span>Economics</span
><span>Computer science</span>
</div>
<p>
<strong>Faculty of Computer Science</strong> of the
<strong>EPFL</strong>, second year. Participates in the
<strong>Innosuisse</strong> business concept training course.
</p>
</div>
</div>
</div>
</div>
</section>
<div class="transition_star">
<div class="night night_large">
<div class="shooting_star shooting_star_purple"></div>
<div class="shooting_star"></div>
<div class="shooting_star shooting_star_green"></div>
</div>
</div>
<section class="section_association hidden hiddenLonger">
<div class="container_width">
<h2><span>School association</span></h2>
<div class="association_container">
<div class="association_img flex_center hidden hiddenLeftNoBlur">
<img src="dist/img/Xplore.png" width="520px" alt="" />
<div>
<a
href="https://epfl-xplore.ch/"
class="btn btn_cta hidden hiddenLeftNoBlur"
style="--order: 4"
>
Visit website
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
<a
href="https://fr.linkedin.com/company/epfl-xplore"
class="btn btn_cta btn_cta_outline btn_square hidden hiddenLeftNoBlur"
style="--order: 4"
>
<i class="fa-brands fa-linkedin-in"></i>
</a>
<a
href="https://www.instagram.com/epfl_xplore/"
class="btn btn_cta btn_cta_outline btn_square hidden hiddenLeftNoBlur"
style="--order: 4"
>
<i class="fa-brands fa-instagram"></i>
</a>
</div>
</div>
<div class="card associtation_card hidden hiddenRightNoBlur">
<h3>EPFL Xplore</h3>
<p>
<strong>EPFL Xplore</strong> is a
<strong>robotic student</strong> association from EPFL whose aim
is to develop <strong>rovers</strong> to participate in
<strong>Mars Society competitions</strong> in
<strong>Poland</strong> and in <strong>United States</strong>the
.
</p>
<div class="association_card_info">
<div class="association_timeline">
<div class="association_timeline_icon"></div>
<div class="association_timeline_icon"></div>
</div>
<div class="association_card_row">
<div class="association_card_container_date">
<div class="card_icon_info">
<h3>Team leader</h3>
<span>2022 - 2023</span>
</div>
<p>
<strong>Team leader</strong> of the
<strong>control station</strong> subsystem. The goal is to
develop a <strong>web application</strong> allowing to
<strong>control</strong> the rover
<strong>remotely</strong> by several people at the same
time.
</p>
</div>
<div>
<div class="association_card_container_date">
<div class="card_icon_info">
<h3>Member</h3>
<span>2021 - 2022</span>
</div>
</div>
<p>
I was in charge of creating a
<strong>prototype</strong> for the competition in the
<strong>United States</strong>. I was mainly working on
the <strong>control</strong> of the motors and
<strong>wireless</strong> connections.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="association_container mt_2">
<div class="card associtation_card hidden hiddenLeftNoBlur">
<div class="association_card_container_date">
<div class="card_icon_info">
<h3>European Rover Challenge</h3>
<div>
<span>Poland</span>
<i class="fa-solid fa-location-dot"></i>
</div>
</div>
</div>
<p>
The <strong>ERC</strong> is a robotics and space
<strong>event</strong> organized by the
<strong>European Space Foundation</strong> and Mars Society
Polska. It takes place once a year in September in Kielce,
Poland. In 2019, it welcomed
<strong>56 Competing Teams</strong> from
<strong>16 countries</strong> and <strong>6 continents</strong>.
</p>
<div class="flex_center mt_2">
<a
href="https://roverchallenge.eu/en/main-page/"
class="btn btn_cta"
>
Visit website
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</a>
</div>
</div>
<div
class="association_img flex_center ptb_1 hidden hiddenRightReduce"
>
<div class="rover_canvas"></div>
</div>
</div>
<div class="association_container mt_4">
<div
class="association_img width_100 association_planet flex_center hidden hiddenLeftNoBlur"
>
<img src="dist/img/planetRed.png" width="520px" alt="" />
<div id="rotator"></div>
</div>
<div class="width_100">
<div
class="card associtation_card width_100 hidden hiddenRightReduce"
>
<div class="association_card_container_date">
<div class="card_icon_info">
<div>
<i class="fa-solid fa-trophy fa-xl color_bronze"></i>
<h3>3rd place</h3>
</div>
<div>
<span>2021</span>
<i class="fa-solid fa-calendar"></i>
</div>
</div>
</div>
<p>
After only <strong>one year</strong> of preparation, the team
placed <strong>3rd</strong> out of
<strong>58</strong> international teams at the ERC
<strong>2021</strong>. And this year we were the best in
<strong>two categories</strong>.
</p>
<div class="association_distinction">
<div class="association_distinction_pair">
<i class="fa-solid fa-medal fa-xl"></i>
<span> Best team in Science </span>
</div>
<div class="association_distinction_pair">
<i class="fa-solid fa-medal fa-xl"></i>
<span> Best team in probing </span>
</div>
</div>
</div>
<div
class="card associtation_card mt_4 width_100 hidden hiddenRightReduce"
>
<div class="association_card_container_date">
<div class="card_icon_info">
<div>
<i class="fa-solid fa-trophy fa-xl color_silver"></i>
<h3>2nd place</h3>
</div>
<div>
<span>2022</span>
<i class="fa-solid fa-calendar"></i>
</div>
</div>
</div>
<p>
After <strong>year</strong> a of
<strong>software development</strong> and an intensive testing
session during the summer, the team was awarded the
prestigious <strong>Navigation Award</strong> at the
competition for being the only team to reach all
<strong>4 waypoints</strong> in autonomy, by night and on a
<strong>flooded terrain</strong>.
</p>
<div class="association_distinction">
<div class="association_distinction_pair">
<i class="fa-solid fa-medal fa-xl"></i>
<span> Best team in navigation </span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section
class="section_association association_work_bg hidden hiddenLonger"
>
<div class="container_width">
<h2><span>My work at Xplore</span></h2>
<div class="association_container">
<div class="card associtation_card hidden hiddenLeftReduce">
<div class="association_card_container_date">
<div class="card_icon_info">
<h3>Control station App</h3>
<!-- <div>
<span>Poland</span>
<i class="fa-solid fa-location-dot"></i>
</div> -->
</div>
</div>
<p>
<strong>The objective</strong> is to develop a
<strong>web application</strong> to control the rover remotely
up to <strong>100m</strong> and display information
<strong>in real time</strong> (cameras, lidar, drones state,
...). The code will soon be available on
<strong>Github</strong> !
</p>
<div class="association_card_container_date">
<div class="card_icon_info mt_2">
<h3>Technical stack</h3>
<!-- <div>
<span>Poland</span>
<i class="fa-solid fa-location-dot"></i>
</div> -->
</div>
</div>
<p class="mb_2">
The <strong>backend</strong> is a mix between
<strong>ROS2</strong> and <strong>Django</strong> that uses
channels and ASGI to refresh the web page in
<strong>real time</strong> thanks to
<strong>websockets</strong>. The data collected during the usage
is stored in a <strong>Redis database</strong>. The frontend is
developed with <strong>React</strong> and integrated with
<strong>Django</strong>.
</p>
</div>
<div
class="association_img flex_center ptb_1 hidden hiddenRightReduce"
>
<div
class="splide"
aria-label="Slideshow of differents capture of the application"
>
<div class="splide__track">
<ul class="splide__list">
<li class="association_img splide__slide">
<img
src="dist/img/slider/Start_Rover.png"
width="400px"
alt=""
/>
</li>
<li class="association_img splide__slide">
<img
src="dist/img/slider/ManualTask.png"
width="400px"
alt=""
/>
</li>
<li class="association_img splide__slide">
<img
src="dist/img/slider/NavigationNav.png"
width="400px"
alt=""
/>
</li>
<li class="association_img splide__slide">
<img
src="dist/img/slider/ManualTask.png"
width="400px"
alt=""
/>
</li>
<li class="association_img splide__slide">
<img
src="dist/img/slider/Logslog.png"
width="400px"
alt=""
/>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="main_footer hidden hiddenLonger" id="contact">
<div class="ptb_4">
<h2>Contact</h2>
<div class="bio_container">
<img
class="hidden hiddenLeftReduce"
src="./dist/img/me.png"
width="100px"
alt=""
/>
<p class="hidden hiddenRightReduce">
<strong>Computer science</strong> and
<strong>mathematics</strong> student in
<strong>Switzerland</strong>. I am looking for a
<strong>first</strong> professional experience.
</p>
</div>
<div class="links_footer mt_2 hidden hiddenRightReduce">
<a href="https://github.com/EvanMassonnet"
><i class="fab fa-github-square fa-3x"></i>
<p>Github</p>
</a>
</div>
<div class="links_footer mt_2 hidden hiddenBottomNoBlur">
<a href="mailto:evanmassonnet@gmail.com"
><i class="fas fa-envelope fa-3x"></i>
<p>Mail</p>
</a>
</div>
<div class="links_footer mt_2 hidden hiddenLeftReduce">
<a href="http://www.linkedin.com/in/evan-massonnet"
><i class="fab fa-linkedin fa-3x"></i>
<p>Linkedin</p>
</a>
</div>
<p class="mt_2">
Copyright © 2023 Evan Massonnet. All rights reserved.
</p>
</div>
</footer>
</body>
</html>