-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (116 loc) · 4.95 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>My Presentation</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section><h2>Hello, I am Jean ;)</h2></section>
<section>
<section><h2>History</h2></section>
<section>
<h2>Highlight</h2>
<ul>
<li>1999 - Born</li>
<li>2003 - My first video game (Worms 3D)</li>
<li>2010 - Discovering front-end with HTML/CSS/PHP</li>
<li>2019 - Admitted in engineering school in apprenticeship with Safran Electronics and
Defense</i></li>
</ul>
</section>
<section>
<h2>Engineering School</h2>
<ul>
<li>2017 - Prepared during two years for the national entrance exam in physics, maths, computer
science and engineering.
</li>
<li>2019 - Success! Went to CentraleSupélec, top tier French school :)</li>
<li>Master's level program in computer science</li>
<li>Started focusing on <i>Database</i> and <i>Algorithmic</i></li>
<li>Switched to <i>Information Systems Architecture</i> and <i>Front-end</i> for my last year</li>
</ul>
</section>
</section>
<section>
<section><h2>Apprenticeship</h2></section>
<section>
Working at Safran Electronics and Defense (near Paris) in the
"Periscope" team. We design, test and repair electro-optical sights for submarines! I had two
missions...
</section>
<section>
<h2>Test automation</h2>
Designed and implemented an overall testing architecture with TestStand to perform unit tests on our devices.
<br/>
<br/>
The most satisfying part was when we started doing endurance tests during the night to save us time...
</section>
<section>
<h2>Updating the database</h2>
We store all device parameters (600 params/devices)
<br/>
<br/>
But... the web application remained the same since 2007! LAMP (Linux, Apache, MySQL, PHP) environment
<br/>
<br/>
Hardest part : history management, deal with the Information Systems department
</section>
<section>
What I've learned so far...
<br/>
<img src="./img/we_are_safe.jpeg"/>
</section>
</section>
<section>
<section><h2>Personal</h2></section>
<section>
<h2>Blockchain</h2>
I discovered blockchains and cryptocurrencies in 2019. I started investing at first but quickly shifted toward
making DApps (Web App for DeFi). It is since then my main hobby :)
</section>
<section>
<h2>Front-end</h2>
To build such DApp I deep dived into modern Front-end technologies. Mainly React with TypeScript as well as few common blockchain libraries (Web3.js, ethers.js, etc.)
<br/>
<br/>
I also learned Solidity but I am far away from being a blockchain engineer :/
</section>
<section>
<h2>Video Games</h2>
Last but not least, I used to play (A LOT) of competitive video games such as Counter Strike or League of Legends
<br/>
<br/>
Otherwise I am a Nintendo fan!
</section>
<section>
I’d love to get coffee and get to know you, so don’t hesitate to get in touch.
<br/>
<img src="./img/crypto_meme.jpeg" style="width:500px"/>
</section>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes]
});
</script>
</body>
</html>