forked from varadbhogayata/varadbhogayata.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1069 lines (991 loc) · 58.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- <!DOCTYPE html> -->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PGZH8HT');</script>
<!-- End Google Tag Manager -->
<!-- Materialize - Compiled and minified CSS-->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/materialize/0.95.3/css/materialize.min.css" />
<!-- Font Awesome Icon - CSS-->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
<!-- Custom Styles-->
<link rel="stylesheet" href="/assets/css/style.css" />
<title>David Del Río | Data Analyst</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126939217-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-126939217-2');
</script>
<!-- Open Graph-->
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="website" />
<meta property="og:title" content="David Del Río | Data Analyst" />
<meta property="og:description" content="Data Analyst" />
<meta property="og:url" content="https://daviddelriod.github.io/" />
<meta property="og:site_name" content="David Del Río | Data Analyst" />
<meta property="article:publisher" content="https://daviddelriod.github.io/" />
<meta property="og:image" content="https://daviddelriod.github.io/examples/preview.jpg" />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@david_" />
<meta name="twitter:title" content="Coder | Technofreak | Explorer | Minimalist | Humane" />
<meta name="twitter:description" content="Software Developer" />
<meta name="twitter:url" content="https://twitter.com/david_bhogayata" />
<meta name="author" content="David Del Río" />
<meta name="description" content="Programmer with a passion for development and artificial intelligence." />
<link rel="apple-touch-icon" sizes="57x57" href="/assets/img/favicon/apple-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="60x60" href="/assets/img/favicon/apple-icon-60x60.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/assets/img/favicon/apple-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="/assets/img/favicon/apple-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/assets/img/favicon/apple-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="/assets/img/favicon/apple-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/assets/img/favicon/apple-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/assets/img/favicon/apple-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/favicon/apple-icon-180x180.png" />
<link rel="icon" type="image/png" sizes="192x192" href="/assets/img/favicon/android-icon-192x192.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="96x96" href="/assets/img/favicon/favicon-96x96.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon/favicon-16x16.png" />
<link rel="manifest" href="/assets/img/favicon/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="msapplication-TileImage" content="/assets/img/favicon/ms-icon-144x144.png" />
<meta name="theme-color" content="#ffffff" />
<meta name="robots" content="index, follow" />
<!-- Google Site Verification for indexing -->
<meta name="google-site-verification" content="_qxK8tePiU2fhnwlwnJ7pkDFnj1k2EiKq_cYGy1Cb84" />
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PGZH8HT"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- Navigation Menu-->
<!-- Nav class 1 -->
<nav class="hide-on-small-only">
<ul class="side-nav fixed section table-of-contents">
<li class="logo">
<a id="logo-container" aria-label="Navigate to the beginning of the page" href="#intro"
class="brand-logo grey-blue-text">
<img src="/assets/img/foto-david.jpg" class="circle img-responsive profile-pic" alt="avatar">
</a>
</li>
<li class="bold">
<a aria-label="Navigate to the About section" href="#about" class="waves-effect waves-dark teal-text"><i
class="mdi-social-person small"></i><span>About</span></a>
</li>
<li class="bold">
<!-- mdi-av-web small
mdi-av-my-library-books small-->
<a aria-label="Navigate to the Projects section" href="#publications" class="waves-effect waves-dark teal-text"><i
class="mdi-av-my-library-books small"></i><span>Publications</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Experience section" href="#experience"
class="waves-effect waves-dark teal-text"><i
class="mdi-action-trending-up small"></i><span>Experience</span></a>
</li>
<li class="bold">
<!--
ICONS:
mdi-action-assessment
mdi-social-poll
mdi-av-equalizer
-->
<a aria-label="Navigate to the Skills section" href="#skills" class="waves-effect waves-dark teal-text"><i
class="mdi-action-assessment small"></i><span>Skills</span></a>
</li>
<li class="bold">
<!--
ICONS:
-->
<a aria-label="Navigate to the Education section" href="#education" class="waves-effect waves-dark teal-text"><i
class="mdi-social-school small"></i><span>Education</span></a>
</li>
<li class="bold">
<!--
1. mdi-communication-contacts
2. mdi-content-mail
3. mdi-communication-email
-->
<a aria-label="Navigate to the Contact section" href="#contact" class="waves-effect waves-dark teal-text"><i
class="mdi-content-mail small"></i><span>Contact</span></a>
</li>
<li class="bold">
<!--
ICONS:
1. mdi-action-description
2. mdi-file-folder
3. mdi-file-folder-open
4. mdi-file-attachment
5. mdi-file-folder-shared
-->
<!-- <a aria-label="Open Varad's resume in a new tab" href="#resume" target="_blank"
onclick="window.open('https://drive.google.com/file/d/1vYi-bMyIsZPve0x_clxY8xsDtiHiOMd3/view?usp=sharing')"
class="waves-effect waves-dark teal-text"><i class="mdi-file-folder-open small"></i><span>Resume</span></a> -->
<a aria-label="Open David's resume in a new tab" href="https://daviddelriod.github.io/assets/resume/CV_DAVID_DEL_RIO.pdf" target="_blank"
class="waves-effect waves-dark teal-text"><i class="mdi-file-folder-open small"></i><span>Resume</span></a>
</li>
</ul>
</nav>
<!-- Nav class 2 -->
<nav class="hide-on-large only trigger z-depth-1">
<a aria-label="Toggle visibility of the mobile navbar" href="#" data-activates="slide-out"
class="button-collapse"><i class="mdi-navigation-menu"></i></a>
<div class="name-title">
<a id="name" aria-label="Navigate to the beginning of the page" href="#" class="teal-text">David
Del Río</a><span class="black-text">Junior AI Engineer</span>
</div>
</nav>
<!-- Nav class 3 -->
<nav class="hide-on-large only">
<ul id="slide-out" class="side-nav">
<li class="bold">
<a aria-label="Navigate to the About section" href="#about" class="waves-effect waves-dark teal-text"><i
class="mdi-social-person small"></i><span>About</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Experience section" href="#experience"
class="waves-effect waves-dark teal-text"><i
class="mdi-action-trending-up small"></i><span>Experience</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Projects section" href="#publications" class="waves-effect waves-dark teal-text"><i
class="mdi-av-my-library-books small"></i><span>Projects</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Skills section" href="#skills" class="waves-effect waves-dark teal-text"><i
class="mdi-action-assessment small"></i><span>Skills</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Education section" href="#education" class="waves-effect waves-dark teal-text"><i
class="mdi-social-school small"></i><span>Education</span></a>
</li>
<li class="bold">
<a aria-label="Navigate to the Contact section" href="#contact" class="waves-effect waves-dark teal-text"><i
class="mdi-content-mail small"></i><span>Contact</span></a>
</li>
<li class="bold">
<a aria-label="Open David's Resume in a new tab"
href="https://drive.google.com/file/d/1fqRTScXNmliPhCSgxs3HaLB4ZYJLvxQu/view?usp=sharing" target="_blank"
class="waves-effect waves-dark teal-text"><i class="mdi-file-folder-open small"></i><span>Resume</span></a>
</li>
</ul>
</nav>
<!-- Main Content-->
<main>
<!-- First Section: Heading lines and image -->
<section id="intro" class="section scrollspy full-height">
<div class="overlay"></div>
<div class="container">
<div class="col-md-9">
<div class="content section-padding valign" style="margin-left: 10%; margin-top: 50px;">
<div class="caption">
<h2>Hi, I'm <span class="teal">David Del Río.</span></h2>
<h5 style="color:#fff">A <span class="typing" style="font-weight: 300; color:#004d40"></span></h5>
<!-- <h5 style="color:#00796b">A <span class="typing" style="font-weight: 300; color:#fff"></span></h5> -->
<h5>Passionate programmer with a deep curiosity for AI, programming, and sports analytics, driven by a self-starter attitude. I relish the opportunity to solve intricate real-world problems in these domains.</h5>
</div>
<div class="social">
<a href="http://linkedin.com/in/del-rio-david/" target="_blank">
<button class="icon-btn linkedin">
<i class="fa fa-linkedin"></i>
</button>
</a>
<a href="https://github.com/daviddelriod/" target="_blank">
<button class="icon-btn github">
<i class="fa fa-github"></i>
</button>
</a>
<!-- <a href="https://angel.co/u/varad_bhogayata" target="_blank">
<button class="icon-btn angellist">
<i class="fa fa-angellist"></i>
</button>
</a> -->
<!-- <a href="http://linkedin.com/in/varadbhogayata" target="_blank">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-linkedin fa-stack-1x fa-inverse"></i>
</span>
</a> -->
</div>
<div class='buttons'>
<a href="#about" class="readme">Read More</a>
<a href="#contact" class="contactme">Contact Me</a>
</div>
</div>
</div>
</div>
</section>
<!-- Second Section: About -->
<section id="about" class="section scrollspy">
<h3 class="page-title white-text teal">About</h3>
<div class="container flow-text">
<!-- <blockquote>
<h2>
A Software Developer with a passion for Backend Development and Artificial Intelligence.
</h2>
</blockquote> -->
<p>
I am a Sports Data Campus Grad Student at UCAM. I enjoy real-life problem-solving and coding. I consistently give my full commitment and dedication to every task I undertake.
I have worked on technologies like Python, PySpark, Azure, MySQL, MongoDB, R as well as many visualization tools during my bachelor's. I have 2 years of professional work experience which helped me strengthen my experience in Python, Azure, and PySpark.
My passion lies in crafting intricate solutions that address real-world issues affecting millions of users as well as creating powerful visualizations for different scenarios.
</p>
<p>
<ul>
<li><b>Languages:</b> Python, Scala, R, PySpark</li>
<li><b>Databases:</b> SQL Developer, Oracle, PostgreSQL, MongoDB</li>
<li><b>Visualization tools:</b> PowerBI, Matplotlib, Plotly, Looker, Tableau, ShinyApp</li>
<li><b>AI Frameworks:</b> Keras, TensorFlow, PyTorch, Sklearn</li>
<li><b>Technologies:</b> Git, Docker, Azure, ElasticSearch</li>
</ul>
</p>
<!-- <p>
Detail-oriented Software Developer with professional experience in Backend Development, Machine Learning, Computer Vision. I am adept in Python, Django, Flask, SQL, Machine Learning, Computer Vision.
</p> -->
<p>
Looking for an opportunity to excel in a challenging role that leverages my skills in Software Engineering while also allowing for professional development, intriguing experiences, and personal growth, with a special interest in 𝘀𝗽𝗼𝗿𝘁𝘀 𝗮𝗻𝗮𝗹𝘆𝘁𝗶𝗰𝘀.
</p>
<!-- <p>
Another Paragraph
</p> -->
<!-- <p>
<strong>Current Focus</strong>: <a aria-label="Navigate to the Inclusive Design Patterns homepage"
href="https://www.smashingmagazine.com/inclusive-design-patterns/">Accessibility</a> // <a
aria-label="Navigate to the Full Stack React homepage"
href="https://www.fullstackreact.com/">React</a> // <a
aria-label='Navigate to the article "Scalable CSS"'
href="https://mrmrs.github.io/writing/2016/03/24/scalable-css/">Design Systems</a>
</p> -->
</div>
</section>
<!-- Third Section: Publications -->
<section id="publications" class="section scrollspy">
<h3 class="page-title white-text teal">Publications</h3>
<div class="carousel-container">
<div class="carousel-content">
<div class="carousel-item col s12 m6 l4">
<div class="card medium">
<div class="video-container">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7186619353570623488?compact=1" frameborder="0" allowfullscreen="" scrolling="no"></iframe>
</div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">Foden's screamer!<i
class="mdi-navigation-more-vert right"></i></span>
<p>
𝐇𝐚𝐯𝐞 𝐚 𝐥𝐨𝐨𝐤 𝐚𝐭 𝐨𝐧𝐞 𝐨𝐟 𝐭𝐡𝐞 𝐛𝐞𝐬𝐭 𝐠𝐨𝐚𝐥𝐬 𝐨𝐟 𝐭𝐡𝐞 𝐂𝐡𝐚𝐦𝐩𝐢𝐨𝐧𝐬 𝐋𝐞𝐚𝐠𝐮𝐞 𝐪𝐮𝐚𝐫𝐭𝐞𝐫-𝐟𝐢𝐧𝐚𝐥𝐬! 🚀
</p>
</div>
<div class="card-reveal">
<!-- TODO: change this -- only close button -->
<!-- <span class="card-title brown-text">Accomplishments<i class="mdi-navigation-close right"></i></span> -->
<span class="card-title grey-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>𝐂𝐢𝐭𝐲'𝐬 𝐩𝐥𝐚𝐧</b>After a very long posession, Manchester City manages to break the first defensive line ⚒ </li>
<li><b>𝐌𝐚𝐝𝐫𝐢𝐝'𝐬 𝐝𝐞𝐟𝐞𝐧𝐬𝐞</b>Bernardo Silva receives the ball with space and Real Madrid defence forms a dense block of 6 players 🛡</ul>
<li><b>𝐑𝐚𝐩𝐢𝐝 𝐜𝐨𝐦𝐛𝐢𝐧𝐚𝐭𝐢𝐨𝐧</b>Despite the defensive effort, a rapid combination and a superb turn by Foden, gives him the necessary space for shooting 💥</ul>
<li><b>𝐈𝐧𝐜𝐫𝐞𝐝𝐢𝐛𝐥𝐞 𝐬𝐡𝐨𝐨𝐭𝐢𝐧𝐠:</b>With just a 𝟔% 𝐨𝐟 𝐩𝐫𝐨𝐛𝐚𝐛𝐢𝐥𝐢𝐭𝐲, Foden hits a top-corner screamer that serves as equalizer ⚖ </ul>
<div class="card-action">
<a aria-label="Visit " href="https://www.linkedin.com/posts/del-rio-david_%3F%3F%3F%3F%3F%3F-%3F%3F%3F%3F%3F%3F%3F%3F-have-activity-7186619560278581248-p-ZU?utm_source=share&utm_medium=member_desktop" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<div class="carousel-item col s12 m6 l4">
<div class="card medium">
<div class="video-container">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7181545743000748032?compact=1" frameborder="0" allowfullscreen="" scrolling="no"></iframe>
</div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">Athletic's Williams brothers<i
class="mdi-navigation-more-vert right"></i></span>
<p>
𝐑𝐞𝐯𝐢𝐯𝐞 𝐭𝐡𝐞 𝐭𝐢𝐦𝐞 𝐰𝐡𝐞𝐧 𝐛𝐨𝐭𝐡 𝐖𝐢𝐥𝐥𝐢𝐚𝐦𝐬 𝐛𝐫𝐨𝐭𝐡𝐞𝐫𝐬 𝐬𝐜𝐨𝐫𝐞𝐝 𝐚𝐧𝐝 𝐚𝐬𝐬𝐢𝐬𝐭𝐞𝐝 𝐞𝐚𝐜𝐡 𝐨𝐭𝐡𝐞𝐫! 🌪
</p>
</div>
<div class="card-reveal">
<!-- TODO: change this -- only close button -->
<!-- <span class="card-title brown-text">Accomplishments<i class="mdi-navigation-close right"></i></span> -->
<span class="card-title grey-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>𝐈𝐧̃𝐚𝐤𝐢'𝐬 𝐠𝐨𝐚𝐥</b>A great solo-play by Nico Williams leads to a beautiful assist that dodges the whole defence. Then his brother pulls a clinical volley-definition and opens the score for the team 🥅</li>
<li><b>𝐍𝐢𝐜𝐨'𝐬 𝐠𝐨𝐚𝐥:</b>Similar play but happening on the right wing. Athletic starts a rapid counter-attack and Iñaki manages to carry the ball until the endline. After that, he provides a back pass for his brother to score 🌪</ul>
<div class="card-action">
<a aria-label="Visit " href="https://www.linkedin.com/posts/del-rio-david_%3F%3F%3F%3F%3F%3F%3F%3F-%3F%3F%3F%3F%3F%3F%3F%3F-%3F%3F%3F%3F%3F%3F%3F%3F-activity-7181546011801116672-Zxmo?utm_source=share&utm_medium=member_desktop" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<div class="carousel-item col s12 m6 l4">
<div class="card medium">
<div class="video-container">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7176487341442650113?compact=1" frameborder="0" allowfullscreen="" scrolling="no"></iframe>
</div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">Girona's journey: Season snapshot<i
class="mdi-navigation-more-vert right"></i></span>
<p>
𝐁𝐫𝐞𝐚𝐤 𝐝𝐨𝐰𝐧 𝐚 𝐬𝐢𝐠𝐧𝐚𝐭𝐮𝐫𝐞 𝐜𝐨𝐮𝐧𝐭𝐞𝐫-𝐚𝐭𝐭𝐚𝐜𝐤 𝐜𝐚𝐫𝐫𝐢𝐞𝐝 𝐛𝐲 𝐆𝐢𝐫𝐨𝐧𝐚 💨
</p>
</div>
<div class="card-reveal">
<!-- TODO: change this -- only close button -->
<!-- <span class="card-title brown-text">Accomplishments<i class="mdi-navigation-close right"></i></span> -->
<span class="card-title grey-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>𝐈𝐧𝐢𝐭𝐢𝐚𝐥 𝐏𝐫𝐞𝐬𝐬𝐮𝐫𝐞</b>Under Osasuna's siege, Girona navigates through tight spaces. Savinho, finding a gap, sends a pass to the midfield who makes a perfect sending through the defense and setting the stage for a strategic counter. 🧠</li>
<li><b>𝐁𝐫𝐞𝐚𝐤𝐢𝐧𝐠 𝐋𝐢𝐧𝐞𝐬</b>Dovbyk's subtle touch redirects the ball to Savinho, who then dashes forward, breaking lines and creating a decisive 3 vs 2 scenario against Osasuna's backpedaling defense. 💨</ul>
<li><b>𝐏𝐞𝐫𝐟𝐞𝐜𝐭 𝐭𝐢𝐦𝐢𝐧𝐠</b>Savinho slows, timing his pass as Dovbyk advances. This calculated move opens up the wing and Dovbyk's ensuing assist finds Ivan Martin perfectly placed for a clear shot at glory. 🎯</ul>
<div class="card-action">
<a aria-label="Visit " href="https://www.linkedin.com/posts/del-rio-david_%3F%3F%3F%3F%3F%3F%3F-%3F%3F%3F%3F%3F%3F%3F-%3F%3F%3F%3F%3F%3F-activity-7176487736332189696-fddM?utm_source=share&utm_medium=member_desktop" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<div class="carousel-item col s12 m6 l4">
<div class="card medium">
<div class="video-container">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7171419283250429952?compact=1" frameborder="0" allowfullscreen="" scrolling="no"></iframe>
</div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">El Clásico 2x1<i
class="mdi-navigation-more-vert right"></i></span>
<p>
𝐑𝐨𝐧𝐚𝐥𝐝𝐨 𝐨𝐫 𝐈𝐧𝐢𝐞𝐬𝐭𝐚. 𝐖𝐡𝐢𝐜𝐡 𝐨𝐧𝐞 𝐢𝐬 𝐲𝐨𝐮𝐫 𝐟𝐚𝐯𝐨𝐮𝐫𝐢𝐭𝐞? 💥
</p>
</div>
<div class="card-reveal">
<!-- TODO: change this -- only close button -->
<!-- <span class="card-title brown-text">Accomplishments<i class="mdi-navigation-close right"></i></span> -->
<span class="card-title grey-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>𝐒𝐢𝐦𝐢𝐥𝐚𝐫𝐢𝐭𝐢𝐞𝐬</b> - Both plays are initiated on the right wing
- The error of both defending teams arises in the midfield
- Both assists are provided with the backheel
- Both plays finish with a first-touch goal</li>
<li><b>𝐃𝐢𝐟𝐟𝐞𝐫𝐞𝐧𝐜𝐞𝐬</b> - The goal scored by Barcelona comes from an open-play whereas Real Madrid's one is the result of a counter attack
- In the case of Cristiano's goal, he is the one who starts the attack while in the case of Iniesta's, he participates in the construction but does not carry or start the play.</li>
</ul>
<div class="card-action">
<a aria-label="Visit " href="https://www.linkedin.com/posts/del-rio-david_%3F%3F-%3F%3F%3F%3F%3F%3F%3F-%3F%3F%3F-%3F%3F%3F%3F%3F-activity-7171421979307032576-0PuZ?utm_source=share&utm_medium=member_desktop" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<div class="carousel-item col s12 m6 l4">
<div class="card medium">
<div class="video-container">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7156202244328062977?compact=1" frameborder="0" allowfullscreen="" scrolling="no"></iframe>
</div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">Aguero's Late Hero<i
class="mdi-navigation-more-vert right"></i></span>
<p>
𝐖𝐡𝐞𝐧 𝐌𝐚𝐧𝐜𝐡𝐞𝐬𝐭𝐞𝐫 𝐂𝐢𝐭𝐲 𝐰𝐨𝐧 𝐭𝐡𝐞 𝐥𝐞𝐚𝐠𝐮𝐞 𝐢𝐧 𝐭𝐡𝐞 𝐥𝐚𝐬𝐭 𝐦𝐢𝐧𝐮𝐭𝐞 𝐨𝐟 𝐭𝐡𝐞 𝐥𝐚𝐬𝐭 𝐦𝐚𝐭𝐜𝐡! ⚽
</p>
</div>
<div class="card-reveal">
<!-- TODO: change this -- only close button -->
<!-- <span class="card-title brown-text">Accomplishments<i class="mdi-navigation-close right"></i></span> -->
<span class="card-title grey-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>𝐂𝐨𝐧𝐭𝐞𝐱𝐭:</b> Manchester City were losing 1-2 in the last match of the league and needed a win in order to equal Manchester United's 89 points and win the league by goal difference.</li>
<li><b>𝗜𝗻𝗶𝘁𝗶𝗮𝗹 𝘀𝗶𝘁𝘂𝗮𝘁𝗶𝗼𝗻</b> In an 11 vs 10 situation, Man. City sets the attack. Queens Park Rangers' players form a block of defense in a reduced space. 🛡</li>
<li><b>𝐌𝐮𝐥𝐭𝐢𝐩𝐥𝐞 𝐨𝐩𝐭𝐢𝐨𝐧𝐬:</b> Despite the ampunt of defenders, S. Agüero receives the ball withouth mark and gets the possibility of deciding the future of the play. He then tries to connect with Balotelli. ⚡</li>
<li><b>𝐁𝐚𝐥𝐨𝐭𝐞𝐥𝐥𝐢'𝐬 𝐮𝐧𝐢𝐪𝐮𝐞 𝐚𝐬𝐬𝐢𝐬𝐭:</b> The striker receives the ball with high-pressure. He falls to the ground but still manages to make his first and only assist during his 3-year spell at Manchester. Luckily, the most important assist in his career. 📽</li>
<li><b>𝐀𝐠𝐮𝐞𝐫𝐨'𝐬 𝐬𝐭𝐫𝐢𝐤𝐞:</b> On receiving the ball, Aguero fakes a shot and dribbles past an opponent, giving him a great chance to score. He unleashes a powerful shot that changes the history of the English Premier League. 🎨</li>
</ul>
<div class="card-action">
<a aria-label="Visit " href="https://www.linkedin.com/posts/del-rio-david_%3F%3F%3F%3F-%3F%3F%3F%3F%3F%3F%3F%3F%3F%3F-%3F%3F%3F%3F-%3F-activity-7156203384851644416-a689?utm_source=share&utm_medium=member_desktop" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<div class="carousel-item col s12 m6 l4">
<div class="card medium">
<div class="video-container">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7151032944034263040?compact=1" scrolling="no" frameborder="0" allowfullscreen=""></iframe>
</div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">2010 WC Spain's goal!<i
class="mdi-navigation-more-vert right"></i></span>
<p>
𝗧𝗯𝘁 𝘄𝗵𝗲𝗻 𝗜𝗻𝗶𝗲𝘀𝘁𝗮 𝘀𝗲𝗰𝘂𝗿𝗲𝗱 𝗦𝗽𝗮𝗶𝗻'𝘀 𝗳𝗶𝗿𝘀𝘁 𝗪𝗖 𝘁𝗶𝘁𝗹𝗲 𝗶𝗻 𝘁𝗵𝗲 𝗱𝘆𝗶𝗻𝗴 𝗺𝗶𝗻𝘂𝘁𝗲𝘀 𝗼𝗳 𝘁𝗵𝗲 𝗲𝘅𝘁𝗿𝗮 𝘁𝗶𝗺𝗲 ⚽
</p>
</div>
<div class="card-reveal">
<!-- TODO: change this -- only close button -->
<!-- <span class="card-title brown-text">Accomplishments<i class="mdi-navigation-close right"></i></span> -->
<span class="card-title grey-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>𝗜𝗻𝗶𝘁𝗶𝗮𝗹 𝘀𝗶𝘁𝘂𝗮𝘁𝗶𝗼𝗻:</b> Netherlands loses the ball near Spain's area with 5 Dutch players in the attack. Jesús Navas receives the ball and dribbles the first player, giving a start to the Spanish offensive. 🧨</li>
<li><b>𝗡𝗲𝘁𝗵𝗲𝗿𝗹𝗮𝗻𝗱𝘀' 𝗽𝗿𝗲𝘀𝘀𝗶𝗻𝗴:</b> The Dutch team tries to steal the ball putting a lot of pressure towards Navas' run. However, the Spanish midfield manages to move the ball from side to side. 🧠</li>
<li><b>𝗚𝗼𝗼𝗱 𝗮𝘁𝘁𝗮𝗰𝗸/𝗕𝗮𝗱 𝗱𝗲𝗳𝗲𝗻𝘀𝗲:</b> The change in the direction of the play provokes a huge disorder in the Dutch defense. A few Spanish players are able to reach the area, however, these players find themselves without a fix mark. 🔓</li>
<li><b>𝗟𝗮𝘀𝘁 𝗽𝗮𝘀𝘀 𝗮𝗻𝗱 𝗱𝗲𝗳𝗶𝗻𝗶𝘁𝗶𝗼𝗻:</b> Fernando torres makes a cross looking for Iniesta. However, the ball is deflected by the defense. Cesc Fàbregas takes the rebound and gives the assist to Iniesta who finds himself completely free. The rest is history. 🎨</li>
</ul>
<div class="card-action">
<a aria-label="Visit " href="https://www.linkedin.com/feed/update/urn:li:activity:7151123069271449600/" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<div class="carousel-item col s12 m6 l4">
<div class="card medium">
<div class="video-container">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7138359035988291585?compact=1" frameborder="0" allowfullscreen="" scrolling="no"></iframe> </div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">Giroud's goal of the year analysis!<i
class="mdi-navigation-more-vert right"></i></span>
<p>
𝗕𝗮𝗰𝗸 𝘁𝗼 𝘁𝗵𝗲 𝗱𝗮𝘆 𝘄𝗵𝗲𝗻 𝗢𝗹𝗶𝘃𝗶𝗲𝗿 𝗚𝗶𝗿𝗼𝘂𝗱 𝘄𝗼𝗻 𝘁𝗵𝗲 𝗣𝘂𝘀𝗸𝗮́𝘀 𝗮𝘄𝗮𝗿𝗱 ⚽
</p>
</div>
<div class="card-reveal">
<!-- TODO: change this -- only close button -->
<!-- <span class="card-title brown-text">Accomplishments<i class="mdi-navigation-close right"></i></span> -->
<span class="card-title grey-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>𝗜𝗻𝗶𝘁𝗶𝗮𝗹 𝘀𝗶𝘁𝘂𝗮𝘁𝗶𝗼𝗻:</b> Arsenal is about to make the first pass finding six Crystal Palace players around the box in a 24-metre width 🕸</li>
<li><b>𝗚𝗶𝗿𝗼𝘂𝗱'𝘀 𝘁𝗼𝘂𝗰𝗵:</b> Giroud sets up his team-mates and provides a beautiful touch that enables an attack against a weakened defence 🧠 </li>
<li><b>𝟓 𝐯𝐬 𝟓:</b> The players move towards the goal finding a block of 5 defenders. The ball is given to Alexis Sánchez who takes advantage of the situation and carries it with high pace ⚡</li>
<li><b>𝗧𝗵𝗲 𝗱𝗲𝗳𝗶𝗻𝗶𝘁𝗶𝗼𝗻:</b> Alexis waits for Giroud to arrive while the wingers attack the spaces. Seconds later, the striker receives a difficult centre but executes an outrageous backheel to go down in history ⌛</li>
</ul>
<div class="card-action">
<a aria-label="Visit " href="https://www.linkedin.com/posts/del-rio-david_%3F%3F%3F%3F%3F%3F%3F-%3F%3F%3F%3F-%3F%3F-%3F%3F%3F-%3F%3F-activity-7138443771758764032-LNVc?utm_source=share&utm_medium=member_desktop" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<div class="carousel-item col s12 m6 l4">
<div class="card medium">
<div class="video-container">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7133379007890268160?compact=1" frameborder="0" allowfullscreen="" scrolling="no"></iframe> </div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">La Liga 16/17 tbt!<i
class="mdi-navigation-more-vert right"></i></span>
<p>
𝗧𝗮𝗸𝗲 𝗮 𝗹𝗼𝗼𝗸 𝗯𝗮𝗰𝗸 𝗮𝘁 𝗼𝗻𝗲 𝗼𝗳 𝘁𝗵𝗲 𝗺𝗼𝘀𝘁 𝗺𝗲𝗺𝗼𝗿𝗮𝗯𝗹𝗲 𝗺𝗼𝗺𝗲𝗻𝘁𝘀 𝗶𝗻 𝘁𝗵𝗲 𝟭𝟲/𝟭𝟳 𝘀𝗲𝗮𝘀𝗼𝗻 🎯
</p>
</div>
<div class="card-reveal">
<!-- TODO: change this -- only close button -->
<!-- <span class="card-title brown-text">Accomplishments<i class="mdi-navigation-close right"></i></span> -->
<span class="card-title grey-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>𝗜𝗻𝗶𝘁𝗶𝗮𝗹 𝘀𝗶𝘁𝘂𝗮𝘁𝗶𝗼𝗻:</b> Real Madrid find itself in an unfavourable situation as 5 players (+1 player sent out with a 🔴 card) are behind the ball while Barcelona starts the counterattack.</li>
<li><b>𝗖𝗼𝘂𝗻𝘁𝗲𝗿𝗮𝘁𝘁𝗮𝗰𝗸:</b> Sergi Roberto manages to dribble Marcelo and carries the ball with high pace towards Real Madrid's 🥅. Several Barcelona players join him, provoking a 6 vs 3 situation.</li>
<li><b>𝗝𝗼𝗿𝗱𝗶 𝗔𝗹𝗯𝗮'𝘀 𝗶𝗿𝗿𝘂𝗽𝘁𝗶𝗼𝗻:</b> Some of the Real Madrid players are able to return in order to provide defensive help. However, Jordi Alba makes the run ⚡ for the team and a 7 vs 5 situation is settled.</li>
<li><b>𝐂𝐥𝐚𝐬𝐬𝐢𝐜 𝐉𝐨𝐫𝐝𝐢-𝐌𝐞𝐬𝐬𝐢 𝐩𝐚𝐬𝐬:</b> The outcome of the play is Jordi Alba's trademark backward pass to Messi who arrives without any mark or opposition to the central part of the area. The rest is history 🎨.</li>
</ul>
<div class="card-action">
<a aria-label="Visit " href="https://www.linkedin.com/posts/del-rio-david_hi-there-take-a-look-back-at-one-of-the-activity-7133379117105786880-jXFB?utm_source=share&utm_medium=member_desktop" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<!-- 1. Django Project -->
<!-- <div class="col s12 m6 l6">
<div class="card medium">
<div class="card-image waves-effect waves-block waves-light">
<img alt="django web app" src="/assets/img/project-library-logo.png" style="height: 100%; width: 100%" class="activator" />
</div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">Local Library Web-App<i
class="mdi-navigation-more-vert right"></i></span>
<p>
A web-app that creates an online catalog for a small local library, where users can browse available books and manage their accounts.
</p>
</div>
<div class="card-reveal">
<span class="card-title grey-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>Tools:</b> HTML, CSS, Bootstrap, SQLite, Django, Heroku</li>
<li>Users can view list and detail information for books and authors.</li>
<li>Admin users can create and manage models.</li>
<li>Librarians can renew reserved books.</li>
</ul>
<div class="card-action">
<a aria-label="Visit " href="https://django-local-lib.herokuapp.com" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
<a aria-label="Visit the GitHub repo for project" href="https://github.com/varadbhogayata/django-local-library"
target="_blank" data-position="top" data-tooltip="View Source"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-github"></i></a>
</div>
</div>
</div>
</div> -->
<!-- Flask Project -->
<div class="carousel-item col s12 m6 l4">
<div class="card medium">
<div class="video-container">
<iframe src="https://www.linkedin.com/embed/feed/update/urn:li:ugcPost:7128154496286810114?compact=1" frameborder="0" allowfullscreen="" scrolling="no"></iframe> </div>
<div class="card-content">
<span class="card-title activator teal-text hoverline">WC final 2022 Argentina's goal!<i
class="mdi-navigation-more-vert right"></i></span>
<p>
𝗦𝘁𝗲𝗽-𝗯𝘆-𝘀𝘁𝗲𝗽 𝗮𝗻𝗮𝗹𝘆𝘀𝗶𝘀 𝗼𝗳 𝗔𝗿𝗴𝗲𝗻𝘁𝗶𝗻𝗮'𝘀 𝗰𝗼𝘂𝗻𝘁𝗲𝗿 𝗮𝘁𝘁𝗮𝗰𝗸 𝗶𝗻 𝗪𝗖 𝗳𝗶𝗻𝗮𝗹🔎
</p>
</div>
<div class="card-reveal">
<!-- TODO: change this -- only close button -->
<!-- <span class="card-title brown-text">Accomplishments<i class="mdi-navigation-close right"></i></span> -->
<span class="card-title teal-text"><small>Accomplishments</small><i
class="mdi-navigation-close right"></i></span>
<ul>
<li><b>𝗜𝗻𝗶𝘁𝗶𝗮𝗹 𝘀𝗶𝘁𝘂𝗮𝘁𝗶𝗼𝗻:</b> We can see the French team divided in two groups. Between them, a large space is generated and the team becomes vulnerable.</li>
<li><b>𝐒𝐭𝐚𝐫𝐭 𝐨𝐟 𝐀𝐫𝐠𝐞𝐧𝐭𝐢𝐧𝐚'𝐬 𝐩𝐥𝐚𝐲:</b>Alexis Mac Allister occupies the available space and Messi starts moving quietly to receive the ball.</li>
<li><b>𝐌𝐞𝐬𝐬𝐢'𝐬 𝐭𝐨𝐮𝐜𝐡:</b> Messi receives the ball from Mac Allister and with a subtle touch, leaves the french defense completely confused. At the same time, Mac Allister and Di María start running towards the French goal.</li>
<li><b>𝐔𝐩𝐚𝐦𝐞𝐜𝐚𝐧𝐨'𝐬 𝐦𝐢𝐬𝐭𝐚𝐤𝐞:</b> Upamecano loses his mark (J. Álvarez) and the Argentinian forward enables Mac Allister with a through pass behind the defence.</li>
<li><b>𝐎𝐮𝐭𝐜𝐨𝐦𝐞:</b> Mac Allister sees how Di María is completely free and gives the assist to the left-footed forward who finishes the play with a clinical shoot.</li>
</ul>
<div class="card-action">
<a aria-label="Visit Blog website" href="https://www.linkedin.com/posts/del-rio-david_just-made-my-first-in-game-analysis-by-activity-7128292633206022144-u4kR?utm_source=share&utm_medium=member_desktop" target="_blank" data-position="top"
data-tooltip="View Online"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-external-link"></i></a>
</div>
</div>
</div>
</div>
<!-- ************* -->
</div>
<div class="carousel-buttons">
<button class="carousel-button" id="prev">❮</button>
<button class="carousel-button" id="next">❯</button>
</div>
</div>
</section>
<!-- Fourth Section: Experience -->
<section id="experience" class="section scrollspy">
<h3 class="page-title white-text teal">Experience</h3>
<div class="container">
<!-- Latest Experience -->
<div class="card">
<div class="card-content">
<div class="row">
<div class="col s12 m2">
<a href="https://es.nttdata.com/" target="_blank"><img alt="NTT logo"
src="/assets/img/ntt.png" class="responsive-img center-block" /></a>
</div>
<!-- <div class="col s12 m10"> -->
<div class="col s12 m10">
<p>
<span class="card-title"><a href="https://es.nttdata.com/ target="_blank"
class="teal-text hoverline">NTT Data</a></span>
</p>
</div>
</div>
<div class="role brown-text text-darken-2">Junior AI Engineer</div>
<ul>
<li>
As part of the organization, I find myself developing chatbots (NLP) on Azure-based solutions for multiple use-cases among different scenarios.
</li>
<li>
Managed user interactions for applications, while efficiently reporting bugs, incidents, and potential enhancements.
</li>
<li>
Actively engaged in client meetings, demonstrating professionalism and contributing to proactive decision-making within the project team.
</li>
<li>
<b>Tools:</b> Azure, Power BI, PowerPoint, Excel
</li>
</ul>
</div>
<div class="card-action">
<span>Sep 2023 - Now | Spain</span>
</div>
</div>
<div class="card">
<div class="card-content">
<div class="row">
<div class="col s12 m2">
<a href="https://es.nttdata.com/" target="_blank"><img alt="NTT logo"
src="/assets/img/ntt.png" class="responsive-img center-block" /></a>
</div>
<!-- <div class="col s12 m10"> -->
<div class="col s12 m10">
<p>
<span class="card-title"><a href="https://es.nttdata.com/" target="_blank"
class="teal-text hoverline">NTT DATA</a></span>
</p>
</div>
</div>
<div class="role brown-text text-darken-2">Intern Data Engineer</div>
<ul>
<li>
Contributed to a major project for a leading energy company, focusing on developing ETL processes using Azure Synapse to manage and analyze large-scale data (Big Data).
</li>
<li>
Enhanced big data processes by developing Azure functions and utilizing PySpark for efficient data transformations, significantly improving the functionality and efficiency of data handling.
</li>
<li>
Optimized Oracle SQL queries, ensuring efficient data handling and analysis for large datasets.
</li>
<li>
<b>Tools:</b> Python, PySpark, Oracle SQL, Azure Synapse Analytics
</li>
</ul>
</div>
<div class="card-action">
<span>Sep 2022 - Aug 2023 | Spain</span>
</div>
</div>
<!-- Experience 2 -->
<div class="card">
<div class="card-content">
<div class="row">
<div class="col s12 m2">
<img alt="Clima Norte logo" src="/assets/img/climanorte.png" class="responsive-img center-block" />
</div>
<!-- <div class="col s12 m10"> -->
<div class="col s12 m10">
<p>
<span class="card-title"><a href="https://www.climanorte.com/" class="teal-text hoverline">Clima Norte</a></span>
</p>
</div>
</div>
<div class="role brown-text text-darken-2">Administrative</div>
<ul>
<li>
Programmed a cloud-based web app using Flask and JavaScript aimed at storing, visualizing, and tracking temperature and humidity
of each drug container to estimate the degradation of the drug.
</li>
<li>
Created an alert system to send notifications and emails when the parameters exceed the threshold.
</li>
<li>
<b>Tools:</b> Excel, DB management, Web-App
</li>
</ul>
</div>
<div class="card-action">
<span>Mar 2021 - Oct 2021 | Spain</span>
</div>
</div>
</div>
</section>
<!-- Fifth Section: Skills -->
<section id="skills" class="section scrollspy">
<h3 class="page-title white-text teal">Skills</h3>
<div class="container">
<!-- Languages and Databases -->
<div class="card">
<div class="card-content">
<h4 class="brown-text light">Languages and Databases</h4>
<div class="row text-center">
<div class="col s4 m2">
<img alt="" src="/assets/img/python-logo-1-300x300.jpg" class="responsive-img" />Python
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/html5-300x300.jpg" class="responsive-img" />HTML5
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/pyspark.jpg" class="responsive-img" />PySpark
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/r.jpg" class="responsive-img" />R
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/mysql-logo-1-300x300.jpg" class="responsive-img" />MySQL
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/scala.png" class="responsive-img" />Scala
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-content">
<h4 class="brown-text light">Libraries</h4>
<div class="row text-center">
<div class="col s4 m2">
<img alt="" src="/assets/img/numpy-logo-1-500x500.jpg" class="responsive-img" />NumPy
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/pandas-logo-2-500x500.jpg" class="responsive-img" />Pandas
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/opencv-logo-1-500x500.jpg" class="responsive-img" />OpenCV
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/sk-learn-logo-1-500x500.jpg" class="responsive-img" />Scikit-learn
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/matplotlib-logo-1-500x500.jpg" class="responsive-img" />Matplotlib
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/seaborn.png" class="responsive-img" />Seaborn
</div>
</div>
</div>
</div>
<!-- Frameworks -->
<div class="card">
<div class="card-content">
<h4 class="brown-text light">Frameworks</h4>
<div class="row text-center">
<div class="col s4 m2">
<img alt="" src="/assets/img/openfl.png" class="responsive-img" />OpenFL
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/bootstrap.png" class="responsive-img" />Bootstrap
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/keras-logo.png" class="responsive-img" />Keras
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/tensorflow-logo-1.png" class="responsive-img" />TensorFlow
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/pytorch-logo.png" class="responsive-img" />PyTorch
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/xgboost.png" class="responsive-img" />XGBoost
</div>
</div>
</div>
</div>
<!-- Other -->
<div class="card">
<div class="card-content">
<h4 class="brown-text light">Other</h4>
<div class="row text-center">
<div class="col s4 m2">
<img alt="" src="/assets/img/azure.png" class="responsive-img" />Azure
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/aws.png" class="responsive-img" />AWS
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/powerbi.png" class="responsive-img" />Power BI
</div>
<div class="col s4 m2">
<img alt="" src="/assets/img/elasticsearch.png" class="responsive-img" />ElasticSearch
</div>
</div>
</div>
</div>
<!-- certifications -->
<!-- <div class="card">
<div class="card-content">
<h4 class="brown-text light">Certificates</h4>
<div class="row text-left">
<div class="container">
<div class="row">
<div class="col s12 m6 l6">
<div class="card">
<div class="card-image">
<img src="/assets/img/mooc-machine-learning-coursera-800x500.jpg">
</div>
<div class="card-content">
<span class="card-title teal-text">Machine Learning (Stanford)</span>
</div>
</div>
</div>
<div class="col s12 m6 l6">
<div class="card">
<div class="card-image">
<img src="/assets/img/mooc-algorithms-stanford-2-800x500.jpg">
</div>
<div class="card-content">
<span class="card-title teal-text">Algorithms (Stanford)</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
</div>
</section>
<!-- Seventh Section: Education -->
<section id="education" class="section scrollspy">
<h3 class="page-title white-text teal">Education</h3>
<div class="container">
<div class="row">
<!-- Education -->
<div class="col s12 m6 l6">
<div class="card">
<div class="card-content">
<p>
<span class="card-title"><a href="https://www.mondragon.edu/es/grado-business-data-analytics" target="_blank" class="teal-text hoverline">Mondragon Unibertsitatea</a></span>
</p>
<p class="brown-text">Bilbao, Spain</p>
<p>
<b>Degree: </b>Degree in Business Data Analytics
<br>
</p>
<ul>
<p>
<b>Relevant Courseworks:</b>
<ul>
<li>Data Mining</li>
<li>Machine & Deep Learning</li>
<li>Big Data</li>
<li>Data Science</li>
<li>Data Visualization</li>
</ul>
</p>
</ul>
</div>
</div>
</div>
<div class="col s12 m6 l6">
<div class="card">
<div class="card-content">
<p>
<span class="card-title"><a href="https://maristakbilbao.com/batxilergoa/?lang=es" target="_blank" class="teal-text hoverline">Maristas Bilbao Bachelor</a></span>
</p>
<p class="brown-text">Bilbao, Spain</p>
<p>
<b>Degree: </b>Bachelor of Technologies
<br>
</p>
<ul>
<p>
<b>Relevant Courseworks:</b>
<ul>
<li>Technical drawing</li>
<li>Information technology</li>
<li>Mathematics</li>
<li>Physics</li>
</ul>
</p>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Eight Section: Contact -->
<section id="contact" class="section scrollspy full-height">
<h3 class="page-title white-text teal">Contact</h3>
<div class="container">
<p>
<a aria-label="Call David" data-position="top" data-tooltip="Call David"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i class="fa fa-phone"></i><a
aria-label="Call David">+34 633390792</a></a>
</p>
<p>
<a aria-label="Email David" href="mailto:[email protected]" target="_blank" data-position="top"
data-tooltip="Email David" class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i
class="fa fa-envelope"></i><a aria-label="Email David" href="mailto:[email protected]"
class="hoverline">[email protected]</a></a>
</p>
<p>
<a aria-label="View David on GitHub" href="http://github.com/daviddelriod" target="_blank"
data-position="top" data-tooltip="View David on GitHub"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i class="fa fa-github"></i><a
aria-label="David on Github" href="http://github.com/daviddelriod" class="hoverline"
target="_blank">github.com/daviddelriod</a></a>
</p>
<p>
<a aria-label="View David on LinkedIn" href="http://linkedin.com/in/del-rio-david" target="_blank"
data-position="top" data-tooltip="View David on LinkedIn"
class="btn-floating btn-large waves-effect waves-light blue-grey tooltipped"><i