-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
842 lines (659 loc) · 34.6 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
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<!--- basic page needs ================================================== -->
<meta charset="utf-8">
<title>Victor Delafontaine - CV</title>
<meta name="description" content="Victor Delafontaine - CV">
<meta name="author" content="Victor Delafontaine">
<!-- mobile specific metas ================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS ================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<!-- script ================================================== -->
<script src="js/modernizr.js"></script>
<script src="js/pace.min.js"></script>
<!-- favicons ================================================== -->
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body id="top">
<!-- header ================================================== -->
<header>
<div class="row">
<div class="top-bar">
<a class="menu-toggle" href="#"><span>Menu</span></a>
<nav id="main-nav-wrap">
<ul class="main-navigation">
<li class="current"><a class="smoothscroll" href="#intro" title="">Home</a></li>
<li><a class="smoothscroll" href="#about" title="">About</a></li>
<li><a class="smoothscroll" href="#resume" title="">Resume</a></li>
<li><a class="smoothscroll" href="#portfolio" title="">Portfolio</a></li>
<li><a class="smoothscroll" href="#contact" title="">Contact</a></li>
</ul>
</nav>
</div> <!-- /top-bar -->
</div> <!-- /row -->
</header> <!-- /header -->
<!-- intro section ================================================== -->
<section id="intro">
<div class="intro-overlay"></div>
<div class="intro-content">
<div class="row">
<div class="col-twelve">
<h1>Victor Delafontaine</h1>
<p class="intro-position">
<span>Robotic software engineer</span>
</p>
</div>
</div>
</div> <!-- /intro-content -->
<ul class="intro-social">
<li><a href="https://www.linkedin.com/in/victor-delafontaine/" target="_blank" ><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://github.com/Vicidel/" target="_blank" ><i class="fa fa-github"></i></a></li>
<li><a href="https://www.instagram.com/vicidel/" target="_blank" ><i class="fa fa-instagram"></i></a></li>
</ul> <!-- /intro-social -->
</section> <!-- /intro -->
<!-- about section ================================================== -->
<section id="about">
<div class="row section-intro">
<div class="col-twelve">
<h5>About</h5>
<h1>Let me introduce myself.</h1>
<div class="intro-info">
<img src="images/Delafontaine_photo.jpg" alt="Profile Picture">
<p class="lead">Victor Delafontaine. Robotic engineer with academic and professional experience with ROS+ROS2, C++, Docker and Python. Eager to
learn new tools and apply them to the growing world of mobile robotics. </p>
</div>
</div>
</div> <!-- /section-intro -->
<div class="row about-content">
<div class="col-six tab-full">
<h3>Profile</h3>
<p></p>
<ul class="info-list">
<li>
<strong>Fullname:</strong>
<span>Victor Delafontaine</span>
</li>
<li>
<strong>Birth Date:</strong>
<span>November 28, 1996</span>
</li>
<li>
<strong>Job:</strong>
<span>Robotic software engineer</span>
<span>Communication and networking engineer</span>
</li>
<li>
<strong>Website:</strong>
<span>vicidel.github.io</span>
</li>
<li>
<strong>Email:</strong>
<span>[email protected]</span>
</li>
</ul> <!-- /info-list -->
</div>
<div class="col-six tab-full">
<h3>Skills</h3>
<p></p>
<ul class="skill-bars">
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>C++</strong>
</li>
<li>
<div class="progress percent95"><span>95%</span></div>
<strong>ROS+ROS2</strong>
</li>
<li>
<div class="progress percent80"><span>80%</span></div>
<strong>Docker</strong>
</li>
<li>
<div class="progress percent70"><span>70%</span></div>
<strong>Bash</strong>
</li>
<li>
<div class="progress percent60"><span>60%</span></div>
<strong>Python</strong>
</li>
<li>
<div class="progress percent30"><span>30%</span></div>
<strong>SolidWorks</strong>
</li>
<li>
<div class="progress percent5"><span>1%</span></div>
<strong>HTML/CSS ;)</strong>
</li>
</ul> <!-- /skill-bars -->
</div>
</div>
<div class="row button-section">
<div class="col-twelve">
<a href="#contact" title="Contact Me" class="button stroke smoothscroll">Contact Me</a>
<a href="Delafontaine_CV.pdf" title="Download CV" class="button button-primary">Download CV</a>
</div>
</div>
</section> <!-- /process-->
<!-- resume section ================================================== -->
<section id="resume" class="grey-section">
<div class="row section-intro">
<div class="col-twelve">
<h5>Resume</h5>
<h1>More of my credentials.</h1>
<p class="lead"></p>
</div>
</div> <!-- /section-intro-->
<div class="row resume-timeline">
<!-- work header -->
<div class="col-twelve resume-header">
<h2>Work Experience</h2>
</div> <!-- /resume-header -->
<!-- work -->
<div class="col-twelve">
<div class="timeline-wrap">
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Robotic Software Engineer Internship</h3>
<p>Septembre 2020 - Present</p>
</div>
<div class="timeline-content">
<h4>RigiTech</h4>
<p>In the time spent at RigiTech I learned about the reality of growing start-ups where there is always something new to improve or implement.
Small teams also enables the work to be done in close communication with the hardware engineering team to ensure reliability and portability on the drone.
My work was focussed on the VTOL drone's onboard C++ ROS software and the communication with cloud, video stream and safety features,
as well as establishing a good working structure for me and my collegues (Docker structure, ROS2 networking)
</p>
</div>
</div> <!-- /timeline-block -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-graduation-cap"></i>
</div>
<div class="timeline-header">
<h3>Master Project</h3>
<p>February - August 2019</p>
</div>
<div class="timeline-content">
<h4>Swisscom Digital Lab</h4>
<p>I worked for six months at the Swisscom Digital Lab for my master thesis on the subject of precise localization or a LoRa beacon using communication signal strength.
By developing the solution from the ground up, I applied some of the methods and tools I had seen during my studies and learned some new ones.
This is the case for example of basic backend/frontend development that I had to learn from zero when I had to create a user interface for my system.
<br>For more details about the project, head to the portfolio section.
</p>
</div>
</div> <!-- /timeline-block -->
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
</div> <!-- /resume-timeline -->
<div class="row resume-timeline">
<!-- education header -->
<div class="col-twelve resume-header">
<h2>Education</h2>
</div> <!-- /resume-header -->
<!-- education -->
<div class="col-twelve">
<div class="timeline-wrap">
<!-- master -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Master Degree</h3>
<p>Sept. 2017 - Aug. 2019</p>
</div>
<div class="timeline-content">
<h4>EPFL, Lausanne, Switzerland</h4>
<p>My major was in robotics, with a course curriculum shared between robotics and systems engineering.
As much as possible I put the focus on mobile robotics and took some management courses to be able to understand better the engineering industry.</p>
</div>
</div> <!-- /timeline-block -->
<!-- chalmers -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Exchange Year</h3>
<p>Sept. 2016 - Jul. 2017</p>
</div>
<div class="timeline-content">
<h4>Chalmers University, Göteborg, Sweden</h4>
<p>Academic and cultural exchange done in replacement of the 3rd year of Bachelor at EPFL.
Enabled me to find some courses that I wouldn't have been able to take at EPFL and discover new work methods in another country.
</p>
</div>
</div> <!-- /timeline-block -->
<!-- bachelor -->
<div class="timeline-block">
<div class="timeline-ico">
<i class="fa fa-briefcase"></i>
</div>
<div class="timeline-header">
<h3>Bachelor Degree</h3>
<p>Sept. 2013 - Jul. 2017</p>
</div>
<div class="timeline-content">
<h4>EPFL, Lausanne, Switzerland</h4>
<p>Curriculum shared equally between computer, electrical and mechanical engineering. The bachelor is for students aiming for a Master on the subject of
robotics, micro/nanosystems or optical engineering. The diversity of courses makes for a good knowledge base regardless of the path chosen later on.</p>
</div>
</div> <!-- /timeline-block -->
</div> <!-- /timeline-wrap -->
</div> <!-- /col-twelve -->
</div> <!-- /resume-timeline -->
</section> <!-- /features -->
<!-- Portfolio Section ================================================== -->
<section id="portfolio">
<div class="row section-intro">
<div class="col-twelve">
<h5>Academic Projects</h5>
<h1>Check Out Some of My Work.</h1>
<p class="lead">Projects are where most of the learning is done. Here are the most notable I worked on
during my years at EPFL and Chalmers. They were done in very diverse courses and made me apply as well as learn a plethora of skills.</p>
</div>
</div> <!-- /section-intro-->
<div class="row portfolio-content">
<div class="col-twelve">
<!-- portfolio-wrapper -->
<div id="folio-wrapper" class="block-1-2 block-mob-full stack">
<!-- swisscom -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/swisscom/drone_square.png" alt="Swisscom LoRa">
<a href="#modal-swisscom" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Drone-aided Localization in LoRa IoT networks</h3>
<span class="folio-types">
2019, C++, ROS, Python, MATLAB, drones
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- simulator -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/simulator-lis/main_swarm2_square.png" alt="Simulator representing a single drone in high-fidelity mode">
<a href="#modal-lis" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Simulator for swarms of quadcopters</h3>
<span class="folio-types">
2019, MATLAB, drones
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- fish -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/fish-lsro/merged.png" alt="Robotic fish">
<a href="#modal-fish" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Design of an autonomous robotic fish</h3>
<span class="folio-types">
2018, mechanical design, SolidWorks, PCB
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- legged -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/legged/bob.jpg" alt="Legged control">
<a href="#modal-legged" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Control of a 2D legged robot</h3>
<span class="folio-types">
2018, MATLAB, control
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- simulation -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/sim/em_0_before.png" alt="Simulation and optimization">
<a href="#modal-sim" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Simulation of flux in large events</h3>
<span class="folio-types">
2018, AnyLogic, Java
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- tin174 -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/ai-tin174/overview.PNG" alt="Shrdlite">
<a href="#modal-tin" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Artifical Intelligence project Shrdlite</h3>
<span class="folio-types">
2017, AI, TypeScript, teamwork
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- elec assistant -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/elec-assistant/tp6.PNG" alt="Electronics">
<a href="#modal-elec" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Student assistant for electronics course</h3>
<span class="folio-types">
2018, electronics, pedagogy
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- flower pot -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/flower/flowerpot_margin.bmp" alt="Flower pot">
<a href="#modal-flower" class="overlay">
<div class="folio-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Smart flower pot</h3>
<span class="folio-types">
2017, Arduino, mechanical design, teamwork
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- prog assistant -->
<div class="bgrid folio-item">
<div class="item-wrap">
<img src="images/portfolio/prog-assistant/project_margin.png" alt="Programming">
<a href="#modal-prog" class="overlay">
<div class="folo-item-table">
<div class="folio-item-cell">
<h3 class="folio-title">Student assistant for programmation course</h3>
<span class="folio-types">
2016, C, pedagogy
</span>
</div>
</div>
</a>
</div>
</div> <!-- /folio-item -->
<!-- modal popups - begin
============================================================= -->
<!-- swisscom -->
<div id="modal-swisscom" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/swisscom/drone.png" alt="Swisscom system" />
</div>
<div class="description-box">
<h4>Drone-aided Localization in LoRa IoT networks</h4>
<p>My master thesis was done at the Swisscom Digital Lab supervised by MM. Rusu, Schiano, Cocco and Pr. Floreano.
It's goal was to develop a system for precise localization of a ground beacon using the LoRa communication signal strength with relation to one or multiple drones.</p>
<p>The first step of the project was to understand the relationship between the signal strength and the distance between the two devices.
With this information it was possible to develop simple localization algorithms in MATLAB.
These algorithms were then implemented in C++ using ROS to be run on the drone's onboard computer.
The project also included development of a web interface to visualize the drone's flight and the current localization's advancement.</p>
<p>Final grade of 5.5/6</p>
<div class="categories">2019, C++, Python, ROS, MATLAB, drones</div>
</div>
<div class="link-box3">
<a href="https://www.youtube.com/watch?v=7HQ6MxwWS4w" target="_blank">YouTube</a>
<a href="https://arxiv.org/abs/2004.03852" target="_blank">Paper</a>
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-swisscom -->
<!-- simulator -->
<div id="modal-lis" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/simulator-lis/sim.gif" alt="Simulator simulating 100 drones forming swarms"/>
</div>
<div class="description-box">
<h4>Versatile simulator for swarms fo quadcopters</h4>
<p>Semester projet done at the Laboratory of Intelligent Systems (LIS) supervised by Ms. Soria and Pr. Floreano.</p>
<p>The project's goal was to improve and add functionalities to an existing simulator.
The code running in MATLAB's SimuLink was fully converted to object-oriented programming in MATLAB in order to run multiple instances at the same time.
This enabled the introduction of swarm algorithms defined by Reynolds' rules.
The simulation can be run in either high-fidelity mode with a limited number of drones (<10) or in lightweight where the drone representation is very simplified but supports very large swarms.
Further improvements were added such as a realistic wind model and a user interface to start the simulations and plot relevant data.</p>
<p>Final grade of 5.75/6</p>
<div class="categories">2019, MATLAB, drones</div>
</div>
<div class="link-box">
<!-- <a href="images/portfolio/simulator-lis/delafontaine-simulator-report.pdf" target="_blank">Report</a> -->
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-lis -->
<!-- fish -->
<div id="modal-fish" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/fish-lsro/final.png" alt="" />
</div>
<div class="description-box">
<h4>Design of an autonomous robotic fish</h4>
<p>Semester project done at the Laboratory of Rototic Systems (LSRO) supervised by Mr. Bonnet and Pr. Mondada. </p>
<p>Complete mechanical redesign of an existing robotic fish in order to enable 3D movement in water.
The fish is modeled after a zebrafish, studied globally in genetics and comportemental studies.
The project's goal is to free the robot from a ground link it previously had.
In order to do that, a small mass was designed to changed the fish's center of mass, which paired with caudal fin movement enabled 3D movement.
</p>
<p>Final grade of 5.5/6</p>
<div class="categories">2018, mechanical design, SolidWorks, PCB</div>
</div>
<div class="link-box">
<!-- <a href="images/portfolio/fish-lsro/delafontaine-fish-report.pdf" target="_blank">Report</a> -->
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-fish -->
<!-- legged -->
<div id="modal-legged" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/legged/bob.jpg" alt="Legged control" />
</div>
<div class="description-box">
<h4>Control of a 2D legged robot</h4>
<p>Group project done in Pr. Ijspeert's "Legged Robots".
The developed MATLAB code controls a two legged 2D robot in a stable gait.
Parameters such as the robot's step length and its speed are defined before hand and influence the control algorithms.</p>
<p>Final grade of 5/6</p>
<div class="categories">2018, MATLAB, control</div>
</div>
<div class="link-box">
<!-- <a href="images/portfolio/legged/delafontaine-legged-report.pdf" target="_blank">Report</a> -->
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-legged -->
<!-- sim -->
<div id="modal-sim" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/sim/em_0_before.png" alt="Simulation and optimization" />
</div>
<div class="description-box">
<h4>Simulation of flux in large events</h4>
<p>Group project done in Pr. Yoo's "Simulation and Optimization of Industrial Applications".
The project's goal was to simulate and optimize a chosen flux.
Our team of two chose a flux of people in large event, in particular in Balelec,
EPFL's largest concert with more that 10 thousand people in one night.</p>
<p>Our project's simulated the flux of people expressing diverse hunger/thirst/music needs.
The optimization part of the project was done by finding the optimal solution to emergencies such as fire breaking out in random points of the venue.
</p>
<p>Final grade of 6/6</p>
<div class="categories">2018, AnyLogic, Java</div>
</div>
<div class="link-box">
<!-- <a href="images/portfolio/sim/delafontaine-balelec-report.pdf" target="_blank">Report</a> -->
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-sim -->
<!-- tin174 -->
<div id="modal-tin" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/ai-tin174/overview_smaller.png" alt="" />
</div>
<div class="description-box">
<h4>Artificial Intelligence project Shrdlite</h4>
<p>Project in group of 4 students to develop a simple artificial intelligence capable of parsing an input request and moving the blocks accordingly.
The routing between multiple states is done using an A* algorithm. </p>
<p>Final grade of 6/6</p>
<div class="categories">2017, AI, TypeScript, teamwork</div>
</div>
<div class="link-box">
<!-- <a href="https://github.com/Vicidel/TIN174_shrdlite-g" target="_blank">Details</a> -->
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-tin -->
<!-- elec assistant -->
<div id="modal-elec" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/elec-assistant/tp10.PNG" alt="" />
</div>
<div class="description-box">
<h4>Student assistant for Electronics II course</h4>
<p>Helping students on the laboratory sessions of Prs. Lacour and Kayal’s course on the subject
of transistor circuits.</p>
<div class="categories">2017, Electronics, pedagogy</div>
</div>
<div class="link-box">
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-elec -->
<!-- flower pot -->
<div id="modal-flower" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/flower/flowerpot.bmp" alt="" />
</div>
<div class="description-box">
<h4>Smart flower pot</h4>
<p>Design and creation of a prototype for an innovative smart flower pot for the
course Product Design and System Engineering.
The goal pursed by our team of six for this product was to have long battery life.
For this reason we decided against using a pump and instead had the weight of the flower pot itself pushing on a piston to pump the water up to the soil.
</p>
<p>Final grade of 5.25/6</p>
<div class="categories">2017, Arduino, mechanical design, teamwork</div>
</div>
<div class="link-box">
<!-- <a href="images/portfolio/flower/delafontaine-flower-report.pdf" target="_blank">Report</a> -->
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-flower -->
<!-- prog assistant -->
<div id="modal-prog" class="popup-modal slider mfp-hide">
<div class="media">
<img src="images/portfolio/prog-assistant/project.png" alt="" />
</div>
<div class="description-box">
<h4>Student assistant for Programmtion I & II course</h4>
<p>Helping a group of 15 students in the course of Pr. Boulic on the subject of C programming.
During the first semester for the exercices and small projects and for the second semester on their first major programming project.
</p>
<div class="categories">2016, C, pedagogy</div>
</div>
<div class="link-box">
<a href="#" class="popup-modal-dismiss">Close</a>
</div>
</div> <!-- /modal-prog -->
<!-- modal popups - end
============================================================= -->
</div> <!-- /portfolio-wrapper -->
</div> <!-- /twelve -->
</div> <!-- /portfolio-content -->
</section> <!-- /portfolio -->
<!-- contact ================================================== -->
<section id="contact">
<div class="row section-intro">
<div class="col-twelve">
<h5>Contact</h5>
<h1>Feel free to contact me.</h1>
<p class="lead">I'm available mostly by mail or through LinkedIn messages.</p>
</div>
</div> <!-- /section-intro -->
<div class="row contact-info">
<!-- phone -->
<div class="col-four tab-full">
<div class="icon">
<i class="icon-phone"></i>
</div>
<h5>Message me at:</h5>
<p>076 345 99 01</p>
</div>
<!-- mail -->
<div class="col-four tab-full collapse">
<div class="icon">
<i class="icon-mail"></i>
</div>
<h5>Mail me at:</h5>
<p>[email protected]</p>
</div>
<!-- linkedin -->
<div class="col-four tab-full">
<div class="icon">
<i class="fa fa-linkedin"></i>
</div>
<h5>Find me at:</h5>
<p>in/victor-delafontaine/</p>
</div>
</div> <!-- /contact-info -->
</section> <!-- /contact -->
<!-- footer ================================================== -->
<footer>
<div class="row">
<!-- my socials -->
<div class="col-six tab-full pull-right social">
<ul class="footer-social">
<li><a href="https://www.linkedin.com/in/victor-delafontaine/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://github.com/Vicidel/"><i class="fa fa-github"></i></a></li>
<li><a href="https://www.instagram.com/vicidel/"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- copyright -->
<div class="col-six tab-full">
<div class="copyright">
<span>© Copyright Kards 2016, design by <a href="http://www.styleshout.com/">styleshout</a></span>
</div>
</div>
<!-- top button -->
<div id="go-top">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="fa fa-long-arrow-up"></i></a>
</div>
</div> <!-- /row -->
</footer>
<!-- stuff -->
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script ================================================== -->
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>