-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
209 lines (201 loc) · 9.21 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
<!DOCTYPE html>
<html xmlns:v-bind="http://www.w3.org/1999/xhtml">
<head>
<title>Timothée Jeannin</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container" id="app">
<div class="row mt-5">
<div class="col-xl-7">
<h1 class="display-3">Timothée <b>Jeannin</b></h1>
2 Rue du Faubourg Boutonnet 34090 Montpellier, France<br/>
<a href="mailto:[email protected]">[email protected]</a><br/>
<a href="tel:+33 670 542 052">+33 670 542 052</a>
<br/><br/><br/>
More about me on <a href="https://github.com/TimotheeJeannin">GitHub</a> and
<a href="https://stackoverflow.com/users/781588/timoth%C3%A9e-jeannin">StackOverflow</a>.
</div>
<div class="col-xl-3 offset-xl-1 d-none d-xl-block">
<img class="img-thumbnail rounded-0 p-3" src="picture.png">
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="display-4 mt-5 mb-2 font-weight-bold">Experiences</h2>
<div class="row pt-3 tj-section" v-for="experience in experiences">
<div class="col-md-2 text-right font-weight-light d-none d-md-block tj-visible-print-block">
{{ experience.timeFrame }}
</div>
<div class="col-md-10">
<span class="font-weight-bold" v-html="experience.title"></span>
<br class="d-block d-xl-none"/>
<span class="font-weight-light">
<span class="mr-1 d-inline d-md-none">{{ experience.timeFrame }}</span>
{{ experience.info }}
</span>
<br/>
<span v-html="experience.description"></span><br/>
<span class="tj-stack">
<span v-for="(techno, index) in experience.stack">
<a v-bind:href="techno.link">{{ techno.name }}</a><span
v-show="index !== (experience.stack.length-1)">, </span>
</span>
</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="display-4 mt-5 mb-2 font-weight-bold">Education</h2>
<div class="row py-3">
<div class="col-md-2 text-right font-weight-light d-none d-md-block tj-visible-print-block">
2008 - 2011
</div>
<div class="col-md-10">
<span class="font-weight-bold">Master-level Engineering degree from
<a href="https://www.centrale-marseille.fr/"> Ecole Centrale Marseille</a></span>
<br class="d-block d-xl-none"/>
<span class="font-weight-light">
<span class="mr-1 d-inline d-md-none">2008 - 2011</span>
(3 years - Marseille, France)
</span><br/>
A French engineering school which awards the Master's Degree in Computer Science and Engineering.
</div>
</div>
<div class="row py-3">
<div class="col-md-2 text-right font-weight-light d-none d-md-block tj-visible-print-block">
2006 - 2008
</div>
<div class="col-md-10">
<span class="font-weight-bold">Classe Préparatoire at Lycée Turgot</span>
<br class="d-block d-xl-none"/>
<span class="font-weight-light">
<span class="mr-1 d-inline d-md-none">2006 - 2008</span>
(2 years - Paris, France)
</span><br/>
Two years intensive undergraduate course, specialized in Maths and Physics,<br class="d-none d-lg-block"/>
to prepare for competitive exam to enter French engineering schools.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="display-4 mt-5 mb-2 font-weight-bold">Personal Projects</h2>
<div class="row pt-3 tj-section" v-for="project in personalProjects">
<div class="col-md-2 text-right font-weight-light d-none d-md-block tj-visible-print-block">
{{ project.timeFrame }}
</div>
<div class="col-md-10">
<span class="font-weight-bold" v-html="project.title"></span><br/>
<span v-html="project.description"></span>
<span class="tj-stack">
<span v-for="(techno, index) in project.stack">
<a v-bind:href="techno.link">{{ techno.name }}</a><span
v-show="index !== (project.stack.length-1)">, </span>
</span>
</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="display-4 mt-5 mb-2 font-weight-bold">Programming Skills</h2>
<div class="card-columns">
<div class="card border-0 my-4" v-for="skillSet in skillSets">
<div>
<div style="margin-left: 50%;">
<h6><b>{{ skillSet.name }}</b></h6>
</div>
</div>
<div v-for="skill in skillSet.skills">
<div style="width: 50%; float: right">
<div class="progress">
<div class="progress-bar" v-bind:style="{ 'width' : skill.evaluation}"></div>
</div>
</div>
<div class="text-right"
style="width: 50%; float: right; padding-right: 15px">{{ skill.name }}</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="display-4 mt-5 mb-2 font-weight-bold">Graphic Design</h2>
<div class="row pt-3">
<div class="col-md-10 offset-md-2">
<span class="font-weight-bold">Adobe Photoshop:</span>
Realization of many logos, posters and booklets.
</div>
</div>
<div class="row pt-3">
<div class="col-md-10 offset-md-2">
<span class="font-weight-bold">Adobe InDesign:</span>
84 page booklet for the Centrale Marseille Enterprises forum.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="display-4 mt-5 mb-2 font-weight-bold">Languages</h2>
<div class="row pt-3">
<div class="col-md-10 offset-md-2">
<span class="font-weight-bold">French:</span> First language.
</div>
</div>
<div class="row pt-3">
<div class="col-md-10 offset-md-2">
<span class="font-weight-bold">English:</span> Fluent both written and spoken.
</div>
</div>
<div class="row pt-3">
<div class="col-md-10 offset-md-2">
<span class="font-weight-bold">Japanese:</span> Beginner.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h2 class="display-4 mt-5 mb-2 font-weight-bold">Other Interests</h2>
<div class="row pt-3">
<div class="col-md-10 offset-md-2">
<span class="font-weight-bold">Sport:</span> Rock Climbing, HighLining, Windsurfing.
</div>
</div>
<div class="row pt-3">
<div class="col-md-10 offset-md-2">
<span class="font-weight-bold">Music:</span> Drums.
</div>
</div>
<div class="row pt-3">
<div class="col-md-10 offset-md-2">
<span class="font-weight-bold">Reading:</span> Comics, Science and technology.
</div>
</div>
<div class="row pt-3">
<div class="col-md-10 offset-md-2">
<span class="font-weight-bold">Traveling:</span> Thailand, United States, Spain, Turkey, Kenya,
Israel.
</div>
</div>
</div>
</div>
</div>
<br/><br/><br/><br/><br/><br/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.2.1/vue.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.min.js"></script>
<script src="index.js"></script>
</body>
</html>