-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
209 lines (182 loc) · 6.37 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
---
layout: default
title: About
---
<!--Left content-->
<div class="col-md-3 nopr left-content">
<!--Header-->
<header id="header">
<!--Main header-->
<div class="main-header">
<!--Profile image-->
<figure class="img-profile">
<img src="{{base}}/img/profile.jpg" alt=""/>
</figure>
<!--End profile image-->
</div>
<!--End main header-->
<div class="bottom-header bgWhite ofsTSmall ofsBSmall tCenter">
<ul class="social">
<li><a href="mailto:[email protected]"><i class="icon-mail"></i></a></li>
<li><a href="https://lb.linkedin.com/in/fayezlahoud"><i class="icon-linkedin"></i></a></li>
<li><a href="https://github.com/GrimReaperSam"><i class="icon-github"></i></a></li>
<li><a href="https://www.instagram.com/grimreapersam/"><i class="icon-instagram"></i></a></li>
<li><a href="https://www.flickr.com/photos/grimreapersam/"><i class="icon-flickr"></i></a></li>
</ul>
</div>
</header>
<!--End header-->
</div>
<!--End left content-->
<!--Right content-->
<div id="content-div" class="col-md-9 right-content">
<!--About Tab-->
<section id="about" class="bgWhite ofsInBottom">
<!--About -->
<div class="about">
<!--Main title-->
<div class="main-title">
<h1>who am i</h1>
{% include zigzag-divider.html %}
</div>
<!--End main title-->
<!--Content-->
<div class="content">
<!--Block content-->
<div class="block-content margBSmall">
<div class=" profile margBSmall">
<h1>Fayez Lahoud</h1>
<h3>Senior Data Scientist</h3>
</div>
<!--Row-->
<div class="row">
<p class="margBMSSSmall">
I am currently a Senior Data Scientist in the machine learning and analytics team at Pix4D SA.
</p>
<p class="margBMSSSmall">
My research interests are in Computer Vision and 3D Graphics, specifically to apply machine learning for image processing tasks.
</p>
</div>
<!--End row-->
{% include download_cv.html %}
</div>
<!--End block content-->
</div>
<!--End content-->
<!--Main title-->
<div class="main-title">
<h1>experience</h1>
{% include zigzag-divider.html %}
</div>
<!--End main title-->
<!--Content-->
<div class="content">
<!--Block content-->
<div class="block-content ">
<!--Timeline-->
<div class="timeline experience">
<!--Row-->
<div class="row ">
<div class="col-md-12">
<!--Experience holder-->
<div class="exp-holder margTop">
{% for experience in site.data.experiences reversed %}
<div class="exp">
<div class="hgroup">
<h4>{{experience.position}} - {{experience.company}}</h4>
<h6><i class="icon-calendar"></i>{{experience.period}}</h6>
</div>
<ul>
{% for work in experience.works %}
<li>{{work.work}}</li>
{% endfor %}
</ul>
<p>Technologies: <strong>{{experience.technologies}}</strong></p>
</div>
{% endfor %}
</div>
<!--End experience holder-->
</div>
</div>
<!--End row-->
</div>
<!--End timeline-->
</div>
<!--End block content-->
</div>
<!--End content-->
<!--Main title-->
<div class="main-title">
<h1>education</h1>
{% include zigzag-divider.html %}
</div>
<!--End main title-->
<!--Content-->
<div class="content">
<!--Block content-->
<div class="block-content">
<!--Timeline-->
<div class="timeline education">
<!--Row-->
<div class="row ">
<div class="col-md-12">
<!--Experience holder-->
<div class="exp-holder margTop">
{% for education in site.data.educations reversed %}
<div class="exp">
<div class="hgroup">
<h4>{{education.degree}} - {{education.university}}</h4>
<h6><i class="icon-calendar"></i>{{education.period}}</h6>
</div>
<ul>
{% for mention in education.mentions %}
<li>{{mention.mention}}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div> <!--End experience holder-->
</div>
</div>
<!--End row-->
</div>
<!--End timeline-->
</div>
<!--End block content-->
</div>
<!--End content-->
<!--Main title-->
<div class="main-title">
<h1>publications</h1>
{% include zigzag-divider.html %}
</div>
<!--End main title-->
<!--Content-->
<div class="content">
<!--Block content-->
<div class="block-content ">
<!--Timeline-->
<div class="timeline publications">
<!--Row-->
<div class="row ">
<div class="col-md-12">
<!--Publications holder-->
<div class="exp-holder margTop">
{% bibliography %}
</div>
<!--End publications holder-->
</div>
</div>
<!--End row-->
</div>
<!--End timeline-->
</div>
<!--End block content-->
</div>
<!--End content-->
</div>
<!--End about-->
</section>
<!--End about tab-->
</div>
<!--End right content-->