-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
624 lines (485 loc) · 24.4 KB
/
index.html
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
614
615
616
617
618
619
620
621
622
623
624
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Adrien Rey-Jarthon</title>
<meta name="description" content="I'm Adrien Rey-Jarthon, a full stack web developer who love design.">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="https://adrienjarthon.com" />
<link rel="shortcut icon" type="image/png" href="images/favicon.png" />
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
margin: 0;
font-size: 16px;
line-height: 1.5;
color: #594d40;
background-color: #fcfaf4;
min-width: 320px;
}
h2 {
text-align: center;
font-size: 4em;
font-weight: 200;
text-transform: uppercase;
color: #ff685d;
margin: -0.5em 0 0.5em 0;
}
a {
color: #ff685d;
text-decoration: none;
transition: color 0.2s, border-color 0.2s;
}
svg {
display: inline-block;
width: 48px;
height: 48px;
vertical-align: middle;
}
strong {
font-weight: normal;
color: black;
}
header {
background-color: #ff685d;
color: rgba(0, 0, 0, 0.6);
padding: 1em 0;
font-size: 1.3em;
text-align: center;
display: block;
}
nav {
display: block;
margin: 1em auto;
}
nav a {
display: inline-block;
text-transform: uppercase;
padding: 1em 2em;
transition: background-color 0.1s;
color: rgba(0, 0, 0, 0.6);
}
nav a:hover {
color: black;
background-color: rgba(0, 0, 0, 0.1);
}
nav a:focus { outline: 2px solid rgba(255, 255, 255, 0.5); }
h1 {
display: inline-block;
text-align: center;
margin: 0.5em auto 0 auto;
font-size: 4em;
font-weight: 200;
}
hr {
display: block;
width: 5em;
margin: 1em auto;
border: none;
background-color: rgba(0, 0, 0, 0.6);
height: 2px;
}
header p {
margin: 1em 0 2em 0;
font-size: 1.8em;
font-weight: 300;
}
header em { color: black; }
#work { padding: 4em 0; }
.wrapper { max-width: 900px; margin: 0 auto; }
.grid { overflow: hidden; padding: 2px 3%; }
.grid-1 { clear: both; margin-bottom: 3%; }
.grid-2 { float: left; width: 48.5%; margin-bottom: 3%; }
.grid-2:nth-of-type(2n+1) { margin-left: 3%; }
@media screen and (max-width: 950px) {
.grid-2 { float: none; width: auto; margin-bottom: 3%; }
.grid-2 + .grid-2 { margin-left: inherit; }
}
.project {
color: rgba(0, 0, 0, 0.6);
padding: 3em 0;
height: 16em;
box-sizing: border-box;
text-align: center;
background: rgba(0, 0, 0, 0.1);
transition: background-color 0.1s;
border-radius: 3px;
}
.project h3, .project p {
display: block;
margin: 0;
}
.project h3 {
font-size: 2.5em;
font-weight: 300;
line-height: 1.1;
line-height: 1.3em;
}
.project p { font-size: 1.2em; }
.project p:before {
content: '';
display: block;
width: 5em;
margin: 1em auto;
border: none;
background-color: rgba(0, 0, 0, 0.6);
height: 2px;
}
.project:hover { background: rgba(0, 0, 0, 0.2); }
.project.dark {
text-shadow: 0 0 10px black;
color: white;
}
.project.dark p:before { background-color: rgba(255, 255, 255, 0.8); }
.project.updown {
background: #222 url("images/updown-back.jpg") no-repeat top center;
background-size: cover;
}
.projects a { display: block; }
.projects a:focus { outline: 2px solid #ff685d; }
.project.maybe {
background: rgba(0, 0, 0, 0.05);
border: 5px dashed rgba(0, 0, 0, 0.05);
}
#skills {
padding: 4em 0;
text-align: center;
position: relative;
background-color: #ff685d;
}
#skills h2 { color: #fcfaf4; }
.skill {
display: inline-block;
width: 10em;
text-align: center;
padding: 1em 0;
}
.skill h3 {
color: rgba(0, 0, 0, 0.6);
font-size: 1.2em;
font-weight: normal;
text-transform: uppercase;
margin: 1em 0 0 0;
}
#experience {
padding: 4em 0;
text-align: center;
}
#experience .wrapper {
position: relative;
}
.timeline {
margin-left: 50%;
padding-top: 1.5em;
}
.year {
text-align: center;
width: 50px;
margin-left: -25px;
line-height: 3em;
}
.year:before {
display: block;
margin: 0 auto;
content: '';
background-color: rgba(0, 0, 0, 0.1);
width: 3px;
height: 9em;
}
.year.compact:before {
height: 3em;
}
.experience {
position: absolute;
width: 45%;
background: rgba(0, 0, 0, 0.05);
padding: 0.5em 0.7em;
box-sizing: border-box;
text-align: right;
overflow: hidden;
border-radius: 3px;
}
.right {
right: 0;
text-align: left;
}
.ongoing {
padding-top: 3em;
background: linear-gradient(to top, rgba(0, 0, 0, 0.05) 90%, transparent 100%);
}
.event {
background: none;
padding: 0;
}
.event.right:before {
content: '★';
color: #ff685d;
display: block;
float: left;
width: 1.3em;
}
.event.left:before {
content: '★';
color: #ff685d;
display: block;
float: right;
width: 1.3em;
}
.experience p {
margin: 0;
font-size: 0.9em;
}
footer {
display: block;
padding: 2em 0;
text-align: center;
}
footer a {
padding: 1em;
display: inline-block;
}
footer a svg path {
fill: #ff685d;
transition: fill 0.2s;
}
@media screen and (max-width: 550px) {
body { font-size: 13px; }
h1 { font-size: 2.3em; }
.experience { line-height: 1.2em; }
}
</style>
</head>
<body>
<header>
<nav>
<a href="#work">Work</a>
<a href="#skills">Skills</a>
<a href="#experience">Experience</a>
</nav>
<h1>Adrien Rey-Jarthon</h1>
<hr>
<p>
I'm a full stack <em>ruby developer</em>, private <em>pilot</em> and <em>bass guitar</em> player.<br />
Passionate about <em>science</em>, <em>energy</em>, <em>engineering</em>, <em>repairability</em>, <em>DIY</em>.<br />
Also the founder of <a href="https://updown.io" target="blank"><em>updown.io</em></a>.</p>
</header>
<div id="work">
<h2>work</h2>
<div class="wrapper projects grid">
<div class="grid-1">
<a href="https://updown.io" target="blank">
<div class="project dark updown">
<h3>updown.io</h3>
<p>
A website monitoring service (like Pingdom)<br/>
with a simple UX and a cheap pricing. Since 2012.
</p>
</div>
</a>
</div>
<div class="grid-2">
<a href="https://github.com/jarthod/render-later" target="blank">
<div class="project render-later">
<h3>
<svg height="12" width="12" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="0.4" stroke-linejoin="round"><path d="M1 4 l2-3 l1 3 l2 -3 l2 3 l-2 6 l-2 -6 h4 l1 -3 l2 3 l-5 6 l-5-6 h10 m-2-3 h-6"/></svg>
render-later
</h3>
<p>
A ruby gem to defer rendering to<br />
the end of the page, without Ajax.
</p>
</div>
</a>
</div>
<div class="grid-2">
<a href="https://github.com/intrepidd/working_hours" target="blank">
<div class="project working_hours">
<h3>
<svg height="12" width="12" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="0.4" stroke-linejoin="round"><path d="M1 4 l2-3 l1 3 l2 -3 l2 3 l-2 6 l-2 -6 h4 l1 -3 l2 3 l-5 6 l-5-6 h10 m-2-3 h-6"/></svg>
working_hours
</h3>
<p>
A modern ruby gem allowing to do time<br />
calculation with business / working hours.
</p>
</div>
</a>
</div>
<div class="grid-2">
<a href="https://github.com/jarthod/ssl-test" target="blank">
<div class="project ssl-test">
<h3>
<svg height="12" width="12" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="0.4" stroke-linejoin="round"><path d="M1 4 l2-3 l1 3 l2 -3 l2 3 l-2 6 l-2 -6 h4 l1 -3 l2 3 l-5 6 l-5-6 h10 m-2-3 h-6"/></svg>
ssl-test
</h3>
<p>
A small ruby gem to help you test<br />
a website's SSL certificate.
</p>
</div>
</a>
</div>
<div class="grid-2">
<a href="https://github.com/jarthod/rdap" target="blank">
<div class="project rdap">
<h3>
<svg height="12" width="12" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" stroke="currentColor" stroke-width="0.4" stroke-linejoin="round"><path d="M1 4 l2-3 l1 3 l2 -3 l2 3 l-2 6 l-2 -6 h4 l1 -3 l2 3 l-5 6 l-5-6 h10 m-2-3 h-6"/></svg>
rdap
</h3>
<p>
A small ruby gem to query RDAP servers<br />
(which are destined to replace WHOIS).
</p>
</div>
</a>
</div>
<div class="grid-2">
<a href="https://github.com/jarthod/bisect" target="blank">
<div class="project ssl-test">
<h3>bisect</h3>
<p>
A command line utility to quickly extract<br />
lines from huge log files (written in C).
</p>
</div>
</a>
</div>
<div class="grid-2">
<a href="http://internet.rip" target="blank">
<div class="project internet-rip maybe">
<h3>internet.rip*</h3>
<p>
A status page for the Internet.<br />
*maybe, someday
</p>
</div>
</a>
</div>
</div>
</div>
<div id="skills">
<h2>skills</h2>
<div class="skill ruby">
<svg height="12" width="12" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" stroke="black" stroke-width="0.5" stroke-linejoin="round">
<path d="M1 5 l2-3 l1 3 l2 -3 l2 3 l-2 6 l-2 -6 h4 l1 -3 l2 3 l-5 6 l-5-6 h10 m-2-3 h-6"/>
</svg>
<h3>Ruby / Rails</h3>
</div>
<div class="skill html">
<svg data-icon="code" data-containerTransform="translate(0 25)" data-width="null" data-height="null" xmlns="http://www.w3.org/2000/svg" version="1.1" width="128" height="128" viewBox="0 0 128 128">
<path d="M74.313 0l-28.094 78h8.469l28.094-78h-8.469zm-36.313 11.25l-2.188 1.406-34 22-1.813 1.156v4.25l1.688 1.219 34 24 2.313 1.594v-9.781l-26.844-18.969 26.844-17.375v-9.5zm52 0v9.5l26.844 17.375-26.844 18.969v9.781l2.313-1.594 34-24 1.688-1.219v-4.25l-1.813-1.156-34-22-2.188-1.406z"
transform="translate(0 25)" />
</svg>
<h3>HTML / CSS / JS</h3>
</div>
<div class="skill ui">
<svg version="1.1" viewBox="0 0 48 48" width="48px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="Expanded"><g><g><path d="M43,48H29c-0.553,0-1-0.448-1-1V1c0-0.552,0.447-1,1-1h14c0.553,0,1,0.448,1,1v46C44,47.552,43.553,48,43,48z M30,46h12 V2H30V46z"/></g><g><rect height="2" width="5" x="29" y="8"/></g><g><rect height="2" width="5" x="29" y="14"/></g><g><rect height="2" width="5" x="29" y="20"/></g><g><rect height="2" width="5" x="29" y="26"/></g><g><rect height="2" width="5" x="29" y="32"/></g><g><rect height="2" width="5" x="29" y="38"/></g><g><path d="M15,46h-4c-2.757,0-5-2.243-5-5V12c0-0.197,0.059-0.391,0.168-0.555l6-9c0.371-0.557,1.293-0.557,1.664,0l6,9 C19.941,11.609,20,11.803,20,12v29C20,43.757,17.757,46,15,46z M8,12.303V41c0,1.654,1.346,3,3,3h4c1.654,0,3-1.346,3-3V12.303 l-5-7.5L8,12.303z"/></g><g><path d="M19,40H7c-0.553,0-1-0.448-1-1s0.447-1,1-1h12c0.553,0,1,0.448,1,1S19.553,40,19,40z"/></g><g><path d="M19,36H7c-0.553,0-1-0.448-1-1s0.447-1,1-1h12c0.553,0,1,0.448,1,1S19.553,36,19,36z"/></g><g><path d="M11,36c-0.553,0-1-0.448-1-1V16c0-0.552,0.447-1,1-1s1,0.448,1,1v19C12,35.552,11.553,36,11,36z"/></g><g><path d="M15,36c-0.553,0-1-0.448-1-1V16c0-0.552,0.447-1,1-1s1,0.448,1,1v19C16,35.552,15.553,36,15,36z"/></g><g><rect height="2" width="6" x="10" y="7"/></g><g><path d="M10,17c-2.206,0-4-1.794-4-4c0-0.552,0.447-1,1-1s1,0.448,1,1c0,1.103,0.897,2,2,2s2-0.897,2-2c0-0.552,0.447-1,1-1 s1,0.448,1,1C14,15.206,12.206,17,10,17z"/></g><g><path d="M16,17c-2.206,0-4-1.794-4-4c0-0.552,0.447-1,1-1s1,0.448,1,1c0,1.103,0.897,2,2,2s2-0.897,2-2c0-0.552,0.447-1,1-1 s1,0.448,1,1C20,15.206,18.206,17,16,17z"/></g></g></g></svg>
<h3>UI/UX</h3>
</div>
<div class="skill ops">
<svg data-icon="terminal" data-containerTransform="translate(0 1)" xmlns="http://www.w3.org/2000/svg" version="1.1" width="16" height="16" viewBox="0 0 16 16">
<path d="M.25 0c-.138 0-.25.112-.25.25v13.5c0 .138.112.25.25.25h15.5c.138 0 .25-.112.25-.25v-13.5c0-.138-.112-.25-.25-.25h-15.5zm1.75 2l4 2v1l-4 2v-1l3-1.469-3-1.531v-1zm6 4h5v1h-5v-1z" transform="translate(0 1)" />
</svg>
<h3>Ops</h3>
</div>
</div>
<div id="experience">
<h2>Experience</h2>
<div class="wrapper">
<div class="timeline">
<div class="year compact">2024</div>
<div class="year compact">2023</div>
<div class="year compact">2022</div>
<div class="year compact">2021</div>
<div class="year compact">2020</div>
<div class="year compact">2019</div>
<div class="year compact">2018</div>
<div class="year compact">2017</div>
<div class="year compact">2016</div>
<div class="year compact">2015</div>
<div class="year compact">2014</div>
<div class="year compact">2013</div>
<div class="year">2012</div>
<div class="year">2011</div>
<div class="year">2010</div>
<div class="year">2009</div>
<div class="year">2008</div>
<div class="year">2007</div>
</div>
<div class="experience event left" style="top: 11.21em;" title="Obtained my Private Pilot Licence (PPL) so I can fly light aircrafts">🛩️ Private Pilot Licence</div>
<div class="experience right ongoing" style="top: 0.0em; height: 77.45em;">
<strong>Solo-Founder of <a href="https://updown.io">updown.io</a></strong><p>Ruby, Rails, Web UI/UX, Product design, Infrastructure, MongoDB, Advanced Networking, JS/CSS/HTML, API, WebHooks, Optimization & Scalability</p>
</div>
<div class="experience left " style="top: 21.03em; height: 15.85em;">
<strong>Senior Engineering Manager at <a href="https://www.ringcentral.com/ringcx.html">RingCentral</a></strong><p>Leadership, Ruby, Rails, UI/UX, JS, MongoDB, Redis, WebSockets, WebHooks, security, API, SOA, advanced HTML & CSS, evented architecture, network, optimization & scalability</p>
</div>
<div class="experience left " style="top: 36.99em; height: 15.39em;">
<strong>Head of R&D at <a href="https://www.ringcentral.com/ringcx/omnichannel.html">Dimelo</a></strong><p></p>
</div>
<div class="experience left " style="top: 52.5em; height: 22.39em;">
<strong>Lead Developer at <a href="https://www.ringcentral.com/ringcx/omnichannel.html">Dimelo</a></strong><p></p>
</div>
<div class="experience event right" style="top: 79.31em;" title="e2midi is a hack made with a few friends. It has been selected to be demoed for the International Jazz Day at UNESCO.">Winning hack demoed at UNESCO – <a href="https://github.com/jarthod/e2midi">e2midi</a></div>
<div class="experience left " style="top: 76.01em; height: 5.91em;">
<strong>Developer at <a href="https://www.ringcentral.com/ringcx/omnichannel.html">Dimelo</a></strong><p>Ruby, Rails, MongoDB, Social Networks API</p>
</div>
<div class="experience event left" style="top: 84.44em;" title="The EIP trophy is organized by Epitech to reward the most promising projects.">Winning project of the EIP trophy – <a href="https://github.com/defuzeme">defuze.me</a></div>
<div class="experience right " style="top: 82.05em; height: 5.85em;">
<strong>Fifth year at Epitech</strong><p>Learning agent, neural network, graduation project: <a href="https://github.com/defuzeme">defuze.me</a></p>
</div>
<div class="experience event left" style="top: 87.07em;" title="">4<sup>th</sup> place at the <a href="images/code-of-duty.jpg">Code of Duty</a> coding contest</div>
<div class="experience left " style="top: 89.58em; height: 7.85em;">
<strong>(part-time) Internship at <a href="https://wholesale.banking.societegenerale.com/fr/">SGCIB</a></strong><p>Quantitative trading support: automated trading (algorithm), support tools (C++ & Ruby) and trading strategy analysis</p>
</div>
<div class="experience right " style="top: 89.08em; height: 8.8em;">
<strong>Fourth year at Epitech</strong><p>Artificial Intelligence, security, MASM32 malicious code, law, business, graduation project: <a href="https://github.com/defuzeme">defuze.me</a></p>
</div>
<div class="experience event right" style="top: 101.55em;" title="This was a local contest for Bordeaux based IT schools, the goal was to build in 24h (in teams of 5, one team per school) a web site following given specifications">Winning team at the “Codathlon” coding contest</div>
<div class="experience left " style="top: 98.02em; height: 5.85em;">
<strong>Internship at <a href="https://www.facebook.com/wopatahq">Wopata</a></strong><p>Ruby, Rails, API, Objective-C, iOS, machine learning</p>
</div>
<div class="experience left " style="top: 104.07em; height: 3.68em;">
<strong>(part-time) Developer at <a href="https://www.facebook.com/wopatahq">Wopata</a></strong><p>Ruby, Rails, API, JSON, machine learning</p>
</div>
<div class="experience right " style="top: 104.07em; height: 7.82em;">
<strong>Third year at Epitech</strong><p>Advanced C++ programming, event loop, Qt GUI, FTP, more networking, audio streaming</p>
</div>
<div class="experience event left" style="top: 115.55em;" title="This was a local contest for Bordeaux based IT schools, the goal was to build in 24h (in teams of 5, one team per school) a CMS template implementing the latest accessibility specifications (WCAG 2.0 / AA)">Winning team at the “Codathlon” coding contest</div>
<div class="experience right " style="top: 113.03em; height: 6.83em;">
<strong>Second year at Epitech</strong><p>PHP, HTML, CSS, Networking, Security, FTP, x86 ASM, <a href="https://sourceforge.net/projects/collision/">Multiplayer 3D Game</a></p>
</div>
<div class="experience left " style="top: 120.33em; height: 5.58em;">
<strong>Internship at <a href="https://www.facebook.com/wopatahq">Wopata</a></strong><p>Ruby, Rails, UI, HTML, CSS, JS, SVG, expert system</p>
</div>
<div class="experience right " style="top: 126.05em; height: 8.87em;">
<strong>First year at Epitech</strong><p>Advanced C programming, Raytracing, SQL, Shell, Parsers, AST</p>
</div>
<div class="experience event left" style="top: 135.56em;" title="International algorithmic programming contest">🥉 Bronze medalist at the <a href="https://www.france-ioi.org/olympiades/index.html">IOI 2007</a></div>
<div class="experience event right" style="top: 137.56em;" title="Equivalent to A levels with Honors">French Baccalaureate, scientific section 🎓</div>
</div>
</div>
<footer>
<a href="https://github.com/jarthod" target="blank">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
<title>Github</title>
<path d="M16 0c-8.835 0-16 7.162-16 16 0 7.068 4.579 13.072 10.938 15.188.8.147 1.094-.357 1.094-.781 0-.38-.023-1.384-.031-2.719-4.451.967-5.375-2.156-5.375-2.156-.728-1.848-1.781-2.313-1.781-2.313-1.453-.993.125-1 .125-1 1.606.113 2.438 1.656 2.438 1.656 1.427 2.445 3.745 1.754 4.656 1.344.145-1.034.574-1.756 1.031-2.156-3.553-.404-7.313-1.774-7.313-7.906 0-1.747.632-3.163 1.656-4.281-.164-.405-.714-2.048.156-4.25 0 0 1.349-.414 4.406 1.656 1.276-.355 2.639-.524 4-.531 1.359.006 2.722.176 4 .531 3.055-2.07 4.406-1.656 4.406-1.656.873 2.203.321 3.846.156 4.25 1.025 1.119 1.656 2.535 1.656 4.281 0 6.147-3.748 7.51-7.313 7.906.575.494 1.094 1.476 1.094 2.969 0 2.139-.031 3.851-.031 4.375 0 .428.282.938 1.094.781 6.352-2.12 10.938-8.12 10.938-15.188 0-8.838-7.163-16-16-16z"
/>
</svg>
</a>
<a href="mailto:[email protected]" target="blank">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 32 32">
<title>Email</title>
<path d="M.5 0c-.3 0-.5.2-.5.5v2c0 .3.206.587.406.688l15.094 7.625c.3.1.706.1.906 0l15.094-7.625c.3-.1.5-.388.5-.688v-2c0-.3-.2-.5-.5-.5h-31zm-.25 6.156c-.141 0-.25.119-.25.344v15c0 .3.2.5.5.5h31c.3 0 .5-.2.5-.5v-15c0-.3-.206-.412-.406-.313l-15.094 7.625c-.3.1-.706.1-.906 0l-15.188-7.625c-.05-.025-.109-.031-.156-.031z"
transform="translate(0 5)" />
</svg>
</a>
<a href="https://twitter.com/adrienjarthon" target="blank">
<svg xmlns="http://www.w3.org/2000/svg" height="16" viewBox="0 0 1200 1227" fill="#b1aaa0">
<title>X (formerly Twitter)</title>
<path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z"/>
</svg>
</a>
</footer>
</body>
</html>