-
Notifications
You must be signed in to change notification settings - Fork 170
/
info.json
1074 lines (1074 loc) · 29.3 KB
/
info.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
[
{
"name": "Shaheen Hyder",
"gh_username": "shaheenhyderk",
"place": "Malappuram",
"current_pos": "Full stack developer",
"image": "shaheen.jpg",
"bio": "Likes solving problems and building systems"
},
{
"name": "Hari Sankar",
"gh_username": "h4r1337",
"place": "Thiruvananthapuram",
"current_pos": "BSc CS Student",
"image": "hari-sankar.webp",
"bio": "Security researcher who loves to play CTFs and explore tech"
},
{
"name": "Ansh Sahu",
"gh_username": "Anshsahu0802",
"place": "Jabalpur",
"current_pos": "Front-end developer",
"image": null,
"bio": "Hi, I'm Ansh! I'm a front end web developer with some basic knowledge."
},
{
"name": "Adnan Kattekaden",
"gh_username": "adnankattekaden",
"place": "Malappuram",
"current_pos": "Freelance WebDeveloper",
"image": "adnan-kattekaden.webp",
"bio": "A Person Who Is Curious To Learn New Things And Try Out Also Ready To Learn,Unlearn & Relearn.Currently Concentrated In Programming"
},
{
"name": "Shamila P",
"gh_username": "Shamila-p",
"place": "Malappuram",
"current_pos": "Web Developer",
"image": "shamila.jpg",
"bio": "Like coding and problem solving"
},
{
"name": "Rahul J",
"gh_username": "gr8rj-bot",
"place": "Raipur",
"current_pos": "Web Developer",
"image": null,
"bio": "Often involves himself in Competitive Programming and loves freebies"
},
{
"name": "Ajay Daniel Trevor",
"gh_username": "ajayda24",
"place": "Malappuram",
"current_pos": "MERN Stack Web Developer",
"image": "ajaydaniel.png",
"bio": "Loves to create amazing and innovative web applications."
},
{
"name": "Ameer Ali P",
"gh_username": "Ameer-Amr",
"place": "Malappuram",
"current_pos": "Software Engineer",
"image": "ameer_amr.jpeg",
"bio": "Self-taught Software Engineer who always willing to learn new concepts."
},
{
"name": "Bestin K Benny",
"gh_username": "bestin015",
"place": "Adoor",
"current_pos": "Developer",
"image": "bestin.jpeg",
"bio": "Interested in innovations"
},
{
"name": "MIDLAJ C",
"gh_username": "midlajc",
"place": "Wayanad",
"current_pos": "Full Stack Developer",
"image": "midlajc.jpg",
"bio": "Hi, I’m a Node.js developer based in Wayanad, Kerala. loves problem solving and curious to learn more"
},
{
"name": "Abhinav M Hari",
"gh_username": "IamAbhinav03",
"place": "Cherpulassery",
"current_pos": "Student",
"image": "abhinav.jpeg",
"bio": "A hobbiyist working on AI and Quantum Computing"
},
{
"name": "Ajmal Bin Nizam",
"gh_username": "ajmalbinnizam",
"place": "Kollam",
"current_pos": "Full stack Developer",
"image": "ajmal.jpg",
"bio": "Hi I'm ajmal, currently working in angular and .net technologies. Excited to collaborate and learn"
},
{
"name": "Ahsan Zakir",
"gh_username": "AhsanZak",
"place": "Chennai",
"current_pos": "Full stack Developer",
"image": "ahsanzakir.jpg",
"bio": "Developing and Designing Web Apps"
},
{
"name": "Nisamudheen c",
"gh_username": "nisamozr",
"place": "Malappuram",
"current_pos": "web3 Developer",
"image": "nisam.png",
"bio": "Interested in AR , VR and web3"
},
{
"name": "Muhammed Munees",
"gh_username": "muneesmmm",
"place": "Palakkad",
"current_pos": "Full stack Developer",
"image": "munees.jpeg",
"bio": "Hi, I'm Muhammed Munees! I'm a Full stack developer"
},
{
"name": "Harshed Abdulla",
"gh_username": "harshedabdulla",
"place": "Kochi",
"current_pos": "Web Developer",
"image": "harshed.jpg",
"bio": "I work on React,NodeJS and Express JS, interested in AR/VR/ML/Blockchain and anything which are hard to solve"
},
{
"name": "Shamnad Sherief",
"gh_username": "shamnad-sherief",
"place": "Alappuzha",
"current_pos": "Student",
"image": "shamnad.png",
"bio": "Interested in DSA"
},
{
"name": "Irfan Rasheed K C",
"gh_username": "irfanrasheedkc",
"place": "Malappuram",
"current_pos": "B Tech Computer Science Student",
"image": null,
"bio": "Interested in Python and Machine Learning"
},
{
"name": "Rifna c",
"gh_username": "RifnaC",
"place": "Malappuram",
"current_pos": "BSC CS Student",
"image": "rifna.jpg",
"bio": "Interested in Web development and Data science"
},
{
"name": "Amjed saleel K",
"gh_username": "amjedsaleel",
"place": "Calicut",
"current_pos": "DevOps Engineer",
"image": "amjed.jpeg",
"bio": "Self-taught DevOps engineer"
},
{
"name": "Renjith VS",
"gh_username": "renjithvs",
"place": "Thiruvananthapuram",
"current_pos": "Python Django Developer",
"image": "renjith.jpg",
"bio": "Interested in Python and Machine Learning"
},
{
"name": "Jelan Mathew James",
"gh_username": "jelanmathewjames",
"place": "Pathanamthitta",
"current_pos": "B Tech Computer Science Student",
"image": null,
"bio": "Web developer and Tech enthusiast"
},
{
"name": "Thanseefudheen",
"gh_username": "thanseefpp",
"place": "Malappuram",
"current_pos": "Software Engineer",
"image": "thanseef.jpg",
"bio": "Pursuing Machine Learning and running a small company eclidse technologies"
},
{
"name": "Adil S",
"gh_username": "adilsp5075",
"place": "Kayamkulam",
"current_pos": "B.Tech Computer Science Student @GECI",
"image": "Adil.jpeg",
"bio": "Intrested in full stack development & machine learning"
},
{
"name": "Shaheem PP",
"gh_username": "shaheem-pp",
"place": "Kozhikode",
"current_pos": "Backend developer",
"image": "thecodeholic.jpg",
"bio": "Hi, this is Shaheem. A backend developer. :)"
},
{
"name": "Mubashir Angathil",
"gh_username": "MubashirAngathil",
"place": "Wayanad",
"current_pos": "Full Stack Developer",
"image": "AMR.jpg",
"bio": "Currently,I'm expoloring Web, Mobile, and app design 👨💻"
},
{
"name": "Abdul Samad M J",
"gh_username": "abdulsamadmj",
"place": "Wayanad",
"current_pos": "Front End Developer",
"image": "abdulsamadmj.jpg",
"bio": "A typical tech addict. UI/UX, MERN <3"
},
{
"name": "Nahyan Sharvin",
"gh_username": "nahyansharvin",
"place": "Kozhikode",
"current_pos": "Front End Developer",
"image": "nahyan_sharvin.jpg",
"bio": "I'm a self-taught developer with experience in building some real-world projects. Ability to learn and implement new technologies quickly."
},
{
"name": "Joseph Jaison",
"gh_username": "JOSEPH-JAISON",
"place": "Changanacherry",
"current_pos": "B.Tech Electronics and Communication Student ",
"image": "Joseph.jpeg",
"bio": "Hi, I'm Joseph! I'm a tfp learner."
},
{
"name": "Fawaz k",
"gh_username": "Fawazk",
"place": "Manjeri",
"current_pos": "Full Stack Developer",
"image": "Fawazk.jpg",
"bio": "One who is open to solving problems and learning new things."
},
{
"name": "Muhammed Shabith K",
"gh_username": "shabithkms",
"place": "Tirur",
"current_pos": "Full Stack Developer",
"image": "shabithkms.jpeg",
"bio": "Self-taught Full stack Developer."
},
{
"name": "Husna Chungath",
"gh_username": "husnachungath",
"place": "Tirur",
"current_pos": "Python Django Developer",
"image": "husna.jpeg",
"bio": "Learning a new programming language can be hugely fascinating and a fun experience."
},
{
"name": "Muhammed Ali P",
"gh_username": "ALIP703",
"place": "Wayanad",
"current_pos": "Mern Stack Developer",
"image": "ALIP703.jpeg",
"bio": "A passionate web developer from Kerala."
},
{
"name": "Gopika P Pavithran",
"gh_username": "GopikaPPavithran",
"place": "Trivandrum",
"current_pos": "Front End Web Developer",
"image": null,
"bio": "BTech Student currently learning web development"
},
{
"name": "Aditya Tiwari",
"gh_username": "Aditya973",
"place": "Jabalpur",
"current_pos": "Front-end developer",
"image": null,
"bio": "Hi, I am Aditya, I am learning front-end web devolopment."
},
{
"name": "Janajith D",
"gh_username": "codetheft",
"place": "Kollam",
"current_pos": "Btech Computer Science Student",
"image": "janajithd.jpg",
"bio": "I am a self taught web developer, currently learning ReactJS"
},
{
"name": "Muhammed Hafis",
"gh_username": "hafismuhammed",
"place": "Thiruvanathapuram",
"current_pos": "Python Software Engineer",
"image": "hafis.jpg",
"bio": "I’m a self-made Python Django developer with relevant experience in this field. "
},
{
"name": "Govind V R",
"gh_username": "Govindvr",
"place": "Trivandrum",
"current_pos": "Backend Python developer",
"image": "govind.jpeg",
"bio": "Hi, I'm Govind a Btech Student interested in python development"
},
{
"name": "Edwin Liby",
"gh_username": "Edwinliby",
"place": "Alappuzha",
"current_pos": "Student/Front End Web developer/UI Designer",
"image": "Edwin-liby.png",
"bio": "I am self taught in Front-end Web development, currently learning ReactJS and Flutter for cross-platform development."
},
{
"name": "Sharon Shaju",
"gh_username": "codefa",
"place": "Kannur",
"current_pos": "Full Stack Engineer",
"image": "sharon-shaju.jpeg",
"bio": "Hi, I'm SHARON! I'm a Vue.js ,Nuxt.js, full stack developer currently working on webRTC P2P Metaverse."
},
{
"name": "Mohamed Sabith",
"gh_username": "sabith-nadakkavil",
"place": "Malappuram",
"current_pos": "Backend Developer",
"image": null,
"bio": "Hi, I'm Sabith, a passionate developer from Kerala."
},
{
"name": "Muhammed Ajmal Pk",
"gh_username": "ajmalpk23",
"place": "Malappuram",
"current_pos": "Android Developer",
"image": null,
"bio": "Hi, I'm Ajmal, a passionate developer from Kerala."
},
{
"name": "Ebin",
"gh_username": "ebinvarghese020",
"place": "Alappuzha",
"current_pos": "Student/Back End developer/UI Designer",
"image": null,
"bio": "I am self taught in back-end developer"
},
{
"name": "Ajas Nizam",
"gh_username": "ajasnizam",
"place": "kollam",
"current_pos": "BTech Computer Science Student",
"image": "ajas.jpg",
"bio": "Hi I'm ajas, currently learning JS and C language"
},
{
"name": "Hafis CP",
"gh_username": "hafiscp",
"place": "Malappuram",
"current_pos": "Student | College of Engineering Vadakara",
"image": "hafiscp.jpg",
"bio": "Tech Enthusiast"
},
{
"name": "Muhammed Jahsid",
"gh_username": "jahsid",
"place": "Kannur",
"current_pos": "MCA Student",
"image": null,
"bio": "Self-taught MERN stack Developer"
},
{
"name": "Abel Mathew Simon",
"gh_username": "abelmathew07",
"place": "Kollam",
"current_pos": "Btech Computer Science Student",
"image": "abel.jpg",
"bio": "Intrested in full stack development,python "
},
{
"name": "Vishnu S Pramod",
"gh_username": "V-I-S-H-N-U",
"place": "kollam",
"current_pos": "Web Developer",
"image": null,
"bio": "A Budding Developer!!"
},
{
"name": "Alan Biju",
"gh_username": "a-1an",
"place": "Kochi",
"current_pos": "BTech at MEC,Thrikkakara",
"image": "alanbiju.jpg",
"bio": "Gooo Pythonn!!"
},
{
"name": "Asker Yaseen",
"gh_username": "askeryaseen",
"place": "Ernakulam",
"current_pos": "Student ",
"image": null,
"bio": "Tech Enthusiast"
},
{
"name": "Akshay S Rajan",
"gh_username": "Akshaysrajan",
"place": "Chenganur",
"current_pos": "2nd Year BCA Student",
"image": "akshaysrajan.png",
"bio": "Aspiring CEO of Google 😅"
},
{
"name": "Danwand NS",
"gh_username": "DanBrown47",
"place": "Kochi, Kerala, India",
"current_pos": "CTO, Pygrammers",
"image": "danwnad.jpg",
"bio": "Self Proclaimed Code Mafia, Will code for food"
},
{
"name": "Christina Rose K.J",
"gh_username": "christinrouz",
"place": "Thrissur, Kerala, India",
"current_pos": "3rd year,IT Student",
"image": null,
"bio": "Learning something new every second "
},
{
"name": "Arjun AG",
"gh_username": "agarjun007",
"place": "Thiruvananthapuram",
"current_pos": "Software Engineer",
"image": "arjun.jpg",
"bio": "Always craving to learn."
},
{
"name": "Sreelekshmi S",
"gh_username": "SreelekshmiSanthosh",
"place": "Alappuzha",
"current_pos": "Front-end developer",
"image": null,
"bio": "Hi,I'm interested in coding and problem solving"
},
{
"name": "Vishnu PM",
"gh_username": "VISHNU-P-M",
"place": "Palakkad",
"current_pos": "Software Engineer",
"image": "vishnupm.jpg",
"bio": "Full Stack Developer Python+React/Vue"
},
{
"name": "Ahmed Misbahuddin Farhan",
"gh_username": "Misba9",
"place": "Hydrabad, Telangana, India",
"current_pos": "BTech Computer Science Student ",
"image": "Misba9.jpg",
"bio": "Hi, I'm Misba9! Learning something new every second, Intrested in web development."
},
{
"name": "Aswin George Thomas",
"gh_username": "aswingt65",
"place": "Pathanamthitta",
"current_pos": "Student | College of Engineering Aranmula",
"image": "aswingt65.jpg",
"bio": "Hi, I am Aswin.I am a self-taught front-end web devoloper."
},
{
"name": "Naveen Alex",
"gh_username": "Naveen-005",
"place": "Kottayam",
"current_pos": "Student",
"image": null,
"bio": "An aspiring developer."
},
{
"name": "Danis T Das",
"gh_username": "DanisDas",
"place": "Mannar",
"current_pos": "BCA student ",
"image": null,
"bio": "Graphic Designer. IG: mr_copywritter"
},
{
"name": "Sharoon Rafeek",
"gh_username": "SharoonRafeek",
"place": "Wayanad",
"current_pos": "Web developer",
"image": "Sharoon.jpg",
"bio": "Hi, I'm Sharoon! I'm a web developer and a computer science student."
},
{
"name": "Muhammed Fuwad",
"gh_username": "FuwadMuhammed",
"place": "Calicut",
"current_pos": "UI/UX Designer",
"image": "Fu_4_10.png",
"bio": "Aspiring design enthusiast."
},
{
"name": "Govind A",
"gh_username": "GO V IND",
"place": "Kerala",
"current_pos": "BTech student ",
"image": null,
"bio": "Devoted Developer. IG: go__v__ind"
},
{
"name": "Fahad P N",
"gh_username": "FAHADPN",
"place": "Thrissur, Kerala, India",
"current_pos": "BTech Computer Science Student ",
"image": "fahad.jpeg",
"bio": "An AR Developer and AI enthusiast learning and exploring new technologies"
},
{
"name": "Sruthi P A",
"gh_username": "sruthi-pa",
"place": "Thrissur,Kerala",
"current_pos": "BTech student in computer science",
"image": null,
"bio": "Loves to code and web development"
},
{
"name": "Anna John",
"gh_username": "annamjohn",
"place": "Trivandrum",
"current_pos": "Student",
"image": null,
"bio": "An ambitious developer."
},
{
"name": "Sabrina Naderer",
"gh_username": "sanaderer",
"place": "Brasil",
"current_pos": "Junior Python Developer",
"image": null,
"bio": "Intrested in full stack development!"
},
{
"name": "Haseeb KP",
"gh_username": "haseeb-kp",
"place": "Kerala",
"current_pos": "Web developer",
"image": "haseeb.jpg",
"bio": "Exploring the world of development"
},
{
"name": "Mubarak M",
"gh_username": "mubarakmayyeri",
"place": "Kerala",
"current_pos": "Data Scientist",
"image": "mubarakmayyeri.jpg",
"bio": "Aspiring Data Scientist, have experience in Python web developement."
},
{
"name": "Muhammad Ali K",
"gh_username": "mhdalik",
"place": "Kerala",
"current_pos": "Junior Python Develepor",
"image": "null",
"bio": "Competetive Programmer"
},
{
"name": "Sanu Muhammed",
"gh_username": "sanumuhammedc",
"place": "Kozhikode",
"current_pos": "Web and blockchain dev",
"image": "SANU MUHAMMED C.jpg",
"bio": "A full time learner who works part time."
},
{
"name": "Arjun M S",
"gh_username": "arjun-ms",
"place": "Palakkad",
"current_pos": "Student",
"image": "arjun-ms.jpg",
"bio": "Curious Guy who is a python developer and ML enthusiast"
},
{
"name": "Nandu Krishnan U",
"gh_username": "nanduk0",
"place": "Alappuzha",
"current_pos": "BTech student",
"image": null,
"bio": "Dev enthusiast"
},
{
"name": "Ajas Mohammed",
"gh_username": "AjasMohammed",
"place": "Kollam",
"current_pos": "Student",
"image": null,
"bio": "Want to Learn More"
},
{
"name": "Nevil Krishna",
"gh_username": "dracu-lah",
"place": "Thrissur",
"current_pos": "Computer Science,Diploma in Engineering",
"image": null,
"bio": "Likes coding and building systems"
},
{
"name": "Akarsh",
"gh_username": "AkarshAnilkumar",
"place": "Trivandrum",
"current_pos": "Student",
"image": null,
"bio": "An ambitious developer"
},
{
"name": "Nayan Prasad P K",
"gh_username": "nayanprasad",
"place": "Kasargod",
"current_pos": "Student",
"image": "nayan-prasad.png",
"bio": "Dev enthusiast || MERN stack developer"
},
{
"name": "sainudheen",
"gh_username": "sainudheenp",
"place": "Wayanad",
"current_pos": "Full stack developer",
"image": "null",
"bio": "Likes solving problems"
},
{
"name": "Sony K Martin",
"gh_username": "sonykmartin",
"place": "Kottayam",
"current_pos": "Student",
"image": "sony.jpeg",
"bio": "Exploring the world of development"
},
{
"name": "Harikrishnan U S",
"gh_username": "HKRcodes",
"place": "Trivandrum",
"current_pos": "BTech Student",
"image": "null",
"bio": "Interested in whole universe"
},
{
"name": "Angel Rose",
"gh_username": "Angelrose19",
"place": "Thrissur",
"current_pos": "Program Associate, μLearn",
"image": "angel.jpeg",
"bio": "IT undergrad and a community kid"
},
{
"name": "Mohammed Mishal",
"gh_username": "mishalBasheer",
"place": "Kozhikode",
"current_pos": "MERN Stack Web Developer",
"image": "mishalBasheer.jpg",
"bio": "Enthusiastic Techie 🧑💻"
},
{
"name": "Gladson T Lalu",
"gh_username": "Gladson-Lalu",
"place": "Thiruvalla",
"current_pos": "Flutter and MERN Stack Web developer",
"image": "gladson-lalu.jpeg",
"bio": "Make the world a better place 🌍✨"
},
{
"name": "Albin Mathews Joseph",
"gh_username": "Almajoo",
"place": "Pathanamthitta",
"current_pos": "Student",
"image": "Almajoo.jpeg",
"bio": "An average everyday Guy"
},
{
"name": "Joel joy",
"gh_username": "The_Average_guy",
"place": "Thrissur",
"current_pos": "BTECH Student",
"image": null,
"bio": "Modern day Techie"
},
{
"name": "Nihal Vadakkan",
"gh_username": "nvadakkan20",
"place": "Malappuram",
"current_pos": "Btech Student",
"image": "nihal_v.jpeg",
"bio": "An enthusiast Developer and problem Solver"
},
{
"name": "Gadha lekshmi P",
"gh_username": "gadhalekshmip",
"place": "Trivandrum",
"current_pos": "Student",
"image": null,
"bio": "An ambitious developer."
},
{
"name": "Gouri K",
"gh_username": "Gk-02",
"place": "Palakkad",
"current_pos": "Btech Student",
"image": "Gouri_k.jpg",
"bio": "An enthusiast learner and explorer."
},
{
"name": "Ahad Anzar",
"gh_username": "ahadanzar",
"place": "Trivandrum",
"current_pos": "Student",
"image": null,
"bio": "Speak in code"
},
{
"name": "Abhiram Krishna S",
"gh_username": "Abhiramks2003",
"place": "Malappuram",
"current_pos": "BTech Student",
"image": null,
"bio": "A web development enthusiast"
},
{
"name": "Aneena Antony",
"gh_username": "Aneenaanu321",
"place": "Thrissur",
"current_pos": "Btech Student",
"image": "aneena.jpeg",
"bio": "EXPERIENCE||DEV||EXPLORE"
},
{
"name": "Kevin Joseph Hendry",
"gh_username": "kevin-j-h",
"place": "Kochi",
"current_pos": "Btech Student",
"image": "kevinj.jpg",
"bio": "Developer in the making"
},
{
"name": "Sheheer Ali",
"gh_username": "sheheeralizx",
"place": "Palakkad",
"current_pos": "Diploma in Computer Hardware Engineering",
"image": null,
"bio": "Open Source Lover, Intrested in coding, Upskilling in DevOps"
},
{
"name": "Jayakanth",
"gh_username": "JAYAKANTHARUN",
"place": "Ernakulam",
"current_pos": "Btech Student",
"image": null,
"bio": "coder"
},
{
"name": "Basim Hilal",
"gh_username": "basimhilalv",
"place": "Malappuram",
"current_pos": "IT Graduate",
"image": null,
"bio": "Likes to learn new things"
},
{
"name": "Aazim Anish",
"gh_username": "AazimAnish",
"place": "Aluva",
"current_pos": "BTech Student",
"image": "aazim.jpg",
"bio": "Tech enthusiast🧑💻 || Security Researcher🔐"
},
{
"name": "Kevin Paul Babu",
"gh_username": "Kevinpaulbabu1820",
"place": "Ernakulam",
"current_pos": "Btech Final yr Student",
"image": null,
"bio": "Curious about full stack development"
},
{
"name": "Akash Menon",
"gh_username": "a-paradox-box",
"place": "Ernakulam",
"current_pos": "Btech Final yr Student",
"image": null,
"bio": "Self taught systems engineer"
},
{
"name": "Joel Peter Joseph",
"gh_username": "joelpeterjoseph",
"place": "Trivandrum",
"current_pos": "Student",
"image": null,
"bio": "Philanthropist"
},
{
"name": "Husna Chungath",
"gh_username": "husnachungath",
"place": "Tirur",
"current_pos": "Python Django Developer",
"image": "husna.jpeg",
"bio": "Learning a new programming language can be hugely fascinating and a fun experience."
},
{
"name": "Vishnuprasad V S",
"gh_username": "vishnuxprasad",
"place": "Thrissur, Kerala, India",
"current_pos": "Engineering undergrad",
"image": null,
"bio": "Put in the work and be happy with what you earned."
},
{
"name": "Mansoor Majeed",
"gh_username": "Mans22r",
"place": "Ernakulam",
"current_pos": "Front End Developer",
"image": "mansoor.JPG",
"bio": "HUGs and Kisses v/s BUGs and Fixes"
},
{
"name": "Joseph Mathai",
"gh_username": "josephmathai10",
"place": "Kottayam",
"current_pos": "Freelance Web Developer",
"image": "josephmathai10.jpg",
"bio": "Self-Taught Web Dev & Designer looking forward to learn more"
},
{
"name": "Vishnuprasad V S",
"gh_username": "vishnuxprasad",
"place": "Thrissur, Kerala, India",
"current_pos": "Engineering undergrad",
"image": null,
"bio": "Put in the work and be happy with what you earned."
},
{
"name": "Nikhil Jose",
"gh_username": "nikiljos",
"place": "Kottayam || Punjab",
"current_pos": "Backend Developer",
"image": "nikiljos.jpg",
"bio": "Converting Coffee☕ into Code🧑💻"
},
{
"name": "Megha Anil",
"gh_username": "Meghaanil",
"place": "Adoor",
"current_pos": "BTech CSE Student of AEC",
"image": "null",
"bio": "An enthusiastic learner."
},
{
"name": "Jeevan Joseph",
"gh_username": "Jeevan1310",
"place": "Pathanamthitta",
"current_pos": "Web Developer",
"image": "jeevanjoseph.jpg",
"bio": "Ready to be Activated"
},
{
"name": "Midhun Mathew",
"gh_username": "memidhun",
"place": "Kottayam",
"current_pos": "Cybersecurity Researcher",
"image": null,
"bio": "I am a Cybersecurity and Machine Learning Enthusiast"
},
{
"name": "Milan Deepak",
"gh_username": "milandeepak",
"place": "Kochi",
"current_pos": "Python Developer",
"image": "milandeepak.jpeg",
"bio": "I am a Tech Freak, love to learn new things and explore new technologies."
},
{
"name": "Sagnik Sahoo",
"gh_username": "heysagnik",
"place": "India",
"current_pos": "Student",
"image": "bro.png",
"bio": "Hi, I'm Sagnik Sahoo! I'm a student with in-depth experience in UI/UX design and entrepreneurship."
},
{
"name": "Gloria Thomas",
"gh_username": "gloria2000",
"place": "Kochi",
"current_pos": "Python Developer",
"image": null,
"bio": "I am new but I love to learn new things and explore new technologies."
},
{
"name": "Ali Sezişli",
"gh_username": "alisezisli",
"place": "Izmir",
"current_pos": "Linux administrator",
"image": null,
"bio": "Linux administrator but not a developer..."
},
{
"name": "Jyotsna Joshy",
"gh_username": "Jyotsnajoshy",
"place": "Thrissur",
"current_pos": "Student",
"image": null,
"bio": "Computer science student at College of engineering Vadakara."
},
{
"name": "Aswin Asok",
"gh_username": "AswinAsok",
"place": "Trivandrum",
"current_pos": "FrontEnd Developer & Designer",
"image": "AswinAsok.png",
"bio": "Just a person who likes to make stable code, symmetric design and simple content."
},
{
"name": "Berika Şener",
"gh_username": "berikasener",
"place": "Turkiye",
"current_pos": "Linux System Administrator",
"image": null,
"bio": "Trying to learn Linux and also a front-end developer."
},
{
"name": "Aditya",
"gh_username": "LOCODAK",
"place": "India",
"current_pos": "Student",
"image": null,
"bio": "Trying to learn Linux and also a front-end developer, and want to learn backend"
},
{
"name": "Sreehari P",
"gh_username": "Sreehari0101",
"place": "Palakkad, Kerala, India",
"current_pos": "Engineering undergrad",
"image": null,
"bio": "passionate programmer interested in machine learning."
},
{
"name": "Abhishek",
"gh_username": "abixxek",
"place": "Trivandrum",
"current_pos": "student",
"image": null,
"bio": "trying to be an ai engineer"
},
{
"name": "Akash I J Britto",
"gh_username": "",
"place": "Trivandrum",
"current_pos": "Student",
"image": null,
"bio": "An AI enthusiast in the making"
},
{
"name": "Megha G",
"gh_username": "MeghaGold",
"place": "Trivandrum",
"current_pos": "Student",
"image": null,
"bio": "An aspiring developer."
},
{
"name": "Minshad",
"gh_username": "minshadk",
"place": "India",
"current_pos": "jobless",
"image": null,
"bio": "exploreing new things"
},
{
"name": "Aravind S",
"gh_username": "aravinds-arv",
"place": "Palakkad",
"current_pos": "Technophile",
"image": "aravinds-arv.jpg",
"bio": "Hi, I'm Aravind! I am a self taught programmer, graphic designer, free & open source enthusiast and forever a learner."
},
{
"name": "Shahinsha",
"gh_username": "Shahin-Sha",
"place": "Malappuram",
"current_pos": "Student",
"image": "shahinsha.jpeg",
"bio": "Tech Enthusiast"
},
{
"name": "Mohammed Safvan",
"gh_username": "mohammedsafvan",
"place": "Malappuram",
"current_pos": "Student",
"image": null,
"bio": "An individual with passion for coding 💻"
},
{
"name": "Aparna Nair",
"gh_username": "Aparna106",
"place": "Kochi",
"current_pos": "Student",
"image": null,
"bio": "An avid reader who is learning to code."