forked from Cloudlordd/Cloudlord-and-pals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
studentdata.json
2002 lines (1765 loc) · 87.5 KB
/
studentdata.json
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
{
"data": {
"students": [
{
"id": 0,
"stuId": 3374,
"name": "Adeyemi Buhari",
"track": "Cloud Engineering",
"circle": 145,
"img": "https://avatars.githubusercontent.com/u/62425852?s=400&u=157c27b3c52cfcadb6c2c5e8513b7ad897e7fc5a&v=4",
"description": {
"intro": "There is no cloud. It’s just someone else’s computer",
"introdetails": "I've been obsessed with the idea of using software to solve practical problems since I wrote my first program in Qbasic and manipulated it to produce the desired output. I am passionate about solving the never-ending puzzle that is software engineering. I believe in the power of programming to change and improve people's lives all over the world. Adeyemi Buhari Opeyemi is a Junior Web Developer who has worked in the frontend team of some amazing organizations. Design thinking, problem solving, communication, education, and training are all areas in which I excel. If you are a company looking for a web presence or an employer looking to hire, please contact me here. In previous years, I had the opportunity to intern with TIIDELAB, an organization that assists passionate students and graduates in developing their skills in software engineering, as well as providing softskills with full curriculum to assist fellows in building a public profile. Moving forward on my journey, I decided to focus on becoming a world class cloud engineer in the coming years, assisting organizations to scale applications, manage resources, provide server security, and collaborate with in-house software engineering teams to negotiate seamless ways to provide and scale applications. I am currently studying cloud engineering at Altschool Africa, a recognized institution in Africa and beyond. Altschool Africa is for individuals looking to gain technical skills and kickstart a career in Software Engineering."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/adeyemi-buhari-opeyemi-3aa4781b5/",
"github": "https://github.com/buhari44",
"twitter": "https://twitter.com/Cloud_Lordd",
"portfolio": "",
"slackHandle": "cloudlord"
},
"experience": {
"first": "FrontEnd Engineer Intern @TIIDELAB",
"second": "Program Manager @Novustack",
"third": ""
},
"project": {
"first": {
"projectname": "FORBES",
"projectdescription": "A platform that was built on forbes api,it display and give extensive informations on current richest folks in the world",
"projectlink": "https://afrikaforbes.netlify.app/"
},
"second": {
"projectname": "Box-Monie",
"projectdescription": "A financial platform that allow users to contibute and take turns by creating cohort that contain certain number of user.Still in progress.",
"projectlink": "http://boxmonie.com/"
},
"third": {
"projectname": "The-Life-Changer",
"projectdescription": "The life changer is a platform where 2021 Jamb Applicants can find Questions and Answers to the Life Changer Novel.",
"projectlink": "https://savethenextjambites.netlify.app/"
}
}
},
{
"id": 1,
"stuId": 2557,
"name": "Funmilayo Fagoyinbo",
"track": "Cloud Engineering",
"circle": 361,
"img": "https://github.com/Adephumie.png",
"description": {
"intro": "Problem solving is the most important aspect of my personality. I also enjoy helping people figure things out.",
"introdetails": "Having spent some years in the pharmaceutical industry as a Medical Sales Representative, starting a family, and thinking of the way forward, I decided to tap into my love for IT."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/funmifago/",
"github": "https://github.com/Adephumie",
"twitter": "https://twitter.com/funmifago",
"portfolio": "https://github.com/Adephumie",
"slackHandle": "Adefunmilayo"
},
"project": {
"first": {
"projectname": "Webpage",
"projectdescription": "I did this project to test out my knowledge on flexbox, indexing, and positioning.",
"projectlink": "https://adephumie.github.io/webpage/"
},
"second": {
"projectname": "Assignment",
"projectdescription": "My first AltSchool Assignment. I remember staying awake just to understand CSS and I was eventually able to pull of the website. That encouraged me to work on more projects.",
"projectlink": "https://adephumie.github.io/AltSchoolfirstassignment/"
},
"third": {
"projectname": "A Landing page",
"projectdescription": "I built this to learn how to implement a Hero page on a webiste. I learnt how to implement positioning and Z-index in my codes.",
"projectlink": "https://adephumie.github.io/landingpage/"
},
"fourth": {
"projectname": "Blog",
"projectdescription": "Worked on this project when I hadn't gained in-depth knowledge of CSS.",
"projectlink": "https://adephumie.github.io/MyBlog/"
}
},
"education": {
"first": "AltSchool Africa School of Engineering.",
"second": "OSC COllege of Fashion",
"third": "Obafemi Awolowo University, Ile-Ife."
}
},
{
"id": 2,
"stuId": 2098,
"name": "Ayibakepreye Omusuku",
"track": "Frontend Engineering",
"circle": 106,
"img": "https://avatars.githubusercontent.com/u/104953950?s=400&u=6aeabe9e947a409d87969eca26573c4f86a8a910&v=4",
"description": {
"intro": "Being creative in terms of problem-solving, effective-communicator and result oriented, i pride myself in delivering the best on each project i am affiliated with",
"introdetails": "I'm a Software Engineer based in Lagos Nigeria who is currently enrolled as a Sidehustle intern. I specialize in building exceptional digital experiences with clean designs and thoughtful interactions. My focus is on creating engaging, acessible and performant interfaces for humans as well as contributing in building useful open-source projects. I have a B.Eng in Biomedical Engineering from All Nations University and i am currently enrolled for two diplomas and a certification program in software engineering and REact JS from: AltSchool Africa, ALX Africa and Side Hustle."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/ayibakepreye-omusuku-234554172/",
"github": "https://github.com/PreyeO",
"twitter": "https://twitter.com/pomusuku",
"portfolio": "",
"slackHandle": "AYIBAKEPREYE OMUSUKU"
},
"experience": {
"first": "FrontEnd Engineer Intern @Sidehustle",
"second": "",
"third": ""
},
"project": {
"first": {
"projectname": "TO-DO's",
"projectdescription": "A platform that was built to help make a daily to do list. The user marks out any goal achieved on the list",
"projectlink": "https://preyetodos.netlify.app/"
},
"second": {
"projectname": "Stop-Watch",
"projectdescription": "A counter watch use during games to count down time.",
"projectlink": "https://preyesproject.netlify.app/"
}
}
},
{
"id": 3,
"stuId": 1844,
"name": "Lydia Ojoawo",
"track": "Backend Engineering",
"circle": 237,
"img": "https://github.com/Lydia02.png",
"description": {
"intro": "Problem solving, learning, and documentating my journey."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/lydia-ojoawo/",
"github": "https://github.com/Lydia02",
"twitter": "https://twitter.com/shubby_boo",
"portfolio": "https://github.com/Lydia02",
"slackHandle": "Lydia Ojoawo"
},
"project": {
"first": {
"projectname": "Portfolio",
"projectdescription": "I did this project to test out my knowledge in html, css, and Javascript.",
"projectlink": "https://lydiaojoawo.netlify.app/"
}
},
"education": {
"first": "AltSchool Africa School of Engineering.",
"second": "Obafemi Awolowo University, Ile-Ife."
}
},
{
"id": 4,
"stuId": 5337,
"name": "Edikan Ekanem",
"track": "Frontend Engineering",
"circle": 80,
"img": "https://avatars.githubusercontent.com/u/84722535?v=4",
"description": {
"intro": "I'm a Software Engineer, Animation & Voice Over Artist, and Freelancer.",
"introdetails": "From an early age I have always been deeply interested in computing. In my opinion nothing on the planet can measure the exponential growth and excitement in the computing industry, an industry which I am proud to be a part of, particularly Software Engineering. With the right knowledge and skills, everything can be automated, and manual procedures can be eliminated. This is my motivation. In the face of an unpredictably evolving world, I want to create systems (apps, websites) that are efficient, dependable, and safe."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/edikan-ekanem-343ab41b1/",
"github": "https://github.com/EdisCode",
"twitter": "https://twitter.com/didi_ekanem",
"portfolio": "https://ediscode.github.io/edikanekanem/",
"slackHandle": "Edikan Ekanem"
},
"experience": {
"first": "FrontEnd Engineer Intern @Greystone Limited",
"second": "Product Manager @Jenieks Global"
}
},
{
"id": 5,
"stuId": 4536,
"name": "Awosise Oluwaseun",
"track": "Backend Engineering",
"circle": 271,
"img": "https://avatars.githubusercontent.com/u/66667958?v=4",
"description": {
"intro": "Passionate about how and why it works that way",
"introdetails": "Having taken a little delve into the world of genetics and bioinformatics, I love for software engineering was spawned. From using some of the biological tools to actually wanting to know what goes on behind the scene and her am I wanting to be able to build and design what goes on behind the scene of most of these biological tools."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/oluwaseun-awosise/",
"github": "https://github.com/jhhornn",
"twitter": "https://twitter.com/jhhornn",
"portfolio": "",
"slackHandle": "Oluwaseun"
},
"experience": {
"first": "",
"second": "",
"third": ""
},
"project": {
"first": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
},
"second": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
}
}
},
{
"id": 6,
"stuId": 4804,
"name": "Adeniyi Olanrewaju",
"track": "Backend Engineering",
"circle": 273,
"img": "https://github.com/engrmarkk.png",
"description": {
"intro": "Being creative is an aspect of my personality. I love to brainstorm on special ways to achieve a task.",
"introdetails": "I am a tech enthusiast with a high interest in software development, I wish to a great developer in few years time, so i took this chance to learn and work towards in achievung my dream in the tech world!."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/iamengrmark/",
"github": "https://github.com/engrmarkk",
"twitter": "https://twitter.com/iamengrmark",
"portfolio": "",
"slackHandle": "Adeniyi Olarewaju"
},
"project": {
"first": {
"projectname": "Assignment",
"projectdescription": "My first AltSchool Assignment. The development of a static unresponsive portfolio along with the deisgn of a non-functional calculator.",
"projectlink": "https://ALTSCHOOLASSIGNMENT01.engrmark.repl.co"
},
"second": {
"projectname": "Webpage",
"projectdescription": "I did this project to test out my knowledge on media query.",
"projectlink": "https://New-one.engrmark.repl.co"
},
"third": {
"projectname": "A Quiz platform",
"projectdescription": "I designed this implementing my understanding of Javascript. A quiz platform where you get to answer 10 questions in a minute, you get your result displayed to you if you fail to finish up before 1 min. It was fun to code.",
"projectlink": "https://quiz-1.engrmark.repl.co"
},
"fourth": {
"projectname": "A Qoute Generator",
"projectdescription": "I had to understand how Promise, Async/Await workd before moving to my track, so i was able to design a quote generator with what i learnt from it.",
"projectlink": "https://Quote-Gen.engrmark.repl.co"
}
},
"education": {
"first": "AltSchool Africa School of Engineering.",
"second": "Ekiti State University, Ado Ekiti",
"third": "United Universal Comprehensive College, Governor's Road, Ikotun, Lagos State."
}
},
{
"id": 7,
"stuId": 3075,
"name": "Ojoachele Onuh",
"track": "Frontend Engineering",
"circle": 139,
"img": "https://github.com/Achele.png",
"description": {
"intro": "I'm a software engineer, fashion designer and an Entrepreneur",
"introdetails": "I enjoy implementing user interface designs using languages like HTML, CSS, JavaScript"
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/achele/",
"github": "https://github.com/Achele",
"twitter": "https://twitter.com/ojoachele",
"portfolio": "https://github.com/Achele",
"slackHandle": "Onuh Ojoachele"
},
"project": {
"first": {
"projectname": "Basketball-Scoreboard",
"projectdescription": "This was my first javascript project, built from scracth by me. It shows a score board of both the home and guest team in a basketball game, number of fouls commited by both teams, and a new game button that resets everything back to zero for the commencement of a fresh game. ",
"projectlink": "https://achele.github.io/Basketball-Scoreboard-Project/"
},
"second": {
"projectname": "Metric-Imperial-unit-Converter",
"projectdescription": "This project converts to Metres/Feet, Litres/Gallons and Kilogram/Pounds.",
"projectlink": "https://achele.github.io/Metric-Imperial-Unit-Converter/"
},
"third": {
"projectname": "product-preview-card-component",
"projectdescription": "I built this to learn how to implement a mobile-first workflow. Users should be able to view the optimal layout depending on their device's screen",
"projectlink": "https://savethenextjambites.netlify.app/"
}
}
},
{
"id": 8,
"stuId": 4858,
"name": "Adedolapo Olutuyo",
"track": "Cloud Engineering",
"circle": 409,
"img": "https://avatars.githubusercontent.com/u/85107972?v=4",
"description": {
"intro": "Passionate about eventually creating video games that tell a story and playing professional football.",
"introdetails": ""
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/adedolapo-o-968841b6/",
"github": "https://github.com/tuyojr",
"twitter": "https://twitter.com/tuyojjr",
"portfolio": "",
"slackHandle": "tuyo"
},
"experience": {
"first": "",
"second": "",
"third": ""
},
"project": {
"first": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
},
"second": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
}
}
},
{
"id": 9,
"stuId": 4003,
"name": "Robert Adoga",
"track": "Frontend Engineering",
"circle": 45,
"img": "https://avatars.githubusercontent.com/u/67406036?s=400&u=4957631083a3dbb56376f698fb8c420c3195635f&v=4",
"description": {
"intro": "I believe in reality, Also, very creative in solving problem",
"introdetails": "I'm a Software Engineer based in Benin, Edo State Nigeria. I specialize in biulding software to user satisfaction , with clean UI. My focus is on creating engaging, accessible and performant interfaces for humans as well as contributing in building useful open-source projects. I am currenting running a degree in University of Cross River State (UNICROSS) Depertment of computer Science and currently enrolled for a diploma and a certification program in software engineering and REact JS from: AltSchool Africa."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/robertadoga",
"github": "https://github.com/lilbobb",
"twitter": "https://twitter.com/BobAdoga",
"portfolio": "",
"slackHandle": "Robert Adoga U."
},
"experience": {
"first": "",
"second": "",
"third": ""
},
"project": {
"first": {
"projectname": "leadTracker",
"projectdescription": "A Chrome Extension that keep track of url and save them for reference",
"projectlink": "https://stellular-pie-5c56fb.netlify.app/"
},
"second": {
"projectname": "Metric/Imperical Unit Conversion",
"projectdescription": "A Unit converter that converts length, volumn and mass.",
"projectlink": "https://lucent-chimera-8fe115.netlify.app/"
}
}
},
{
"id": 10,
"stuId": 2755,
"name": "Sunday JIMOH",
"track": "Backend Engineering",
"circle": 248,
"img": "https://avatars.githubusercontent.com/u/31360475?v=4",
"description": {
"intro": "I am the Backend Dude. I am geared towards building high- performing and innovative products following best practices and industry standards.",
"introdetails": "Don't stress it. Just encapsulate it. I am proud to be a part of this Software Engineering Program.I am geared towards building high- performing and innovative products following best practices and industry standards. I’m passionate about solving problems, With the right knowledge and skills, everything can be automated, and manual procedures can be eliminated. This is my motivation. In the face of an unpredictably evolving world, I want to create systems (apps, websites) that are efficient, dependable, and safe. I am currently studying backend engineering at Altschool Africa, a recognized institution in Africa and beyond. Altschool Africa is for individuals looking to gain technical skills and kickstart a career in Software Engineering."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/sunday-jimoh-1195b8173/",
"github": "https://github.com/sunday4me",
"twitter": "https://twitter.com/sunnet4me",
"portfolio": "",
"slackHandle": "Sunday4me"
}
},
{
"id": 11,
"stuId": 9890,
"name": "Kareem Opeyemi",
"track": "Frontend Engineering",
"circle": 153,
"img": "https://avatars.githubusercontent.com/u/88961549?v=4",
"description": {
"intro": "Frontend is beautiful",
"introdetails": "Technology is fascinating and it has permeated every sector of every economies in the world. The world of frontend appeals to me and I am taking it one console.log(), one display flex and one div tag at a time"
},
"socialmedia": {
"linkedin": "",
"github": "https://github.com/talentlessDeveloper",
"twitter": "https://twitter.com/talentless_dev",
"portfolio": "",
"slackHandle": "Ope Kareem"
},
"experience": {
"first": "",
"second": "",
"third": ""
},
"project": {
"first": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
},
"second": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
}
}
},
{
"id": 12,
"stuId": 1699,
"name": "Abdulbasit Yusuf",
"track": "Frontend Engineering",
"circle": 9,
"img": "https://avatars.githubusercontent.com/u/53506936?s=400&u=87a35d9d2de9c191a560d23e501acb83b25103b0&v=4",
"description": {
"intro": "WOrld Class Software Engineer in Training",
"introdetails": "Highly motivated software engineer in training with a flair for developing interactive and responsive websites, skilled with basic HTML, CSS and JavaScript"
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/jideotetic/",
"github": "https://github.com/jideotetic",
"twitter": "https://twitter.com/habdulbasheet",
"portfolio": "https://jideotetic.github.io",
"slackHandle": "Yusuf Abdulbasit"
},
"experience": {
"first": "",
"second": "",
"third": ""
},
"project": {
"first": {
"projectname": "Cloudlord-and-pals",
"projectdescription": "",
"projectlink": ""
},
"second": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
}
}
},
{
"id": 13,
"stuId": 4101,
"name": " Ayomide Victor",
"track": "Front-End Engineering",
"circle": 168,
"img": "",
"description": {
"intro": "Problem solving is the most important aspect of my personality. I enjoy thinking outside the box and always listen when others speak",
"introdetails": "I'm a Software Engineer and Front-end developer who currently interns as a Software Engineer at ALX AFRICA. I'm passionate about sharing knowledge, documentation, web engineering, implementing and converting attractive designs, prototypes, and wireframes made by the UI/UX team while ensuring responsiveness for mobile, web, and all devices.."
},
"socialmedia": {
"linkedin": "HTTPS://WWW.LINKEDIN.COM/IN/AYOMIDE-VICTOR-A7918B1B0/",
"github": "https://github.com/midevictor",
"twitter": "https://twitter.com/mide_victor",
"portfolio": "",
"slackHandle": "Ayomide Victor"
},
"experience": {},
"project": {
"first": {
"projectname": "Chat_Me App",
"projectdescription": "I built a responsive social media clone where I made use of both Facebook and Instagram interfaces. This was a personal project in which I was able to design an excellent user interface, implement the dark and light mode theme, and make it possible for users to search for friend requests sent.",
"projectlink": "https://midevictor.github.io/ChatMe/"
},
"second": {
"projectname": "GitHub Finder",
"projectdescription": "The logic behind this project was to create an alternative solution to help users around the world search for different GitHub users with their repositories. GitHub Finder provides instant feedback on any keyword entered into the search key by fetching all pieces of information from the Github API and providing instant results.",
"projectlink": "https://midevictor.github.io/GitHub-Finder-/"
},
"third": {
"projectname": "Pay-Me Admin Dashboard",
"projectdescription": "I built a responsive admin dashboard that allows users to manage their company's payroll, manage employees, and manage their company's bank accounts. This was a personal project in which I was able to design an excellent user interface, implement the dark and light mode theme. ",
"projectlink": "https://midevictor.github.io/PayMe-Administration-Dashboard/"
}
}
},
{
"id": 14,
"stuId": 4754,
"name": "Jamilu Jibrilla",
"track": "Frontend Engineering",
"circle": 188,
"img": "https://avatars.githubusercontent.com/u/60932535?v=4",
"description": {
"intro": "Hello, i am Jamil. A frontend developer",
"introdetails": "I am a software engineering student and also a frontend web developer with experience building fast and reliable apps using html, css, javascript, react, react-redux, tailwind, git and github."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/mwlite/in/jamilu-jibrilla-575441211",
"github": "https://github.com/jamilu-jibrilla",
"twitter": "https://twitter.com/Jb_jameel?t=hxPI15fFFDf66MPX20UDiQ&s=09",
"portfolio": "https://jamilu-jibrilla.github.io/portfolio/",
"slackHandle": "Jamilu JIbrilla"
},
"experience": {
"first": "",
"second": "",
"third": ""
},
"project": {
"first": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
},
"second": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
}
}
},
{
"id": 15,
"stuId": 5327,
"name": "Titilola Shittu",
"track": "Frontend Engineering",
"circle": 79,
"img": "https://avatars.githubusercontent.com/u/81013123?v=4",
"description": {
"intro": "Biochemist, Content writer, Frontend engineering student",
"introdetails": "Tech enthusiast passionate about learning tech stacks to create technology and elevate people. I'm also a freelance writer specialized in the blockchain niche, I write about NFTs, DeFi, Web3. My interest is connecting with more web developers and creating awesome user experiences."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/titilolashittu",
"github": "https://github.com/lhorla",
"twitter": "https://twitter.com/errbodylovslola",
"portfolio": "",
"slackHandle": "lhorla"
},
"experience": {
"first": "Social media manager @AdsCentral",
"second": "Content writer @Inclide",
"third": "Contributing writer @OperaNewsNigeria"
},
"education": {
"first": "AltSchool Africa School of Engineering.",
"second": "Olabisi Onabanjo University, Ago Iwoye, Ogun State."
}
},
{
"id": 16,
"stuId": 3506,
"name": "Adisa Barakat Adekemi",
"track": "Backend Engineering",
"circle": 260,
"img": "https://ca.slack-edge.com/T03898UQN23-U039TQVU9UJ-c649a9a3cccf-512",
"description": {
"intro": "Problem solving is the most important aspect of my personality. I enjoy thinking outside the box and always listen when others speak",
"introdetails": "Transitioning into tech is one of my best decisions I've taken. I fell in love with tech in my last year in school. Coming from a non tech background and now catching up real quick is captivating. I am a software engineer, I love logical reasoning, solving problemms and making a change. I love to gain knowlege and I challenge myself to be the best version of myself. "
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/adekhemieadisa/",
"github": "https://github.com/Adekhemie",
"twitter": "https://twitter.com/adisa_adekhemie",
"portfolio": "",
"slackHandle": "Adekhemie"
},
"experience": {
"first": "Data Sccientist Intern @TechBridge Consulting"
},
"project": {
"first": {
"projectname": "Mini-portfolio",
"projectdescription": "I built a mini porfolio which comprises of my experience, a brief introduction about myself, education background, hobbies and the likes. It took some days before I could finish this project befoer I was just getting a hang of CSS ",
"projectlink": "https://Altschool-project.adisabarakat.repl.co"
},
"second": {
"projectname": "Responsive calculator",
"projectdescription": "I had to practice more on my Javascript so I decided to build this responsive calculator and as well fine tune my CSS knowledge",
"projectlink": "https://adekemi02.github.io/responsive-calculator/"
},
"third": {
"projectname": "Responsive Form Validation",
"projectdescription": "I built this responsive form validation to further broaden my knowledge of CSS and JavaScript. The form throws an error message if one field is not inputed or does not follow the proper format of the field.",
"projectlink": "https://Responsiveness-and-Media-Queries.adisabarakat.repl.co"
}
},
"education": {
"first": "AltSchool Africa School of Engineering.",
"second": "Yaba College of Technology"
}
},
{
"id": 17,
"stuId": 4137,
"name": "Adeola",
"track": "Front-End Engineering",
"circle": 171,
"img": "https://avatars.githubusercontent.com/u/62425852?s=400&u=157c27b3c52cfcadb6c2c5e8513b7ad897e7fc5a&v=4",
"description": {
"intro": "Software Engineer, Content Creator, and Communications Executive",
"introdetails": "Smooth, Steady, Secure User Interface"
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/adeolaadetunji",
"github": "https://github.com/TheDeola",
"twitter": "https://twitter.com/deolacodes",
"portfolio": "https://thedeola.netlify.app/",
"slackHandle": "TheDeola"
},
"experience": {
"first": "Consultant",
"second": "FrontEnd Engineer Intern",
"third": "Operations Manager"
},
"project": {
"first": {
"projectname": "Phonie",
"projectdescription": "A mini web app to detect the network carrier of all Nigerian phone numbers",
"projectlink": "https://phonie.netlify.app/"
},
"second": {
"projectname": "Box-Monie",
"projectdescription": "A platform that allow creatives to showcase and share their talent and portfolio.",
"projectlink": "https://sunnyside-main.netlify.app/"
},
"third": {
"projectname": "Color-Flipper",
"projectdescription": "A UI showcasing random primary and secondary colors.",
"projectlink": "https://thedeola-color-flipper.netlify.app/"
}
}
},
{
"id": 18,
"stuId": 2000,
"name": "Oloto Samson",
"track": "Backend Engineering",
"circle": 262,
"img": "https://avatars.githubusercontent.com/u/40104447?v=4",
"description": {
"intro": "I am the backend guy",
"introdetails": "Don't stress it. Just encapsulate it."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/oloto-samson/",
"github": "https://github.com/oloto",
"twitter": "https://twitter.com/olotosamson",
"portfolio": "",
"slackHandle": "Samguine"
},
"experience": {
"first": "",
"second": "",
"third": ""
},
"project": {
"first": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
},
"second": {
"projectname": "",
"projectdescription": "",
"projectlink": ""
}
}
},
{
"id": 19,
"stuId": 4884,
"name": "Abdulmuizz Abubakar",
"track": "Frontend Engineering",
"circle": 65,
"img": "https://avatars.githubusercontent.com/u/49520914?s=400&v=4",
"description": {
"intro": "A Frontend engineer",
"introdetails": "A tech enthusiast who focuses on solving problems and building products to improve the lives of users."
},
"socialmedia": {
"linkedin": "www.linkedin.com/in/abdulmuizzabubakar/",
"github": "https://github.com/MuizzBakar",
"twitter": "https://twitter.com/iam_bakar",
"portfolio": "",
"slackHandle": "Muizz Bakar"
},
"experience": {
"first": "Administrative Officer",
"second": "Project Administrator",
"third": "Client Service"
},
"project": {
"first": {
"projectname": "Bootstrap Website",
"projectdescription": "A project done with bootstrap 4, an animation library,animate css and wow js for the scroll reveal",
"projectlink": "https://muizzbakar.github.io/bootstrap-website/"
},
"second": {
"projectname": "Product Landing Page",
"projectdescription": "A simple product landing page",
"projectlink": "https://muizzbakar.github.io/product-landing-page/"
}
}
},
{
"id": 20,
"stuId": 2867,
"name": "Philemon Nwanne",
"track": "Cloud Engineering",
"circle": 364,
"img": "https://avatars.githubusercontent.com/u/108567784?v=4",
"description": {
"intro": "Cloud"
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/philnwanne/",
"github": "https://github.com/philemonnwanne",
"twitter": "https://twitter.com/#",
"portfolio": "https://github.com/philemonnwanne",
"slackHandle": "Philemon Nwanne"
},
"project": {
"first": {
"projectname": "",
"projectdescription": "",
"projectlink": "/"
}
},
"education": {
"first": "AltSchool Africa School of Engineering.",
"second": "Michael Okpara Federal University"
}
},
{
"id": 21,
"stuId": 3397,
"name": "Excel Nwachukwu",
"track": "Frontend Engineering",
"circle": 145,
"img": "https://avatars.githubusercontent.com/u/32638510?v=4",
"description": {
"intro": "I started with persistence and, now consistency has been the fuel leading me through",
"introdetails": "A self-taught Frontend Web Developer. I have experience building functional UI and frontend web applications. Over the course of my learning journey, I have grown comfortable working with a wide range of frontend technologies like: HTML5 | CSS/SASS | Bootrap5 | JavaScript. I wrote my first programmable code back in university but not until after graduation did I take it upon myself to really master the brains behind the magic intentionally. Over the past year, I been learning and practicing with different web technologies especially Javascript and I believe I am more than ready to take my career to a whole new phase. I strongly believe in the power of programming to change and improve people's lives through accessible and usable frontend products. I'm always on the lookout for possible opportunities to get even better and open to entry-level frontend engineering roles or internships, preferably remotely or on-premises."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/trillionclues-excel/",
"github": "https://github.com/trillionclues",
"twitter": "https://twitter.com/trillionclues",
"portfolio": "https://trillionclues.vercel.app/",
"slackHandle": "Excel"
},
"experience": {
"first": "Software Engineer Intern @alx_africa",
"second": "Frontend Developer Intern @SideHustle",
"third": "IT Support specialist"
},
"project": {
"first": {
"projectname": "web3 Drag n' Drop Game",
"projectdescription": "A drag and drop game that allows players to drag and drop their favourite cryptocurrencies into their respective market cap position with a button to verify the selection. Built using HTML5 Drag and Drop Api.",
"projectlink": "http://web3-drag-drop-game.vercel.app/"
},
"second": {
"projectname": "StreamIt",
"projectdescription": "A movie recommendation app that displays different list of movies accoridng to their respective genres, rating and other features like producers and watch time.",
"projectlink": "https://streamit-movie-app.vercel.app/"
}
}
},
{
"id": 22,
"stuId": 1586,
"name": "David Udo",
"track": "Backend Engineering",
"circle": 234,
"img": "https://avatars.githubusercontent.com/u/65337929?s=400&u=581247bf98945f211499778231e26b73ff576b27&v=4",
"description": {
"intro": "I want to be the best at what I do, make so much money and live a soft life.",
"introdetails": "I am a Backend Engineering Student at Altschool Africa training to become a top-tier Software Engineer. I am also a Mechanical Engineering student and just recently discovered my interest in software development. In addition to software engineering, I am learning data science with DataCamp to supplement my backend skills."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/david-udo-1713b3231",
"github": "https://github.com/davidudo",
"twitter": "https://twitter.com/_davidudo",
"portfolio": "https://elfin-quality-396.notion.site/David-Udo-s-Portfolio-3ce211c9e26c4b3da8cbf7a9e9c4d7f7",
"slackHandle": "David Udo"
},
"experience": {
"first": "Mechanical Engineering Intern @ Ibom Power Plant",
"second": "",
"third": ""
},
"project": {
"first": {
"projectname": "Advice Generator",
"projectdescription": "Frontend Mentor challenge.",
"projectlink": "https://davidudo.github.io/advice-generator/"
},
"second": {
"projectname": "Huddle",
"projectdescription": "Frontend Mentor challenge.",
"projectlink": "https://davidudo.github.io/huddle-website-01/"
},
"third": {
"projectname": "Fylo",
"projectdescription": "Frontend Mentor challenge.",
"projectlink": "https://midevictor.github.io/PayMe-Administration-Dashboard/"
}
}
},
{
"id": 23,
"stuId": 3351,
"name": "Lawrence Franklin",
"track": "Frontend",
"circle": 140,
"img": "https://res.cloudinary.com/dalu46/image/upload/v1660327695/dalu_zrfc1o.png",
"description": {
"intro": "Talk to me about JavaScript. I love OpenSource. Let's do DSA",
"introdetails": "I'm a frontend developer"
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/lawrence-franklin-chukwudalu-782687228/",
"github": "https://github.com/Dalu46",
"twitter": "https://twitter.com/iam_franklin10",
"portfolio": "",
"slackHandle": "Lawrence Franklin Chukwudalu"
},
"experience": {
"first": "FrontEnd Engineer Intern in my mind🥲",
"second": "Technical writer @Medusa",
"third": ""
},
"project": {
"first": {
"projectname": "CGPA Calculator",
"projectdescription": "A project for calculating CGPA results.",
"projectlink": "https://cgpa-calculator1.netlify.app"
},
"second": {
"projectname": "QR Code Generator",
"projectdescription": "An application that generates QR codes based on any text (including URLs) you pass to it.",
"projectlink": "https://qr-code-generator1.netlify.app"
},
"third": {
"projectname": "Random Advice Generator",
"projectdescription": "An application that generates ramdom advices.",
"projectlink": "https://my-advice-generator1.netlify.app"
}
}
},
{
"id": 24,
"stuId": 2678,
"name": "Anietie Akpanumoh",
"track": "Frontend Engineering",
"circle": 123,
"img": "https://avatars.githubusercontent.com/u/102967666?v=4",
"description": {
"intro": "I embrace lifelong learning and aspire to be the best in all I do, showing professional distinction.",
"introdetails": " I am a solution-oriented Front-End Developer and an adventurer with a professional background in IT Support and Network Security. I worked as an IT Support personnel for three years and developed an interest in Software Engineering. I am motivated by the opportunity that software development provides to positively impact the life of an individual and the community at large."
},
"socialmedia": {
"linkedin": "https://www.linkedin.com/in/anietieakpanumoh/",
"github": "https://github.com/AnietieAkpanumoh",
"twitter": "https://twitter.com/tukooldegreat",
"portfolio": "https://github.com/AnietieAkpanumoh?tab=repositories",
"slackHandle": "Anietie Akpanumoh"
},
"project": {
"first": {
"projectname": "A Landing page",
"projectdescription": "I practiced my knowledge of HTML, CSS, and media queries by creating this order summary landing page, a challenge on Frontendmentor. I also hosted the result on Netlify.",
"projectlink": "https://anietieakpanumoh.github.io/first-responsive-project-order-summary-using-css-grid/"
},
"second": {
"projectname": "A landing page",
"projectdescription": "I practiced my knowledge of HTML, CSS, and media queries by creating this 3-column preview card component landing page, a challenge on Frontendmentor",
"projectlink": "https://anietieakpanumoh.github.io/Preview-column-component/"
},
"third": {
"projectname": "SchoolStat - A simple dashboard for a tech school",
"projectdescription": "A simple dashboard for a tech school built together with my circle teammates in Altschool Africa. This project was to solidify what we had learned in HTML, CSS and JavaScript",
"projectlink": "https://anietieakpanumoh.github.io/Circle-123-SchoolStat/"
},
"fourth": {
"projectname": "A Landing page",