-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
1108 lines (1046 loc) · 48.4 KB
/
index.html
File metadata and controls
1108 lines (1046 loc) · 48.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adeoye Malumi | Earth Data Science Portfolio</title>
<link rel="stylesheet" href="style.css">
<!-- Google Fonts: Inter for text, JetBrains Mono for code/special elements -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Loading Screen -->
<div id="loading-screen">
<div class="loader">
<div class="earth-icon">🌍</div>
<p>Loading Portfolio...</p>
</div>
</div>
<!-- Header / Hero Section -->
<header class="hero-section">
<div class="hero-content-wrapper container">
<div class="avatar-container">
<img src="Images/profilepicture.jpg" alt="Adeoye Malumi" class="avatar">
<div class="avatar-ring"></div>
</div>
<h1 class="hero-title">
Adeoye Malumi
</h1>
<div class="hero-subtitle">
<span class="role-badge primary">Earth Data Scientist</span>
<span class="role-badge secondary">Data Analyst</span>
<span class="role-badge tertiary">Geoscientist</span>
</div>
<p class="hero-tagline">Transforming Earth's data into actionable insights for a sustainable future</p>
<!-- Quick Stats -->
<div class="hero-stats">
<div class="stat-item">
<span class="stat-number">15+</span>
<span class="stat-label">Projects</span>
</div>
<div class="stat-item">
<span class="stat-number">5+</span>
<span class="stat-label">Years Experience</span>
</div>
<div class="stat-item">
<span class="stat-number">20+</span>
<span class="stat-label">Certifications</span>
</div>
</div>
<!-- CTA Buttons -->
<div class="hero-cta">
<a href="#projects" class="cta-button primary">
<i class="fas fa-chart-line"></i> View My Work
</a>
<a href="#contact" class="cta-button secondary">
<i class="fas fa-envelope"></i> Get In Touch
</a>
</div>
<!-- Sponsor Card -->
<div class="sponsor-container">
<iframe src="https://github.com/sponsors/oye-bobs/card" title="Sponsor oye-bobs" height="100" width="330" style="border: 0; border-radius: 15px;"></iframe>
</div>
</div>
<div class="scroll-indicator">
<i class="fas fa-chevron-down"></i>
</div>
</header>
<!-- Sticky Navigation -->
<nav id="navbar" class="navbar">
<div class="nav-container container">
<div class="nav-brand">
<span class="brand-icon">🌍</span>
<span class="brand-text">AM</span>
</div>
<ul class="nav-menu">
<li><a href="#about"><i class="fas fa-user"></i> About</a></li>
<li><a href="#projects"><i class="fas fa-project-diagram"></i> Projects</a></li>
<li><a href="#geoscience"><i class="fas fa-globe-americas"></i> Geoscience</a></li>
<li><a href="#workshops"><i class="fas fa-certificate"></i> Workshops</a></li>
<li><a href="#education"><i class="fas fa-graduation-cap"></i> Education</a></li>
<li><a href="#experience"><i class="fas fa-briefcase"></i> Experience</a></li>
<li><a href="#skills"><i class="fas fa-tools"></i> Skills</a></li>
<li><a href="#certifications"><i class="fas fa-award"></i> Certifications</a></li> <!-- Added certifications to nav -->
<li><a href="#contact"><i class="fas fa-envelope"></i> Contact</a></li>
</ul>
<div class="nav-toggle">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
<main>
<!-- About Section -->
<section id="about" class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">About Me</h2>
<p class="section-subtitle">Passionate about solving Earth's mysteries through data</p>
</div>
<div class="about-content">
<div class="about-text">
<div class="welcome-badge">
<i class="fas fa-hand-wave"></i> Welcome to my portfolio
</div>
<p class="intro-text">
Hello there! I'm <strong>Adeoye Malumi</strong>, a passionate data analyst with a unique blend of geological expertise and cutting-edge data science skills.
</p>
<p>
My journey began at age 13 with a Microsoft Excel project that sparked my fascination with numbers and patterns. This early curiosity evolved into a deep passion for data analysis, where I see myself as a detective uncovering hidden stories within complex datasets.
</p>
<p>
For me, data analysis isn't just work—it's an exhilarating game of discovery. Each project is an opportunity to track clues, solve puzzles, and tell compelling stories that drive meaningful change.
</p>
<div class="expertise-tags">
<span class="tag">Data Detective</span>
<span class="tag">Pattern Recognition</span>
<span class="tag">Storytelling</span>
<span class="tag">Problem Solving</span>
</div>
</div>
<div class="about-visual">
<!-- Your picture goes here -->
<img src="Images/profilepicture.jpg" alt="Adeoye Malumi" class="responsive-image">
</div>
</div>
</div>
</section>
<!-- Earth Data Science Journey -->
<section class="section highlight-section">
<div class="container">
<div class="section-header">
<h2 class="section-title">My Earth Data Science Journey</h2>
<p class="section-subtitle">Where passion meets purpose</p>
</div>
<div class="journey-content">
<div class="journey-timeline">
<div class="timeline-item">
<div class="timeline-icon">🎓</div>
<div class="timeline-content">
<h3>Academic Foundation</h3>
<p>Started with Earth Sciences in college, fascinated by how our planet works - rocks, weather, and natural systems.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-icon">💡</div>
<div class="timeline-content">
<h3>The Data Revolution</h3>
<p>Discovered how data could unlock deeper understanding of Earth's complex systems and processes.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-icon">🚀</div>
<div class="timeline-content">
<h3>Purpose-Driven Career</h3>
<p>Chose Earth Data Science to make a real difference - using data to solve climate change, disasters, and resource challenges.</p>
</div>
</div>
</div>
<div class="journey-mission">
<div class="mission-card">
<i class="fas fa-globe icon"></i>
<h3>My Mission</h3>
<p>Combining traditional earth science knowledge with cutting-edge technology to create solutions that help our planet and communities thrive.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Data Analysis & Exploration Projects</h2>
<p class="section-subtitle">Transforming raw data into actionable insights</p>
</div>
<div class="project-grid">
<div class="project-card">
<div class="project-icon sql">
<i class="fas fa-database"></i>
</div>
<h3>SQL Projects</h3>
<p>Database management and complex query optimization</p>
<div class="project-links">
<a href="https://github.com/oye-bobs/SQLPorfolioProjects/blob/main/Housing%20Data%20Cleaning%20Project.sql" target="_blank" class="project-link">
<i class="fas fa-broom"></i> Data Cleaning
</a>
<a href="https://github.com/oye-bobs/SQLPorfolioProjects/blob/main/covid%20portfolio%20project%201.sql" target="_blank" class="project-link">
<i class="fas fa-virus"></i> COVID-19 Data
</a>
</div>
<div class="tech-stack">
<span class="tech-tag">MySQL</span>
<span class="tech-tag">PostgreSQL</span>
</div>
</div>
<div class="project-card">
<div class="project-icon tableau">
<i class="fas fa-chart-bar"></i>
</div>
<h3>Tableau Dashboards</h3>
<p>Interactive visualizations and business intelligence</p>
<div class="project-links">
<a href="https://public.tableau.com/app/profile/adeoye.malumi" target="_blank" class="project-link">
<i class="fas fa-external-link-alt"></i> Tableau Public
</a>
</div>
<div class="tech-stack">
<span class="tech-tag">Tableau</span>
<span class="tech-tag">Data Viz</span>
</div>
</div>
<div class="project-card">
<div class="project-icon powerbi">
<i class="fas fa-chart-pie"></i>
</div>
<h3>Power BI Solutions</h3>
<p>Advanced analytics and reporting dashboards</p>
<div class="project-links">
<a href="https://github.com/oye-bobs/PowerBI-Projects" target="_blank" class="project-link">
<i class="fab fa-github"></i> Power BI Repo
</a>
</div>
<div class="tech-stack">
<span class="tech-tag">Power BI</span>
<span class="tech-tag">DAX</span>
</div>
</div>
<div class="project-card">
<div class="project-icon excel">
<i class="fas fa-file-excel"></i>
</div>
<h3>Excel Analytics</h3>
<p>Advanced spreadsheet modeling and analysis</p>
<div class="project-links">
<a href="https://github.com/oye-bobs/ExcelProjects" target="_blank" class="project-link">
<i class="fab fa-github"></i> Excel Projects
</a>
</div>
<div class="tech-stack">
<span class="tech-tag">Excel</span>
<span class="tech-tag">VBA</span>
</div>
</div>
</div>
</div>
</section>
<!-- Geoscience Projects -->
<section id="geoscience" class="section highlight-section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Geoscience Projects</h2>
<p class="section-subtitle">Applying data science to Earth systems</p>
</div>
<!-- ESIIL Projects -->
<div class="project-category">
<h3 class="category-title">
<i class="fas fa-satellite"></i> Environmental Data Science Innovation Lab (ESIIL)
</h3>
<div class="geoscience-grid">
<div class="geo-project-card">
<div class="project-image">
<img src="maps/mmia.png" alt="Lagos Airport Climate Analysis" loading="lazy" onerror="this.onerror=null;this.src='https://placehold.co/400x250/e0e7ff/4338ca?text=Climate+Analysis';">
<div class="project-overlay">
<a href="notebooks/murtala_time_series_2.html" target="_blank" class="overlay-link" aria-label="View Project">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<div class="project-content">
<h4>NCEI-NOAA Climate Data Analysis</h4>
<p class="project-location">
<i class="fas fa-map-marker-alt"></i> Murtala Mohammed Airport, Lagos, Nigeria
</p>
<p>Time series analysis of climate data using NOAA's comprehensive database to understand weather patterns and trends.</p>
<div class="project-tech">
<span class="tech-badge">Python</span>
<span class="tech-badge">NOAA API</span>
<span class="tech-badge">Time Series</span>
</div>
</div>
</div>
<div class="geo-project-card">
<div class="project-image">
<img src="Images/gwagwalada.png" alt="Fire Analysis Abuja" loading="lazy" onerror="this.onerror=null;this.src='https://placehold.co/400x250/e0e7ff/4338ca?text=Fire+Analysis';">
<div class="project-overlay">
<a href="notebooks/gwagwalada.html" target="_blank" class="overlay-link" aria-label="View Project">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<div class="project-content">
<h4>MODIS Fire Analysis</h4>
<p class="project-location">
<i class="fas fa-map-marker-alt"></i> Gwagwalada, Abuja, Nigeria
</p>
<p>Satellite-based fire detection and analysis using MODIS data to monitor environmental changes and fire patterns.</p>
<div class="project-tech">
<span class="tech-badge">MODIS</span>
<span class="tech-badge">Remote Sensing</span>
<span class="tech-badge">GIS</span>
</div>
</div>
</div>
<div class="geo-project-card">
<div class="project-image">
<img src="Images/OpenScience.png" alt="Open Science Education" loading="lazy" onerror="this.onerror=null;this.src='https://placehold.co/400x250/e0e7ff/4338ca?text=Open+Science+Ed';">
<div class="project-overlay">
<a href="https://github.com/UnibenEarthDataScience/UniBenOpenSciEd" target="_blank" class="overlay-link" aria-label="View Project">
<i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
<div class="project-content">
<h4>Open Science Education Module</h4>
<p class="project-location">
<i class="fas fa-university"></i> University of Benin Collaboration
</p>
<p>Developing educational resources and teaching modules for open science practices in Earth data science.</p>
<div class="project-tech">
<span class="tech-badge">Education</span>
<span class="tech-badge">Open Science</span>
<span class="tech-badge">Jupyter</span>
</div>
</div>
</div>
</div>
</div>
<!-- Seismology Projects -->
<div class="project-category">
<h3 class="category-title">
<i class="fas fa-wave-square"></i> Seismology Skill Building Workshop Projects
</h3>
<div class="seismo-projects">
<div class="seismo-item">
<div class="seismo-icon">
<i class="fas fa-mountain"></i>
</div>
<div class="seismo-content">
<h4>L'Aquila Earthquake Analysis</h4>
<p class="earthquake-details">Italy • Magnitude 6.3 • 2009</p>
<a href="https://nbviewer.org/github/oye-bobs/oye-bobs.github.io/blob/main/notebooks/LAquila_Earthquake%20%281%29.ipynb" target="_blank" class="seismo-link">
<i class="fas fa-chart-line"></i> View Analysis
</a>
</div>
</div>
<div class="seismo-item">
<div class="seismo-icon">
<i class="fas fa-mountain"></i>
</div>
<div class="seismo-content">
<h4>Gorkha Earthquake Study</h4>
<p class="earthquake-details">Nepal • Magnitude 7.8 • 2015</p>
<a href="https://nbviewer.org/github/oye-bobs/oye-bobs.github.io/blob/main/notebooks/Nepal%20Earthquake.ipynb" target="_blank" class="seismo-link">
<i class="fas fa-chart-line"></i> View Analysis
</a>
</div>
</div>
<div class="seismo-item">
<div class="seismo-icon">
<i class="fas fa-wave-square"></i>
</div>
<div class="seismo-content">
<h4>Spectrogram Analysis</h4>
<p class="earthquake-details">Advanced signal processing techniques</p>
<a href="https://nbviewer.org/github/oye-bobs/oye-bobs.github.io/blob/main/notebooks/Spectograms.ipynb" target="_blank" class="seismo-link">
<i class="fas fa-chart-line"></i> View Analysis
</a>
</div>
</div>
<div class="seismo-item featured">
<div class="seismo-icon">
<i class="fas fa-star"></i>
</div>
<div class="seismo-content">
<h4>Haiti Earthquake - Final Project</h4>
<p class="earthquake-details">Haiti • Magnitude 7.0 • 2010</p>
<a href="https://nbviewer.org/urls/www.iris.edu/hq/files/short_courses/2020/ssb/haiti_earthquake.ipynb" target="_blank" class="seismo-link">
<i class="fas fa-trophy"></i> Final Project
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Workshops & Certifications -->
<section id="workshops" class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Workshops & Achievements</h2>
<p class="section-subtitle">Continuous learning and professional development</p>
</div>
<div class="achievements-grid">
<div class="achievement-card major">
<div class="achievement-icon">
<i class="fas fa-certificate"></i>
</div>
<h3>ESIIL Data Short Course 2024</h3>
<p>Advanced environmental data science techniques and satellite data analysis</p>
<a href="https://drive.google.com/file/d/1zy4CSyRhq4x8nsI-mao5iHlQyDrY3bv5/view?usp=drive_link" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> View Certificate
</a>
</div>
<div class="achievement-card major">
<div class="achievement-icon">
<i class="fas fa-wave-square"></i>
</div>
<h3>Earthscope Seismology Workshop 2024</h3>
<p>Comprehensive seismic data analysis and earthquake monitoring techniques</p>
<a href="https://drive.google.com/file/d/1y1epoSUvPsZVPWegYT9kHHvn565vPw1-/view?usp=drive_link" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> View Certificate
</a>
</div>
<div class="achievement-card">
<div class="achievement-icon">
<i class="fas fa-map-marked-alt"></i>
</div>
<h3>Earthquake Location Certification</h3>
<p>Specialized training in earthquake epicenter determination and analysis</p>
<a href="https://drive.google.com/file/d/18HFY7pwP1dqGIdoktrULJ5dyVJdZq6f2/view?usp=drive_link" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> View Certificate
</a>
</div>
</div>
<!-- HNG Internship -->
<div class="internship-section">
<h3 class="subsection-title">
<i class="fas fa-code"></i> HNG Data Analysis Internship 2025
</h3>
<div class="internship-card">
<div class="internship-content">
<h4>Level 0 Project Completion</h4>
<p>Successfully completed initial assessment demonstrating proficiency in data analysis fundamentals</p>
<a href="https://drive.google.com/file/d/1wyM-MI_hjoHTjPeTx-l4t--adi_jeUlh/view?usp=drive_link" target="_blank" class="project-link">
<i class="fas fa-download"></i> Download Project
</a>
</div>
<div class="internship-badge">
<span class="badge-text">Completed</span>
</div>
</div>
</div>
</div>
</section>
<!-- Certifications -->
<section id="certifications" class="section highlight-section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Certifications & Licenses</h2>
<p class="section-subtitle">Validated expertise across multiple technologies</p>
</div>
<div class="certifications-container">
<div class="cert-category featured">
<h3 class="cert-category-title">
<i class="fab fa-google"></i> Google & TensorFlow Certifications
</h3>
<div class="cert-grid">
<div class="cert-item featured-cert">
<i class="fab fa-google cert-icon"></i>
<span class="cert-name">TensorFlow Developer Certificate</span>
<span class="cert-date">May 2023</span>
<a href="https://www.credential.net/64ef107a-0c76-4592-9a20-a0fe524ce684#acc.2ryMcFQV" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-brain cert-icon"></i>
<span class="cert-name">DeepLearning.AI TensorFlow Developer Specialization</span>
<span class="cert-date">Oct 2022</span>
<a href="https://www.coursera.org/account/accomplishments/specialization/certificate/GG8SMMG3Q73M" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-language cert-icon"></i>
<span class="cert-name">Natural Language Processing in TensorFlow</span>
<span class="cert-date">Oct 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/Q63HKFJL9P44" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-eye cert-icon"></i>
<span class="cert-name">Convolutional Neural Networks in TensorFlow</span>
<span class="cert-date">Sep 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/LXV8GTENG9CR" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-robot cert-icon"></i>
<span class="cert-name">Introduction to TensorFlow for AI, ML, and Deep Learning</span>
<span class="cert-date">Sep 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/GRTJW8E3288J" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
</div>
</div>
<div class="cert-category">
<h3 class="cert-category-title">
<i class="fas fa-chart-line"></i> Data Science & Analytics
</h3>
<div class="cert-grid">
<div class="cert-item">
<i class="fas fa-project-diagram cert-icon"></i>
<span class="cert-name">Data Science Methodology</span>
<span class="cert-date">Feb 2023</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/CJAFAECMSZBQ" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fab fa-r-project cert-icon"></i>
<span class="cert-name">R Programming</span>
<span class="cert-date">Nov 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/TJC8V28GN6J3" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fab fa-python cert-icon"></i>
<span class="cert-name">Python for Data Science, AI & Development</span>
<span class="cert-date">Oct 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/7LFJKDJA9YLJ" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-tools cert-icon"></i>
<span class="cert-name">Tools for Data Science</span>
<span class="cert-date">Oct 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/D5YHMF6B33PM" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-question-circle cert-icon"></i>
<span class="cert-name">What is Data Science</span>
<span class="cert-date">Sep 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/WL4TB2D6VWGD" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-toolbox cert-icon"></i>
<span class="cert-name">The Data Scientist's Toolbox</span>
<span class="cert-date">Aug 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/ELZMPWSB4FPJ" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
</div>
</div>
<div class="cert-category">
<h3 class="cert-category-title">
<i class="fas fa-network-wired"></i> Deep Learning & Neural Networks
</h3>
<div class="cert-grid">
<div class="cert-item">
<i class="fas fa-brain cert-icon"></i>
<span class="cert-name">Neural Networks and Deep Learning</span>
<span class="cert-date">Aug 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/2M4ERA3YX257" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-cogs cert-icon"></i>
<span class="cert-name">Structuring Machine Learning Projects</span>
<span class="cert-date">Aug 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/8GJPY4ZKAA67" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-list-ol cert-icon"></i>
<span class="cert-name">Sequence Models</span>
<span class="cert-date">Sep 2022</span>
<a href="https://www.coursera.org/account/accomplishments/certificate/ZGGA5BNYBYSJ" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
</div>
</div>
<div class="cert-category">
<h3 class="cert-category-title">
<i class="fas fa-award"></i> Other Certifications
</h3>
<div class="cert-grid">
<div class="cert-item">
<i class="fas fa-graduation-cap cert-icon"></i>
<span class="cert-name">CS50x</span>
<span class="cert-date">Jun 2025</span>
<a href="https://certificates.cs50.io/29dcbd6c-d290-495b-ac2c-d11098de7942.pdf?size=letter" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fab fa-linkedin cert-icon"></i>
<span class="cert-name">Become an AI-Powered People Manager</span>
<span class="cert-date">Apr 2025</span>
<a href="https://www.linkedin.com/learning/certificates/fdcafc1b717e4053bb1e913638b45cde63b31647121913301f7e82e1dfa43893?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_certifications_details%3BZ%2BGlxfu2QTO3Xx09kQhlDA%3D%3D" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-microchip cert-icon"></i>
<span class="cert-name">Artificial Intelligence Fundamentals</span>
<span class="cert-date">Sep 2024</span>
<a href="https://www.credly.com/badges/dfbdaab0-85b0-49ce-86e0-caa2682eb8ab/linked_in_profile" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-network-wired cert-icon"></i>
<span class="cert-name">Networking Basics</span>
<span class="cert-date">Jul 2024</span>
<a href="https://www.credly.com/badges/71f818b3-9fed-4994-8378-e3df63ee9c5e/linked_in_profile" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-shield-alt cert-icon"></i>
<span class="cert-name">Introduction to Cybersecurity</span>
<span class="cert-date">Jun 2024</span>
<a href="https://www.credly.com/badges/21fb3bdc-46fd-481d-8436-ad7d4e771b38/linked_in_profile" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-chart-bar cert-icon"></i>
<span class="cert-name">Accenture North America - Data Analytics and Visualization Job Simulation</span>
<span class="cert-date">Apr 2024</span>
<a href="https://forage-uploads-prod.s3.amazonaws.com/completion-certificates/Accenture%20North%20America/hzmoNKtzvAzXsEqx8_Accenture%20North%20America_qmnTbnxqCEsfBfQMe_1712311824793_completion_certificate.pdf" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-plane-departure cert-icon"></i>
<span class="cert-name">GE Aerospace - Explore Human Resources Job Simulation</span>
<span class="cert-date">Apr 2024</span>
<a href="https://forage-uploads-prod.s3.amazonaws.com/completion-certificates/GE%20Aerospace/bAPubTkawzGexc6TT_GE%20Aerospace_qmnTbnxqCEsfBfQMe_1712161145616_completion_certificate.pdf" target="_blank" class="cert-link">
<i class="fas fa-external-link-alt"></i> Show Credential
</a>
</div>
<div class="cert-item">
<i class="fas fa-building cert-icon"></i>
<span class="cert-name">McKinsey Forward Program</span>
<span class="cert-date">Issued 2022</span>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Education -->
<section id="education" class="section highlight-section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Education</h2>
<p class="section-subtitle">Academic foundation in Earth Sciences</p>
</div>
<div class="education-card">
<div class="education-icon">
<i class="fas fa-university"></i>
</div>
<div class="education-content">
<h3>Bachelor of Science in Geology and Earth Sciences</h3>
<p class="institution">
<i class="fas fa-map-marker-alt"></i> University of Benin, Benin City, Edo State, Nigeria
</p>
<p class="education-description">
Comprehensive study of Earth's structure, processes, and materials with emphasis on geological mapping, mineralogy, petrology, and environmental geology.
</p>
<div class="education-highlights">
<span class="highlight-tag">Geological Mapping</span>
<span class="highlight-tag">Environmental Geology</span>
<span class="highlight-tag">Geophysics</span>
<span class="highlight-tag">Mineralogy</span>
</div>
</div>
</div>
</div>
</section>
<!-- Experience -->
<section id="experience" class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Professional Experience</h2>
<p class="section-subtitle">Building expertise across multiple domains</p>
</div>
<div class="experience-timeline">
<div class="timeline-container">
<div class="experience-item current">
<div class="timeline-marker">
<i class="fas fa-solar-panel"></i>
</div>
<div class="experience-content">
<div class="experience-header">
<h3>Service Engineer</h3>
<span class="company">Inter Trade Limited, Abuja</span>
<span class="duration">June 2024 – Present</span>
</div>
<p class="role-description">
Leading installation and maintenance of solar power infrastructures, combining technical expertise with project management skills to deliver sustainable energy solutions.
</p>
<div class="role-skills">
<span class="skill-tag">Project Management</span>
<span class="skill-tag">Renewable Energy</span>
<span class="skill-tag">Technical Support</span>
</div>
</div>
</div>
<div class="experience-item">
<div class="timeline-marker">
<i class="fas fa-user-graduate"></i>
</div>
<div class="experience-content">
<div class="experience-header">
<h3>Graduate Intern</h3>
<span class="company">Inter Trade Limited, Abuja</span>
<span class="duration">June 2023 – June 2024</span>
</div>
<p class="role-description">
Gained hands-on experience in solar power infrastructure development, focusing on installation processes and maintenance protocols.
</p>
<div class="role-skills">
<span class="skill-tag">Solar Installation</span>
<span class="skill-tag">System Maintenance</span>
<span class="skill-tag">Quality Control</span>
</div>
</div>
</div>
<div class="experience-item">
<div class="timeline-marker">
<i class="fab fa-google"></i>
</div>
<div class="experience-content">
<div class="experience-header">
<h3>Student Trainee</h3>
<span class="company">Google Developers Group (Remote)</span>
<span class="duration">Aug 2022 – May 2023</span>
</div>
<p class="role-description">
Intensive training in machine learning and artificial intelligence technologies, developing practical skills in modern AI frameworks and methodologies.
</p>
<div class="role-skills">
<span class="skill-tag">Machine Learning</span>
<span class="skill-tag">TensorFlow</span>
<span class="skill-tag">AI Development</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills -->
<section id="skills" class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Technical Skills & Expertise</h2>
<p class="section-subtitle">Comprehensive toolkit for data-driven solutions</p>
</div>
<div class="skills-container">
<!-- Technical Skills -->
<div class="skills-category">
<h3 class="skills-category-title">
<i class="fas fa-code"></i> Programming Languages
</h3>
<div class="skills-grid">
<div class="skill-item">
<div class="skill-icon python">
<i class="fab fa-python"></i>
</div>
<div class="skill-content">
<h4>Python</h4>
<div class="skill-bar">
<div class="skill-progress" data-width="95%"></div>
</div>
<span class="skill-level">Expert</span>
</div>
</div>
<div class="skill-item">
<div class="skill-icon r">
<i class="fab fa-r-project"></i>
</div>
<div class="skill-content">
<h4>R</h4>
<div class="skill-bar">
<div class="skill-progress" data-width="85%"></div>
</div>
<span class="skill-level">Advanced</span>
</div>
</div>
<div class="skill-item">
<div class="skill-icon sql">
<i class="fas fa-database"></i>
</div>
<div class="skill-content">
<h4>SQL</h4>
<div class="skill-bar">
<div class="skill-progress" data-width="90%"></div>
</div>
<span class="skill-level">Expert</span>
</div>
</div>
</div>
</div>
<!-- Data Analysis Tools -->
<div class="skills-category">
<h3 class="skills-category-title">
<i class="fas fa-chart-bar"></i> Data Analysis & Visualization
</h3>
<div class="skills-grid">
<div class="skill-item">
<div class="skill-icon excel">
<i class="fas fa-file-excel"></i>
</div>
<div class="skill-content">
<h4>Microsoft Excel</h4>
<div class="skill-bar">
<div class="skill-progress" data-width="92%"></div>
</div>
<span class="skill-level">Expert</span>
</div>
</div>
<div class="skill-item">
<div class="skill-icon tableau">
<i class="fas fa-chart-line"></i>
</div>
<div class="skill-content">
<h4>Tableau</h4>
<div class="skill-bar">
<div class="skill-progress" data-width="88%"></div>
</div>
<span class="skill-level">Advanced</span>
</div>
</div>
<div class="skill-item">
<div class="skill-icon powerbi">
<i class="fas fa-chart-pie"></i>
</div>
<div class="skill-content">
<h4>Power BI</h4>
<div class="skill-bar">
<div class="skill-progress" data-width="85%"></div>
</div>
<span class="skill-level">Advanced</span>
</div>
</div>
</div>
</div>
<!-- Soft Skills -->
<div class="skills-category soft-skills-section">
<h3 class="skills-category-title">
<i class="fas fa-users"></i> Professional Skills
</h3>
<div class="soft-skills-grid">
<div class="soft-skill-item">
<i class="fas fa-microphone-alt"></i>
<span>Public Speaking</span>
</div>
<div class="soft-skill-item">
<i class="fas fa-comments"></i>
<span>Effective Communication</span>
</div>
<div class="soft-skill-item">
<i class="fas fa-lightbulb"></i>
<span>Creative Problem Solving</span>
</div>
<div class="soft-skill-item">
<i class="fas fa-chart-area"></i>
<span>Data Visualization</span>
</div>
<div class="soft-skill-item">
<i class="fas fa-brain"></i>
<span>Critical Thinking</span>
</div>
<div class="soft-skill-item">
<i class="fas fa-chalkboard-teacher"></i>
<span>Mentorship</span>
</div>
<div class="soft-skill-item">
<i class="fas fa-users-cog"></i>
<span>Leadership</span>
</div>
<div class="soft-skill-item">
<i class="fas fa-project-diagram"></i>
<span>Team Management</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="section highlight-section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Let's Connect</h2>
<p class="section-subtitle">Ready to collaborate on your next data science project</p>
</div>
<div class="contact-content">
<div class="contact-info">
<div class="contact-intro">
<h3>Get In Touch</h3>
<p>Whether you're looking for data analysis expertise, geoscience consulting, or collaboration opportunities, I'd love to hear from you. Let's discuss how we can work together to unlock insights from your data.</p>
</div>
<div class="contact-methods">
<a href="mailto:adeoyeayan@gmail.com" class="contact-method">
<div class="contact-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="contact-details">
<h4>Email</h4>
<span>adeoyeayan@gmail.com</span>
</div>
</a>
<a href="https://www.linkedin.com/in/adeoyemalumi/" target="_blank" class="contact-method">
<div class="contact-icon">
<i class="fab fa-linkedin"></i>
</div>
<div class="contact-details">
<h4>LinkedIn</h4>
<span>Connect professionally</span>
</div>
</a>
<a href="https://github.com/oye-bobs" target="_blank" class="contact-method">
<div class="contact-icon">
<i class="fab fa-github"></i>
</div>
<div class="contact-details">
<h4>GitHub</h4>
<span>View my code</span>
</div>
</a>
<a href="https://orcid.org/0009-0002-8223-7011" target="_blank" class="contact-method">
<div class="contact-icon">
<i class="fab fa-orcid"></i>
</div>
<div class="contact-details">
<h4>ORCID</h4>