-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathcardDetails.json
1836 lines (1832 loc) · 79.2 KB
/
cardDetails.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
{
"cardDetails": [
{
"name": "Your Name",
"profession": "Your Profession",
"quote": "\"Your favourite quote\"</br> - Said By Me",
"twitter": "https://twitter.com",
"dribbble": "https://dribbble.com",
"behance": "https://behance.com",
"github": "https://github.com",
"linkedin": "https://linkedin.com",
"email": "mailto:[email protected]"
},
{
"name": "carlos saenz",
"profession": "Front-end Developer",
"quote": "\"love and dedication\"</br> - Said By Me",
"github": "https://github.com/carloss-saenzz",
"linkedin": "www.linkedin.com/in/carloss-saenzz",
};
{
"name": "Anushanga Kaluarachchi",
"profession": "Full Stack Developer",
"quote": "\"Do an one thing at a time\"</br> - Said By Me",
"github": "https://github.com/Anushanga2001",
"linkedin": "https://www.linkedin.com/in/anushanga-kaluarachchi-30969825b/",
"email": "anushanga2001@gmailcom"
},
{
"name": "Naman Singh Rana",
"profession": "Software Engineer || Beginner Open Source Contributor",
"quote": "\"Rule no. 1 Do not touch it. If it works\"</br> - Said By Me",
"twitter": "https://twitter.com",
"dribbble": "https://dribbble.com",
"behance": "https://behance.com",
"github": "https://github.com/namansinghrana",
"linkedin": "https://www.linkedin.com/in/naman-singh-rana-a54842319/",
"email": "mailto:[email protected]"
},
{
"name": "Mayur Tekale",
"profession": "Frontend Developer || Beginner Open Source Contributor",
"quote": "\"Code is like humor. When you have to explain it, it’s bad.\"</br> - Said By Cory House",
"twitter": "https://twitter.com/mayur_b_tekale",
"dribbble": "https://github.com/mayurr7",
"behance": "https://github.com/mayurr7",
"github": "https://github.com/mayurr7",
"linkedin": "https://www.linkedin.com/in/mayur-tekale-1540a023b",
"email": "mailto:[email protected]"
},
{
"name": "Amruth L p",
"profession": "Full-Stack Developer | MERN & Next.js Enthusiast | Java Solutions Developer | Published npm Package Author | Open Source Contributor",
"quote": "\"It's not a bug; it's an undocumented feature.\"</br> - Said by Anonymous",
"github": "https://github.com/AmruthLP12",
"linkedin": "https://linkedin.com/in/amruthlp",
"email": "mailto:[email protected]"
},
{
"name": "Usiwo Sonia Uyouyou",
"profession": "Frontend Developer || Beginner Open Source Contributor",
"quote": "\"Set Yourself On Fire And Let The Whole World Watch You Burn\"</br> - Said by John Wesley",
"twitter": "https://twitter.com/Uyouyou_S",
"github": "https://github.com/Uyouyou",
"linkedin": "https://linkedin.com/in/usiwosonia",
"email": "mailto:[email protected]"
},
{
"name": "Mohamed CHATR",
"profession": "Software Developer",
"quote": "\"Early to bed, early to rise, makes a man young, wealthy and wise.\"</br> - Said by Benjamin Franklin",
"twitter": "https://twitter.com/mo_chatr",
"dribbble": "https://dribbble.com/cbag",
"behance": "https://behance.com",
"github": "https://github.com/Mochatr",
"linkedin": "https://www.linkedin.com/in/mochatr/",
"email": "mailto:[email protected]"
},
{
"name": "Umar Haruna Adbullahi",
"profession": "Software Engineer",
"quote": "\"/have Faith\"</br> - Said By Allah",
"github": "https://github.com/umarbrowser",
"linkedin": "https://www.linkedin.com/in/umar-haruna-abdullahi/",
"email": "mailto:[email protected]"
},
{
"name": "Ahmed Edrees (edrovolt)",
"profession": "Full Stack Engineer",
"quote": "\"Do for this life as if you live forever, do for the afterlife as if you die tomorrow.\"</br> - Ali ibn Abi Talib",
"twitter": "https://x.com/EdroVolt",
"github": "https://github.com/EdroVolt",
"linkedin": "https://linkedin.com/in/edrovolt",
"email": "mailto:[email protected]"
},
{
"name": "Gabriel Luchita",
"profession": "Software Engineer",
"quote": "\"Programs must be written for people to read, and only incidentally for machines to execute.\"</br> - Harold Abelson",
"twitter": "https://x.com/gabriel05dev",
"github": "https://github.com/gabriel-05-dev",
"linkedin": "https://linkedin.com/in/gabrielluchita",
"email": "mailto:[email protected]"
},
{
"name": "Farzan Ullah",
"profession": "Web Developer (Frontend & Backend)",
"quote": "\"Gaming is Where reality meets limitless imagination\"</br> - Said By Me",
"twitter": "https://twitter.com",
"dribbble": "https://dribbble.com",
"behance": "https://behance.com",
"github": "https://github.com/Farzan-Ullah",
"linkedin": "https://linkedin.com/in/farzanofme",
"email": "mailto:[email protected]"
},
{
"name": "Stella N. Nwae",
"profession": "Frontend Developer",
"quote": "\"Give me six hours to chop down a tree and I will spend the first four sharpening the axe.\"</br> - Said By Abraham Lincoln",
"twitter": "https://x.com/StellaNwae",
"dribbble": "https://dribbble.com/stellanic",
"behance": "https://www.behance.net/stellanwae",
"github": "https://github.com/Stellanwae",
"linkedin": "https://www.linkedin.com/in/stella-nicole-3b624814b/",
"email": "mailto:[email protected]"
},
{
"name": "Irsyad",
"profession": "Embedded Developer",
"quote": "\"We cannot solve problems with the kind of thinking we employed when we came up with them.\"</br> - Said By Albert Einstein",
"github": "https://github.com/irsyad212"
},
{
"name": "Douglas Obara",
"profession": "Software Engineer",
"quote": "\"Programming isn’t about what you know; it’s about what you can figure out.\"</br> - Chris Pine",
"github": "https://github.com/Douglas254",
"linkedin": "https://www.linkedin.com/in/douglas-obara",
"email": "mailto:[email protected]"
},
{
"name": "Farouk Sedick",
"profession": "Computer Engineering Student",
"quote": "\"Your favourite quote\"</br> The more I know, the more I realize I know nothing - Anonymous",
"twitter": "https://x.com/FarWrld_99",
"github": "https://github.com/sedfarouk",
"linkedin": "https://linkedin.com/in/farouk-sedick",
"email": "mailto:[email protected]"
},
{
"name": "Ann Mukami",
"profession": "Frontend Developer || Open source contributor",
"quote": "\"Success is the sum of small efforts, repeated day in and day out.\"</br> - Robert Collier",
"twitter": "https://x.com/AnnKiungaa",
"github": "https://github.com/Kiunga1",
"linkedin": "https://www.linkedin.com/in/ann-mukami/",
"email": "mailto:[email protected]"
},
{
"name": "Khaula Nauman",
"profession": "SWE Student",
"quote": "\"Do not go gentle into that good night. Rage, rage against the dying of the light.\"</br> - Poem By Dylan Thomas",
"twitter": "https://x.com/khaulahoots",
"github": "https://github.com/khaulanauman",
"linkedin": "https://www.linkedin.com/in/khaula-nauman/",
"email": "mailto:[email protected]"
},
{
"name": "Gloria Johnson",
"profession": "Project Manager",
"quote": "\"You Got This\"</br> - Said By Me",
"github": "https://github.com/riahtgl",
"linkedin": "https://www.linkedin.com/in/gloria-johnson-b5aa27205/",
"email": "mailto:[email protected]"
},
{
"name": "Rachel \"acha\" Okorie",
"profession": "Backend Engineer",
"quote": "\"Fear not, I am with you. Do not be dismayed, I am your God\"</br> - God",
"twitter": "https://https://x.com/rachel0korie",
"github": "https://github.com/acha-r",
"linkedin": "https://linkedin.com/in/rachel-okorie",
"email": "mailto:[email protected]"
},
{
"name": "God'swill Jonathan",
"profession": "Android Developer </br> Chemical Engineer",
"quote": "\"Que sera sera\"</br> - Unknown",
"twitter": "https://x.com/Godxuche",
"github": "https://github.com/Godzuche/",
"linkedin": "https://www.linkedin.com/in/godxuche/",
"email": "mailto:[email protected]"
},
{
"name": "Gloria Ebubechukwu Okeke",
"profession": "Pharmacist, Frontend developer",
"quote": "\"Who you give the key to your life drives it. \"</br> - Said By Johnpaul Ezemma",
"github": "https://github.com/gloriaebubeokeke",
"linkedin": "https://www.linkedin.com/in/gloria-okeke-e-j/",
"email": "[email protected]"
},
{
"name": "Cheikh Babacar GOUDIABY",
"profession": "Full stack developer",
"quote": "\"Un homme doit choisir. En cela réside sa force : le pouvoir de ses décisions.\"</br> - Said By Paulo Coelho",
"twitter": "https://x.com/_cbag",
"dribbble": "https://dribbble.com/cbag",
"github": "https://github.com/cbag1/",
"linkedin": "https://www.linkedin.com/in/cheikh-babacar-goudiaby/",
"email": "mailto:[email protected]"
},
{
"name": "Keron Patel",
"profession": "IT Security Administrator, Security Researcher",
"quote": "\"Kali Linux is a powerful ally in the quest for digital security.\"</br> - Said By Me",
"twitter": "https://twitter.com/keron_1826",
"github": "https://github.com/kronpatel",
"linkedin": "www.linkedin.com/in/keron-patel-18262k600",
"email": "[email protected]"
},
{
"name": "Maybell Obadoni",
"profession": "FrontEnd Developer",
"quote": "\"An MVP is not an MVP until athe users interact with the product seamlessly.\"",
"twitter": "https://x.com/frontEndDoctor",
"github": "https://github.com/frontEndDoctor/",
"linkedin": "https://www.linkedin.com/in/maybellobadoni",
"email": "mailto:[email protected]"
},
{
"name": "Fathalrhman Adam Abdallah",
"profession": "Machine Learning Engineer",
"quote": "\"problems are just opportunities that haven't presented themselves.\"",
"twitter": "https://x.com/fathalrhman26",
"github": "https://github.com/fathalrhman267/",
"linkedin": "https://www.linkedin.com/in/fathalrhman26/",
"email": "mailto:[email protected]"
},
{
"name": "Jetur Gavli",
"profession": "Technical Expert, Forest Office",
"quote": "\"My code is as seamless as the forest's ecosystem\"</br> - Said By Me",
"twitter": "https://x.com/Jetur_Gavli_23",
"github": "https://github.com/jeturgavli",
"linkedin": "https://www.linkedin.com/in/jeturgavli/",
"email": "[email protected]"
},
{
"name": "Dubem Obinwanne",
"profession": "Frontend Developer",
"quote": "He who sweats more in training, bleeds less in war",
"twitter": "https://x.com/dubem_ob/",
"dribbble": "https://dribbble.com",
"behance": "https://behance.com",
"github": "https://github.com/DubemObi/",
"linkedin": "https://www.linkedin.com/in/chidubem-obinwanne-0a113819a/",
"email": "[email protected]"
},
{
"name": "Paul Danso Asare",
"profession": "Software Engineer",
"quote": "A good name is better than great riches",
"twitter": "https://x.com/pauldanso12",
"dribbble": "https://dribbble.com",
"behance": "https://behance.com",
"github": "https://github.com/colorwhite-git",
"linkedin": "https://www.linkedin.com/in/paul-danso-asare/",
"email": "[email protected]"
},
{
"name": "Mkpandiok, Idorenyin Monday",
"profession": "Civil Engineer",
"quote": "Anything that is worth doing, is worth doing well.",
"github": "https://github.com/idorenyin9010",
"linkedin": "http://linkedin.com/in/idorenyin-mkpandiok-b989a322a",
"twitter": "https://x.com/@MkpandiokM",
"email": "[email protected]"
},
{
"name": "Abigail Sylvie",
"profession": "data scientist, Data Analyst, Aspiring cloud security Engineer",
"quote": "consistency is the key",
"twitter": "https://x.com/abigail_sylvie",
"github": "https://github.com/abigailsylvie",
"linkedin": "https://www.linkedin.com/in/abigailsylvie/",
"medium": "https://medium.com/@abigailsylvie78",
"email": "[email protected]"
},
{
"name": "Joana Lawer",
"profession": "Frontend Developer, Data Analyst, Aspiring Machine Learning Engineer",
"quote": "There is always room for a new beginning",
"twitter": "https://x.com/joana_lawer",
"github": "https://github.com/joanalawer",
"linkedin": "https://www.linkedin.com/in/joanalawer/",
"email": "[email protected]"
},
{
"name": "KPIDIBA De'Indja Florento-David",
"profession": "Software Engineer",
"quote": "First, solve the problem. Then, write the code.",
"github": "https://github.com/kpidiba",
"linkedin": "https://www.linkedin.com/in/david-kpidiba-3071601a4/",
"email": "[email protected]"
},
{
"name": "Osama Rabea",
"profession": "Student at the Faculty of Electronic Engineering",
"quote": "\"When your goals are clear, you will come up with exactly the right answer at exactly the right time.\"</br> - Said By BrianTracy",
"twitter": "https://x.com/OsamaDkrory",
"github": "https://github.com/OsamaRab3",
"linkedin": "https://www.linkedin.com/in/osama-rabea-201b76255/",
"email": "mailto:[email protected]"
},
{
"name": "Abdulai Bah",
"profession": "Full Stack Web Developer",
"quote": "\"You can go as far as you mind lets you. what you believe, you can achieve. \"</br> - Said By Mary Kay Ash",
"github": "https://github.com/abdulai123",
"linkedin": "https://linkedin.com/abdulai-bah-9887a122a",
"email": "[email protected]"
},
{
"name": "Sahasra",
"profession": "Computer Science Student",
"quote": "\"Life isn't about waiting for the storm to pass, its about learning how to dance in the rain.\"</br> - Vivian Greene",
"github": "https://github.com/IppiliSahasra08",
"linkedin": "https://www.linkedin.com/in/sai-sahasra-ippili-22a82030b/",
"email": "mailto:[email protected]"
},
{
"name": "Jonathan Suru",
"profession": "Student",
"quote": "\"The well-being of humanity is the first and only objective of any free society.\"</br> - Said By Peter Kropotkin",
"twitter": "https://twitter.com/JonathanSuru",
"github": "https://github.com/5uru",
"linkedin": "https://linkedin.com/jonathansuru"
},
{
"name": "Aseru Kevin Ziyada",
"profession": "Front-end Developer || UI/UX designer || Open Source Contributor(Beginner)",
"quote": "\"I can do whatever I say I can do, I am wiseeee \"</br> - Kevin",
"twitter": "https://x.com/ZiyadaKA_?t=VBxEoI_acMYFi0Vbw1YUrg&s=09",
"github": "https://github.com/lucy-kevin",
"linkedin": "https://www.linkedin.com/in/aseru-kevin-ziyada",
"email": "mailto:[email protected]"
},
{
"name": "Sarah Hassan",
"profession": "Software Engineer",
"quote": "\"Life is too short to argue just say ok and move on. \"</br> - Sarah",
"twitter": "https://x.com/serrahhassan",
"github": "https://github.com/sarahassan0",
"linkedin": "https://www.linkedin.com/in/sarrahhassan/",
"email": "mailto:[email protected]"
},
{
"name": "Dabi Ayu",
"profession": "Software Engineer",
"quote": "\"That thing you want to archive, do it with all your heart. \"</br> - Dabi",
"twitter": "https://x.com/dabi_ayu",
"github": "https://github.com/Dabi-ayu",
"linkedin": "https://www.linkedin.com/in/dabi_ayu/",
"email": "mailto:[email protected]"
},
{
"name": "Susan Githaiga",
"profession": "Front End Software Developer",
"quote": "\"It's a new day when the sun comes up, we rise again🌹\"</br> - Shenseea",
"twitter": "https://twitter.com/Su_Githaiga",
"dribbble": "https://dribbble.com/SusanGIthaigaN",
"behance": "https://www.behance.net/susangithaiga1",
"github": "https://github.com/SusanGithaigaN",
"linkedin": "https://www.linkedin.com/in/susan-githaiga-2832b11aa/",
"email": "mailto:[email protected]"
},
{
"name": "Stella Wanja",
"profession": "Full-Stack Developer",
"quote": "\"Who knows? Have patience. Go where you must go, and hope!\"<br /> - Gandalf",
"github": "https://github.com/StellaWanja"
},
{
"name": "Eduarda Mendes",
"profession": "Front-end Developer",
"quote": "\"Life moves pretty fast. If you don't stop and look around once in a while, you could miss it.\"</br> - Ferris Buller",
"twitter": "https://x.com/Dudsbytes",
"github": "https://github.com/EduardaMendes01"
},
{
"name": "Edwin Kihara",
"profession": "AI Engineer - MLops | Data Engineer | Software Engineer",
"quote": "\"The best way to predict the future is to invent it.\"</br> - Alan Kay",
"twitter": "https://x.com/harrtedwin",
"github": "https://github.com/harrtedwin",
"linkedin": "http://linkedin.com/in/edwinkihara",
"email": "mailto:[email protected]"
},
{
"name": "Achal Gawande",
"profession": "Student",
"quote": "\"A winner is a dreamer who never gives up.\"</br> - Said By Me",
"github": "https://github.com/Aterolite24",
"linkedin": "https://www.linkedin.com/in/achal-gawande-33615b250/",
"email": "mailto:[email protected]"
},
{
"name": "Harshwardhan Singh Panwar",
"profession": "Web Developer",
"quote": "\"Its better to bite,than to swallow\"</br> - Pete Cobe",
"twitter": "https://twitter.com/habibi",
"github": "https://github.com/harshcodesit",
"linkedin": "https://www.linkedin.com/in/harshwardhan-singh-panwar/",
"email": "mailto:[email protected]"
},
{
"name": "Ali Eljerrari",
"profession": "FullStack Developer - MernStack | OpenSource Contributor",
"quote": "\"Be yourself; everyone else is already taken.\"</br> - Said By Oscar Wilde",
"twitter": "https://twitter.com/Coding__Dynasty",
"github": "https://github.com/ali-eljerrari",
"instagram": "https://www.instagram.com/Ali%20Eljerrari",
"facebook": "https://www.facebook.com/codingdynasty",
"linkedin": "https://www.linkedin.com/in/ali-eljerrari-3794902b6",
"email": "mailto:[email protected]"
},
{
"name": "Farhan Sodiq",
"profession": "Software Engineer",
"quote": "\"Progress is about getting better, one day at a time\"</br> - Kobe Bryant",
"twitter": "https://twitter.com/sodiqfarhan",
"github": "https://github.com/codeHokage1",
"linkedin": "https://linkedin.com/in/sodiqfarhan",
"email": "mailto:[email protected]"
},
{
"name": "Luke Olende",
"profession": "Web FrontEnd Developer",
"quote": "\"I want the finer things in my life, so I hustle\"</br> - 50 cent",
"twitter": "https://x.com/Luke_Olende",
"github": "https://github.com/LukeOlende",
"linkedin": "https://www.linkedin.com/in/luke-olende-2k/",
"email": "mailto:[email protected]"
},
{
"name": "Ijeoma Igboagu",
"profession": "Software Developer || Technical writer ",
"quote": "I can do all things through Christ that Stengthens me-said by me",
"twitter": "https://twitter.com/ijaydimples",
"github": "https://github.com/ijayhub",
"linkedin": "https://www.linkedin.com/in/ijeoma-igboagu/",
"email": "mailto:[email protected]"
},
{
"name": "Tadiwanashe Rodney Zvidza",
"profession": "Software Developer || Entrepreneur || Open Source Contributer",
"quote": "\"I say luck is when an opportunity comes along and you are prepared for it\"</br> - Denzel Washington",
"twitter": "https://twitter.com/mysterious_son",
"github": "https://github.com/tadiwanashezvidzarodney",
"linkedin": "https://linkedin.com/in/tadiwanashe-zvidza-48583424b",
"email": "mailto:[email protected]"
},
{
"name": "Sitwala Allison Namakando",
"profession": "Software Engineer",
"quote": "\"It's bookie exsay\"</br> - An Ohn",
"twitter": "https://twitter.com/Sitwala45",
"github": "https://github.com/stwala",
"linkedin": "https://linkedin.com/Sitwala Namakando",
"email": "mailto:[email protected]"
},
{
"name": "Patrick Nyangoto Orangi",
"profession": "Software Engineer - Data, BE, AI",
"quote": "Anything worth doing is worth doing right!",
"twitter": "https://x.com/patrick_orangi",
"github": "https://github.com/nyangoto",
"linkedin": "https://www.linkedin.com/in/patrick-orangi/",
"email": "[email protected]"
},
{
"name": "Ndifon",
"profession": "Software Engineer and Student",
"quote": "\"Dont't let your friends know you are a designer\"</br> - Said By Me",
"github": "https://github.com/N-TITIAN"
},
{
"name": "Meryem Ahmaine",
"profession": "Full stack developer",
"github": "https://github.com/meryemahmaine",
"linkedin": "https://www.linkedin.com/in/meryem-ahmaine-aa76a728b/"
},
{
"name": "Ch.Sai Pradyumna Goud",
"profession": "Apspiring Full stack developer",
"github": "https://github.com/saipradyumnagoud",
"linkedin": "https://www.linkedin.com/in/saipradyumnagoudch/"
},
{
"name": "Morris Bundi",
"profession": "Machine Learning",
"github": "https://github.com/morrisbmm",
"linkedin": "https://www.linkedin.com/in/morris-bundi-1873721bb//"
},
{
"name": "Salma Hussien",
"profession": "Software Engineer",
"github": "https://github.com/Sallmahussien",
"linkedin": "https://www.linkedin.com/in/sallma-ahmed/"
},
{
"name": "zehor-l",
"profession": "Apspiring Engineer",
"github": "https://github.com/zehor-l",
"linkedin": "https://linkedin.com/in/zehor-lahlah"
},
{
"name": "Kerimcan Balkan",
"profession": "Student",
"quote": "\"God does not play dice\"</br> - Albert Einstein",
"github": "https://github.com/kerimcanbalkan",
"linkedin": "https://linkedin.com/kerimcanbalkan",
"email": "mailto:[email protected]"
},
{
"name": "Ajiri Enoch Osiobe",
"profession": "Software Developer",
"quote": "\"Anything Worth Having Takes Time\"</br> - Said by Anonymous",
"github": "https://github.com/AJ-droi",
"linkedin": "https://linkedin.com/in/ajiri-osiobe-801675184",
"email": "mailto:[email protected]"
},
{
"name": "Samkelo chamane",
"profession": "PowerApp Developer and Data Analyst",
"quote": "\"Believe and show up everyday for yourself\"</br> - Said By Me",
"github": "https://github.com/samkelo-chamane",
"linkedin": "https://www.linkedin.com/in/samkelochamane/",
"email": "mailto:[email protected]"
},
{
"name": "Ashley Hendrata",
"profession": "Student and Future Software Engineer",
"quote": "\"sometimes a nap is the best solution\"</br> - Said By Me",
"github": "https://github.com/ashhendrata",
"linkedin": "https://www.linkedin.com/in/ashley-hendrata/",
"email": "mailto:[email protected]"
},
{
"name": "Ivan Ho",
"profession": "Student",
"quote": "\"If you can’t be kind, at least be vague.\"</br> - Judith Martin",
"github": "https://github.com/iho21",
"linkedin": "https://www.linkedin.com/in/ivanhocsula/"
},
{
"name": "Itzel Bailon",
"profession": "Learning Assistant",
"quote": "\"The only person you should try to be better than is the person you were yesterday.\"</br> - Unknown",
"github": "https://github.com/Xatziri",
"linkedin": "https://www.linkedin.com/in/itzel-bailon/",
"email": "mailto:[email protected]"
},
{
"name": "Danyal Ejaz",
"profession": "Student",
"quote": "\"Everything you can imagine is real\"</br> - Said By Me",
"twitter": "https://twitter.com/twtdanyal",
"dribbble": "https://dribbble.com/danyalejaz",
"behance": "https://behance.com/danyalejaz",
"github": "https://github.com/danyalejaz",
"linkedin": "https://linkedin.com/danyalejaz",
"email": "mailto:[email protected]"
},
{
"name": "Cyril Baah",
"profession": "DevOps Engineer",
"quote": "\"It easy to lose what you've gain if you don't make efforts to hold it\"</br> - Unknown",
"twitter": "https://twitter.com/baahcy",
"github": "https://github.com/CyrilBaah",
"linkedin": "https://www.linkedin.com/in/cyril-baah",
"email": "mailto:[email protected]"
},
{
"name": "Claudia Varona",
"profession": "Software Engineer",
"quote": "\"Dreams don't work unless you do.\"</br> - John C. Maxwell",
"github": "https://github.com/Clau050994/",
"linkedin": "https://www.linkedin.com/in/claudia-varona-p%C3%A9rez-96b3bb114/",
"email": "[email protected]"
},
{
"name": "Adarsh Sahu",
"profession": "Student",
"quote": "\"Stop thinking, Start doing\"</br> - Said By Me",
"twitter": "https://twitter.com",
"dribbble": "https://dribbble.com",
"behance": "https://behance.com",
"github": "https://github.com/yaarAdarsh",
"linkedin": "https://www.linkedin.com/in/adarsh-sahu-415475239/",
"email": "mailto:[email protected]"
},
{
"name": "Tracy Sambu",
"profession": "Software Developer and OpenSource Contributor",
"quote": "\"We still Rise\"</br> - Said By Lewis Hamilton",
"twitter": "https://twitter.com/sambu_tracy",
"github": "https://github.com/sambutracy",
"linkedin": "https://www.linkedin.com/in/tracysambu/",
"email": "[email protected]"
},
{
"name": "Essi Akpevwe Praise",
"profession": "Software Developer & IT",
"quote": "\"Your He who has a why can bear almost any how\"</br> - Viktor E. Frankl",
"twitter": "https://twitter.com/praisex64",
"github": "https://github.com/Akpevwe11",
"linkedin": "https://www.linkedin.com/in/akpevwe-essi-45416518b/",
"email": "mailto:[email protected]"
},
{
"name": "James Wainaina",
"profession": "Software Developer",
"quote": "Be the change that you wish to see in the world. - Mahatma Gandhi",
"github": "https://github.com/JamesWainaina",
"linkedin": "https://www.linkedin.com/in/james-gatheru-2282b1212/",
"email": "[email protected]"
},
{
"name": "Jonas Ermert",
"profession": "Flutter, Dart",
"quote": "Welcome to my profile",
"twitter": "https://twitter.com/Jonas20692",
"github": "https://github.com/jonasermert",
"linkedin": "https://linkedin.com/in/jonasermert/"
},
{
"name": "Tiago Afonso Ntalani",
"profession": "Software Engineer, Bitcoin/Lighting developer",
"quote": "Welcome to my profile",
"github": "https://github.com/thiago-Coderr",
"linkedin": "https://www.linkedin.com/in/tiagontalani/",
"university": "Kalinga Institute of Industrial Technology"
},
{
"name": "Eslam AbdElhakem",
"profession": "Software Engineer",
"quote": "\"Be The Last Man Standing\"</br> - Said By Me",
"github": "https://github.com/EslamAbdElhakem",
"linkedin": "https://linkedin.com",
"email": "mailto:[email protected]"
},
{
"name": "Julius L. Jones Jr.",
"profession": "Student",
"quote": "\"Chopping wood, carrying water\"</br> - Said by Kyrie Irving",
"twitter": "https://twitter.com",
"dribbble": "https://dribbble.com",
"behance": "https://behance.com",
"github": "https://github.com/jlwj22",
"linkedin": "https://linkedin.com/in/juliusljonesjr",
"email": "mailto:[email protected]"
},
{
"name": "FRANCK KASONGO",
"profession": "Student",
"quote": "\"Chopping wood, carrying water\"</br> - Said by Kyrie Irving",
"twitter": "https://twitter.com",
"dribbble": "https://dribbble.com",
"behance": "https://behance.com",
"github": "https://github.com/Franckkasongo15/Franck-kasongo",
"linkedin": "https://linkedin.com/in/franckkasongo15",
"email": "[email protected]"
},
{
"name": "Jerry Onyango",
"profession": "Computer Science Student",
"quote": "\"All this jewelry have no use at night\"</br> - Said by not me",
"twitter": "no twitter",
"dribbble": "no dribble",
"behance": "no behance",
"github": "https://github.com/onyangojerry",
"linkedin": "https://www.linkedin.com/in/jerry-rawlings-onyango/",
"email": "[email protected]"
},
{
"name": "Chad Peter",
"profession": "Your Profession",
"quote": "\"Whatever has to happen will happen\"</br> - Said by Me",
"twitter": "https://twitter.com/chardpeter10",
"github": "https://github.com/ChardPeter",
"linkedin": "https://www.linkedin.com/in/chard-p-7191a3245/",
"email": "[email protected]"
},
{
"name": "Tsafac Nkombong Regine Cyrille",
"profession": "Network Engineer",
"quote": "\"Push Yourself, No One Else Will\"</br> - By Hermann & Me",
"twitter": "https://twitter.com/RegineCyrille1",
"github": "https://github.com/Regine12",
"linkedin": "https://www.linkedin.com/in/tsafac-nkombong-regine-cyrille",
"email": "[email protected]"
},
{
"name": "Auwalu Hamza",
"profession": "Fullstack Developer",
"quote": "\"As long as we persevere and endure, we can get anything we want\"</br> - Said by Mike Tyson",
"twitter": "https://twitter.com/afhamu",
"github": "https://github.com/afhamu",
"linkedin": "https://linkedin.com/auwalu-hamza",
"email": "mailto:[email protected]"
},
{
"name": "Henry Saya",
"profession": "Software Engineer",
"quote": "\"The journey of a thousand miles begins with a single step\"</br> - Said by Lao Tzu",
"twitter": "https://twitter.com/HenrySaya",
"github": "https://github.com/HenrySaya",
"linkedin": "https://linkedin.com/in/henry-saya",
"email": "mailto:[email protected]"
},
{
"name": "Ikegah Oliver",
"profession": "Student",
"quote": "\"Memento mori, live well.\"</br> - Said by Marcus Aurelius",
"github": "https://github.com/oliverTwist2",
"linkedin": "https://www.linkedin.com/in/ikegah-oliver/",
"email": "[email protected]"
},
{
"name": "Mwofoh Adriel",
"profession": "Student",
"quote": "\"Time isn't the main thing. It's the only thing.\"</br> - Said by Miles Davis",
"github": "https://github.com/Mwofoh-Adriel",
"linkedin": "https://www.linkedin.com/in/adriel-mwofoh-6ab680269//",
"instagram": "https://www.instagram.com/mwofohadriel/",
"email": "[email protected]"
},
{
"name": "Ande Gangadhara Rao",
"profession": "Looking for an oppertunity",
"quote": "\"If, at first, you do not succeed, call it version 1.0.\"</br> - Said by Khayri R.R. Woulfe",
"twitter": "https://twitter.com/Gangadhara18Rao",
"github": "https://github.com/gangadhararaoande",
"linkedin": "https://www.linkedin.com/in/gangadhara-rao-ande/",
"email": "mailto:[email protected]"
},
{
"name": "Azizbek Yunusaliev",
"profession": "Frontend Developer",
"quote": "\"Hope is only in Education\"</br> - Said by Me 😉",
"github": "https://github.com/azick99",
"linkedin": "https://www.linkedin.com/in/azizbek-yunusaliev-6b060b232",
"email": "mailto:[email protected]"
},
{
"name": "Brian kyalo",
"profession": "Software Developer",
"quote": "\"Keep Pushing\"</br> - Said by Alcatraz",
"github": "https://github.com/kyalo3",
"linkedin": "https://linkedin.com/brian-kyalo-531394281/",
"email": "mailto:[email protected]"
},
{
"name": "Sergius Justus Nyah",
"profession": "Computer Science student",
"quote": "\"The greatest penalty to declining leadership is to be ruled be ruled by someone inferior to you\"<br> - Pluto",
"github": "https://github.com/Sergius-Nyah",
"LinkedIn": "https://linked/in.com/Sergius-Nyah/",
"email": "mailto://[email protected]"
},
{
"name": "Brian kyalo",
"profession": "Software Developer",
"quote": "\"Keep Pushing\"</br> - Said by Alcatraz",
"twitter": "https://twitter.com",
"dribbble": "https://dribbble.com",
"behance": "https://behance.com",
"github": "https://github.com/kyalo3",
"linkedin": "https://linkedin.com/brian-kyalo-531394281/",
"email": "mailto:[email protected]"
},
{
"name": "J R Jewell",
"profession": "Web Developer",
"quote": "\"The world is a mountain, in which your words are echoed back to you.\"</br> - Said by Rumi",
"github": "https://github.com/JeremyRayJewell",
"linkedin": "https://linkedin.com/in/jeremyrayjewell",
"email": "mailto:[email protected]"
},
{
"name": "John Irem",
"profession": "Software Engineer",
"quote": "\"Try not. Do, or do not. There is no try.\"</br> - Said by Yoda",
"twitter": "https://twitter.com/rasine_era",
"github": "https://github.com/eyesaidyo",
"linkedin": "https://linkedin.com/in/john-irem",
"email": "[email protected]"
},
{
"name": "Elísio Massaqui",
"profession": "Software Developer",
"quote": "\"Believe in your Skills\"</br> - Said by",
"twitter": "https://twitter.com/elisio_massaqui",
"github": "https://github.com/elisioMassaqui",
"email": "[email protected]"
},
{
"name": "Abdessamad Touzani",
"profession": "Software engineer and Data scientist",
"quote": "\"Never bend your head. Always hold it high. Look the world straight in the eye.\"</br> - Helen Keller",
"twitter": "https://twitter.com/at9kat",
"github": "https://github.com/AbdessamadTzn",
"linkedin": "https://linkedin.com/in/abdessamadtouzani",
"email": "mailto:[email protected]"
},
{
"name": "Ambrose Matata",
"profession": "Software Engineer",
"quote": "\"Victory loves preparation.\"</br> - Extracted from the Movie Mechanic",
"twitter": "https://twitter.com/MatataAmbrose",
"github": "https://github.com/Masaku12",
"linkedin": "https://www.linkedin.com/in/ambrosematata/",
"email": "[email protected]"
},
{
"name": "Brian Chebon",
"profession": "Software Developer | Web Dev",
"quote": "\"Welcome to my profile! I am a passionate software developer with expertise in web development. I love turning ideas into functional and user-friendly applications. Explore my journey in the world of coding and technology.",
"twitter": "https://twitter.com/Chebon254",
"github": "https://github.com/Chebon-breezy",
"linkedin": "https://www.linkedin.com/in/brianchebon",
"email": "mailto:[email protected]"
},
{
"name": "Kelvin OKumu",
"profession": "Data Analyst | Instructor",
"quote": "\"Ultimately, arguing that you don't care about the right to privacy because you have nothing to hide is no different than saying you don't care about free speech because you have nothing to say.\"</br> - Said by Edward Snowden",
"twitter": "https://twitter.com/OkushKelvin",
"github": "https://github.com/kelvinokumu",
"linkedin": "https://www.linkedin.com/in/kelvin-okumu-965bb0147/",
"email": "mailto:[email protected]"
},
{
"name": "Mblessing Muchafa CoderBlee",
"profession": "Student| CyberSecurity|Data Analysis|Computer Science",
"quote": "\"Believe in yourself and all that you are.Know that there is something inside you that is greater than any obstacle.\"</br> - Said by MBlessingG",
"twitter": "https://twitter.com/kamoblessingg",
"github": "https://github.com/CoderBlee",
"linkedin": "https://www.linkedin.com/in/blessing-muchafa-772305247/",
"email": "[email protected]"
},
{
"name": "AkashGGaonkar",
"profession": "Undergraduate Student",
"quote": "\"He travels the fastest who travels alone\"</br> - Rudyard Kipling",
"github": "https://github.com/Gaonkar30",
"linkedin": "https://www.linkedin.com/in/akash-g-gaonkar-345656256/",
"email": "[email protected]"
},
{
"name": "Mblessing Muchafa CoderBlee",
"profession": "Student| CyberSecurity| SoftwareEngineer| Data Analysis",
"quote": "\"Everything has its own time, hold on as there is light at the end of the tunnel\"</br> - Said by GamuchiraiM",
"twitter": "https://twitter.com/kamoblessingg",
"github": "https://github.com/CoderBlee",
"linkedin": "https://www.linkedin.com/in/blessing-muchafa-772305247/",
"email": "[email protected]"
},
{
"name": "Sabeha Khan",
"profession": "Computer Science Student",
"quote": "\"If it works, don't touch it.\"</br> - Anonymous",
"github": "https://github.com/Sab3ha",
"linkedin": "https://www.linkedin.com/in/sabeha-k321/",
"email": "mailto:[email protected]"
},
{
"name": "Tony B. Nya",
"profession": "Software Engineer",
"quote": "\"The only way that we can justify privileges is by solving the world's biggest problems, and by doing hard things. But of all the hard things we have to do, the most difficult thing is to keep going.\"</br> - Fred Swaniker",
"instagram": "https://www.instagram.com/tonybnya/",
"github": "https://github.com/tonybnya",
"linkedin": "https://www.linkedin.com/in/tonybnya/",
"email": "[email protected]"
},
{
"name": "Sandeep Dewangan",
"profession": "Web Developer",
"quote": "It's Not a Bug, It's a Feature",
"twitter": "https://twitter.com/sandeep15d",
"github": "https://github.com/sandy15d",
"linkedin": "https://www.linkedin.com/in/sandy15d/",
"email": "mailto:[email protected]"
},
{
"name": "Dhel Malith",
"profession": "Junior Cybersecurity Analyst",
"twitter": "https://twitter.com/ThomasObote1?s=09",
"github": "https://github.com/thomasobote211",
"linkedin": "https://www.linkedin.com/in/thomas-obote-a7b5131b3?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app",
"email": "[email protected]"
},
{
"name": "Jim Hatley",
"profession": "Programmer",
"github": "https://github.com/jhatley75",
"email": "[email protected]"
},
{
"name": "Vincent Dushime",
"profession": "Software Engineer | computer repair technician",
"quote": "\"There is no such thing as Something for nothing.\"</br> - Napoleon HIll",
"twitter": "https://twitter.com/vinci_dax",
"github": "https://github.com/Vincidax",
"linkedin": "https://www.linkedin.com/in/vincentdushime/",
"email": "mailto:[email protected]"
},
{
"name": "Sreekakulam Lohith",
"profession": "Recent Grad",
"quote": "\"Go forth on your path, as it exists only through your walking.\"</br> - Augustine of Hippo",
"github": "https://github.com/SreekakulamLohith",
"linkedin": "https://www.linkedin.com/in/sreekakulam-lohith-322461203/",
"email": "mailto:[email protected]"
},
{
"name": "Felix Gomez",
"profession": "Mechatronics Engineer | AI/ML Engineer | Web & Mobile Developer",
"quote": "\"Only the people who are crazy enough to think they can change the world are the ones who do.\"</br> - Steve Jobs",
"twitter": "https://twitter.com/felixdavid1221",
"github": "https://github.com/felixdavid12",
"linkedin": "https://www.linkedin.com/in/felix-david-gomez-marin/",
"email": "mailto:[email protected]"
},
{
"name": "Mblessing Muchafa",
"profession": "Web developer| CyberSecurity|CloudE",
"quote": "\"Everything has its own time, be patient\"</br> - Said by Blessing",
"twitter": "https://twitter.com/kamoblessingg",
"github": "https://github.com/CoderBlee",
"linkedin": "https://cs50.me/cs50cy#!",
"email": "[email protected]"
},
{
"name": "Vincent Kimani",
"profession": "Frontend Software Engineer || Technical writer || Open Source Contributor",
"quote": "\"In real open source, you have the right to control your own destiny.\"</br> - Linus Torvalds",
"twitter": "https://twitter.com/theevincekimani",
"github": "https://github.com/Vince-arch",
"linkedin": "https://www.linkedin.com/in/vincent-kimani/",
"email": "mailto:[email protected]"
},
{
"name": "Vivien Ogoun",
"profession": "Full Stack Web Developer",
"quote": "\"Knowledge is power\"</br> - Francis Bacon",
"github": "https://github.com/vivienogoun",
"linkedin": "https://www.linkedin.com/in/vivien-ogoun",
"email": "mailto:[email protected]"
},
{
"name": "Chisom",
"profession": "Technical Writer, QA Engineer",
"quote": "\"To die is gain\"</br> - Said by Christ",
"twitter": "https://x.com/Cathiecodes?t=TRFQdl8gxUaVMu0hfwg3aw&s=09",
"github": "https://github.com/catherine-chisom",
"linkedin": "https://linkedin.com/in/chisom-catherine-dick",
"email": "mailto:[email protected]"
},
{
"name": "YoTi",
"profession": "Full-Stack Developer",
"quote": "\"Code is like humor. When you have to explain it, it’s bad\"</br> - Said by Cory House",
"twitter": "https://twitter.com/YoTi1412",
"github": "https://github.com/YoTi1412",
"email": "mailto:[email protected]"
},
{
"name": "Amin Vahdani",
"profession": "Python_DevOps and Sys_Admin",
"quote": "\"Imagination is more important than knowledge\"</br> by - Albert Einstein",
"twitter": "https://x.com/Amiiin94",
"github": "https://github.com/amin2ace",
"linkedin": "https://www.linkedin.com/in/amin-map-6a060a210/",
"email": "[email protected]"
},
{
"name": "Manu Arias",
"profession": "Full Stack Web Developer",
"quote": "\"I can't go back to yesterday because I was a different person then\"</br> - Lewis Carroll",
"instagram": "https://www.instagram.com/jmanarias/",
"github": "https://github.com/thekain9",
"linkedin": "https://www.linkedin.com/in/j-m-arias-542a74238/",
"email": "mailto:[email protected]"
},
{
"name": "Mounssif nuuX BOUHLAOUI",
"profession": "FrontEnd | BackEnd | DevOps",