-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
1533 lines (1517 loc) · 77.9 KB
/
Copy pathindex.php
File metadata and controls
1533 lines (1517 loc) · 77.9 KB
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
<?PHP
session_start();
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Benjamin Mabille - Developpeur Full Stack</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="msapplication-tap-highlight" content="no">
<meta name="robots" content="index,follow,all">
<meta name="robots" content="INDEX|FOLLOW">
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<meta name="Author" content="Benjamin Mabille">
<link type="text/plain" rel="author" href="humans.txt"/>
<!-- Favicons-->
<link rel="icon" href="assets/img/dev.ico" sizes="32x32">
<!-- Google Icon Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/>
<!-- Font Awesome -->
<link type="text/css" rel="stylesheet" href="assets/css/font-awesome.min.css"/>
<!-- Materialize -->
<link type="text/css" rel="stylesheet" href="assets/css/materialize.css" media="screen"/>
<!-- Materialize Theme -->
<link type="text/css" rel="stylesheet" href="assets/css/materialize-theme.css"/>
<!-- mCustomScrollbar -->
<link type="text/css" rel="stylesheet" href="assets/css/jquery.mCustomScrollbar.css"/>
<!-- Owl Carousel -->
<link rel="stylesheet" type="text/css" href="assets/css/owl.carousel.css"/>
<link rel="stylesheet" type="text/css" href="assets/css/owl.theme.css">
<!-- Styles -->
<link type="text/css" rel="stylesheet" href="assets/css/style.css"/>
<!-- Responsive -->
<link type="text/css" rel="stylesheet" href="assets/css/responsive.css"/>
<!-- Theme -->
<link type="text/css" rel="stylesheet" href="assets/themes/color8/color-style/color.css" id="switch_style"/>
<noscript>Your browser does not support JavaScript!</noscript>
</head>
<body id="page-top" class="scrollspy">
<div class="wrapper">
<!-- Right Column -->
<div class="right-column">
<!-- Header -->
<header class="dark-bg">
<ul class="social-links">
<li>
<a href="https://www.facebook.com/benjamin.mabille" class="tooltipped" data-position="bottom"
data-delay="20" data-tooltip="Facebook"><i class="fa fa-facebook"></i></a>
</li>
<!--
<li>
<a href="#" class="tooltipped" data-position="bottom" data-delay="20" data-tooltip="Twitter"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="#" class="tooltipped" data-position="bottom" data-delay="20" data-tooltip="Google Plus"><i class="fa fa-google-plus"></i></a>
</li>
<li>
<a href="#" class="tooltipped" data-position="bottom" data-delay="20" data-tooltip="Dribbble"><i class="fa fa-dribbble"></i></a>
</li>
-->
<li>
<a href="https://www.linkedin.com/in/benjamin-mabille-b4033154/" class="tooltipped"
data-position="bottom" data-delay="20" data-tooltip="Linkedin"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
<div class="user_name-title">
<h2>BENJAMIN MABILLE</h2>
<p>Developpeur Full Stack</p>
</div>
</header>
<!-- # Header End # -->
<!-- Personal Information -->
<div class="user-wrapper">
<!-- Profile Image -->
<div class="profile-image"><img src="images/developpement-web.jpg" alt="BENJAMIN MABILLE"
class="responsive-img"></div>
<!-- # Profile Image End # -->
<div class="user-content">
<ul class="collection">
<li class="collection-item">
<span class="bolder">A l'ecoute d'opportunité</span>
<div class="switch right">
<label>
<input disabled type="checkbox" checked>
<span class="lever"></span>ON</label>
</div>
</li>
<li class="collection-item">
<span class="bolder">Bonjour, je suis Benjamin Mabille!</span>
<br>
<br> Je suis actuellement en poste en tant que Consultant Sénior. Mes différentes missions mon
apportés une expérience certaine au niveau des CI/CD, du respect des PSR, de la rédaction de
SFD/STD et du chiffrage de tâches.
<br></li>
<li class="collection-item">
<a href="CV/BMA_CV_2018.pdf" target="_blank" class="btn waves-effect waves-light dark-bg">MON CV<i
class="material-icons">file_download</i></a>
<a href="#contact" class="btn waves-effect waves-light light-bg">ME CONTACTER!<i
class="material-icons">email</i></a>
</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
<!-- # Personal Information End # -->
</div>
<!-- # Right Column End # -->
<!-- Left Column -->
<div class="left-column">
<header id="header">
<!-- Navigation -->
<div id="navbar" class="navbar-fixed">
<nav class="main-navigation light-bg">
<div class="nav-wrapper">
<ul>
<li>
<a href="#page-top" class="waves-effect">Accueil</a>
</li>
<li>
<a href="#diplomes" class="waves-effect">Diplômes</a>
</li>
<li>
<a href="#works" class="waves-effect">Expérience Professionnelle</a>
</li>
<li>
<a href="#skills" class="waves-effect">Savoir faire</a>
</li>
<li>
<a href="#services" class="waves-effect">Savoir être</a>
</li>
<li>
<a href="#portfolio" class="waves-effect">Portfolio</a>
</li>
<li>
<a href="#references" class="waves-effect">References</a>
</li>
<li>
<a href="#contact" class="waves-effect">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- # Navigation End # -->
<!-- Mobile Navigation -->
<div class="fixed-action-btn vertical click-to-toggle mobile-menu">
<a class="btn btn-floating btn-large light-bg"> <i class="large mdi-navigation-menu"></i> </a>
<ul>
<li>
<a class="btn-floating" href="#page-top"><i class="material-icons">home</i></a>
</li>
<li>
<a class="btn-floating white" href="#diplomes"><i
class="material-icons cyan-text text-darken-2">account_balance</i></a>
</li>
<li>
<a class="btn-floating light-green darken-3" href="#works"><i
class="material-icons">work</i></a>
</li>
<li>
<a class="btn-floating deep-orange accent-3" href="#skills"><i
class="material-icons">assessment</i></a>
</li>
<li>
<a class="btn-floating deep-purple darken-3" href="#services"><i class="material-icons">important_devices</i></a>
</li>
<li>
<a class="btn-floating light-green darken-3" href="#portfolio"><i class="material-icons">queue_play_next</i></a>
</li>
<li>
<a class="btn-floating cyan darken-4" href="#price"><i class="material-icons">format_list_bulleted</i></a>
</li>
<li>
<a class="btn-floating deep-orange accent-3" href="#references"><i class="material-icons">assignment_ind</i></a>
</li>
<li>
<a class="btn-floating lime darken-2" href="#contact"><i class="material-icons">mail_outline</i></a>
</li>
</ul>
</div>
<!-- # Mobile Navigation End # -->
<!-- Header Content -->
<div class="light-bg header-wrap">
<div class="header-content">
<h1>Je suis <strong>Benjamin Mabille</strong> |</h1>
<span class="sub-text">Developpeur <strong>passionné</strong>, <strong><?php echo (date('Y') - 2008) ?> ans</strong> d'expérience.</span>
</div>
</div>
<!-- # Header Content End # -->
</header>
<?PHP
$token = isset($_POST["token"]) ? $_POST["token"] : '';
$_process = isset($_POST["_process"]) ? $_POST["_process"] : '';
//Pb de session sur certains navigateurs (ex : Chrome avec Firebug d'actif)
$tokenConnexionSess = (isset($_SESSION["CVBMA_tokenConnexion"]) ? $_SESSION["CVBMA_tokenConnexion"] : '');
//var_dump($_POST);
//echo "$tokenConnexionSess == $token";
if ($_process == 'sendmail') {
if ($tokenConnexionSess == $token) {
$name_surname = isset($_POST["name_surname"]) ? $_POST["name_surname"] : '';
$email = isset($_POST["email"]) ? $_POST["email"] : '';
$subject = isset($_POST["subject"]) ? $_POST["subject"] : '';
$message = isset($_POST["message"]) ? $_POST["message"] : '';
$to = 'benjy80@gmail.com';
$message = "Message de $name_surname\n\r" . "Email : $email\n\r" . $message;
$headers = 'From: ' . $email . "\r\n" .
'Reply-To: ' . $email . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$retour = @mail($to, $subject, $message, $headers);
//var_dump($retour);
file_put_contents('log_contact.log', date("Y-m-d H:i:s") . " - $to, $subject, $message, $headers\n\r*******************************\n\r", FILE_APPEND)
?>
<section style="margin-bottom: 30px;">
<div class="row">
<div class="col l12">
<div id="card-alert" class="card green">
<div class="card-content white-text">
<p><i class="mdi-navigation-check"></i> Merci! Votre message à bien été envoyé.</p>
</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</section>
<?PHP
} else {
$erreur_acces = true;
$tokenConnexion = md5(microtime());
$_SESSION["CVBMA_tokenConnexion"] = $tokenConnexion;
}
}
if (!isset($tokenConnexion) || empty($tokenConnexionSess)) {
$tokenConnexion = md5(microtime());
$_SESSION["CVBMA_tokenConnexion"] = $tokenConnexion;
}
?>
<!-- Diplomes -->
<section id="diplomes" class="section scrollspy">
<!-- Icon -->
<span class="icon btn-floating btn-large white"><i class="material-icons cyan-text text-darken-2">account_balance</i></span>
<!-- # Icon End # -->
<!-- Title -->
<h2 class="cyan-text text-darken-2">Diplômes</h2>
<!-- # Title End # -->
<!-- Table -->
<table class="highlight section-table">
<thead>
<tr>
<th></th>
<th></th>
<th>Diplôme</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr>
<td class="col1"><img src="images/Education/Education_Building_2.png" alt="IUT de Calais (62)"
class="circle"></td>
<td class="col2">IUT de Calais (62)</td>
<td class="col3">Licence Pro RSC, Exploitation Réseau - Mention Bien</td>
<td class="col4">2006 - 2007</td>
</tr>
<tr>
<td class="col1"><img src="images/Education/Education_Building_2.png" alt="IUT de Calais (62)"
class="circle"></td>
<td class="col2">IUT de Calais (62)</td>
<td class="col3">DUT Informatique, Imagerie Numérique</td>
<td class="col4">2004 - 2006</td>
</tr>
<tr>
<td class="col1"><img src="images/Education/Education_Building_1.png" alt="Lycée du Vimeu"
class="circle"></td>
<td class="col2">Lycée du Vimeu</td>
<td class="col3">BAC STI Electrotechnique - Mention Bien</td>
<td class="col4">2004</td>
</tr>
</tbody>
</table>
<!-- # Table End # -->
</section>
<!-- # Education End # -->
<!-- Works -->
<section id="works" class="section scrollspy">
<!-- Icon -->
<span class="icon btn-floating btn-large light-green darken-3"><i class="material-icons">work</i></span>
<!-- # Icon End # -->
<!-- Title -->
<h2 class="light-green-text text-darken-3">Expérience Professionnelle</h2>
<!-- # Title End # -->
<!-- Table -->
<table class="highlight section-table">
<thead>
<tr>
<th></th>
<th></th>
<th>Entreprise</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr>
<td class="col1"><img src="images/Works/Company_Logo_6.png" alt="Converteo" class="circle">
</td>
<td class="col2"><b>Consultant IT</b>
<br> Réalisation d'applications tiers en lien avec un CRM (Hubspot)
<br> Usine Logicielle (Gitlab, CI/CD, Review de code, phpqa)
</td>
<td class="col3">
<a href="https://converteo.com/"><span class="light-green-text text-darken-3">Converteo</span></a> / Paris (75)
</td>
<td class="col4">Depuis Août 2022</td>
</tr>
<tr>
<td class="col1"><img src="images/Works/Company_Logo_5.png" alt="Business&Decision" class="circle">
</td>
<td class="col2"><b>Consultant Sénior</b>
<br> Réalisation d'études et chiffrages
<br> Refonte
<br> Usine Logicielle (Gitlab, CI/CD, Rancher, Review de code, phpqa)
</td>
<td class="col3">
<a href="https://www.businessdecision.com/fr-fr"><span class="light-green-text text-darken-3">Business&Decision</span></a> / Amiens (80)
</td>
<td class="col4">2018 - 2022</td>
</tr>
<tr>
<td class="col1"><img src="images/Works/Company_Logo_4.png" alt="Ugloo" class="circle"></td>
<td class="col2"><b>Developpeur</b>
<br> Maintien, et l'évolution de l'interface Web de pilotage d'une solution de backup (Laravel,
NodeJS, Redis, InfluxDB)
<br> Participation à l'élaboration de la core-tech (solution de backup décentralisée basée sur
le réseau P2P) (Python, Redis, libtorrent).
</td>
<td class="col3">
<a href="https://www.ugloo.com/"><span class="light-green-text text-darken-3">Ugloo</span></a> / Amiens (80)
</td>
<td class="col4">2017 - 2018</td>
</tr>
<tr>
<td class="col1"><img src="images/Works/Company_Logo_3.png" alt="Plug-It"
class="circle"></td>
<td class="col2"><b>Developpeur Full Stack</b>
<br> Assurer le maintien, la création et l'évolution des outils internes ; ainsi que la création
de site web et de progiciels.
</td>
<td class="col3">
<span class="light-green-text text-darken-3">Plug-It</span> / Ailly-Sur-Noye (80)
</td>
<td class="col4">2014 - 2017</td>
</tr>
<tr>
<td class="col1"><img src="images/Works/Company_Logo_2.png" alt="CCA Internatinal" class="circle"></td>
<td class="col2"><b>Administrateur BDD</b></td>
<td class="col3">
<span class="light-green-text text-darken-3">CCA International</span> / Amiens (80)
</td>
<td class="col4">2010 - 2014</td>
</tr>
<tr>
<td class="col1"><img src="images/Works/Company_Logo_1.png" alt="Intracall Center" class="circle">
</td>
<td class="col2"><b>Developpeur LAMP</b>
<br> Créer des applications Intranet / Extranet en interaction avec un système de composition
téléphonique, et répondant à un cahier des charges.
</td>
<td class="col3">
<span class="light-green-text text-darken-3">Intracall Center</span> / Amiens (80)
</td>
<td class="col4">2008 - 2010</td>
</tr>
</tbody>
<!-- # Table End # -->
</table>
</section>
<!-- # Works End # -->
<!-- Professional Skills -->
<section id="skills" class="section scrollspy">
<!-- Icon -->
<span class="icon btn-floating btn-large deep-orange accent-3"><i
class="material-icons">assessment</i></span>
<!-- # Icon End # -->
<!-- Title -->
<h2 class="deep-orange-text text-accent-3">Savoir Faire</h2>
<!-- # Title End # -->
<div class="skills">
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_cicd.png" class="circle" alt="Git Lab CI/CD">
<div class="title_value">Git Lab CI/CD
<span class="value">95%</span>
</div>
<div class="progress">
<div class="determinate pink darken-4" style="width: 95%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_10.png" class="circle" alt="Docker">
<div class="title_value">Docker
<span class="value">90%</span>
</div>
<div class="progress">
<div class="determinate purple darken-4" style="width: 90%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_sf.png" class="circle" alt="Symfony 2.8">
<div class="title_value">Symfony 2.8
<span class="value">85%</span>
</div>
<div class="progress">
<div class="determinate pink darken-4" style="width: 85%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_sf.png" class="circle" alt="Symfony 4.3">
<div class="title_value">Symfony 4.3
<span class="value">85%</span>
</div>
<div class="progress">
<div class="determinate pink darken-4" style="width: 85%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_1.png" class="circle" alt="PHP">
<div class="title_value">PHP (5 / 7.2)
<span class="value">95%</span>
</div>
<div class="progress">
<div class="determinate pink darken-4" style="width: 95%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_2.png" class="circle" alt="MySQL">
<div class="title_value">MySQL
<span class="value">95%</span>
</div>
<div class="progress">
<div class="determinate blue darken-3" style="width: 95%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_3.png" class="circle" alt="GIT">
<div class="title_value">GIT
<span class="value">90%</span>
</div>
<div class="progress">
<div class="determinate amber darken-4" style="width: 90%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_4.png" class="circle" alt="Linux">
<div class="title_value">Linux
<span class="value">90%</span>
</div>
<div class="progress">
<div class="determinate red darken-4" style="width: 90%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_5.png" class="circle" alt="QT5">
<div class="title_value">QT5
<span class="value">65%</span>
</div>
<div class="progress">
<div class="determinate brown darken-4" style="width: 65%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_6.png" class="circle" alt="Concrete 5">
<div class="title_value">Concrete 5
<span class="value">70%</span>
</div>
<div class="progress">
<div class="determinate teal darken-4" style="width: 70%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_7.png" class="circle" alt="Cordova">
<div class="title_value">Cordova
<span class="value">75%</span>
</div>
<div class="progress">
<div class="determinate indigo darken-4" style="width: 75%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_8.png" class="circle" alt="Laravel 5.4">
<div class="title_value">Laravel 5.4
<span class="value">60%</span>
</div>
<div class="progress">
<div class="determinate lime darken-4" style="width: 60%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<!-- Skill Item -->
<div class="skill-item"><img src="images/Skills/Skill_Logo_9.png" class="circle" alt="Python">
<div class="title_value">Python
<span class="value">65%</span>
</div>
<div class="progress">
<div class="determinate pink darken-4" style="width: 65%;"></div>
</div>
</div>
<!-- # Skill Item End # -->
<div class="clearfix"></div>
</div>
</section>
<!-- # Professional Skills End # -->
<!-- Services -->
<section id="services" class="section scrollspy">
<!-- Icon -->
<span class="icon btn-floating btn-large deep-purple darken-3"><i
class="material-icons">important_devices</i></span>
<!-- # Icon End # -->
<!-- Title -->
<h2 class="deep-purple-text text-darken-3">Savoir être</h2>
<!-- # Title End # -->
<div id="Services_Carousel" class="owl-carousel">
<!-- Service Item -->
<div class="item service-item">
<span class="icon"><i class="material-icons deep-purple darken-3">web</i></span>
<h6>Autodidacte</h6>
<span class="sep deep-purple darken-3"></span>
<p>Mise à niveau réguliére sur les frameworks et technologies du moment (Bootstrap, Material Design,
Redis, DHT, Solidity, ...).</p>
</div>
<!-- # Service Item End # -->
<!-- Service Item -->
<div class="item service-item">
<span class="icon"><i class="material-icons pink darken-3">supervisor_account</i></span>
<h6>Travail en équipe</h6>
<span class="sep pink darken-3"></span>
<p>Partage de connaissances, et bonne ambiance sont mes mots d'ordre.</p>
</div>
<!-- # Service Item End # -->
<!-- Service Item -->
<div class="item service-item">
<span class="icon"><i class="material-icons deep-orange accent-3">star</i></span>
<h6>Polyvalent</h6>
<span class="sep deep-orange accent-3"></span>
<p>Ma formation initiale dans le réseau, et mon expérience de developpeur font que je suis capable
de m'adapter à plusieurs type de projets.</p>
</div>
<!-- # Service Item End # -->
</div>
</section>
<!-- # Services End # -->
<!-- Portfolio -->
<section id="portfolio" class="section scrollspy">
<!-- Icon -->
<span class="icon btn-floating btn-large light-green darken-3"><i class="material-icons">queue_play_next</i></span>
<!-- # Icon End # -->
<!-- Title -->
<h2 class="light-green-text text-darken-3">Portfolio</h2>
<!-- # Title End # -->
<div id="Portfolio_Carousel" class="owl-carousel">
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_comutitres" class="modal-trigger">
<h6 class="portfolio-name">Je gére ma carte Navigo</h6>
<img src="images/Portfolio/realisations_web/betd/jegeremacartenavigo.fr_touslesservices_.png"
class="responsive-img" alt="Navigo">
<span class="portfolio-categories">Technologies,<br>
<span class="light-green-text text-darken-3">Symfony 2.8</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_samsung" class="modal-trigger">
<h6 class="portfolio-name">Offres promotionnelles Samsung (ODR)</h6>
<img src="images/Portfolio/realisations_web/betd/offres.samsung.fr_promotion.png"
class="responsive-img" alt="ODR Samsung">
<span class="portfolio-categories">Technologies,<br>
<span class="light-green-text text-darken-3">Symfony 4.3, Api Platform, Symfony Workflow</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_up2p" class="modal-trigger">
<h6 class="portfolio-name">Logiciel de sauvegarde décentralisé (P2P)</h6>
<img src="images/Portfolio/realisations_web/up2p.png" class="responsive-img"
alt="Sauvegarde décentralisé (P2P)">
<span class="portfolio-categories">Technologies,<br>
<span class="light-green-text text-darken-3">Python 3.4, Libtorrent, Fuse, Redis, InfluxDb</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_umanager" class="modal-trigger">
<h6 class="portfolio-name">Interface de gestion de sauvegarde</h6>
<img src="images/Portfolio/realisations_web/umanager.png" class="responsive-img"
alt="Gestion de sauvegarde">
<span class="portfolio-categories">Technologies,<br>
<span class="light-green-text text-darken-3">Laravel 5.4, VueJS, Ajax, PHP 7, Postgresql, Redis, InfluxDb</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_rotostock" class="modal-trigger">
<h6 class="portfolio-name">Gestion de stock.</h6>
<img src="images/Portfolio/realisations_web/rotostock1.jpg" class="responsive-img"
alt="Gestion de stock">
<span class="portfolio-categories">Technologies,<br>
<span class="light-green-text text-darken-3">Laravel 5.4, Materializecss, Ajax, PHP 7, MySQL 5.7</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_suiviactivite" class="modal-trigger">
<h6 class="portfolio-name">App de Suivi Activité</h6>
<img src="images/Portfolio/realisations_web/suivi_activite_1.png" class="responsive-img"
alt="App de Suivi Activité">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Cordova, Ajax, PHP, HTML</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_bat" class="modal-trigger">
<h6 class="portfolio-name">Gestion de B.A.T.</h6>
<img src="images/Portfolio/realisations_web/roto2.jpg" class="responsive-img"
alt="Gestion de B.A.T.">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Materializecss, Ajax, PHP, MySQL</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_ofre" class="modal-trigger">
<h6 class="portfolio-name">Gestion de plannings</h6>
<img src="images/Portfolio/realisations_web/ofre-formation.png" class="responsive-img"
alt="Gestion de plannings">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Bootstrap, PHP, MySQL</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_gestparc" class="modal-trigger">
<h6 class="portfolio-name">Gestion de parc automobile</h6>
<img src="images/Portfolio/realisations_web/gestparc.png" class="responsive-img"
alt="Gestion dde parc automobile">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Bootstrap, PHP, MySQL</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_docamsam" class="modal-trigger">
<h6 class="portfolio-name">Espace documentaire</h6>
<img src="images/Portfolio/realisations_web/documentation_amsam.jpg" class="responsive-img"
alt="AMSAM">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Concrete5</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_aestheticgroup" class="modal-trigger">
<h6 class="portfolio-name">Site Web Aesthetic Group</h6>
<img src="images/Portfolio/realisations_web/aesthetic.jpeg" class="responsive-img"
alt="Aesthetic Group">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Prestashop</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_filebox" class="modal-trigger">
<h6 class="portfolio-name">Files Box personnalisées</h6>
<img src="images/Portfolio/realisations_web/touquetbox.png" class="responsive-img"
alt="Touquet Box">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">jQuery, Ajax, PHP, MySQL</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_tervia" class="modal-trigger">
<h6 class="portfolio-name">Site Web Tervia</h6>
<img src="images/Portfolio/realisations_web/tervia1.jpg" class="responsive-img"
alt="Site Web Tervia">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Concrete5</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_marcelhartmann" class="modal-trigger">
<h6 class="portfolio-name">Site Web Photographies</h6>
<img src="images/Portfolio/realisations_web/marcel_hartmann_2.png" class="responsive-img"
alt="Marcel Hartmann">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">CSS, PHP, MySQL</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_latangente" class="modal-trigger">
<h6 class="portfolio-name">Site Web La Tangente</h6>
<img src="images/Portfolio/realisations_web/latangente.jpg" class="responsive-img"
alt="La Tangente">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Concrete5</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_phileasjv" class="modal-trigger">
<h6 class="portfolio-name">Site Web Phileas JV</h6>
<img src="images/Portfolio/realisations_web/phileas-jv.jpg" class="responsive-img"
alt="Phileas JV">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Concrete5</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_spta" class="modal-trigger">
<h6 class="portfolio-name">Site Web SPTA</h6>
<img src="images/Portfolio/realisations_web/spta.jpg" class="responsive-img" alt="SPTA">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Concrete5</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_ecab80" class="modal-trigger">
<h6 class="portfolio-name">Site Web ECAB80</h6>
<img src="images/Portfolio/realisations_web/ecab80.jpg" class="responsive-img" alt="Ecab80">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Concrete5</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_leflightcase" class="modal-trigger">
<h6 class="portfolio-name">Site Web Le Flight Case</h6>
<img src="images/Portfolio/realisations_web/leflightcase.jpg" class="responsive-img"
alt="Le flight case">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Concrete5</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_picabou" class="modal-trigger">
<h6 class="portfolio-name">Site Web Picabou</h6>
<img src="images/Portfolio/realisations_web/picabou.jpg" class="responsive-img" alt="Picabou">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Concrete5</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_exgtransfert" class="modal-trigger">
<h6 class="portfolio-name">Service EXG-Transfert</h6>
<img src="images/Portfolio/realisations_web/screen_exg.jpg" class="responsive-img"
alt="EXG-Transfert">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Bootstrap, Ajax, PHP, MySQL, Soap</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_gmcc" class="modal-trigger">
<h6 class="portfolio-name">GMCC</h6>
<img src="images/Portfolio/realisations_web/e07fa5f0-e54e-11e2-9efe-22000a91e9a7-large.jpg"
class="responsive-img" alt="GMCC">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">HTML, CSS, PHP, jQuery, MySQL</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_monitoring" class="modal-trigger">
<h6 class="portfolio-name">Outil de monitoring</h6>
<img src="images/Portfolio/realisations_web/4e70918c-e54f-11e2-a77d-22000aa5129e-large.jpg"
class="responsive-img" alt="Outil de monitoring">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">HTML, CSS, PHP, jQuery, MySQL</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_extranetclient" class="modal-trigger">
<h6 class="portfolio-name">Extranet Client</h6>
<img src="images/Portfolio/realisations_web/861a0b22-e545-11e2-ada0-22000aa5108a-large.jpg"
class="responsive-img" alt="Extranet Client">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">Bootstrap, PHP, jQuery, MySQL</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
<!-- Portfolio Item -->
<div class="item portfolio-item">
<a href="#Portfolio_Detail_odi" class="modal-trigger">
<h6 class="portfolio-name">Outil de Diffusion d'Informations</h6>
<img src="images/Portfolio/realisations_web/2cfbfae6-e54f-11e2-a77d-22000aa5129e-large.jpg"
class="responsive-img" alt="Outil de Diffusion d'Informations">
<span class="portfolio-categories">Technologies,
<span class="light-green-text text-darken-3">HTML, CSS, PHP, jQuery, MySQL</span>
</span>
</a>
</div>
<!-- # Portfolio Item End # -->
</div>
</section>
<!-- # Portfolio End # -->
<!-- References -->
<section id="references" class="section scrollspy">
<!-- Icon -->
<span class="icon btn-floating btn-large deep-orange accent-3"><i class="material-icons">assignment_ind</i></span>
<!-- # Icon End # -->
<!-- Title -->
<h2 class="deep-orange-text text-accent-3">References</h2>
<!-- # Title End # -->
<div id="References_Carousel" class="owl-carousel">
<!-- Reference Item -->
<div class="item reference-item"><img src="images/References/Reference_Logo_SF.png"
class="responsive-img grayscale" alt="Symfony"></div>
<!-- # Reference Item End # -->
<!-- Reference Item -->
<div class="item reference-item"><img src="images/References/Reference_Logo_4.png"
class="responsive-img grayscale" alt="Materializecss"></div>
<!-- # Reference Item End # -->
<!-- Reference Item -->
<div class="item reference-item"><img src="images/References/Reference_Logo_5.png"
class="responsive-img grayscale" alt="Bootstrap Twitter"></div>
<!-- # Reference Item End # -->
<!-- Reference Item -->
<div class="item reference-item"><img src="images/References/Reference_Logo_3.png"
class="responsive-img grayscale" alt="jQuery"></div>
<!-- # Reference Item End # -->
<!-- Reference Item -->
<div class="item reference-item"><img src="images/References/Reference_Logo_1.png"
class="responsive-img grayscale" alt="HTML5"></div>
<!-- # Reference Item End # -->
<!-- Reference Item -->
<div class="item reference-item"><img src="images/References/Reference_Logo_2.png"
class="responsive-img grayscale" alt="CSS3"></div>
<!-- # Reference Item End # -->
<!-- Reference Item -->
<div class="item reference-item"><img src="images/References/Reference_Logo_6.png"
class="responsive-img grayscale" alt="Python"></div>
<!-- # Reference Item End # -->
</div>
</section>
<!-- # References End # -->
<!-- Contact Me -->
<section id="contact" class="section scrollspy">
<!-- Icon -->
<span class="icon btn-floating btn-large lime darken-2"><i class="material-icons">mail_outline</i></span>
<!-- # Icon End # -->
<!-- Title -->
<h2 class="lime-text text-darken-2">Me contacter</h2>
<!-- # Title End # -->
<!-- Contact Information -->
<div class="contact-information">
<div class="row">
<!-- Mail -->
<div class="col s6 l3">
<div class="icon"><i class="material-icons">email</i></div>
<p>benjy80 [at] gmail.com</p>
</div>
<!-- # Mail End # -->
<!-- Mobile -->
<div class="col s6 l3">
<div class="icon"><i class="material-icons">phone_iphone</i></div>
<p>06 14 63 61 41</p>
</div>
<!-- # Mobile End # -->
<!-- Skype -->
<div class="col s6 l3">
<div class="icon"><i class="fa fa-skype"></i></div>
<p>Skype / b.mabille</p>
</div>
<!-- # Skype End # -->
<!-- Location -->
<div class="col s6 l3">
<div class="icon"><i class="material-icons">location_on</i></div>
<p>18 rue Principale
<br> 80110 AUBERCOURT</p>
</div>
<!-- # Location End # -->
<div class="clearfix"></div>
</div>
</div>
<!-- # Contact Information End # -->
</section>
<div class="section contact-form">
<div class="row">
<div class="col s12 m6 l6 contact-text">Un renseignement ?
<br>
<br> Je suis à votre écoute.
</div>
<div class="col s12 m6 l6">
<form action="" method="post">
<input type="hidden" name="_process" id="_process" value="sendmail"/>
<input type="hidden" name="token" id="token" value="<?PHP echo $tokenConnexion; ?>"/>
<div class="input-field">
<input id="name_surname" name="name_surname" type="text" class="validate">
<label for="name_surname">Nom</label>
</div>
<div class="input-field">
<input id="email" name="email" type="email" class="validate">
<label for="email">E-mail</label>
</div>
<div class="input-field">
<input id="subject" name="subject" type="text" class="validate">
<label for="subject">Sujet</label>
</div>
<div class="input-field">
<textarea id="message" name="message" class="materialize-textarea"></textarea>
<label for="message">Message</label>
</div>
<input type="submit" class="btn dark-bg waves-effect" value="ENVOYER">
</form>
</div>
</div>
</div>
<!-- # Contact Me End # -->
<!-- Footer -->
<footer id="footer">
<div class="copyright">
<div class="row">
<div class="col s12 m6 l6 left light-bg">www.benjamin-mabille.fr