-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
977 lines (905 loc) · 51.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gabriel Aloho | Portfolio</title>
<!-- External stylesheets -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Materialize JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</head>
<body class="light-mode">
<header>
<nav class="">
<div class="nav-wrapper container">
<a href="#" data-target="mobile-menu" class="sidenav-trigger">
<i class="material-icons">menu</i>
</a>
<ul class="right hide-on-med-and-down">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#certifications">Certifications</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<button id="theme-toggle" class="btn-flat white-text">
<i class="material-icons">brightness_4</i>
</button>
</div>
</nav>
<ul class="sidenav" id="mobile-menu">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#certifications">Certifications</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</header>
<main>
<!-- Hero Section -->
<div class="section hero-section grey lighten-4 center valign-wrapper" style="height: 70vh; color: #000;">
<div class="container">
<div class="row">
<!-- Profile Image -->
<div class="col s12 m4 center-align">
<img src="images/profile.png" alt="Gabriel Aloho" class="circle responsive-img z-depth-2"
style="width: 200px; height: 200px; object-fit: cover;">
</div>
<!-- Name and Bio -->
<div class="col s12 m8">
<h1 class="purple-text text-darken-3">Gabriel Aloho</h1>
<p class="flow-text" style="font-size: 1.5rem; margin-top: 10px; font-weight: bold;">
Cybersecurity Leader | Ethical Hacker | Digital Forensics Expert | Full-Stack Developer | Risk Management Strategist |
Technical Trainer & Project Leader
</p>
<p class="flow-text" style="font-size: 1.2rem; margin-top: 10px; color: #333;">
I specialize in driving comprehensive security strategies, performing high-level penetration tests, and delivering cutting-edge digital forensics investigations. With a solid foundation in software development and cybersecurity, I focus on creating secure, scalable, and high-performance solutions. As a passionate educator, I empower teams and individuals with the knowledge they need to mitigate risks and stay ahead of cyber threats. Let's connect and build secure solutions for the future.
</p>
<a href="#about"><button class="btn waves-effect waves-light">Learn More</button></a>
</div>
</div>
</div>
</div>
<!-- About Section -->
<div id="about" class="section">
<div class="container">
<h2 class="purple-text text-darken-3"><i class="material-icons left">person</i> About Me</h2>
<p class="flow-text">I am a highly experienced and versatile professional with a unique blend of expertise in <strong>Cybersecurity</strong>, <strong>Web Development</strong>, and <strong>Artificial Intelligence</strong>, combined with a strong background in <strong>Linguistics</strong> and <strong>Text Analytics</strong>. Over the years, I have gained hands-on experience in critical areas such as <strong>Information Security</strong>, <strong>Digital Forensics</strong>, <strong>Incident Response</strong>, and <strong>Penetration Testing</strong>, delivering impactful solutions to organizations in both the public and private sectors.</p>
<p class="flow-text">As a trainer, I have successfully conducted workshops for key Nigerian organizations like the <strong>Nigerian Police</strong> and <strong>UBEC</strong>, focusing on <strong>ethical hacking</strong>, <strong>cybersecurity assessments</strong>, and <strong>real-world scenarios</strong> to strengthen their cybersecurity posture. Additionally, I have led several <strong>web development projects</strong>, specializing in creating <strong>secure platforms</strong>, <strong>WordPress overhauls</strong>, and providing <strong>continuous support</strong> to clients, ensuring robust security and optimal performance for their online operations.</p>
<p class="flow-text">I hold a Master’s degree in <strong>Information Security and Digital Forensics</strong> from the <strong>University of East London</strong> and am currently enhancing my skills through a <strong>Cybersecurity training program</strong> at BeCode in <strong>Brussels</strong>. With a passion for staying ahead of emerging cybersecurity trends, I am constantly expanding my knowledge to provide innovative solutions for businesses in an increasingly digital world.</p>
<p class="flow-text">With a track record of leading cross-functional teams, managing client projects, and delivering results under pressure, I am committed to making meaningful contributions to any organization I collaborate with. I am also gearing up to launch my own cybersecurity venture, <strong>Gue Cyber Labs</strong>, in January 2025, further expanding my entrepreneurial journey.</p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Cybersecurity</span>
<span class="chip">Information Security</span>
<span class="chip">Digital Forensics</span>
<span class="chip">Incident Response</span>
<span class="chip">Penetration Testing</span>
<span class="chip">Ethical Hacking</span>
<span class="chip">Web Development</span>
<span class="chip">AI/LLM/NLP</span>
<span class="chip">Leadership</span>
<span class="chip">Project Management</span>
<span class="chip">Cybersecurity Training</span>
</p>
<a href="#contact"><button class="btn waves-effect waves-light">Contact Me</button></a>
</div>
</div>
<!-- Education Section -->
<section id="education" class="section grey lighten-4">
<div class="container">
<h2 class="purple-text text-darken-3">
<i class="material-icons left">school</i> Education
</h2>
<div class="row">
<!-- Education Cards -->
<div class="col s12 m6 l4">
<div class="card">
<div class="card-content">
<span class="card-title purple-text text-darken-3">
BeCode Cybersecurity Training
</span>
<p class="grey-text text-darken-1">Brussels, Belgium</p>
<p><strong>October 2024 – Present</strong></p>
<p>
Comprehensive training in cybersecurity principles, ethical hacking,
and digital forensics.
</p>
</div>
<div class="card-action">
<a href="https://becode.org/all-trainings/pedagogical-framework-cyber-security/" target="_blank">Learn More</a>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="card">
<div class="card-content">
<span class="card-title purple-text text-darken-3">
MSc in Information Security and Digital Forensics
</span>
<p class="grey-text text-darken-1">University of East London, UK</p>
<p><strong>Graduated: 2024</strong></p>
<p>
Specialized in forensic analysis, penetration testing, and information
system security.
</p>
</div>
<div class="card-action">
<a href="https://www.uel.ac.uk/postgraduate/courses/msc-information-security-digital-forensics" target="_blank">Learn More</a>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="card">
<div class="card-content">
<span class="card-title purple-text text-darken-3">
MSc in Applied Linguistics and Text Analytics
</span>
<p class="grey-text text-darken-1">Higher School of Economics, Russia</p>
<p><strong>Withdrew due to war in Ukraine: 2023</strong></p>
<p>
Focused on natural language processing, data-driven insights, and
applied computational linguistics.
</p>
</div>
<div class="card-action">
<a href="https://nnov.hse.ru/en/ma/appling/" target="_blank">Learn More</a>
</div>
</div>
</div>
<div class="col s12 m6 l4">
<div class="card">
<div class="card-content">
<span class="card-title purple-text text-darken-3">
BSc in Linguistics
</span>
<p class="grey-text text-darken-1">Benue State University, Nigeria</p>
<p><strong>Graduated: 2012</strong></p>
<p>
Emphasized syntax, phonetics, and semantics in language studies.
</p>
</div>
<div class="card-action">
<a href="https://www.bsum.edu.ng/w3/linguistics.php" target="_blank">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<div id="skills" class="section grey lighten-4">
<div class="container">
<h2 class="purple-text text-darken-3"><i class="material-icons left">work</i> Skills</h2>
<div class="row">
<!-- Technical Skills Table (Left Side) -->
<div class="col s12 m6">
<h5>Technical Skills</h5>
<table class="highlight">
<thead>
<tr>
<th>Skill</th>
<th>Proficiency</th>
<th>Years of Experience</th>
<th>Last Used/Frequency</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<i class="material-icons left teal-text">security</i>
Cybersecurity (Ethical Hacking, Incident Response, Penetration Testing, Vulnerability Assessment)
</td>
<td>Advanced</td>
<td>4+ years (since November 2022)</td>
<td>Weekly</td>
</tr>
<tr>
<td>
<i class="material-icons left green-text">code</i>
Python
</td>
<td>Advanced</td>
<td>4+ years (since June 2020)</td>
<td>Weekly</td>
</tr>
<tr>
<td>
<i class="material-icons left orange-text">storage</i>
Linux Server Management
</td>
<td>Advanced</td>
<td>2+ years (since March 2023)</td>
<td>Weekly</td>
</tr>
<tr>
<td>
<i class="material-icons left blue-text">web</i>
Web Development (HTML, CSS, JavaScript, Responsive Web Design)
</td>
<td>Intermediate</td>
<td>4+ years (since May 2020)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left purple-text">terminal</i>
Bash Scripting
</td>
<td>Intermediate</td>
<td>2+ years (since October 2022)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left amber-text">assignment</i>
Project Management (Planning, Risk Management, Resource Allocation)
</td>
<td>Intermediate</td>
<td>1+ year (since July 2023)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left cyan-text">group</i>
Remote Team Collaboration
</td>
<td>Advanced</td>
<td>4+ years (since April 2020)</td>
<td>Weekly</td>
</tr>
<tr>
<td>
<i class="material-icons left deep-orange-text">layers</i>
Software Engineering (Design Patterns, Agile)
</td>
<td>Intermediate</td>
<td>4+ years (since May 2020)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left red-text">settings_applications</i>
Backend Development (Python, Flask/Django)
</td>
<td>Intermediate</td>
<td>2+ years (since 2022)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left pink-text">bug_report</i>
Malware Analysis, Cybersecurity Tools, Computer Forensics, Security Policies
</td>
<td>Advanced</td>
<td>2+ years (since November 2022)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left purple-text">language</i>
HTML5, CSS3
</td>
<td>Intermediate</td>
<td>4+ years (since May 2020)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left indigo-text">autorenew</i>
Automation, System Administration
</td>
<td>Intermediate</td>
<td>2+ years (since October 2022)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left brown-text">shield</i>
Web Application Security, Network Security
</td>
<td>Intermediate</td>
<td>2+ years (since October 2022)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left green-text">lightbulb</i>
Programming Basics, Problem-Solving with Code
</td>
<td>Intermediate</td>
<td>4+ years (since April 2020)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left yellow-text">javascript</i>
JavaScript, Frontend Web Technologies
</td>
<td>Intermediate</td>
<td>4+ years (since May 2020)</td>
<td>Monthly</td>
</tr>
<tr>
<td>
<i class="material-icons left light-blue-text">analytics</i>
Digital Workplace Trends, Data-Driven Decision Making
</td>
<td>Intermediate</td>
<td>4+ years (since April 2020)</td>
<td>Monthly</td>
</tr>
</tbody>
</table>
</div>
<!-- Soft Skills List (Right Side) -->
<div class="col s12 m6">
<h5>Soft Skills</h5>
<ul class="collection">
<li class="collection-item"><i class="material-icons left">check_circle</i> Leadership: Led workshops and training sessions for the Nigerian Police and UBEC staff, improving their cybersecurity capabilities.</li>
<li class="collection-item"><i class="material-icons left">check_circle</i> Communication: Delivered complex cybersecurity concepts in clear, engaging ways for diverse audiences, such as the Nigerian Police and aspiring cybersecurity professionals during ISC2 CC Training.</li>
<li class="collection-item"><i class="material-icons left">check_circle</i> Problem-Solving: Addressed and solved specific issues like website security for clients such as Eloheem Suites and TheBig, ensuring platform integrity.</li>
<li class="collection-item"><i class="material-icons left">check_circle</i> Collaboration: Worked closely with teams from UBEC, Nigerian Police, and remote development teams to deliver customized solutions and training in cybersecurity and web development.</li>
<li class="collection-item"><i class="material-icons left">check_circle</i> Project Management: Managed the development and maintenance of platforms for HOREMOW Europe and North America, and eco.com.ng, delivering on time and meeting client needs.</li>
<li class="collection-item"><i class="material-icons left">check_circle</i> Adaptability: Quickly adapted to new platforms and technologies, such as during the redesign and optimization of HOREMOW platforms and the development of e-commerce solutions like ShadeBuy.</li>
<li class="collection-item"><i class="material-icons left">check_circle</i> Technical Communication: Facilitated the seamless handover of technical projects such as Seed Builders Foundation’s WordPress setup, ensuring internal teams were well-equipped for long-term operation.</li>
<li class="collection-item"><i class="material-icons left">check_circle</i> Teaching & Training: Delivered hands-on ethical hacking training to UBEC staff and cybersecurity exam preparation sessions for students in the ISC2 CC Training project, enhancing learning through real-world examples.</li>
<li class="collection-item"><i class="material-icons left">check_circle</i> Client-Focused Development: Tailored solutions to client-specific needs, including providing security and performance enhancements for websites like eco.com.ng, eyahshotel.com, and voiceofpraiseone.com.</li>
<li class="collection-item"><i class="material-icons left">check_circle</i> Conflict Resolution: Managed client expectations and resolved technical issues swiftly, ensuring smooth project delivery and client satisfaction.</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Projects Section -->
<div id="projects" class="section">
<div class="container">
<h2 class="purple-text text-darken-3">
<i class="material-icons left">developer_mode</i> Projects
</h2>
<ul class="collapsible">
<!-- WiFlix Project -->
<li>
<div class="collapsible-header">
<i class="material-icons">school</i> WiFlix: Post-COVID Educational Platform
</div>
<div class="collapsible-body">
<p><strong>Purpose:</strong> An educational platform designed to provide users with the skills needed for a post-COVID workplace.</p>
<p><strong>Situation:</strong> Addressed the growing demand for remote learning solutions and job-ready skills during the COVID-19 pandemic.</p>
<p><strong>Task:</strong> Develop a responsive and engaging platform to showcase a pool of professional development courses.</p>
<p><strong>Action:</strong> Built the platform using <em>HTML</em>, <em>CSS</em>, and <em>JavaScript</em>, focusing on responsive design and interactivity.</p>
<p><strong>Result:</strong> Created a fully functional platform with modern UI/UX principles, deployed on GitHub Pages, and showcased it as a demo for educational innovation.</p>
<p><strong>Reflect:</strong> Learned how to structure projects for real-world applications and gained practical experience in front-end development and GitHub hosting.</p>
<p>
<strong>Skills Demonstrated:</strong>
<span class="chip">HTML</span>
<span class="chip">CSS</span>
<span class="chip">JavaScript</span>
<span class="chip">Responsive Web Design</span>
<span class="chip">UI/UX Design</span>
<span class="chip">GitHub Pages</span>
<span class="chip">Version Control</span>
</p>
<p><a href="https://github.com/gabrielaloho/gabrielaloho-wiflix" target="_blank">View Repository on GitHub</a></p>
<p><a href="https://gabrielaloho.github.io/gabrielaloho-wiflix" target="_blank">View Live Demo</a></p>
</div>
</li>
<!-- AboutMe Project -->
<li>
<div class="collapsible-header">
<i class="material-icons">smartphone</i> AboutMe: Android Development for Students
</div>
<div class="collapsible-body">
<p><strong>Purpose:</strong> Teach senior secondary school students the basics of Android app development using Kotlin.</p>
<p><strong>Situation:</strong> Contracted by New Horizons Computer Learning Centers to deliver practical Android development lessons to high school students.</p>
<p><strong>Task:</strong> Create a simple biography app to demonstrate key Android development concepts, which students could replicate and customize.</p>
<p><strong>Action:</strong>
- Developed an app using <em>Kotlin</em> with a splash screen, <em>ScrollView</em>, <em>LinearLayout</em>, and basic <em>ImageView</em> and <em>TextView</em>.
- Focused on simplicity to align with students' skill levels.
- Guided students to follow step-by-step development processes and create personalized versions of the app.
</p>
<p><strong>Result:</strong> Students successfully built and customized their own apps, gaining foundational knowledge in Android development.</p>
<p><strong>Reflect:</strong> Strengthened skills in instructional delivery and adapting complex concepts for beginners.</p>
<p>
<strong>Skills Demonstrated:</strong>
<span class="chip">Kotlin</span>
<span class="chip">Android App Development</span>
<span class="chip">UI/UX Design</span>
<span class="chip">Teaching and Mentorship</span>
<span class="chip">Version Control</span>
</p>
<p><a href="https://github.com/gabrielaloho/AboutMe" target="_blank">View Repository on GitHub</a></p>
</div>
</li>
<!-- Seedbuilders Android Internship -->
<li>
<div class="collapsible-header">
<i class="material-icons">business</i> Seedbuilders Android Internship
</div>
<div class="collapsible-body">
<p><strong>Purpose:</strong> Create a mobile application to display the organization's website and provide information about its services.</p>
<p><strong>Situation:</strong> Internship with Seedbuilders Nigeria, where I was tasked with developing an app to enhance their digital presence.</p>
<p><strong>Task:</strong> Build a simple, user-friendly Android application using Java to showcase the organization’s offerings.</p>
<p><strong>Action:</strong>
- Utilized <em>Java</em> for Android development to design a lightweight app with web content integration.
- Focused on clean UI implementation and seamless navigation.
- Ensured functionality was aligned with the company’s branding and user experience expectations.
</p>
<p><strong>Result:</strong> Successfully delivered the app, improving the organization's accessibility and visibility to potential clients.</p>
<p><strong>Reflect:</strong> Strengthened practical experience in Android development and learned to align technical projects with business goals.</p>
<p>
<strong>Skills Demonstrated:</strong>
<span class="chip">Java</span>
<span class="chip">Android Development</span>
<span class="chip">UI/UX Design</span>
<span class="chip">Internship Experience</span>
</p>
<p><a href="https://github.com/gabrielaloho/SeedbuildersAndroidIntenship" target="_blank">View Repository on GitHub</a></p>
</div>
</li>
<!-- Decagon & UK TechHub Developer Placement Assessment -->
<li>
<div class="collapsible-header">
<i class="material-icons">assessment</i> Decagon & UK TechHub Developer Placement Assessment
</div>
<div class="collapsible-body">
<p><strong>Purpose:</strong> Assessment project for securing a developer internship placement at Decagon and UK TechHub.</p>
<p><strong>Situation:</strong> Participated in a competitive assessment for developer internship roles to demonstrate technical proficiency.</p>
<p><strong>Task:</strong> Create a Java-based project utilizing API integration and networking concepts.</p>
<p><strong>Action:</strong>
- Developed the application in <em>Java</em>, employing Retrofit for API calls to fetch and display data.
- Followed best practices for clean code and reusable components.
</p>
<p><strong>Result:</strong> While the project did not secure the placement, it strengthened skills in API integration and showcased the ability to meet project requirements under a tight deadline.</p>
<p><strong>Reflect:</strong> Gained valuable experience in building applications under evaluation scenarios and learned the importance of performance optimization and clarity in code.</p>
<p>
<strong>Skills Demonstrated:</strong>
<span class="chip">Java</span>
<span class="chip">API Integration</span>
<span class="chip">Retrofit</span>
<span class="chip">Networking</span>
<span class="chip">Internship Assessment</span>
</p>
<p><a href="https://github.com/gabrielaloho/GabrielAlohoDevPlacement2020" target="_blank">View Repository on GitHub</a></p>
</div>
</li>
<!-- AboutMe Beginner Project (DroidCamp 2020) -->
<li>
<div class="collapsible-header">
<i class="material-icons">person</i> AboutMe Beginner Project (DroidCamp 2020)
</div>
<div class="collapsible-body">
<p><strong>Purpose:</strong> Introduce yourself through a multi-activity Android application built during the DroidCamp 2020.</p>
<p><strong>Situation:</strong> Participated in the DroidCamp 2020 to strengthen Android development skills and network with other developers.</p>
<p><strong>Task:</strong> Build a beginner-level multi-activity Android application for personal introduction.</p>
<p><strong>Action:</strong>
- Developed the project primarily in <em>Kotlin</em>, with some minor use of <em>Java</em>.
- Implemented navigation between activities and a clean user interface suitable for beginners.
</p>
<p><strong>Result:</strong> Completed the project successfully, demonstrating foundational Android development skills and gaining practical experience in multi-activity project structures.</p>
<p><strong>Reflect:</strong> Gained insights into Kotlin's advantages for Android development and improved understanding of activity lifecycle management.</p>
<p>
<strong>Skills Demonstrated:</strong>
<span class="chip">Kotlin</span>
<span class="chip">Java</span>
<span class="chip">Android Development</span>
<span class="chip">Multi-Activity Projects</span>
</p>
<p><a href="https://github.com/gabrielaloho/aboutme_beginner" target="_blank">View Repository on GitHub</a></p>
</div>
</li>
<!-- Software Development Projects -->
<li>
<div class="collapsible-header"><i class="material-icons">code</i> eloheemsuites.com</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> Eloheem Suites required a secure and reliable web platform for their business operations.</p>
<p><strong>Task:</strong> Develop, secure, host, and continuously monitor the website.</p>
<p><strong>Action:</strong> Built the platform from scratch, implemented security protocols, and provided ongoing maintenance.</p>
<p><strong>Result:</strong> Delivered a stable and secure website that supports business growth.</p>
<p><strong>Reflect:</strong> Emphasized the importance of proactive maintenance for long-term success.</p>
<p><a href="https://eloheemsuites.com" target="_blank">View Project</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Web Development</span>
<span class="chip">Security</span>
<span class="chip">Project Management</span>
</p>
</div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">code</i> thebig.com.ng</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> TheBig required a custom-built website with robust security features.</p>
<p><strong>Task:</strong> Design and develop a secure website with monitoring solutions.</p>
<p><strong>Action:</strong> Delivered a customized website and implemented enterprise-grade security measures.</p>
<p><strong>Result:</strong> Successfully launched a secure platform, meeting client expectations.</p>
<p><strong>Reflect:</strong> Gained deeper insights into client-focused development processes.</p>
<p><a href="https://thebig.com.ng" target="_blank">View Project</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Web Development</span>
<span class="chip">Security</span>
<span class="chip">Client Communication</span>
</p>
</div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">code</i> HOREMOW Europe and North America Platforms</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> HOREMOW required optimized platforms for European and North American audiences.</p>
<p><strong>Task:</strong> Overhaul WordPress sites and ensure high performance and reliability.</p>
<p><strong>Action:</strong> Redesigned the platforms, optimized performance, and provided ongoing support until 2024.</p>
<p><strong>Result:</strong> Delivered user-friendly and high-performing websites for both regions.</p>
<p><strong>Reflect:</strong> Highlighted the value of consistent communication with stakeholders.</p>
<p><a href="https://www.horemoweurope.org" target="_blank">View HOREMOW Europe</a> |
<a href="https://www.horemowna.org" target="_blank">View HOREMOW North America</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">WordPress Development</span>
<span class="chip">Website Optimization</span>
<span class="chip">Internationalization</span>
</p>
</div>
</li>
<!-- Web Development & Hosting Projects -->
<li>
<div class="collapsible-header"><i class="material-icons">web</i> eco.com.ng</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> eco.com.ng required a secure platform for its online presence.</p>
<p><strong>Task:</strong> Develop a platform with robust security and continuous maintenance.</p>
<p><strong>Action:</strong> Built the website, implemented monitoring systems, and provided ongoing support.</p>
<p><strong>Result:</strong> Successfully launched and maintained a secure platform.</p>
<p><strong>Reflect:</strong> Reinforced the importance of integrating security at every development stage.</p>
<p><a href="https://eco.com.ng" target="_blank">View Project</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Web Development</span>
<span class="chip">Security</span>
<span class="chip">Maintenance</span>
</p>
</div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">web</i> eyahshotel.com</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> Eyahshotel needed a secure and user-friendly website.</p>
<p><strong>Task:</strong> Develop and host a secure platform with user training support.</p>
<p><strong>Action:</strong> Created the platform, configured domains, and provided training for staff.</p>
<p><strong>Result:</strong> Delivered a functional and secure website with ongoing updates.</p>
<p><strong>Reflect:</strong> Emphasized the role of user education in platform sustainability.</p>
<p><a href="https://eyahshotel.com" target="_blank">View Project</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Web Development</span>
<span class="chip">User Training</span>
<span class="chip">Security</span>
</p>
</div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">web</i> shadebuy.com</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> ShadeBuy required an e-commerce platform with basic security features.</p>
<p><strong>Task:</strong> Design and host the website with monitoring capabilities.</p>
<p><strong>Action:</strong> Developed and hosted the platform, ensuring security and functionality.</p>
<p><strong>Result:</strong> Launched the e-commerce site, which was later discontinued in 2024.</p>
<p><strong>Reflect:</strong> Learned about the challenges of maintaining e-commerce platforms long-term.</p>
<p><a href="https://shadebuy.com" target="_blank">View Project</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">E-Commerce Development</span>
<span class="chip">Web Security</span>
<span class="chip">Platform Maintenance</span>
</p>
</div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">web</i> voiceofpraiseone.com</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> Voice of Praise required a platform to manage their online presence.</p>
<p><strong>Task:</strong> Develop and host the website with domain and security configurations.</p>
<p><strong>Action:</strong> Delivered a functional website and provided maintenance services.</p>
<p><strong>Result:</strong> Improved online visibility for the organization, discontinued in 2024.</p>
<p><strong>Reflect:</strong> Recognized the need for adaptable solutions to meet changing organizational goals.</p>
<p><a href="https://voiceofpraiseone.com" target="_blank">View Project</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Web Development</span>
<span class="chip">Security</span>
<span class="chip">Maintenance</span>
</p>
</div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">web</i> Seed Builders Foundation</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> Seed Builders Foundation required assistance with WordPress setup and backend configuration.</p>
<p><strong>Task:</strong> Consult on WordPress setup and provide technical backend configurations.</p>
<p><strong>Action:</strong> Provided guidance and completed initial configurations, ensuring a smooth handover.</p>
<p><strong>Result:</strong> Successfully handed over to the IT team in 2021, ensuring long-term operational capability.</p>
<p><strong>Reflect:</strong> Highlighted the benefits of empowering internal teams for sustained success.</p>
<p><a href="https://seedbuildersfoundation.org" target="_blank">View Project</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">WordPress Setup</span>
<span class="chip">Backend Configuration</span>
<span class="chip">Technical Consulting</span>
</p>
</div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">web</i> Seed Builders NG</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> Seed Builders NG required backend configurations and hosting services.</p>
<p><strong>Task:</strong> Handle backend configurations and hosting responsibilities.</p>
<p><strong>Action:</strong> Completed the necessary configurations and ensured a smooth transition to the IT team.</p>
<p><strong>Result:</strong> Successfully handed over in 2021, maintaining operational stability.</p>
<p><strong>Reflect:</strong> Recognized the importance of clear documentation and knowledge transfer for seamless transitions.</p>
<p><a href="https://seedbuildersng.com" target="_blank">View Project</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Backend Configuration</span>
<span class="chip">Hosting</span>
<span class="chip">Knowledge Transfer</span>
</p>
</div>
</li>
<!-- Cybersecurity Projects -->
<li>
<div class="collapsible-header"><i class="material-icons">security</i> Nigerian Police Workshops</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> The Nigerian Police needed advanced training in digital forensics and cybersecurity to improve investigation capabilities.</p>
<p><strong>Task:</strong> Conduct workshops focusing on tools and strategies for digital investigations.</p>
<p><strong>Action:</strong> Designed and delivered comprehensive training sessions, demonstrating tools and real-world scenarios.</p>
<p><strong>Result:</strong> Enhanced the digital investigation skills of over 50 officers, leading to improved case resolutions.</p>
<p><strong>Reflect:</strong> Learned the importance of tailoring training to the audience's technical level.</p>
<p><a href="nigerian-police-workshops.pdf" class="btn" download>Download Training Slides</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Cybersecurity</span>
<span class="chip">Digital Forensics</span>
<span class="chip">Training & Development</span>
<span class="chip">Public Sector Engagement</span>
</p>
</div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">security</i> Ethical Hacking for UBEC</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> UBEC staff required training in ethical hacking to strengthen their cybersecurity posture.</p>
<p><strong>Task:</strong> Deliver hands-on ethical hacking and penetration testing training sessions.</p>
<p><strong>Action:</strong> Developed a curriculum and provided interactive training using real-world examples.</p>
<p><strong>Result:</strong> Improved staff awareness and skills in identifying and mitigating cyber threats.</p>
<p><strong>Reflect:</strong> Gained insights into the importance of practical, scenario-based learning.</p>
<p><a href="ethical-hacking-ubec.pdf" class="btn" download>Download Training Slides</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Ethical Hacking</span>
<span class="chip">Penetration Testing</span>
<span class="chip">Cybersecurity Awareness</span>
<span class="chip">Training & Development</span>
</p>
</div>
</li>
<li>
<div class="collapsible-header"><i class="material-icons">security</i> ISC2 CC Training</div>
<div class="collapsible-body">
<p><strong>Situation:</strong> Aspiring cybersecurity professionals needed structured training to pass the ISC2 Certified in Cybersecurity exam.</p>
<p><strong>Task:</strong> Conduct a six-week training program covering key topics for the certification.</p>
<p><strong>Action:</strong> Created a detailed course outline and delivered weekly sessions with hands-on labs.</p>
<p><strong>Result:</strong> Prepared 30 students for the ISC2 CC certification, boosting their career prospects.</p>
<p><strong>Reflect:</strong> Enhanced my ability to break down complex topics for diverse audiences.</p>
<p><a href="isc2-cc-training.pdf" class="btn" download>Download Training Slides</a></p>
<p><strong>Skills Demonstrated:</strong>
<span class="chip">Cybersecurity Certification</span>
<span class="chip">Course Design</span>
<span class="chip">Hands-On Labs</span>
<span class="chip">Training & Mentorship</span>
</p>
</div>
</li>
</ul>
</div>
</div>
<!-- Certifications Section -->
<section id="certifications" class="section grey lighten-4">
<div class="container">
<h2 class="purple-text text-darken-4">
<span class="material-icons left">verified_user</span> Certifications & Courses
</h2>
<!-- Certifications Card -->
<div class="card hoverable">
<div class="card-content">
<ul class="collection with-header">
<!-- Highlighted and Relevant Certifications -->
<li class="collection-item">
<strong>Certified Ethical Hacker (CEH) Practical</strong> - EC-Council
<br>
<em>Issued: 29 November 2022</em>
<br>
<em>Valid until: 28 November 2025</em>
<br>
<em>Description:</em> Awarded the "Certified Ethical Hacker (Practical)" certification for completing rigorous challenges within the stipulated time. Validates practical knowledge in identifying and addressing cybersecurity vulnerabilities using ethical hacking techniques.
</li>
<li class="collection-item">
<strong>Diploma in Cyber Security</strong> - Oxford Home Study Centre
<br>
<em>Completed: 03 November 2022, Certificate # CPDSO1626, CPD Hours: 60</em>
<br>
<em>Description:</em> Successfully completed the Diploma in Cyber Security, covering topics such as cybersecurity, malware analysis, tools & techniques, forensics, policies, and risk management. Earned 60 CPD hours.
</li>
<li class="collection-item">
<strong>Frontend Fundamentals</strong> - Pirple
<br>
<em>Issued: 20 May 2020, Does not expire; Learned HTML5 and CSS3</em>
<br>
<em>Description:</em> Completed a comprehensive course covering HTML5 and CSS3, gaining hands-on experience in web design, structure, and responsive web development.
</li>
<li class="collection-item">
<strong>Learn Bash Scripting Course</strong> - Codecademy
<br>
<em>Completed: 29 October 2022, Certificate ID: C7CA1176-8</em>
<br>
<em>Description:</em> Gained proficiency in Bash scripting for automating tasks and system management in Linux-based environments.
</li>
<li class="collection-item">
<strong>Introduction to Ethical Hacking Course</strong> - Codecademy
<br>
<em>Completed: 28 October 2022, Certificate ID: 3BC5A600-4</em>
<br>
<em>Description:</em> Gained foundational knowledge in ethical hacking, penetration testing, and vulnerability management.
</li>
<li class="collection-item">
<strong>Collaborative Working in a Remote Team</strong> - University of Leeds and Institute of Coding
<br>
<em>Issued: 21st April 2020</em>
<br>
<em>Description:</em> Explored challenges and tools for effective remote team collaboration, including project management tools and best practices for virtual work environments.
</li>
<li class="collection-item">
<strong>Computer Programming for Everyone</strong> - University of Leeds and Institute of Coding
<br>
<em>Issued: 27th April 2020, Score: 86%</em>
<br>
<em>Description:</em> Learned programming fundamentals and coding principles, applied in a hands-on project to solve problems.
</li>
<li class="collection-item">
<strong>Learn to Code for the Web</strong> - University of Leeds and Institute of Coding
<br>
<em>Issued: 1st May 2020, Score: 73%</em>
<br>
<em>Description:</em> Gained introductory skills in HTML, CSS, and JavaScript for web page creation and styling.
</li>
<li class="collection-item">
<strong>Learn About Current Digital Workplace Trends</strong> - University of Leeds and Institute of Coding
<br>
<em>Issued: 21st April 2020, Score: 80%</em>
<br>
<em>Description:</em> Explored trends in the digital workplace, focusing on the digital revolution and the importance of data and digital skills.
</li>
<li class="collection-item">
<strong>IT Project Management</strong> - Unicaf University
<br>
<em>Completed: 10 July 2023</em>
<br>
<em>Description:</em> Acquired knowledge of IT project management, including planning, risk management, and resource allocation techniques.
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<div id="contact" class="section">
<div class="container">
<h2 class="purple-text text-darken-4">
<span class="material-icons left">email</span> Contact Me
</h2>
<div class="section">
<form action="https://formspree.io/f/manyjvbb" method="POST">
<div class="card">
<div class="card-content">
<span class="card-title">Get in Touch</span>
<p>Feel free to reach out for inquiries or collaborations!</p>
<!-- Name Field -->
<div class="input-field">
<input type="text" id="name" name="name" required>
<label for="name">Your Name</label>
</div>
<!-- Email Field -->
<div class="input-field">
<input type="email" id="email" name="email" required>
<label for="email">Your Email</label>
</div>
<!-- Message Field -->
<div class="input-field">
<textarea id="message" name="message" class="materialize-textarea" required></textarea>
<label for="message">Your Message</label>
</div>
<!-- Submit Button -->
<button type="submit" class="btn waves-effect waves-light">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="page-footer">
<div class="container">
<div class="row">
<!-- Links Section -->
<div class="col s12 m6 l4">
<h5 class="white-text">Quick Links</h5>
<ul>
<li><a href="#about" class="white-text">About</a></li>
<li><a href="#skills" class="white-text">Skills</a></li>
<li><a href="#projects" class="white-text">Projects</a></li>
<li><a href="#education" class="white-text">Education</a></li>
<li><a href="#certifications" class="white-text">Certifications</a></li>
<li><a href="#contact" class="white-text">Contact</a></li>
</ul>
</div>
<!-- Social Media Section -->
<div class="col s12 m6 l4">
<h5 class="white-text">Follow Me</h5>
<ul>
<li><a href="https://www.linkedin.com" class="white-text"><i class="fab fa-linkedin fa-2x"></i> LinkedIn</a></li>
<li><a href="https://twitter.com" class="white-text"><i class="fab fa-twitter fa-2x"></i> Twitter</a></li>
<li><a href="https://github.com" class="white-text"><i class="fab fa-github fa-2x"></i> GitHub</a></li>
<li><a href="https://www.instagram.com" class="white-text"><i class="fab fa-instagram fa-2x"></i> Instagram</a></li>
</ul>
</div>
<!-- Copyright Section -->
<div class="col s12 m12 l4 center">
<p class="white-text">© 2025 Gabriel Aloho. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script>
const themeToggleButton = document.getElementById('theme-toggle');
const body = document.body;
// Set initial icon based on the current mode
const icon = themeToggleButton.querySelector('.material-icons');
if (body.classList.contains('dark-mode')) {
icon.textContent = 'brightness_7'; // Dark mode icon
} else {
icon.textContent = 'brightness_4'; // Light mode icon
}
// Toggle dark mode and update the icon when clicked
themeToggleButton.addEventListener('click', () => {
body.classList.toggle('dark-mode');
const icon = themeToggleButton.querySelector('.material-icons');
// Update icon based on dark mode state
icon.textContent = body.classList.contains('dark-mode') ? 'brightness_7' : 'brightness_4';
});
</script>
<!-- Materialize JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script>
// JavaScript to toggle dark mode
document.getElementById('dark-mode-toggle').addEventListener('change', function () {
if (this.checked) {
document.body.classList.add('dark-mode'); // Enable dark mode
} else {
document.body.classList.remove('dark-mode'); // Disable dark mode
}
});
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.collapsible');
var instances = M.Collapsible.init(elems);
});
</script>
<!-- Mobile Menu JavaScript Fix -->
<script>
document.addEventListener('DOMContentLoaded', function() {
// Initialize sidenav
var sidenavElems = document.querySelectorAll('.sidenav');
M.Sidenav.init(sidenavElems);
// Initialize collapsible elements if needed
var collapsibleElems = document.querySelectorAll('.collapsible');
M.Collapsible.init(collapsibleElems);
});
</script>
</body>
</html>