-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1045 lines (1022 loc) · 40.7 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>
<title>Marc Llopart</title>
<!-- Meta -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="shortcut icon" href="favicon.ico" />
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,500,400italic,300italic,300,500italic,700,700italic,900,900italic"
rel="stylesheet"
type="text/css"
/>
<!-- FontAwesome JS -->
<script defer src="assets/plugins/fontawesome/js/all.js"></script>
<!-- Global CSS -->
<link
rel="stylesheet"
href="assets/plugins/bootstrap/css/bootstrap.min.css"
/>
<!-- Theme CSS -->
<link id="theme-style" rel="stylesheet" href="assets/css/theme-3.css" />
</head>
<body>
<header class="header">
<div class="top-bar container-fluid">
<div class="actions">
<a
class="btn d-none d-md-inline-block"
href="mailto:marc@luodaint.com"
><i class="fas fa-paper-plane" aria-hidden="true"></i> Hire Me</a
>
<a
class="btn"
target="_blank"
href="assets/documents/MarcLlopartRiera_Resume.pdf"
><i class="fas fa-download" aria-hidden="true"></i> Download My
Resume</a
>
</div>
<!--//actions-->
<ul class="social list-inline">
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/mllopart/" target="_blank"
><i class="fab fa-linkedin-in" aria-hidden="true"></i
></a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/larsnow" target="_blank"
><i class="fab fa-twitter" aria-hidden="true"></i
></a>
</li>
<li class="list-inline-item">
<a href="https://github.com/mllopart" target="_blank"
><i class="fab fa-github-alt" aria-hidden="true"></i
></a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/larsnow/" target="_blank"
><i class="fab fa-instagram" aria-hidden="true"></i
></a>
</li>
</ul>
<!--//social-->
</div>
<!--//top-bar-->
<div class="intro">
<div class="container text-center">
<img
class="profile-image"
style="border-radius: 50%"
src="assets/images/1627927263712.jfif"
alt=""
/>
<h1 class="name">Marc Llopart</h1>
<div class="title">Senior Software Engineer & CTO</div>
<div class="profile">
<p>
Dynamic Senior Engineer and forward-thinking CTO with a
demonstrated history of leading innovation in technology and
project execution.
</p>
<p>
My expertise lies in steering teams towards exceptional
performance and pioneering development in artificial intelligence
and search engine technologies. As a committed lifelong learner, I
have a deep passion for embracing cutting-edge technologies,
continuously enhancing my professional skill set, and adapting
rapidly to the evolving tech landscape.Known for staying ahead of
industry trends, I excel in making pivotal decisions under
pressure, diagnosing challenges swiftly, and deploying the most
efficient solutions.
</p>
<p>
Beyond the professional realm, I am an enthusiastic trail runner,
a lover of the great outdoors, and a connoisseur of mystery
literature. I am currently exploring the fascinating world of game
development, leveraging the capabilities of Unreal Engine to
create immersive experiences.
</p>
</div>
<!--//profile-->
</div>
<!--//container-->
</div>
<!--//intro-->
<div class="contact-info">
<div class="container text-center">
<ul class="list-inline">
<li class="email list-inline-item">
<i class="fas fa-envelope mr-2"></i
><a href="mailto:marc@luodaint.com">marc@luodaint.com</a>
</li>
<li class="list-inline-item">
<i class="fas fa-mobile-alt mr-2"></i
><a href="#">+34 680 83 99 63</a>
</li>
<li class="website list-inline-item">
<i class="fas fa-globe mr-2"></i
><a href="https://www.marcllopartriera.com" target="_blank"
>marcllopartriera.com</a
>
</li>
<li class="website list-inline-item">
<i class="fas fa-globe mr-2"></i
><a href="https://www.luodaint.com" target="_blank"
>luodaint.com</a
>
</li>
</ul>
</div>
<!--//container-->
</div>
<!--//contact-info-->
<div
id="page-nav-space-holder"
class="page-nav-space-holder d-none d-md-block"
>
<div id="page-nav-wrapper" class="page-nav-wrapper text-center">
<div class="container">
<ul id="page-nav" class="nav page-nav list-inline">
<li class="nav-item">
<a class="scrollto nav-link" href="#accomplishments-section"
>Accomplishments</a
>
</li>
<li class="nav-item">
<a class="scrollto nav-link" href="#experiences-section"
>Experiences</a
>
</li>
<li class="nav-item">
<a class="scrollto nav-link" href="#education-section"
>Education</a
>
</li>
<li class="nav-item">
<a class="scrollto nav-link" href="#skills-section">Skills</a>
</li>
<li class="nav-item">
<a class="scrollto nav-link" href="#testimonials-section"
>Testimonials</a
>
</li>
</ul>
<!--//page-nav-->
</div>
</div>
<!--//page-nav-wrapper-->
</div>
</header>
<!--//header-->
<div class="wrapper container">
<section
id="accomplishments-section"
class="accomplishments-section section"
>
<h2 class="section-title">Accomplishments</h2>
<ul class="list-unstyled service-list ml-0">
<li>
<i class="fas fa-check" aria-hidden="true"></i>
<strong>Elevated to CTO</strong>, leading the technological vision
and strategy, fostering innovation and guiding Medullar Solutions
Inc. through its next phases of growth in AI and software
development.
</li>
<li>
<i class="fas fa-check" aria-hidden="true"></i>
Demonstrated <strong>Hands-on leadership</strong> in architecture
and software development, overseeing multiple remote engineering
teams at Keeeb Inc., fostering a highly collaborative environment.
</li>
<li>
<i class="fas fa-check" aria-hidden="true"></i> Established a
comprehensive remote engineering team from scratch, consisting of
Backend, AI, and Frontend developers, who successfully built a
microservices architecture. Recruited and coached over 15 developers
worldwide, forming a robust team that launched a successful product.
</li>
<li>
<i class="fas fa-check" aria-hidden="true"></i> Transitioned Keeeb
Inc. from a monolithic architecture to a scalable microservices
framework, incorporating over 12 services within a Kubernetes
cluster for on-demand scalability.
</li>
<li>
<i class="fas fa-check" aria-hidden="true"></i> Collaborated closely
with the DevOps team on Docker and Kubernetes implementations,
deployment infrastructure, and automation processes
</li>
<li>
<i class="fas fa-check" aria-hidden="true"></i>
Managed <strong>C-level relationships</strong>, founders, and
investors, driving technological innovation and maintaining
continuous client engagement.
</li>
<li>
<i class="fas fa-check" aria-hidden="true"></i>
Implemented process enhancements in code organization, CI/CD, Jira,
Bitbucket workflow, and testing environments, leading to improved
efficiency and productivity.
</li>
<li>
<i class="fas fa-check" aria-hidden="true"></i>
Spearheaded technology transformation at Santander Bank US for the
AML and Fraud team, employing BAE Technology (formerly Norkom
Technologies), overseeing project lifecycles, and ensuring
successful deployments.
</li>
<li>
<i class="fas fa-check" aria-hidden="true"></i> Lead the Founded and
launched three startups, leveraging entrepreneurial skills to
identify market needs, develop solutions, and successfully bring
them to market.
</li>
<li>
<i class="fas fa-check" aria-hidden="true"></i>
Embraced global perspectives and adaptability through living in
Spain, Ireland, and the USA, enhancing problem-solving skills and
fostering a readiness for unforeseen challenges.
</li>
</ul>
</section>
<section id="experiences-section" class="experiences-section section">
<h2 class="section-title">Work Experiences</h2>
<div class="timeline">
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">
<a href="https://www.medullar.com" target="_blank"
>Medullar Solutions Inc.</a
>
</h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Remote
</div>
</div>
<div class="job-meta">
<div class="title">Chief Technology Officer (CTO)</div>
<div class="time">2022 - Actually</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>
As the Chief Technology Officer at Medullar Solutions, I am the
driving force behind the company's technological direction and
innovation. My role encompasses both strategic planning and
operational management, primarily aimed at synchronizing the
company's tech strategy with overarching business objectives.
</p>
<p>
Before seeking investment, I developed a proof of concept from
the ground up, laying the foundation for our technology-driven
solutions. Additionally, I meticulously designed the entire
infrastructure, encompassing both DevOps and software
architecture, setting the stage for scalable and efficient
product development.
</p>
</div>
<!--//job-desc-->
</div>
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">
<a href="https://uvesolutions.com/" target="_blank"
>UVE Route to market data intelligence</a
>
</h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Remote / Manresa
(Spain)
</div>
</div>
<div class="job-meta">
<div class="title">Development Team Lead</div>
<div class="time">2022 - 2023</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>
As the leader of the APPS Team at UVE, my role was to drive the
mobility product team towards achieving our objectives,
promoting both the platform's and the team's development and
stability. My responsibilities included:
</p>
<ul>
<li>
Working alongside the CTO to craft the technical roadmap for
our products.
</li>
<li>
Steering the introduction of new features and developments.
</li>
<li>
Engaging in the full product lifecycle with an emphasis on
development and troubleshooting.
</li>
<li>
Implementing best practices in software engineering to ensure
code is clean, maintainable, scalable, and optimized.
</li>
<li>
Enhancing the platform's performance for speed and
scalability.
</li>
<li>
Providing mentorship and direction to the team for their
growth and development.
</li>
<li>
Holding individual meetings with team members to address their
concerns and foster their progress.
</li>
<li>
Overseeing project deliverables to guarantee client
satisfaction.
</li>
</ul>
</div>
<!--//job-desc-->
</div>
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">
<a href="https://www.bita.io/" target="_blank">BITA GmbH</a>
</h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Remote
</div>
</div>
<div class="job-meta">
<div class="title">Interim Lead Data Architect</div>
<div class="time">2022 - 2022</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>
6-month consulting project helping Bita organize and evolve the
Cloud architecture in AWS.
</p>
</div>
<!--//job-desc-->
</div>
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">Keeeb Inc.</h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Remote
</div>
</div>
<div class="job-meta">
<div class="title">Director of Engineering</div>
<div class="time">2019 - 2021</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>In my role as Director of Engineering at Keeeb, I:</p>
<ul>
<li>
Spearhead and oversee agile software engineering teams across
the product development lifecycle.
</li>
<li>
Excel in communication, simplifying complex technical and
business challenges for diverse audiences.
</li>
<li>Act as the chief architect for web technologies.</li>
<li>Collaborate with product owners.</li>
<li>
Guarantee project execution, ensuring software is robust,
elegant, scalable, and performs optimally under heavy loads.
</li>
<li>
Coordinate with Product Management to synchronize roadmaps,
resource allocation, investment strategies, and stakeholder
engagement.
</li>
<li>Draft API specifications.</li>
<li>
Tackle intricate software challenges, leading teams to
innovative solutions.
</li>
<li>
Propel our technology platform's growth in sync with
engineering leadership.
</li>
<li>
Cultivate and maintain a high-achieving, unified engineering
team.
</li>
<li>
Champion engineering excellence, best practices, and high
coding standards.
</li>
<li>
Influence strategic decisions in roadmap, architecture, and
planning.
</li>
<li>
Promote a dynamic, inclusive, and collaborative engineering
culture.
</li>
<li>
Work intimately with various teams within engineering,
product, and the broader organization to pioneer solutions to
emerging challenges.
</li>
<li>
Support the team in delivering outstanding products swiftly,
within a continuous delivery framework.
</li>
</ul>
</div>
<!--//job-desc-->
</div>
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">Keeeb Deutschland GmbH</h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Remote
</div>
</div>
<div class="job-meta">
<div class="title">Developer Lead</div>
<div class="time">2018 - 2019</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>
Overseeing the team that develops Keeeb's key products and
establishing the software architecture.
</p>
<p>
<i>Technical skills:</i> Project management, Scrum, Python,
Elastic-Search, RabbitMQ, AI, Docker, Ansible, Vagrant, Software
architecture, Big Data, Hadoop, Cloudera, Redis, PostgreSQL
</p>
</div>
<!--//job-desc-->
</div>
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">Abacus Marketing Solutions</h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Barcelona (Spain)
</div>
</div>
<div class="job-meta">
<div class="title">Senior PHP backend developer</div>
<div class="time">2017 - 2018</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>
Managing the company's email distribution platform used for bulk
email campaigns.
</p>
<p>
<i>Technical skills:</i> Project management, PHP with Symfony 2
and 3, MongoDB, MySQL, RESTful API, Javascript, HTML, CSS,
Postfix email, Unix.
</p>
</div>
<!--//job-desc-->
</div>
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">
<a href="https://www.santanderbank.com/" target="_blank"
>Santander Bank US</a
>
</h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Boston, MA (US)
</div>
</div>
<div class="job-meta">
<div class="title">Software Engineer - Project Manager</div>
<div class="time">2013 - 2017</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>
Expert in anti-money laundering (AML), fraud, and Currency
Transaction Reporting (CTR) initiatives, focusing on software
development and deployment. Designs, documents, and creates
technical solutions that surpass both banking and regulatory
standards.
</p>
<p>
<i>Technical skills:</i> Java, Unix, Oracle, ETL, SAS, DB2,
Mainframe, Norkom (BAE NetReveal) software.
</p>
</div>
<!--//job-desc-->
</div>
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">
<a href="https://www.luodaint.com/" target="_blank">luodaint</a>
</h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Barcelona (Spain)
</div>
</div>
<div class="job-meta">
<div class="title">Founder & Lead Developer</div>
<div class="time">2010 - 2013</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>
As a freelancer, I've provided web and iOS development services
for various clients. I founded and successfully established two
companies, FentPais and 4PeopleMedia, both of which continue to
flourish in the Spanish market.
</p>
<p>
<i>Technical skills:</i> Python, PHP (Symfony), Objective C,
Java, MySQL, sqlite3, Titanium, Node.js, CSS3, HTML5, Responsive
design, jQuery, AJAX, Bootstrap, jQuery Mobile, Node.js,
MongoDB, Postgress
</p>
</div>
<!--//job-desc-->
</div>
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place">
<a href="https://www.baesystems.com/" target="_blank">Norkom
Technologies (BAE Systems)</a></h3>
</h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Dublin (Ireland)
</div>
</div>
<div class="job-meta">
<div class="title">Customer support engineer - Java analyst</div>
<div class="time">2008 - 2010</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>
Examined systemic shortcomings, devised solutions, and assessed
the developed software to guarantee compliance with client
requirements and the global financial services industry
standards.
</p>
<p>
<i>Technical skills:</i> Java, JSP, Ajax, Websphere 6.1, JBOSS,
Velocity Templates. Technical deign, testing using Canoo test
framework, Performance queries using Jmeter. Design and work
with Product DBA to design the DB.
</p>
</div>
<!--//job-desc-->
</div>
<!--//item-->
<div class="item">
<div class="work-place">
<h3 class="place"><a href="https://es.nttdata.com/" target="_blank">Everis (NTT DAta)</a></h3>
<div class="location">
<i class="fas fa-map-marker-alt mr-1"></i>Barcelona (Spain)
</div>
</div>
<div class="job-meta">
<div class="title">Java analyst & Project Manager</div>
<div class="time">2003 - 2008</div>
</div>
<!--//job-meta-->
<div class="job-desc">
<p>
I honed my computer skills at Everis Barcelona, a consultancy
specializing in IT outsourcing and professional services. There,
I took on roles as a developer, analyst, and project leader,
working with a diverse range of clients, including Deutsche
Bank, the Catalonian Department of Education, and AUNA
Telecomunicaciones.
</p>
<p>
<i>Technical skills:</i> Java, Oracle, Mainframe, Oracle Forms,
PHP, JSP.
</p>
</div>
<!--//job-desc-->
</div>
<!--//item-->
</div>
<!--//timeline-->
</section>
<!--//section-->
<section id="education-section" class="education-section section">
<h2 class="section-title">Education</h2>
<div class="row">
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">Bachelor degree in computer engineering</h3>
<div class="education-body">
UOC (Universitat Oberta de Catalunya)
</div>
<!--//education-body-->
<div class="time">2015 - Present</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">
Desarrollo de juegos con Unreal Engine 4 de 0 a profesional
</h3>
<div class="education-body">Udemy</div>
<!--//education-body-->
<div class="time">2021</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">
Programar Blueprints en Unreal Engine de 0 a profesional
</h3>
<div class="education-body">Udemy</div>
<!--//education-body-->
<div class="time">2021</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
</div>
<!--//row-->
<div class="row">
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">
Elasticsearch 6 and Elastic Stack - In Depth and Hands On!
</h3>
<div class="education-body">Udemy</div>
<!--//education-body-->
<div class="time">2018</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">
Create Your First Profitable Online Business
</h3>
<div class="education-body">Udemy</div>
<!--//education-body-->
<div class="time">2017</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">
Unity: From Master to Pro by Building 6 Games
</h3>
<div class="education-body">Udemy</div>
<!--//education-body-->
<div class="time">2017</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
</div>
<!--//row-->
<div class="row">
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">
The Complete iOS Game Course Using SpriteKit And Swift
</h3>
<div class="education-body">Udemy</div>
<!--//education-body-->
<div class="time">2017</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">
iOS 10 & Swift 3: From Beginner to Paid Professional
</h3>
<div class="education-body">Udemy</div>
<!--//education-body-->
<div class="time">2017</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">
Build a Twitter-like app step by step with Django 1.10
</h3>
<div class="education-body">Udemy</div>
<!--//education-body-->
<div class="time">2016</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
</div>
<!--//row-->
<div class="row">
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">Business Analysis Foundation</h3>
<div class="education-body">Isban - Santander US</div>
<!--//education-body-->
<div class="time">2016</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">PMP course</h3>
<div class="education-body">Isban - Santander US</div>
<!--//education-body-->
<div class="time">2016</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">Manage agile projects using Scrum</h3>
<div class="education-body">Isban - Santander US</div>
<!--//education-body-->
<div class="time">2016</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
</div>
<!--//row-->
<div class="row">
<div class="item col-12 col-md-4">
<div class="item-inner">
<h3 class="degree">Developing computer applications</h3>
<div class="education-body">Universitat Abat Oliba</div>
<!--//education-body-->
<div class="time">2001 - 2003</div>
</div>
<!--//item-inner-->
</div>
<!--//item-->
</div>
<!--//row-->
</section>
<!--//section-->
<section id="testimonials-section" class="testimonials-section section">
<h2 class="section-title">Testimonials</h2>
<div
id="testimonials-carousel"
class="testimonials-carousel carousel slide"
data-bs-interval="8000"
>
<!-- Indicators -->
<ol class="carousel-indicators">
<li
data-bs-target="#testimonials-carousel"
data-bs-slide-to="0"
class="active"
></li>
<li
data-bs-target="#testimonials-carousel"
data-bs-slide-to="1"
></li>
<li
data-bs-target="#testimonials-carousel"
data-bs-slide-to="2"
></li>
<li
data-bs-target="#testimonials-carousel"
data-bs-slide-to="3"
></li>
<li
data-bs-target="#testimonials-carousel"
data-bs-slide-to="4"
></li>
<li
data-bs-target="#testimonials-carousel"
data-bs-slide-to="5"
></li>
<li
data-bs-target="#testimonials-carousel"
data-bs-slide-to="6"
></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item carousel-item active">
<blockquote class="quote">
<p>
<span class="icon-holder"
><i class="fas fa-quote-left"></i
></span>
I worked with Marc on one of Norkom's largest projects. His
strong technical knowledge and ability was core to the success
of this project. I found Marc to be a great team player and
his ability to quickly adapt to new challenges central to our
products growth and strength. I would have no hesitation in
recommending Marc.
</p>
</blockquote>
<div class="source">
<div class="name">Paul O'Regan</div>
<div class="position">Business leader at MasterCard</div>
</div>
<!--//source-->
</div>
<!--//item-->
<div class="item carousel-item">
<blockquote class="quote">
<p>
<span class="icon-holder"
><i class="fas fa-quote-left"></i
></span>
I have worked directly with Marc on a number of deliverables
and projects over time in Norkom. I have found Marc to be very
professional with great attention to detail, hard working and
a real team player. He has shown technical leadership on a
number of complex deliverables in his time at Norkom. I would
have no hesitation in recommending him to any company.
</p>
</blockquote>
<div class="source">
<div class="name">Fintan Maher</div>
<div class="position">Product Manager at IBM</div>
</div>
<!--//source-->
</div>
<!--//item-->
<div class="item carousel-item">
<blockquote class="quote">
<p>
<span class="icon-holder"
><i class="fas fa-quote-left"></i
></span>
I worked with Marc for two years on a long-term project, and
can attest to his work ethic and dedication. Over the time I
worked with Marc, he demonstrated his strong leadership skills
while creating a positive work environment for his team. He is
very passionate about his work, and creative when designing
new ideas and solutions. He is knowledgeable of all systems he
works on, and is patient when explaining current and new
functionality to clients and IT personnel that are less
familiar. Marc demonstrates resilience when finding the best
solutions to meet the clients’ needs, and takes the time to
ensure solutions are implemented correctly. He is a
self-starter that goes above and beyond to exceed
expectations, and I highly recommend Marc with no
reservations.
</p>
</blockquote>
<div class="source">
<div class="name">Jacquelyn Perrotti</div>
<div class="position">
T&O Analyst II at Santander Bank, N.A.
</div>
</div>
<!--//source-->
</div>
<!--//item-->
<div class="item carousel-item">
<blockquote class="quote">
<p>
<span class="icon-holder"
><i class="fas fa-quote-left"></i
></span>
Marc is an exceptional person, always leading by example. His
vast knowledge in different areas of frontend and backend
always provides for well-reasoned decisions towards the
architecture of a solution. His problem solving capabilities
do not only include all technical aspects, but extend to a
personal soft-skill level ensuring the effectiveness of each
team.
</p>
</blockquote>
<div class="source">
<div class="name">Alexander Noack</div>
<div class="position">IT Manager and DevOps Specialist</div>
</div>
<!--//source-->
</div>
<!--//item-->
<div class="item carousel-item">
<blockquote class="quote">
<p>
<span class="icon-holder"
><i class="fas fa-quote-left"></i
></span>
I really like working with Marc because he is a great team
player who is solution-oriented (even with complex challenges)
and always has the goal in mind. Apart from that, I like him
because he is just super nice and I also like to talk to him
privately.
</p>
</blockquote>
<div class="source">
<div class="name">Dan Nommensen</div>
<div class="position">Director Keeeb Innovation Lab</div>
</div>
<!--//source-->
</div>
<!--//item-->
<div class="item carousel-item">
<blockquote class="quote">
<p>
<span class="icon-holder"
><i class="fas fa-quote-left"></i
></span>
I have worked with many companies, but the experience I had
with Marc in Keeeb Europe GmbH was definitely the best so far.
I highly recommend his technical skills and expertise, that
allowed him to successfully manage a large and distributed
remote team, even before the pandemic situation started. Any
organization would be lucky to have Marc. The positive culture
he has established allowed team members to truly enjoy the
days working together, while building and scaling an awesome
product and facing many technical challenges. I would
definitely like to work again with him.
</p>
</blockquote>
<div class="source">
<div class="name">Massimo Scamarcia</div>
<div class="position">Senior DevOps Enginner</div>
</div>
<!--//source-->
</div>
<!--//item-->
<div class="item carousel-item">
<blockquote class="quote">
<p>
<span class="icon-holder"
><i class="fas fa-quote-left"></i
></span>
I have worked with Marc at keeeb and I will highly recommend
Marc as an effective manager and a natural leader. Marc has
the technical know-how, empathy, and ability to organize the
working process that lets team members demonstrate the full