-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·1074 lines (1021 loc) · 37.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
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="My name is Alexandre Mouriec."
/>
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta
property="og:title"
content="My name is Alexandre Mouriec. "
/>
<meta
property="og:description"
content="My name is Alexandre Mouriec. "
/>
<meta property="og:url" content="https://alexandremouriec.com/" />
<meta property="og:site_name" content="Alexandre Mouriec" />
<meta
property="og:image"
content="https://alexandremouriec.com/images/Alexandre.jpg"
/>
<meta
name="keywords"
content="alexandremouriec, alexandre, mouriec, student, startup, tech, startup, vc, curious"
/>
<meta name="author" content="ALEXANDRE MOURIEC" />
<!-- Twitter integration -->
<meta name="twitter:title" content="Alexandre Mouriec" />
<meta name="twitter:image" content="Alexandre.png" />
<meta name="twitter:url" content="https://twitter.com/mrcalexandre" />
<title>Alexandre Mouriec</title>
<!-- Css -->
<link href="css/bootstrap.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<link href="https://afeld.github.io/emoji-css/emoji.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.10/css/all.css"
integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg"
crossorigin="anonymous"
/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<script>
(function(i, s, o, g, r, a, m) {
i["GoogleAnalyticsObject"] = r;
(i[r] =
i[r] ||
function() {
(i[r].q = i[r].q || []).push(arguments);
}),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(
window,
document,
"script",
"https://www.google-analytics.com/analytics.js",
"ga"
);
ga("create", "UA-81465752-1", "auto");
ga("send", "pageview");
</script>
</head>
<body style="overflow-x: hidden">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<div
class="navbar-toggle collapsed"
data-toggle="collapse"
data-target="#main-menu"
>
<span class="bar1"></span> <span class="bar2"></span>
<span class="bar3"></span>
</div>
<a class="navbar-brand" href="#"> <h2>Alexandre Mouriec</h2> </a>
</div>
<div class="collapse navbar-collapse" id="main-menu">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="contact.html" target="_blank">Contact</a></li>
</ul>
</div>
</div>
</nav>
<section class="intro">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<p>
<img
src="images/Alexandre.jpg"
class="photo"
alt="photo de profil"
/>
</p>
<p class="col-lg-12 col-md-12 col-md-push-2">
I am looking for a Fullstack or Frontend Developer role at a startup 🚀
<p class="col-md-6 col-md-push-3 col-xs-11 social">
<a
href="https://www.linkedin.com/in/alexandremouriec/"
target="_blank"
class="btn-social btn-linkedin"
><i class="fab fa-linkedin-in"></i
></a>
<a
href="https://twitter.com/mrcalexandre"
target="_blank"
class="btn-social btn-twitter"
><i class="fab fa-twitter"></i
></a>
<a
href="https://github.com/mrcalexandre"
target="_blank"
class="btn-social btn-github"
><i class="fab fa-github"></i
></a>
<a
href="https://angel.co/alexandremouriec"
target="_blank"
class="btn-social btn-angellist"
><i class="fab fa-angellist"></i
></a>
<a
href="https://producthunt.com/@mrcalexandre"
target="_blank"
class="btn-social btn-producthunt"
><i class="fab fa-product-hunt"></i
></a>
<a
href="https://medium.com/@mrcalexandre"
target="_blank"
class="btn-social btn-medium"
><i class="fab fa-medium"></i
></a>
<a
href="contact.html"
target="_blank"
class="btn-social btn-email"
><i class="far fa-envelope"></i
></a>
</p>
</div>
</div>
</div>
</section>
<section class="slider">
<div class="container">
<div class="row no-gutter">
<div class="col-lg-12">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="images/cover.jpg" alt="slide" class="cover" />
</div>
</div>
</div>
</div>
</div>
</section>
<section class="about" id="about">
<div class="container about">
<h1>About Me</h1>
<div class="row">
<div class="col-md-6">
<p>
Hi! I am Alexandre Mouriec and I am 23 years old. I am a recent graduate in <strong>Computer Science </strong> and <strong>Web Development </strong> at the IUT of Lannion. I have recently worked at <a href="https://apitic.com">APITIC</a> as a full stack developer, as part of a work-study program.
Outside college, I am working for companies or working on
side-projects.
</p>
<p>
<strong>Curious</strong> and <strong>passionate</strong> about
computer science, startups, VC, development, and more... I am
always excited to discover a new field or topic. <br />
I love making things so I often work on
<a href="#projects">side-projects</a>. These projects help me
learn new skills like programming <a href="#skills">skills</a> and
solve problems. <br /><br />
</p>
</div>
<div class="col-md-6">
<p>
I had the chance to work with amazing
<a href="#work">companies</a> and talented people over the last
few years. There, I worked <strong>autonomously</strong>,
sometimes <strong>remotely</strong> on small to really big
projects. I love
<strong
>working in fast-paced startups trying to solve big
problems</strong
>. <br />
<br /><br />Feel free to contact by
<a href="/contact.html" target="_blank">email here</a> or DM me on
<a href="https://twitter.com/mrcalexandre">Twitter anytime</a>. I
am always happy to help!
</p>
<h4>Alexandre Mouriec</h4>
</div>
</div>
</div>
</section>
<section id="work">
<div class="container">
<div class="row">
<h1>Work</h1>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-12 logo">
<a href="https://apitic.com" target="_blank"
><img
src="images/apitic.jpg"
class="company-logo"
id="apitic-logo"
alt="apitic logo"
/></a>
<p>September 2019 - August 2020</p>
<ul>
<li>
Worked as a Web developer in the Food industry in a SaaS
company building products for restaurants & other businesses
</li>
<li>Using Symfony, PHP, JavaScript,Vue JS, Vuetify</li>
</ul>
<br />
<p class="text-center">
<a
href="https://apitic.com"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-12 logo">
<a href="https://getro.com" target="_blank"
><img
src="images/getro-logo.png"
class="company-logo"
id="getro-logo"
alt="Getro logo"
/></a>
<p>April 2019 - August 2019</p>
<ul>
<li>
Worked as a Frontend Developer and Growth intern to grow the
number of VCs that use
<a href="https://getro.com">Getro</a>
</li>
<li>Used React to build one of Getro's products</li>
</ul>
<br />
<p class="text-center">
<a
href="https://getro.com"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-12 logo">
<a href="http://cmb.fr" target="_blank"
><img
src="images/Credit_mutuel_ARKEA.png"
class="company-logo"
id="cmb-logo"
alt="CMB Arkea logo"
/></a>
<p>July 2018 - August 2018</p>
<ul>
<li>
Summer job during the summer in a Credit Mutuel Arkea bank
office
</li>
<li>
Welcoming and helping clients and administrative tasks
</li>
<li>Helping clients affected by frauds</li>
</ul>
<p class="text-center">
<a
href="http://cmb.fr"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-12 logo">
<a href="https://getro.com" target="_blank"
><img
src="images/getro-logo.png"
class="company-logo"
id="getro-logo"
alt="Getro logo"
/></a>
<p>April 2018 - July 2018</p>
<ul>
<li>
Worked as a Growth intern to grow the number of VCs that use
<a href="https://getro.com">Getro</a>
</li>
<li>Was hired after launching a project on Product Hunt</li>
<li>Worked remotely for Getro while being in college</li>
</ul>
<p class="text-center">
<a
href="https://getro.com"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-9 logo">
<a href="https://stuffi.fr" target="_blank"
><img
src="images/stuffi-logo.png"
class="company-logo stuffi"
alt="logo Stuffi"
/></a>
<p>July 2014 -July 2018</p>
<ul>
<li>News articles writing on the Internet of Things</li>
<li>Interviews writing on the Internet of Things</li>
<li>
Making of a Messenger chatbot to be updated on every news
article and deal
</li>
</ul>
<p class="text-center">
<a
href="https://stuffi.fr/author/alex"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-9 logo">
<a href="https://frandroid.com" target="_blank"
><img
src="images/frandroid-logo.png"
class="company-logo frandroid"
alt="logo Frandroid"
/></a>
<br />
<p>January 2018 - January 2018</p>
<ul>
<li>
Technology watch on the smartphone industry in general
</li>
<li>Writing of news articles CES 2018</li>
<li>69000+ page views</li>
</ul>
<br />
<p class="text-center">
<a
href="https://frandroid.com/author/alexmouriec"
class="btn btn-primary btn-sm, seemorefrandroid"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail ">
<div class="hovereffect ">
<div class="col-md-4 col-xs-9 logo ">
<a href="https://www.facebook.com/pelikantboat/" target="_blank"
><img
src="images/pelikant-logo.png"
class="company-logo pelikant"
alt="logo Pelikant"
/></a>
<p>August 2017 - October 2017</p>
<ul>
<li>Founding member of Pelikant Boat</li>
<li>
Participated in the making of 80% of an autonomous boat to
clean garbage in oceans
</li>
<li>This boat was controlled by Raspberry Pis</li>
</ul>
<p class="text-center">
<a
href="https://www.facebook.com/pelikantboat/"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-9 logo">
<a
href="https://www.linkedin.com/company/argos-vr-systems/?originalSubdomain=fr"
target="_blank"
><img
src="images/argosvr-logo.jpg"
class="argosvr"
alt="Logo Argos"
/></a>
<p>January 2017 - July 2017</p>
<ul>
<li>
R&D on a 3d Capture System made of more than 100 Rapsberry
Pis and several DSLRs
</li>
<li>Customer Support with our customers around the world</li>
</ul>
<br />
<p class="text-center">
<a
href="https://www.linkedin.com/company/argos-vr-systems/"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-9 logo">
<a href="https://thecorner.fr" target="_blank"
><img
src="images/the-corner-logo.png"
class="thecorner company-logo"
alt="Logo The Corner"
/></a>
<br />
<p>June 2016 - June 2016</p>
<ul>
<li>Took part in a bootcamp about Entrepreneurship</li>
<li>UI, UX, Growth Hacking, Traction,...</li>
<li>
Lean Canvas, Lean Startup, Scalability and much more...
</li>
</ul>
<p class="text-center">
<a
href="https://thecorner.fr"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="education">
<div class="container">
<div class="row">
<h1>Education</h1>
<div class="col-md-4 col-xs- col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-9 logo">
<a href="http://www.iut-lannion.fr/" target="_blank"
><img
src="images/iut-lannion.png"
class="company-logo"
alt="Logo IUT Lannion"
/></a>
<h5>Computer Science and Web Development degree (September 2019 - August 2020)</h5>
<ul>
<li>HTML, CSS, Javascript, PHP, MySQL, PostgreSQL</li>
<li>
Angular, React, Ionic, Laravel, Symfony
</li>
<li>Docker, Wordpress, Magento</li>
</ul>
<p class="text-center">
<a
href="http://www.iut-lannion.fr/"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs- col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-9 logo">
<a href="http://www.iut-lannion.fr/" target="_blank"
><img
src="images/iut-lannion.png"
class="company-logo"
alt="Logo IUT Lannion"
/></a>
<h5>Computer Science degree (September 2017 - June 2019)</h5>
<ul>
<li>C, Java, Python</li>
<li>
HTML, CSS, Javascript, PHP, Bootstrap, SQL (PostgreSQL)
</li>
<li>Project Management, Agile Methods, SCRUM</li>
</ul>
<p class="text-center">
<a
href="http://www.iut-lannion.fr/"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-9 logo">
<a href="https://www.enib.fr/fr/" target="_blank"
><img
src="images/logo-enib.jpg"
class="company-logo enib"
alt="logo ENIB"
/></a>
<br />
<h5>Preparatory cycle (From September 2015 to January 2017)</h5>
<ul>
<li>Algorithmic, Python</li>
<li>Analog and digital electronics</li>
<li>Automatism, Industrial design, Mechanics</li>
</ul>
<br />
<br />
<p class="text-center">
<a
href="https://www.enib.fr/fr/"
class="btn btn-primary btn-sm seemoreenib"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-xs-9 col-xs-push-1 col-md-push-0 thumbnail">
<div class="hovereffect">
<div class="col-md-4 col-xs-9 logo">
<a href="http://www.lyceeduvoeu.fr/" target="_blank"
><img
src="images/voeu-logo.png"
class="company-logo voeu"
alt="logo Lycee Notre Dame du Voeu"
/></a>
<h5>Notre Dame du Voeu High School</h5>
<p>Scientific Baccalauréat (2013 - 2015)</p>
<ul>
<li>Scientific classes with a Computer Science option</li>
<li>Programmed in Java</li>
<li>Made a cryptography desktop app in Java</li>
</ul>
<p class="text-center">
<a
href="http://www.lyceeduvoeu.fr/"
class="btn btn-primary btn-sm"
target="_blank"
>See more</a
>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="projects">
<div class="container">
<div class="row fh5co-feature-2">
<h1>Projects</h1>
<br />
<div class="col-md-4 col-sm-6 fh5co-feature-item">
<span class="fh5co-feature-icon fh5co-circle"
><img
class="photoProjet"
src="images/buzzfeed.png"
alt="Rocket icon"
/></span>
<h3 class="text-center fh5co-feature-title">Hire A BuzzFeeder</h3>
<p class="text-center fh5co-feature-description">
Built a website to help employees from
<a href="https://buzzfeed.com">BuzzFeed</a> who were laid off by
the company find a new job <br />Website visited more than 70 000
times <br />Helped several journalists find a new job
<br />Project built with HTML, CSS, Bootstrap, PHP, PostgreSQL,
hosted on Heroku
</p>
<p class="text-center">
<a
href="http://hireabuzzfeeder.herokuapp.com/"
class="btn btn-primary btn-sm"
target="_blank"
>Visit</a
>
</p>
</div>
<div class="col-md-4 col-sm-6 fh5co-feature-item">
<span class="fh5co-feature-icon fh5co-circle"
><img
class="photoProjet"
src="images/startupicon.png"
alt="Rocket icon"
/></span>
<h3 class="text-center fh5co-feature-title">
Personal Website V1 and V2
</h3>
<p class="text-center fh5co-feature-description">
V1: made this version as my first website project(see below)<br />V2:
The goal with this new version was to make something much more
minimalist than the Version 1. <br />Project built with HTML, CSS,
Bootstrap, hosted on Github Pages
</p>
<p class="text-center">
<a
href="https://alexandremouriec.com/alexandremouriecV1"
class="btn btn-primary btn-sm"
target="_blank"
>Visit</a
>
</p>
</div>
<div class="col-md-4 col-sm-6 fh5co-feature-item">
<span class="fh5co-feature-icon fh5co-circle"
><img
class="photoProjet"
src="images/initialized-logo.png"
alt="Initialized Capital Jobs"
/></span>
<h3 class="text-center fh5co-feature-title">Initialized Jobs</h3>
<p class="text-center fh5co-feature-description">
Built an unofficial Job Board for the VC fund of Alexis Ohanian
(Cofounder of Reddit) and Garry Tan. The goal was to build a
website for them "Without Their Permission" (Name of Alexis
Ohanian's book).<br />Project built with HTML, CSS, Bootstrap,
hosted on Github Pages
</p>
<p class="text-center">
<a
href="http://alexandremouriec.com/InitializedJobs"
class="btn btn-primary btn-sm"
target="_blank"
>Visit</a
>
</p>
</div>
<div class="col-md-4 col-sm-6 fh5co-feature-item">
<span class="fh5co-feature-icon fh5co-circle"
><img
class="photoProjet"
src="images/izyout.png"
alt="IzyOut logo"
/></span>
<h3 class="text-center fh5co-feature-title">IzyOut</h3>
<p class="text-center fh5co-feature-description ">
IzyOut is a project made with several friends. IzyOut helps
create, find and search for events based on location, in areas
where there are less events. The app is coded in HTML5, CSS3, PHP,
SQL, JS and Bootstrap.
</p>
<p class="text-center ">
<a
href="http://rwanito.fr/projets/izyout/"
class="btn btn-primary btn-sm "
target="_blank"
>Visit</a
>
</p>
</div>
<div class="col-md-4 col-sm-6 fh5co-feature-item">
<span class="fh5co-feature-icon fh5co-circle"
><img
class="photoProjet"
src="images/matchingdonations.png"
alt="Matching Donations logo"
/></span>
<h3 class="text-center fh5co-feature-title">Matching Donations</h3>
<p class="text-center fh5co-feature-description">
I made this during the immigration ban in January 2017 to help
people match donations to the ACLU. The website was visited by
over 23000 people and was able to collect $10000+. <br />Project
built with HTML, CSS, Bootstrap, hosted on Github Pages
</p>
<p class="text-center">
<a
href="http://matchingdonations.us"
class="btn btn-primary btn-sm"
target="_blank"
>Visit</a
>
</p>
</div>
<div class="col-md-4 col-sm-6 fh5co-feature-item">
<span class="fh5co-feature-icon fh5co-circle"
><img
class="photoProjet"
src="images/stuffi.jpg"
alt="Stuffi logo"
/></span>
<h3 class="text-center fh5co-feature-title">StuffiBot</h3>
<p class="text-center fh5co-feature-description">
Made a Messenger chatbot for the French media Stuffi.fr to help
people be updated on the latest news article and deal on the
Internet of Things. You can find it in the Discover tab of
Messenger. <br />Project built with Chatfuel platform
</p>
<p class="text-center">
<a
href="https://m.me/stuffifr"
class="btn btn-primary btn-sm"
target="_blank"
>Try it</a
>
</p>
</div>
<div class="col-md-4 col-sm-6 fh5co-feature-item">
<span class="fh5co-feature-icon fh5co-circle"
><img
class="photoProjet"
src="images/garrixbot.jpeg"
alt="GarrixBot logo"
/></span>
<h3 class="text-center fh5co-feature-title">GarrixBot</h3>
<p class="text-center fh5co-feature-description">
Inspired by the rise of celebrity bots like SelenaBot, I decided
to build a chatbot for Martin Garrix because I saw a huge fanbase
around this DJ. <br />Project built with Chatfuel platform
</p>
<p class="text-center">
<a
href="https://m.me/garrixbot"
class="btn btn-primary btn-sm"
target="_blank"
>Try it</a
>
</p>
</div>
</div>
</div>
</section>
<section class="skills" id="skills">
<div class="container about">
<div class="row ">
<h1>Skills</h1>
<div class="col-md-4 ">
<h4>Full Stack Development</h4>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>PHP</li>
<li>Boostrap</li>
</ul>
<br />
<h4>Project Management</h4>
<ul>
<li>UML</li>
<li>Git (Gitlab/Github)</li>
<li>PERT</li>
<li>GANTT</li>
<li>Kanban(Trello)</li>
</ul>
</div>
<div class="col-md-4 ">
<h4>Frameworks</h4>
<ul>
<li>Angular</li>
<li>Vue</li>
<li>React</li>
<li>Laravel</li>
<li>Symfony</li>
</ul>
<br />
<h4>Languages</h4>
<ul>
<li>French - Native Language</li>
<li>English - First of Cambridge B2 -Europass level C1</li>
<li>Spanish - B1 Level</li>
</ul>
</div>
<div class="col-md-4">
<h4>Other Tech Skills</h4>
<ul>
<li>WordPress</li>
<li>Docker</li>
<li>phpBB</li>
<li>Raspberry Pi</li>
<li>SQL (PostgreSQL)</li>
</ul>
<br />
<h4>General</h4>
<ul>
<li>Remote Work</li>
<li>Technical and News Writing</li>
<li>Technology Watch</li>
<li>Technical English</li>
</ul>
<br /><br />
</div>
</div>
</div>
</section>
<section class="publications" id="publications">
<div class="container about">
<div class="row">
<h1>Publications</h1>
<div class="col-md-4">
<h4>Medium</h4>
<p>
<a
href="https://medium.com/@mrcalexandre/i-turned-off-notifications-on-my-phone-and-you-should-too-6bad216e61f4"
target="_blank"
>I Turned Off Notifications On My Phone And You Should Too</a
>
: <em>January 2017</em>
</p>
<p>
<a
href="https://medium.com/the-corner-mindset/le-levelup-camp-ou-comment-passer-au-niveau-sup%C3%A9rieur-ee7341e7c4ad"
target="_blank"
>Le LevelUp Camp, ou comment passer au niveau supérieur</a
>
: <em>July 2016</em>
</p>
<p class="text-center">
<a
href="https://medium.com/@mrcalexandre"
class="btn btn-primary btn-sm publink"
target="_blank"
>Read more</a
>
</p>
<br />
<h4>Remotive Blog</h4>
<p>
<a
href="https://blog.remotive.io/work-spaces-around-world/"
target="_blank"
>Work Spaces Around the World</a
>
: <em>April 2017</em>
</p>
<p>
<a
href="https://blog.remotive.io/how-i-found-my-first-remote-job-remote-gig/"
target="_blank"
>How I found my first remote job/remote gig</a
>
: <em>February 2017</em>
</p>
<p>
<a
href="https://blog.remotive.io/11-productivity-hacks-to-get-the-most-of-your-remote-life/"
target="_blank"
>11 Productivity Hacks To Get The Most Of Your Remote Life</a
>
: <em>October 2016</em>
</p>
</div>
<div class="col-md-4">
<h4>Frandroid</h4>
<p>
<a
href="http://www.frandroid.com/android/481238_facebook-m-a-ete-enterre-quest-ce-qui-explique-cet-echec"
target="_blank"
>Facebook M a été enterré : qu’est-ce qui explique cet échec
?</a
>
: January 2018
</p>
<p>
<a
href="http://www.frandroid.com/events/ces/482423_lg-ne-veut-plus-se-faire-imposer-un-rythme-par-ses-concurrents"
target="_blank"
>LG ne veut plus se faire imposer un rythme par ses
concurrents</a
>
: January 2018
</p>
<p class="text-center">
<a
href="http://www.frandroid.com/author/alexmouriec"
class="btn btn-primary btn-sm publink"
target="_blank"
>Read more</a
>
</p>
<br />
<br />
<h4>Press Mentions</h4>
<p>
<a
href="https://twocents.lifehacker.com/here-s-a-list-of-people-and-companies-who-will-match-yo-1791937460"
target="_blank"
>Lifehacker</a
>: Matching Donations
</p>
<p>
<a
href="http://fortune.com/2017/01/30/aclu-muslim-ban-tech-hollywood/"
target="_blank"
>Fortune Magazine</a
>: Matching Donations
</p>
<p>
<a
href="https://www.fuse.tv/2017/01/celebrities-who-will-match-donation-aclu-charities"