-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1823 lines (1629 loc) · 83.7 KB
/
index.html
File metadata and controls
1823 lines (1629 loc) · 83.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--=======================================================
* Template Name: MyResume - v4.9.2
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
---------------------------------------------------------
* Edited: Maulana Kavaldo / 16 Sept 2023
* Icon: https://themesbrand.com/skote/layouts/icons-boxicons.html
* Email : alkav.maulana@gmail.com
=========================================================-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Maulana Kavaldo</title>
<meta content="Im Maulana Kavaldo, junior data scientist/analyst with more 2 years learning experience."
name="description">
<meta content="maulana kavaldo portfolio data science" name="keywords">
<meta name="google-site-verification" content="SLhPwvXl2bw4QQGgEcSCxpZ04cM31-AURBADXqZps5Y" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SW2PPP4E57"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-SW2PPP4E57');
</script>
<!-- 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-KZN6K62');
</script>
<!-- End Google Tag Manager -->
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- ReChapta -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/button_hover.css" rel="stylesheet">
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KZN6K62" height="0" width="0"
style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- ======= Mobile nav toggle button ======= -->
<!-- <button type="button" class="mobile-nav-toggle d-xl-none"><i class="bi bi-list mobile-nav-toggle"></i></button> -->
<i class="bi bi-list mobile-nav-toggle d-lg-none"></i>
<!-- ======= Header ======= -->
<header id="header" class="d-flex flex-column justify-content-center">
<nav id="navbar" class="navbar nav-menu">
<ul>
<li><a href="#hero" class="nav-link scrollto active"><i class="bx bx-home"></i> <span>Home</span></a></li>
<li><a href="#about" class="nav-link scrollto"><i class="bx bx-user"></i> <span>About</span></a></li>
<li><a href="#resume" class="nav-link scrollto"><i class="bx bx-file-blank"></i> <span>Resume</span></a></li>
<li><a href="#portfolio" class="nav-link scrollto"><i class="bx bx-book-content"></i> <span>Portfolio</span></a>
</li>
<li><a href="#gallery" class="nav-link scrollto"><i class="bx bx-image"></i> <span>Gallery</span></a></li>
<li><a href="#testimonials" class="nav-link scrollto"><i class="bx bx-chat"></i> <span>Testimonials</span></a>
</li>
<li><a href="#contact" class="nav-link scrollto"><i class="bx bx-envelope"></i> <span>Contact</span></a></li>
</ul>
</nav><!-- .nav-menu -->
</header><!-- End Header -->
<!-- Warning -->
<!-- <marquee scrolldelay="10">Contact me if the website doesn't run well, please! Thank you.</marquee> -->
<section id="hero" class="d-flex flex-column justify-content-center">
<div class="container" data-aos="zoom-in" data-aos-delay="100">
<h1>Maulana Kavaldo</h1>
<p>I'm <span class="typed"
data-typed-items="Jr. Data Scientist, Machine Learning Engineer, Cloud Computing Entusiast"></span>
<!-- data-typed-items="Jr. Data Scientist, Machine Learning Engineer, Cloud Computing Entusiast, Jr. Data Engineer"></span> -->
</p>
<!-- <p>Universitas Teknologi Yogyakarta</p> -->
<div class="social-links">
<a href="https://github.com/maulana-kavaldo" target="_blank" class="github"><i class="bx bxl-github"></i></a>
<a href="https://medium.com/@maulanakavaldo/" class="medium"><i class="bx bxl-medium"></i></a>
<a href="https://linkedin.com/in/maulana-kavaldo" target="_blank" class="linkedin"><i
class="bx bxl-linkedin"></i></a>
<a href="https://instagram.com/maulana.kavaldo/" target="_blank" class="instagram"><i
class="bx bxl-instagram"></i></a>
<a href="https://public.tableau.com/app/profile/maulana.kavaldo" target="_blank" class="tableau"><i
class="bx bx-bar-chart-alt-2" title="Tableau Public Profile"></i></a>
<a href=" https://www.datascienceportfol.io/maulana_kavaldo" target="_blank" class="portfolio"><i
class="bx bx-collection" title="Portfolio Data Science"></i></a>
<a href="https://drive.google.com/file/d/1D20TLp8hqc-jvrXNPfTOwy-GBv8_hx0-/view?usp=sharing" target="_blank"
class="bx bx-download" title="Show CV"></i></a>
<a href="https://instagram.com/maulana.kavaldo/" target="_blank" class="coursera"><i
class="bx bxl-coursera"></i></a>
</div>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container" data-aos="fade-up">
<div class="section-title">
<img src="assets/img/profile-img.png" class="img-fluid" alt="Photo Profile">
<br><br>
<h2>About</h2>
<p>Data entusiast. A passion for code and semantics.</p>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Skills</h2>
<!-- <p></p> -->
</div>
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill">Python
<!-- <i class="val">80%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">SQL
<!-- <i class="val">80%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">R
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Java
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Android
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">HTML, CSS, PHP
<!-- <i class="val">90%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Network Configuration
<!-- <i class="val">90%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Microsoft Office (Word, PowerPoint, Excel)
<!-- <i class="val">90%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Looker Studio
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Tableau
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Skills Section -->
<!-- ======= Personal Skills Section ======= -->
<section id="skills" class="skills section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Personal</h2>
<!-- <p></p> -->
</div>
<div class="row skills-content">
<div class="col-lg-6">
<!-- attention to detail -->
<div class="progress">
<span class="skill">Data Analytics
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Teamwork
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Communication
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">Fast Learning
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Management
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Problem Solving
<!-- <i class="val">75%</i> -->
</span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Skills Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Resume</h2>
<!-- <p></p> -->
</div>
<div class="row">
<div class="col-lg-6">
<h3 class="resume-title">Summary</h3>
<div class="resume-item pb-0">
<h4>Maulana Kavaldo</h4>
<p><em>
I’m have an interest in data science/ analyst, machine learning, and cloud computing. Have knowledge
of information technology, especially in the use of office software such as Microsoft Office, familiar
with
several programming languages, data-related tools and network configuration. I’m quick learner,
meticulous, strong in detail and always trying to give the best in every job, communicate well and
work
together in a team. Top 10% of the best participants DTS KOMINFO FGA: Data Science (2022).
<!-- Fresh graduate and junior data scientist with more than 2 years of
learning experience. Able to analyze datasets, use machine learning models
and perform time management. Have analytical skills, strong in detail and
able to work in a team. Top 10% of the best participants of DTS Kominfo FGA: Data Science Class Batch 4 (2022). -->
</em></p>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Bachelor of Informatics</h4>
<h5>2018 - 2022</h5><br>
<em>University of Technology Yogyakarta</em>
<div style="margin-left: 1em;">
<li>GPA: 3.72/4.00</li>
</div>
<!-- <p>Quia nobis sequi</p> -->
</div>
<div class="resume-item">
<h4>XL Axiata Future Leader</h4>
<h5>Aug - Oct 2022</h5>
<p><em>XL Axiata | Fisipol UGM</em></p>
<p>Development of soft skills by applying bloom taxonomy and inquiry learning in order to sharpen thinking
processes.</p>
</div>
<h3 class="resume-title">Training</h3>
<div class="resume-item">
<h4>Bootcamp Alibaba Big Data</h4>
<h5>May - June 2024</h5><br>
<em>DTS KOMINFO | Alibaba</em>
<!-- <p> -->
<br>
<!-- Achievement: -->
<!-- <div style="margin-left: 1em;"> -->
<!-- <li>Overall score: /100</li> -->
<!-- </p> -->
</div>
<div class="resume-item">
<h4>Bootcamp Cloud Architecting</h4>
<h5>Feb - Mart 2024</h5><br>
<em>DTS KOMINFO | AWS</em>
<br>
Achievement:
<div style="margin-left: 1em;">
<li>Total XP: 43.260 (3)</li>
<li>Top 5 in the class.</li>
</div>
</div>
<div class="resume-item">
<h4>Bootcamp Techno Center B8</h4>
<h5>September - Present</h5><br>
<em>Berijalan - Member of ASTRA</em>
<!-- <p> -->
<br>
<!-- Achievement: -->
<!-- <div style="margin-left: 1em;"> -->
<!-- <li>Overall score: /100</li> -->
<!-- </p> -->
</div>
<div class="resume-item">
<h4>Green Digital Skills</h4>
<h5>May - June 2023</h5><br>
<em>INCO Academy</em>
<br>
</div>
<div class="resume-item">
<h4>Bootcamp AWS re/Start</h4>
<h5>Mart - June 2023</h5><br>
<em>Orbit Future Academy</em>
<!-- <p> -->
<br>
<!-- Achievement: -->
<!-- <div style="margin-left: 1em;"> -->
<!-- <li>Overall score: /100</li> -->
<!-- </p> -->
</div>
<div class="resume-item">
<h4>Bootcamp Google Cloud Fundamental</h4>
<h5>Mart - April 2023</h5><br>
<em>DTS KOMINFO | Google</em>
<!-- <p> -->
<br>
<!-- Achievement: -->
<!-- <div style="margin-left: 1em;"> -->
<!-- <li>Overall score: /100</li> -->
<!-- </p> -->
</div>
<div class="resume-item">
<h4>Bootcamp Data Science</h4>
<h5>Aug - Oct 2022</h5><br>
<em>DTS KOMINFO | Binar Academy</em>
<!-- <p> -->
<br>
Achievement:
<div style="margin-left: 1em;">
<li>Overall score: 98.2/100</li>
<li>Top 50 participant to present final project and participate in the THK Future Knowledge side event
at G20 Bali</li>
</div>
<!-- </p> -->
</div>
</div>
<div class="col-lg-6">
<h3 class="resume-title">Licenses & Certifications</h3>
<!-- <div class="resume-item">
<h5><a href="#"></a></h5>
</div> -->
<div class="resume-item">
<h4><a href="">AWS Certificate (CCP, SAA)</a></h4>
</div>
<div class="resume-item">
<h4><a href="">Alibaba Cloud Certificate (CC, BD, CS)</a></h4>
</div>
<div class="resume-item">
<h4><a href="">DTS Kominfo Certificate</a></h4>
<ul>
<li>FGA: Become Elite Cloud Engineer (Elite Academy) - Present</li>
<li>FGA: Cloud Architecting (AWS) - April 2024</li>
<li>PROA: Google Cloud Fundamental (Google) - May 2023</li>
<li>FGA: Data Science (Binar Academy) - October 2023</li>
</ul>
</div>
<div class="resume-item">
<a href="assets/img/certif_licen/xlfl.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox">
<h4>XL Axiata Future Leaders (Future Skills Fisipol UGM)</h4>
</a>
<!-- <h5>Januari 2021</h5> -->
</div>
<div class="resume-item">
<h4><a href="#dqlab">Data science with Python, MySQL, R (DQLab)</a></h4>
</div>
<div class="resume-item">
<h4><a href="#hackerrank">Hackerrank Certificate (Python & SQL)</a></h4>
</div>
<div class="resume-item">
<h4><a href="#msword">Microsoft Office Specialist (Word 2019 - 963/1000)</a></h4>
</div>
<div class="resume-item">
<h4><a href="#prakerja">Pengembangan Jaringan Komputer dengan Mikrotik (Karir.mu)</a></h4>
<!--<h5>June 2023</h5> -->
</div>
<div class="resume-item">
<h4><a href="#prakerja">Analisis Data Marketing Menggunakan Google Sheet (Rumah Siap Kerja)</a></h4>
<!-- <h5>June 2023</h5> -->
</div>
</div>
<div class="col-lg-12">
<h3 class="resume-title">Experience</h3>
<div class="resume-item">
<h4>SOC Analyst</h4>
<h5>October 2024 - Present</h5>
<p>As a SOC Analyst, my responsibility:</p>
<ul>
<li>Installing and configuring endpoint security agents on various devices to ensure they are properly protected and monitored. This includes verifying successful deployment and ensuring the agent is functioning as expected.</li>
<li>Diagnose and resolve operating system errors across different platforms. This involves identifying the root cause of system issues, applying fixes or patches, and ensuring stable system performance after the resolution.</li>
<li>Continuously review alerts and logs from the CrowdStrike dashboard to detect, investigate, and respond to potential security incidents. This includes analyzing threat intelligence provided by CrowdStrike, assessing event severity, and taking appropriate actions to mitigate risks effectively.</li>
</ul>
</div>
<div class="resume-item">
<h4>External Reviewer at Dicoding Indonesia</h4>
<h5>June 2024 - Present</h5>
<p>Learning Path:
<a href="https://www.dicoding.com/users/mkavaldo/academies" target="_blank">Data Scientist</a>
and
<a href="https://www.dicoding.com/learningpaths/600" target="_blank">Machine Learning Engineer</a>.
Visit <a href="https://www.dicoding.com/users/mkavaldo/academies" target="_blank"> my profile.</a>
</p>
<p>As an External Code Reviewer, my responsibility:</p>
<ul>
<li>Evaluate code deliverables to ensure compliance with standards and requirements.</li>
<li>Provide constructive feedback and improvement suggestions to help students improve code quality.
</li>
<li>Provide an objective assessment based on a predetermined rubric.</li>
</ul>
</div>
<div class="resume-item">
<a href="#" data-gallery="portfolioGallery" class="portfolio-lightbox">
<h4>System Analyst<span> </span><span class="bx bx-link"></span></h4>
</a>
<h5>Sep 2023 - Jan 2024</h5>
<p><em>Internship at Berijalan Member of ASTRA</em></p>
Software Development Life Cycle (SDLC), System Design &
Architecture, Manage Task & Progress, Agile with Scrum, User Acceptance Testing (UAT) and
System Integration Testing (SIT)
</div>
<div class="resume-item">
<a href="#" data-gallery="portfolioGallery" class="portfolio-lightbox">
<h4>Project-Based Intern: System Analyst<span> </span><span class="bx bx-link"></span></h4>
</a>
<h5>Oct - Nov 2023</h5>
<p><em>Virtual Internship Experience | KlinikGo</em></p>
Finishing various tasks related with the activity of Health System Analyst from Klinikgo such as
SDLC, Application Design (Use Case Diagram, Activity Diagram, Sequence Diagram,
Wireframing), Database Design, and Documentation.
</div>
<div class="resume-item">
<a href="#" data-gallery="portfolioGallery" class="portfolio-lightbox">
<h4>Project-Based Intern: Data Scientist<span> </span><span class="bx bx-link"></span></h4>
</a>
<h5>Sept - Oct 2023</h5>
<p><em>Virtual Internship Experience | Kalbe Nutritionals</em></p>
Finishing various task related with the activity of Data Scientist from Home Credit Indonesia.
Learn about the use of SQL and Python programming languages in data processing, exploring
data, and trying to perform predictive models such as regression for forecasting and clustering (customer
segmentation).
</div>
<div class="resume-item">
<a href="assets/img/certif_licen/vix-hci.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<h4>Project-Based Intern: Data Scientist<span> </span><span class="bx bx-link"></span></h4>
</a>
<h5>Mart 2023</h5>
<p><em>Virtual Internship Experience | Home Credit Indonesia</em></p>
Finishing various task related with the activity of Data Scientist from Home Credit Indonesia.
<ul>
<li>Implementing several data processing technique using Excel to transform data.</li>
<li>Analysis data using SQL to answer current problem and big data fundamental knowledge.</li>
<li>Understanding how to cleaning the data, feature engineering, supervised & unsupervised learning,
hyperparameter tuning and evaluate the machine learning model.</li>
</ul>
</div>
<div class="resume-item">
<a href="assets/img/certif_licen/vix-muamalat.png" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<h4>Project-Based Intern: BI Analyst<span> </span><span class="bx bx-link"></span></h4>
</a>
<h5>February 2023</h5>
<p><em>Virtual Internship Experience | Bank Muamalat</em></p>
Finishing various task related with the activity of Business Intelligence Analyst from Bank Muamalat.
<ul>
<li>Understand to use of Microsoft Excel and implementation as a Business Analyst at Bank Muamalat.</li>
<li>Import data tables from Excel to Microsoft Access databases and create master tables for analysis
and monitoring needs.</li>
<li>Create data visualization (dashboard) of the master table.</li>
</ul>
</div>
<div class="resume-item">
<a href="assets/img/certif_licen/vix-btpn.png" data-gallery="portfolioGallery" class="portfolio-lightbox">
<h4>Project-Based Intern: Data Engineer<span> </span><span class="bx bx-link"></span></h4>
</a>
<h5>October 2022</h5>
<p><em>Virtual Internship Experience | BTPN Syariah</em></p>
Finishing various task related with the activity of Data Engineer from BTPN Syariah.
<ul>
<li>Understand to use of TSQL in Ms. SQL Server regarding Data Types, Statements, Clauses and
Transaction Control and their implementation at Bank BTPN Syariah and performing various tasks.</li>
<li>Understand Business Acumen, RMDS and do data modeling, ERD and data visualization using Tableau.
</li>
</ul>
</div>
<div class="resume-item">
<!-- <h4>Big Data Analytics</h4> -->
<a href="assets/img/certif_licen/vix-kimfar.png" data-gallery="portfolioGallery"
class="portfolio-lightbox">
<h4>Project-Based Intern: Big Data Analytics<span> </span><span class="bx bx-link"></span></h4>
</a>
<h5>September 2022</h5>
<p><em>Virtual Internship Experience | Kimia Farma</em></p>
Finishing various task related with the activity of Big Data Analytics from Kimia Farma.
<ul>
<li>Understand the concept of big data analytics and its implementation at Kimia Farma by working on
various tasks.</li>
<li>Combine several sales datasets into master data for analysis related to a problem and business.</li>
<li>Create a data visualization (dashboard) of Kimia Farma's sales data using Google Data Studio </li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- End Resume Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Portfolio</h2>
<p>Some of the projects I've worked on.</p>
</div>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center" data-aos="fade-up" data-aos-delay="100">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-data">Data</li>
<li data-filter=".filter-ml">Machine Learning</li>
<li data-filter=".filter-cloud">Cloud Computing</li>
<li data-filter=".filter-apps">Apps</li>
<li data-filter=".filter-vix">Internship</li>
<!-- <li data-filter=".filter-team">Team</li> -->
<!-- <li data-filter=".filter-web">Web</li>
<li data-filter=".filter-java">Java</li> -->
<!-- <li data-filter=".filter-android">Android</li> -->
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/dicoding/beverage-sales.png" class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Beverage Sales (CLustering & CLassification)</h4>
<!-- <div class="portfolio-links">
<a href="https://mlkav.github.io/beverage-sales/" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div> -->
<!-- <div class="portfolio-links">
<a href="pages/dcd/beverage.html" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div> -->
<div class="portfolio-links">
<a href="https://beverage-sales.pages.dev/" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/dicoding/breast-cancer.webp" class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Breast Cancer (MLOPS)</h4>
<div class="portfolio-links">
<a href="https://mlkav.github.io/mlops-breast-cancer/" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/dicoding/water-potability.webp" class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Water Potability (MLOPS)</h4>
<div class="portfolio-links">
<a href="https://mlkav.github.io/mlops-water-pipeline/" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/dicoding/sentiment-analysis-shopee.webp" class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Sentiment Analysis Shopee App</h4>
<div class="portfolio-links">
<a href="https://mlkav.github.io/sentiment-analysis/" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/dicoding/fruits-classification.webp" class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Fruits Classification</h4>
<div class="portfolio-links">
<a href="https://mlkav.github.io/fruits-classification/" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/dicoding/movie-recommendation-system.webp" class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Movie Recommendation System</h4>
<div class="portfolio-links">
<a href="https://mlkav.github.io/movie-recommendation-system/"
class="portfolio-details-lightbox" data-glightbox="type: external" title="Show Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/dicoding/car-price-prediction.webp" class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Car Price Prediction</h4>
<div class="portfolio-links">
<a href="https://mlkav.github.io/car-price-prediction/"
class="portfolio-details-lightbox" data-glightbox="type: external" title="Show Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-vix filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/project-vix/vix-kalbe.png" class="img-fluid" alt="">
<div class=" portfolio-info">
<div class="portfolio-links">
<a href="pages/project-vix-kalbe-nutritionals.html" target="_blank" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/banjir-jakarta/banjir-jakarta.png" class="img-fluid" alt="">
<div class=" portfolio-info">
<!-- <h4></h4> -->
<div class="portfolio-links">
<a href="pages/project-banjir-jakarta.html" target="_blank" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/datacamp/Real-time Insights from Social Media Data.webp" class="img-fluid"
alt="">
<div class=" portfolio-info">
<h4>Real-time Insights from Social Media Data</h4>
<div class="portfolio-links">
<a href="pages/project-datacamp-real-time-insights-from-social-media-data.html"
class="portfolio-details-lightbox" data-glightbox="type: external" title="Show Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/datacamp/Exploring 67 years of LEGO.webp" class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Exploring 67 years of LEGO</h4>
<div class="portfolio-links">
<a href="pages/project-datacamp-exploring-67-years-of-lego.html" target="_blank"
class="portfolio-details-lightbox" data-glightbox="type: external" title="Show Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/datacamp/The Android App Market on Google Play.webp" class="img-fluid"
alt="">
<div class=" portfolio-info">
<h4>The Android App Market on Google Play</h4>
<div class="portfolio-links">
<a href="pages/project-datacamp-the-android-app-market-on-google-play.html" target="_blank"
class="portfolio-details-lightbox" data-glightbox="type: external" title="Show Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/datacamp/Investigating Netflix Movies and Guest Stars in The Office.webp"
class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Investigating Netflix Movies and Guest Stars in The Office</h4>
<div class="portfolio-links">
<a href="pages/project-datacamp-investigating-netflix-movies-and-guest-stars-in-the-office.html"
target="_blank" class="portfolio-details-lightbox" data-glightbox="type: external"
title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/datacamp/A Visual History of Nobel Prize Winners.webp" class="img-fluid"
alt="">
<div class=" portfolio-info">
<h4>A Visual History of Nobel Prize Winners</h4>
<div class="portfolio-links">
<a href="pages/project-datacamp-a-visual-history-of-nobel-prize-winners.html" target="_blank"
class="portfolio-details-lightbox" data-glightbox="type: external" title="Show Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/datacamp/Dr. Semmelweis and the Discovery of Handwashing.webp"
class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Dr. Semmelweis and the Discovery of Handwashing</h4>
<div class="portfolio-links">
<a href="pages/project-datacamp-dr-semmelweis-and-the-discovery-of-handwashing.html"
class="portfolio-details-lightbox" data-glightbox="type: external" title="Show Details"><i
class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-web filter-apps">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/web-hc-system/hc-system.webp" class="img-fluid" alt="">
<div class="portfolio-info">
<h4> HC System</h4>
<div class="portfolio-links">
<a href="pages/project-web-hc-system.html" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-web filter-apps">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/e-commerce-using-.net/index.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4> E-Commerce</h4>
<div class="portfolio-links">
<a href="pages/project-e-commerce.html" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-web filter-apps">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/next-movie-db/the-movie-db.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>MovieDB</h4>
<div class="portfolio-links">
<a href="pages/project-next-movie-db.html" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-web filter-apps">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/react-simple-app/simple-app-react.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Simple App using React</h4>
<div class="portfolio-links">
<a href="pages/project-react-simple-app.html" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/project-bike-sharing/bike-sharing.webp" class="img-fluid" alt="">
<div class=" portfolio-info">
<h4>Bike Sharing</h4>
<div class="portfolio-links">
<a href="pages/project-bike-sharing.html" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 portfolio-item filter-ml filter-data">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/project-rock-paper-scrissor/rock_paper_scrissor.png" class="img-fluid"
alt="">
<div class=" portfolio-info">
<h4></h4>
<div class="portfolio-links">
<a href="pages/project-rock-paper-scrissor.html" class="portfolio-details-lightbox"
data-glightbox="type: external" title="Show Details"><i class="bx bx-link"></i></a>
</div>