-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1155 lines (1104 loc) · 48.3 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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Gianluca Colaianni</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="This is Gianluca Colaianni personal webpage. MBA graduate, I'm a Software Engineer with a strong experience in banking and financial services." />
<meta name="keywords"
content="Gianluca Colaianni, Webpage, Tech Lead, Team Head, Team Leader, Software Engineer, Solution Architect, Java, Java EE, MBA, Master Business Administration" />
<meta name="author" content="Gianluca Colaianni" />
<meta name="google-site-verification" content="ltdUmEsrMdqQ_nNYvid3-9xu7IhZEepGF9JWQ_qV93E" />
<!-- Facebook and Twitter integration -->
<meta property="og:title" content="" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<meta property="og:description" content="" />
<meta name="twitter:title" content="" />
<meta name="twitter:image" content="" />
<meta name="twitter:url" content="" />
<meta name="twitter:card" content="" />
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="images/site.webmanifest">
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700" rel="stylesheet">
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Icomoon Icon Fonts-->
<link rel="stylesheet" href="css/icomoon.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- Flaticons
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">-->
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/style.css">
<!-- Modernizr JS -->
<script src="js/modernizr-2.6.2.min.js"></script>
<!-- FOR IE9 below -->
<!--[if lt IE 9]>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-152053248-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-152053248-1');
</script>
</head>
<body>
<div id="colorlib-page">
<div class="container-wrap">
<a href="#" class="js-colorlib-nav-toggle colorlib-nav-toggle" data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar"><i></i></a>
<aside id="colorlib-aside" role="complementary" class="border js-fullheight">
<div class="text-center">
<div class="author-img" style="background-image: url(images/about.jpg);"></div>
<h1 id="colorlib-logo"><a href="index.html">Gianluca Colaianni</a></h1>
<span class="position">Software Engineer/Solution Architect in Switzerland | MBA graduate @ <a
href="https://www.cdi.eu/en/">CDI</a></span>
</div>
<nav id="colorlib-main-menu" role="navigation" class="navbar">
<div id="navbar" class="collapse">
<ul>
<li class="active"><a href="#" data-nav-section="about">About</a></li>
<li><a href="#" data-nav-section="services">Services</a></li>
<li><a href="#" data-nav-section="skills">Skills</a></li>
<li><a href="#" data-nav-section="experience">Experience</a></li>
<li><a href="#" data-nav-section="education">Education</a></li>
<!-- <li><a href="#" data-nav-section="work">Work</a></li> -->
<li><a href="#" data-nav-section="contact">Contact</a></li>
<li><a href="docs/CV_Colaianni_Gianluca.pdf" target="_blank" class="external">Resume</a>
</li>
</ul>
</div>
</nav>
<!--<div class="colorlib-footer">
<ul>
<li><a href="https://www.linkedin.com/in/gianluca-colaianni-6737a1b5/"><i
class="icon-linkedin2"></i></a></li>
<li><a href="https://www.linkedin.com/in/gianluca-colaianni-6737a1b5/"><i
class="colorlib-icon icon-linkedin2"></i></a></li>
</ul>
</div>-->
</aside>
<div id="colorlib-main">
<!--<section id="colorlib-hero" class="js-fullheight" data-section="home">
<div class="flexslider js-fullheight">
<ul class="slides">
<li style="background-image: url(images/slider.png);">
<div class="overlay"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text">
<div class="slider-text-inner js-fullheight">
<div class="desc">
<h1>Hi! <br>I'm Jackson</h1>
<h2>100% html5 bootstrap templates Made by <a href="https://colorlib.com/" target="_blank">colorlib.com</a></h2>
<p><a class="btn btn-primary btn-learn">Download CV <i class="icon-download4"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</li>
<li style="background-image: url(images/img_bg_2.jpg);">
<div class="overlay"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 col-sm-12 col-xs-12 js-fullheight slider-text">
<div class="slider-text-inner">
<div class="desc">
<h1>I am <br>a Designer</h1>
<h2>100% html5 bootstrap templates Made by <a href="https://colorlib.com/" target="_blank">colorlib.com</a></h2>
<p><a class="btn btn-primary btn-learn">View Portfolio <i class="icon-briefcase3"></i></a></p>
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
</section>-->
<section class="colorlib-about" data-section="about">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-12">
<div class="row row-bottom-padded-sm animate-box" data-animate-effect="fadeInLeft">
<div class="col-md-12">
<div class="about-desc">
<span class="heading-meta">About Me</span>
<h2 class="colorlib-heading">Who Am I?</h2>
<p><strong>Hi I'm Gianluca Colaianni</strong> and I'm a passionate Software
Engineer. I'm <strong>Fouder & Chief Technology Officier</strong> at <a
href="https://www.friendshome.it/">Frriendshome</a>. I have several
years
of experience in analysis, design and implementation of complex Java and
Java EE applications with a
particular focus in Financial and Media domains.
I'm a continuous learner. I love to improve my technical skills and to
try new technologies.</p>
<p>I'm an MBA graduate alumnus at <a href="https://www.cdi.eu/en/">CDI</a>.
The MBA is fully financed (100%) by sponsoring partner company and the
selection process is based on merit (5% admission rate).
Main courses are corporate finance, investments & company evaluation,
accounting & controlling, innovation, lean management, marketing &
strategy, human resources & communication, leadership, negotiation,
public speaking, project management, decision-making and action,
coaching. </br>
Professors from prestigious universities (Harvard BS, INSEAD, Chicago
Booth, ETH Zürich, HEC).</p>
<p>In my free time I like to play several sports and to read books. Until
<time datetime="2015">2015</time> I was an agonist athlete in track and
field.
My specialities were 400 metres and 400 metres hurldes, but I also
managed with 200 metres. Between <time datetime="2011">2011</time> and
<time datetime="2015">2015</time>
I was an official football referee for <a
href="https://www.aia-figc.it/">Associazione Italiana Arbitri
(AIA)</a>. I love also play football and ski.
</p>
<p>I'm a fan of Harry Potter series. I love both books and films but (of
course) books have something special that films haven't! I like also TV
Series and there are several already full viewed in my library.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 animate-box" data-animate-effect="fadeInLeft">
<div class="services color-1">
<span class="icon2"><i class="icon-bulb"></i></span>
<h3>Business Requirements</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInRight">
<div class="services color-2">
<span class="icon2"><i class="icon-globe-outline"></i></span>
<h3>Enterpire Solutions</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInTop">
<div class="services color-3">
<span class="icon2"><i class="icon-data"></i></span>
<h3>Software Development</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-4">
<span class="icon2"><i class="icon-phone3"></i></span>
<h3>Application Design</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-5">
<span class="icon2"><i class="icon-credit-card"></i></span>
<h3>Credit cards and payments</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-6">
<span class="icon2"><i class="icon-banknote"></i></span>
<h3>Financial services</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-2">
<span class="icon2"><i class="icon-display2"></i></span>
<h3>Banking Systems</h3>
</div>
</div>
<div class="col-md-3 animate-box" data-animate-effect="fadeInBottom">
<div class="services color-3">
<span class="icon2"><i class="icon-monitor"></i></span>
<h3>Media Platforms</h3>
</div>
</div>
</div>
<!-- <div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="hire">
<h2>I am happy to know you <br>that 300+ projects done sucessfully!</h2>
<a href="#" class="btn-hire">Hire me</a>
</div>
</div>
</div> -->
</div>
</div>
</div>
</section>
<section class="colorlib-services" data-section="services">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">What I do?</span>
<h2 class="colorlib-heading">Here are some of my expertise</h2>
</div>
</div>
<div class="row row-pt-md">
<div class="col-md-4 text-center animate-box">
<div class="services color-4">
<span class="icon">
<i class="icon-layers2"></i>
</span>
<div class="desc">
<h3>Solution Architect</h3>
<p>Custom distribued enterprise application</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-1">
<span class="icon">
<i class="icon-bulb"></i>
</span>
<div class="desc">
<h3>Technical Consultant</h3>
<p>Analyse and support of new technologies adoption</p>
</div>
</div>
</div>
<div class="col-md-4 text-center animate-box">
<div class="services color-5">
<span class="icon">
<i class="icon-data"></i>
</span>
<div class="desc">
<h3>Software Developer</h3>
<p>Passionate Java & Java EE developer</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--<div id="colorlib-counter" class="colorlib-counters" style="background-image: url(images/cover_bg_1.jpg);"
data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="colorlib-narrow-content">
<div class="row">
</div>
<div class="row">
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="309" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Cups of coffee</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="356" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Projects</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="30" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Clients</span>
</div>
<div class="col-md-3 text-center animate-box">
<span class="colorlib-counter js-counter" data-from="0" data-to="10" data-speed="5000" data-refresh-interval="50"></span>
<span class="colorlib-counter-label">Partners</span>
</div>
</div>
</div>
</div>-->
<section class="colorlib-skills" data-section="skills">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">My Specialty</span>
<h2 class="colorlib-heading animate-box">My Skills</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<p>I have a strong background in Java technologies. Both my university paths and
carreers position were focused in analysis and development of
Java based application. In the past I had also the opportunity to run some projects
with different technologies for some university exams.
Thanks to these accademic projects I collected some experience with frontend
technologies, Hybrid mobile framerowks (Ionic) and some functional and logic
programming languages, like Python and Prolog.</br>
Also my master degree thesys is a Python based work. The thesys title is <cite>An
HPC-based parallel implementation of the SZZ algorithm to identify bug-inducing
changes</cite> and source code is available <a
href="https://github.com/collab-uniba/szz-mpi">here</a>.</p>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Java</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100" style="width:100%">
<span>100%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Java EE</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100" style="width:90%">
<span>90%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Spring Framework</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100" style="width:100%">
<span>100%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Quarkus Framework</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="100"
aria-valuemin="0" aria-valuemax="100" style="width:100%">
<span>100%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Dropwizard Framework</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>AWS Cloud Services</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="50"
aria-valuemin="0" aria-valuemax="100" style="width:50%">
<span>50%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>SQL</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="80"
aria-valuemin="0" aria-valuemax="100" style="width:80%">
<span>80%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>NoSQL</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="40"
aria-valuemin="0" aria-valuemax="100" style="width:40%">
<span>40%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="progress-wrap">
<h3>Python</h3>
<div class="progress">
<div class="progress-bar color-5" role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100" style="width:70%">
<span>70%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>TypeScript</h3>
<div class="progress">
<div class="progress-bar color-6" role="progressbar" aria-valuenow="50"
aria-valuemin="0" aria-valuemax="100" style="width:50%">
<span>50%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Ionic Framework</h3>
<div class="progress">
<div class="progress-bar color-1" role="progressbar" aria-valuenow="70"
aria-valuemin="0" aria-valuemax="100" style="width:70%">
<span>70%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>HTML5</h3>
<div class="progress">
<div class="progress-bar color-2" role="progressbar" aria-valuenow="50"
aria-valuemin="0" aria-valuemax="100" style="width:50%">
<span>50%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>CSS</h3>
<div class="progress">
<div class="progress-bar color-3" role="progressbar" aria-valuenow="30"
aria-valuemin="0" aria-valuemax="100" style="width:30%">
<span>30%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>JavaScript</h3>
<div class="progress">
<div class="progress-bar color-4" role="progressbar" aria-valuenow="30"
aria-valuemin="0" aria-valuemax="100" style="width:30%">
<span>30%</span>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="progress-wrap">
<h3>Prolog</h3>
<div class="progress">
<div class="progress-bar color-5" role="progressbar" aria-valuenow="20"
aria-valuemin="0" aria-valuemax="100" style="width:20%">
<span>20%</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-experience" data-section="experience">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">Experience</span>
<h2 class="colorlib-heading animate-box">Work Experience</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="timeline-centered">
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="https://www.adesso.ch/en">Senior Consultant at adesso
Schweiz AG</a>
<span><time datetime="2021-09-01">01/09/2021</time>-current</span>
</h2>
<p>I worked as Senior Consultant for <a
href="https://www.adesso.ch/en">adesso Schweiz AG</a>.
I was involved on several projects in diffenet domains and I was
promoted as Team Head for the Java Team in TI-Shore (Lugano
office). My responsibilities were:</p>
<ul>
<li>To estimate projects effort basing on RFP received from customers and prepare the commercial proposal for the projects implementation.</li>
<li>To design the projects architectures and take decisions about technologies to propose.</li>
<li>To interview candidates and find out high potential new joiners.</li>
<li>To push the professional and personal growth of my team members.</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-2">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="https://www.corner.ch">Solution Architect at Cornèr
Bank</a>
<span><time datetime="2020-11-09">09/11/2020</time>-<time
datetime="2021-08-31">31/08/2021</time></span>
</h2>
<p>I worked as consultant for <a
href="https://www.finconsgroup.com/">Fincons Group AG</a>
on-site for the customer <strong>Cornèr Bank</strong> in the
role
of Solution Architect in the Integration Team. </br>
As Solution Architect I worked on a long term project in which
different partners were involved. My responsibilities were:</p>
<ul>
<li>To analyze the internal requirements in order to design an
integration layer which will be the only point of contact
between internal banking systems and external products.</li>
<li>To write requirements specifications for the partners.</li>
<li>To write technical analysis and to design the solution for the
outsourcing development team (Italy).</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-3">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="https://www.airliquide.com/">Digital Security Specialist at
Air Liquide</a> <span><time
datetime="2020-02-24">24/02/2020</time>-<time
datetime="2020-10-02">02/10/2020</time></span></h2>
<p>I worked as Digital Security Specialist during the mission for my MBA
at <strong>Collège des Ingénieurs</strong>. I was
responsible to define the governance processes and procedures in
terms of Digital Security for Air Liquide Italia, in order to be
compliant with Group rules and procedures. </br>
My duties were:</p>
<ul>
<li>To complete the Digital Risk Assessment (DRA) of all internal IT
applications.</li>
<li>To check and complete the Authorization Matrix of all internal
IT applications.</li>
<li>To check the compliance to <a href="https://gdpr-info.eu/">EU
GDPR</a> for Air Liquide Italia.</li>
</ul>
<p>I reported directly to Air Liquide Italia CEO.</p>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-4">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="https://www.corner.ch">Solution Architect at Cornèr
Bank</a> <span><time
datetime="2018-11-19">19/11/2018</time>-<time
datetime="2020-01-12">12/01/2020</time></span></h2>
<p>I worked as consultant for <a
href="https://www.finconsgroup.com/">Fincons Group AG</a>
on-site for the customer <strong>Cornèr Bank</strong> in the
role
of Solution Architect and Release co-supervisor. </br>
As Solution Architect I worked on a long term project in which
different partners were involved. My responsibilities were:</p>
<ul>
<li>To analyze the internal requirements in order to design an
integration layer which will be the only point of contact
between internal banking systems and external products.</li>
<li>To write requirements specifications for the partners.</li>
<li>To write technical analysis and to design the solution for the
outsourcing development team (Italy).</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInRight">
<div class="timeline-entry-inner">
<div class="timeline-icon color-5">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="https://www.finconsgroup.com/">Software Developer at
Fincons Group S.p.a.</a> <span><time
datetime="2017-07-17">17/07/2017</time>-<time
datetime="2018-11-09">09/11/2018</time></span></h2>
<p>Design and development of core backend applications with Java
technologies. I worked on two different projects:</p>
<ol>
<li>A <a href="https://spring.io/projects/spring-boot">Spring
Boot</a> based application for the customer
<strong>Cornèr Bank</strong>.
</li>
<li>A <a href="https://www.dropwizard.io/en/stable/">Dropwizard</a>
based API as microservices environment deployed using <a
href="https://www.docker.com/">Docker</a> containers
deployed on <a href="https://aws.amazon.com/">AWS Cloud</a>.
</br>
There was an integration with different AWS service:
<ul>
<li><a href="https://aws.amazon.com/dynamodb/">AWS Dynamo
DB</a> was integrated as document-oriented NoSQL
database.</li>
<li><a href="https://aws.amazon.com/sqs/">AWS Simple Queue
Service</a> was integrated to manage asynchronous
integrations with other services.</li>
<li><a href="https://aws.amazon.com/cloudwatch/">AWS
CloudWatch</a> was integrated to collect application
metrics in order to monitor performances ans enable
auto-scaling strategies.</li>
</ul>
The API application logs were collected on <a
href="https://www.elastic.co/products/elasticsearch">Elasticsearch</a>
and a <a
href="https://www.elastic.co/products/kibana">Kibana</a>
dashboard displayed both containers and API metrics and usage
statistics. </br>
The project was developed for <a
href="https://mediasetitalia.com/">Mediaset Italia</a>, one
of most important Italian television and media platform.
</li>
</ol>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInLeft">
<div class="timeline-entry-inner">
<div class="timeline-icon color-6">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="https://www.aurigaspa.com/">Analyst Programmer at Auriga
S.p.a.</a> <span><time
datetime="2015-04-01">01/04/2015</time>-<time
datetime="2017-07-14">14/07/2017</time></span></h2>
<p>I worked as Junior Java EE developer on the core backend system of
Auriga's Product (WWS). More in detail, I was involved in design and
implementation of an integration module,
having the responsibility of integrate the core WWS with external
banking systems. My duties were:
</p>
<ul>
<li>Development of Java WebApp and deploy on Oracle Application
Server (Weblogic), IBMWebsphere and JBoss or Servlet Container
like Tomcat.</li>
<li>Starting from 05/2015 involved on an international project with
customer BNP Paribas Fortis (BNP Paribas Group), having short
period of developments and deploy on site in Bruxelles.</li>
<li>Starting from 06/2016 involved as Team Leader in the project.
</li>
<li>Starting from 06/2015 involved as Java Developer in an
international project with customer Millennium BCP (Portugal).
</li>
</ul>
</div>
</div>
</article>
<article class="timeline-entry animate-box" data-animate-effect="fadeInTop">
<div class="timeline-entry-inner">
<div class="timeline-icon color-1">
<i class="icon-pen2"></i>
</div>
<div class="timeline-label">
<h2><a href="https://www.uniba.it/">Teaching tutor for student with
motor disabilities at UniBa</a> <span><time
datetime="2014-10">10/2014</time>-<time
datetime="2015-05">05/2015</time></span></h2>
<p>Didactic Tutoring Service of 250 hours for a student with motor
disabilities at the Faculty of Computer Science at the University of
Bari. The tutoring provided the didactic support in preparing the
exams
that the student had planned to support in the following months
through frontal and customized lessons.</p>
</div>
</div>
</article>
<article class="timeline-entry begin animate-box"
data-animate-effect="fadeInBottom">
<div class="timeline-entry-inner">
<div class="timeline-icon color-none">
</div>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section class="colorlib-education" data-section="education">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box"
data-animate-effect="fadeInLeft">
<span class="heading-meta">Education</span>
<h2 class="colorlib-heading animate-box">Education</h2>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box" data-animate-effect="fadeInLeft">
<div class="fancy-collapse-panel">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingMBA">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion"
href="#collapseMBA" aria-expanded="true"
aria-controls="collapseMBA">Master of Business Administration
</a>
</h4>
</div>
<div id="collapseMBA" class="panel-collapse collapse in" role="tabpanel"
aria-labelledby="headingMBA">
<div class="panel-body">
<p>From <time datetime="2020-01">01/2020</time> - <time
datetime="2020-11">11/2020</time> at Collège des
Ingénieurs.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion"
href="#collapseOne" aria-expanded="false"
aria-controls="collapseOne">Master
Degree of Computer Science
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingOne">
<div class="panel-body">
<p>From <time datetime="2015-10">10/2015</time> to <time
datetime="2019-04-17">17/04/2019</time> at Università degli
Studi di Bari "Aldo Moro" (Italy). Degree mark <strong>110/110
with honors</strong>.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion"
href="#collapseTwo" aria-expanded="false"
aria-controls="collapseTwo">Bachelor Degree of Computer Science
and Software Development Technologies
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingTwo">
<div class="panel-body">
<p>From <time datetime="2012-10">10/2012</time> to <time
datetime="2015-10-14">14/10/2015</time> at Università degli
Studi di Bari "Aldo Moro" (Italy). Degree mark <strong>110/110
with honors</strong>.</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion"
href="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">Diploma of Scientific Maturity
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel"
aria-labelledby="headingThree">
<div class="panel-body">
<p>From <time datetime="2007">2007</time> to <time
datetime="2012">2012</time> at Liceo Scientifico Statale "G.
Salvemini" Bari (Italy). Diploma mark <strong>100/100</strong>.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--<section class="colorlib-work" data-section="work">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">My Work</span>
<h2 class="colorlib-heading animate-box">Recent Work</h2>
</div>
</div>
<div class="row row-bottom-padded-sm animate-box" data-animate-effect="fadeInLeft">
<div class="col-md-12">
<p class="work-menu"><span><a href="#" class="active">Graphic Design</a></span> <span><a href="#">Web Design</a></span>
<span><a href="#">Software</a></span> <span><a href="#">Apps</a></span></p>
</div>
</div>
<div class="row">
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="project" style="background-image: url(images/img-1.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 01</a></h3>
<span>Website</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/img-2.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 02</a></h3>
<span>Animation</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInTop">
<div class="project" style="background-image: url(images/img-3.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 03</a></h3>
<span>Illustration</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInBottom">
<div class="project" style="background-image: url(images/img-4.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 04</a></h3>
<span>Application</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInLeft">
<div class="project" style="background-image: url(images/img-5.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 05</a></h3>
<span>Graphic, Logo</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 animate-box" data-animate-effect="fadeInRight">
<div class="project" style="background-image: url(images/img-6.jpg);">
<div class="desc">
<div class="con">
<h3><a href="work.html">Work 06</a></h3>
<span>Web Design</span>
<p class="icon">
<span><a href="#"><i class="icon-share3"></i></a></span>
<span><a href="#"><i class="icon-eye"></i> 100</a></span>
<span><a href="#"><i class="icon-heart"></i> 49</a></span>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 animate-box">
<p><a href="#" class="btn btn-primary btn-lg btn-load-more">Load more <i class="icon-reload"></i></a></p>
</div>
</div>
</div>
</section>
<section class="colorlib-blog" data-section="blog">
<div class="colorlib-narrow-content">
<div class="row">
<div class="col-md-6 col-md-offset-3 col-md-pull-3 animate-box" data-animate-effect="fadeInLeft">
<span class="heading-meta">Read</span>
<h2 class="colorlib-heading">Recent Blog</h2>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 animate-box" data-animate-effect="fadeInLeft">
<div class="blog-entry">
<a href="blog.html" class="blog-img"><img src="images/blog-1.jpg" class="img-responsive" alt="HTML5 Bootstrap Template by colorlib.com"></a>
<div class="desc">
<span><small>April 14, 2018 </small> | <small> Web Design </small> | <small> <i class="icon-bubble3"></i> 4</small></span>
<h3><a href="blog.html">Renovating National Gallery</a></h3>