-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1009 lines (1006 loc) · 44.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>LordGhostX Timeline</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css">
</head>
<body>
<div class="container">
<div class="text-center">
<h4>LordGhostX Timeline</h4>
<p>Welcome to my Timeline, nothing fancy here. It's more like a diary where I dump stuff because I don't want to forget it.</p>
</div>
<div class="row">
<div class="col-md-12">
<div class="main-timeline">
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2002</span>
<div class="timeline-content">
<h5 class="title">March 23</h5>
<p class="description">
He who would be referred to as <strong>The Lord of Ghosts</strong> | <strong>Everyone's neighborhood ghost</strong> was born
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2015</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Wrote my first program with Windows Batch Scripting
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2016</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
Compiled <strong>Hello World</strong> in C++ using Visual Studio 2010
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2016</span>
<div class="timeline-content">
<h5 class="title">July</h5>
<p class="description">
Compiled <strong>Hello World</strong> in C# using Visual Studio 2013
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2016</span>
<div class="timeline-content">
<h5 class="title">August</h5>
<p class="description">
Started Web Development with HTML & CSS thanks to TheNewBoston
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2016</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Launched my first PC game with C# & Unity3D game engine
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2017</span>
<div class="timeline-content">
<h5 class="title">February</h5>
<p class="description">
The "Blender Artists" community was born & I made my first 3D model with Blender3D
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2017</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
Started venturing into Cyber Security & Penetration Testing
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2017</span>
<div class="timeline-content">
<h5 class="title">June</h5>
<p class="description">
Installed & used the Linux Operating System for the first time (Kali)
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2017</span>
<div class="timeline-content">
<h5 class="title">July - November</h5>
<p class="description">
Language Learning Rush (Jumping from one programming language to another), grabbed Python, PHP, JavaScript, Ruby, SQL, Brainfuck, C, JQuery, Java, Swift, and others I can't recall
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2017</span>
<div class="timeline-content">
<h5 class="title">August</h5>
<p class="description">
Created my first blog, which was named Greyhatcommunity, and a telegram channel that grew over 10K members
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2017</span>
<div class="timeline-content">
<h5 class="title">August</h5>
<p class="description">
Created my first programming language (GhostScript), which I built upon Ruby with the simplicity of Python aimed at programming beginners
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2017</span>
<div class="timeline-content">
<h5 class="title">September</h5>
<p class="description">
Became a founding father of the SoloLearn Nigeria community (SLN)
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2017</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Discovered & reported my first security vulnerability to Google. It was a flaw that allowed the bypassing of 2-factor authentication of Google products on android
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2018</span>
<div class="timeline-content">
<h5 class="title">January</h5>
<p class="description">
Went into the world of Cryptocurrency & Blockchain
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2018</span>
<div class="timeline-content">
<h5 class="title">February</h5>
<p class="description">
Built PUMMP3r 1.0 with Python, which was a Cryptocurrency P&D bot
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2018</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
Released the first version of <a href="https://github.com/LordGhostX/HashDB">HashDB (formally JnDB)</a>, which is a lightweight NoSQL database management system built with Python
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2018</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
First time I made money with programming. Sold PUMMP3r 2.0 for 0.1 BTC ~ $800
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2018</span>
<div class="timeline-content">
<h5 class="title">May - December</h5>
<p class="description">
Learning about cryptocurrency trading, forex and built Niggrix ~ an automated cryptocurrency trading robot, trading backtesting algorithms, and EA systems with MQL4
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2018</span>
<div class="timeline-content">
<h5 class="title">June - July</h5>
<p class="description">
Built and released a ransomware (GhostCrypt) & graduated from High School at 16
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2018</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Trained my first machine learning model with Azure ML Studio
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2018</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Discovered a security vulnerability in PayStack & Flutterwave, which allowed an attacker to intercept and tamper transactions making the payment processor systems read a successful transaction when nothing occurred
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2019</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Passion for Artificial Intelligence started through learning about Deep Learning & DSN IndabaX Program
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2019</span>
<div class="timeline-content">
<h5 class="title">May</h5>
<p class="description">
Got my first programming gig, it was to develop a website for a client, got paid ₦40,000
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2019</span>
<div class="timeline-content">
<h5 class="title">July</h5>
<p class="description">
Joined DSN through their Python & Machine Learning Class for pre-uni students
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2019</span>
<div class="timeline-content">
<h5 class="title">June</h5>
<p class="description">
Attended my first tech hackathon
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2019</span>
<div class="timeline-content">
<h5 class="title">September</h5>
<p class="description">
Gave a presentation at POIC 2019 to over 5000 attendees (Largest audience ever)
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2019</span>
<div class="timeline-content">
<h5 class="title">September</h5>
<p class="description">
Became a DSC Unilag Core team member for the 2019/2020 session
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2019</span>
<div class="timeline-content">
<h5 class="title">October</h5>
<p class="description">
Built a web app with Django and Tensorflow, which helps medical practitioners diagnose patients faster and quicker.
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2019</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Qualified to attend the 2019 DSN Data Science Bootcamp
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">February</h5>
<p class="description">
Was opportuned to attend the launch of the Google Hub in Lagos, Nigeria
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">February</h5>
<p class="description">
Attended the first-ever Open Source Festival in Africa
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Was a participant at the maiden FSI hackathon, GLH hackathon, and CCHub Data hackathon
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
Became the Chief Technical Officer (CTO) of CleanPick Waste Management Startup
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
Wrote my first technical article on my <a href="https://lordghostx.hashnode.dev/">Hashnode</a> blog
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">May</h5>
<p class="description">
Launched <a href="https://github.com/LordGhostX/animeX-v2">v2 of animeX</a> with even better features
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">June</h5>
<p class="description">
Made my first seven digits in NGN and got myself a Macbook Pro, Samsung A71, and many others
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">July</h5>
<p class="description">
Gave a talk at Flaskcon, which is an international conference for the Flask community
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">August</h5>
<p class="description">
Created a miniature cryptocurrency remittance hitting $1,000 in volume in the first month
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">August</h5>
<p class="description">
Joined the 2020/2021 DSC Unilag Core Team
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">August</h5>
<p class="description">
Created a telegram bot for monitoring developer job listings and got 900+ users after its launch <a href="https://t.me/devjobhub">https://t.me/devjobhub</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">September</h5>
<p class="description">
Built AnimeHive, which is a telegram bot for downloading anime right from telegram, also provides recommendations and info about an anime <a href="https://t.me/animehive_bot">https://t.me/animehive_bot</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">September</h5>
<p class="description">
Become a core team member of the technicalities team at OtakuTV, which is the biggest anime community in Nigeria
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">October</h5>
<p class="description">
Helped the team at Telos Blockchain setup their airdrop system, which managed over 35K users (currently the biggest app I maintain)
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">October</h5>
<p class="description">
Became an Ambassador at <a href="https://auth0.com">Auth0</a>, which is a company dedicated to web security and authentication (I'm a digital superman 😎🤩)
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Gave a talk at the first-ever Cybersecurity themed DSC event in Africa
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Became an Ambassador at <a href="https://pettysave.com">PettySave</a>, which is a fintech helping Nigerians save and Invest money
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Signed my first paid technical writing contract with a USA based company - <a href="https://dev.to/lordghostx/building-a-telegram-bot-with-python-and-fauna-494i">Fauna</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Gave a talk on Technical Writing at DSC Federal Polytechnic Bida. You can find slides and Youtube recordings <a href="https://twitter.com/LordGhostX/status/1343865324404355072?s=20">here</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2020</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Released my 2020 <a href="https://twitter.com/LordGhostX/status/1344670863182983171?s=20">year in review</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">February</h5>
<p class="description">
Was featured in <a href="https://twitter.com/dev_chronicles/status/1361737972727611397?s=21">Developer Chronicles podcast</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">February</h5>
<p class="description">
Was featured in <a href="https://twitter.com/maryamcodes/status/1364528064579973120?s=21">GEN-TECH podcast</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">February</h5>
<p class="description">
Was featured on <a href="https://twitter.com/lordghostx/status/1365006940636672002?s=21">Fauna Community Spotlight</a> for open-source contributions made to the company
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Became the Open Source Africa (OSCA) <a href="https://twitter.com/lordghostx/status/1374803062020317184?s=21">Chapter Lead for Yaba</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Got my article featured and published on <a href="https://www.git-tower.com/learn/curiouscat-with-python-and-fauna/">Git Tower</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
Was awarded the "Ambassador of the Month" award at Auth0
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">June</h5>
<p class="description">
Became a <a href="https://blog.logrocket.com/author/solomonesenyi/">LogRocket</a> author
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">July</h5>
<p class="description">
Won the <a href="https://www.unicornmaking.com/solo-funds-hackathon/">SoLo Funds Hackathon</a> hosted by Unicorn
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">August</h5>
<p class="description">
Won the <a href="https://www.unicornmaking.com/boardroom-one-hackathon/">BoardRoom One Hackathon</a> hosted by <a href="https://www.linkedin.com/posts/semicolonafrica_mcm-hackathon-activity-6838105955331317760-msLf">Unicorn</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">September</h5>
<p class="description">
MongoDB <a href="https://github.com/mongodb/mongo-go-driver/pull/737">merged my PR</a> into their Golang driver repository
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">September</h5>
<p class="description">
Became a DSC Unilag Core team member for the 2021/2022 session
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">October</h5>
<p class="description">
Received <a href="https://twitter.com/LordGhostX/status/1447616443713998849">swags from MongoDB</a> for my community contributions
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Got my first ever full-time role at a US-based fintech + blockchain company
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Gave a talk at <a href="https://gdg.community.dev/events/details/google-gdg-abeokuta-presents-devfest-abeokuta-2021">DevFest Abeokuta</a>, first time travelling by train too
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2021</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Released my 2021 <a href="https://twitter.com/LordGhostX/status/1476351288099147778?s=20">year in review</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">February</h5>
<p class="description">
Won the <strong>Best use of payments product</strong> award category at the <a href="https://stitch.money/hackathon/">Stitchathon 2022 Hackathon</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Became a full-time Technical Writer at <a href="https://unstoppabledomains.com">Unstoppable Domains</a> - a web3 company that's building decentralized digital identities for the world with NFT domains
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Purchased my first <a href="https://twitter.com/LordGhostX/status/1502054958224523265?s=20&t=Qn8fribItlrG9LYKgVAjOg">NFT domain</a> from Unstoppable Domains
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Gave a talk at the <a href="https://twitter.com/LordGhostX/status/1506953309336313858?s=20&t=Qn8fribItlrG9LYKgVAjOg">biggest tech conference in Africa</a> - <a href="https://oscafest22.sched.com/event/yVnI">Open Source Festival
2022</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
Minted my <a href="https://etherscan.io/tx/0x439861a4e7770ef39edd4695c01860a0e48c3b9017d5952189b3649edf2b161b">first NFT</a> - <a href="https://twitter.com/LordGhostX/status/1511518541937360899">Los Muertos World</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
Sold my <a href="https://twitter.com/LordGhostX/status/1513208034796916739">first NFT</a> for 0.5 ETH ~ $1,647
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">May</h5>
<p class="description">
Sold my <a href="https://twitter.com/LordGhostX/status/1523124421279461377?s=20&t=sUnhr7DvshI1-vLkrGbxLg">first NFT on the Solana blockchain</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">June</h5>
<p class="description">
First time flying in a plane, also toured the city of Abuja
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">July</h5>
<p class="description">
I got interviewed by the <a href="https://twitter.com/GrowIntoTech/status/1543881419579064322?s=20&t=pnEVaaR926q-LrsK5PH7YQ">Grow Into Tech</a> team
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">August</h5>
<p class="description">
<a href="https://twitter.com/LordGhostX/status/1563311254055567360?t=_2bqgnqhv14EWnVlY_zIdA&s=19">Got promoted</a> at Unstoppable Domains 6 months after I joined the company
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">September</h5>
<p class="description">
First time going on a road trip, also toured the city of Asaba
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">October</h5>
<p class="description">
Spoke at 5 events on <a href="https://bit.ly/open-source-talk">Open Source and Hacktoberfest</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">October</h5>
<p class="description">
Created an investment syndicate with an annual capital of $388.8K
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
First time flying out of Nigeria, also toured the city of Nairobi, Kenya
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Got my first car ~ Hyundai Santa Fe
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Got another promotion at Unstoppable Domains 9 months after I joined the company
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Planned and organized <a href="https://twitter.com/garrihangout">Garri Hangout 1.0</a> in less than a week, got over 300 people to attend, and raised ₦642,000 in sponsorships
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2022</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Released my 2022 <a href="https://twitter.com/LordGhostX/status/1609123395081310208?s=20&t=v9fNZmX-_uHGLj_2SRFv6w">year in review</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">January</h5>
<p class="description">
My team got laid off from Unstoppable Domains
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">February</h5>
<p class="description">
Got another car ~ Ford Edge Limited
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Made significant progress to my 2018 project (Niggrix) and started building an MVP
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">March</h5>
<p class="description">
Joined the <a href="https://www.stackshift.com">Stack Shift dWeb fellowship</a> (Zeta) cohort
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">April</h5>
<p class="description">
Became a full-time Technical Writer at <a href="https://waku.org">Status/Waku</a> - a web3 project that's uncompromising web3 communication at scale
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">May</h5>
<p class="description">
Launched the MVP of my research project (Trade Maven) on a live portfolio
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">June</h5>
<p class="description">
Spoke at the biggest tech event in Ilorin ~ <a href="https://twitter.com/LordGhostX/status/1664988980855668739?s=20">Career Fest</a> to over 2000 attendees
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">July</h5>
<p class="description">
Raised over $50,000 in pledges for a <a href="https://twitter.com/LordGhostX/status/1680099420275109888?s=20">project idea</a> I shared with friends in less than 24 hours
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">August</h5>
<p class="description">
Took time to visit and tour the city of Port Harcourt, Nigeria and Kigali, Rwanda
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">September</h5>
<p class="description">
Concluded my <a href="https://x.com/LordGhostX/status/1708147399644860608?s=20">raising round at $90,000</a> for a project (Trade Maven) I originally targeted to raise $30,000.
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">October</h5>
<p class="description">
Got yet another car ~ Ford Edge Limited. Had to write off the previous because of an accident
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">November</h5>
<p class="description">
Took time to visit and tour the cities of Enugu and Nsukka, spoke at <a href="https://x.com/LordGhostX/status/1723335006792114385?s=20">Polygon Dev Conference</a> too
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Designed a modern-day chess with an 11x11 grid and modified game rules named <a href="https://x.com/LordGhostX/status/1735313449654112588?s=20">Operation BattleGrid: Strategic Frontiers</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Built a peer-to-peer, private, permissionless, and decentralized communication protocol called <a href="https://x.com/LordGhostX/status/1741129443194634748?s=20">GhostNet</a>
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-icon"><i class="fa fa-rocket"></i></div>
<span class="year">2023</span>
<div class="timeline-content">
<h5 class="title">December</h5>
<p class="description">
Released my 2023 <a href="https://x.com/LordGhostX/status/1741544247763796286?s=20">year in review</a>
</p>