-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathcontestants.json
More file actions
997 lines (991 loc) · 27.7 KB
/
contestants.json
File metadata and controls
997 lines (991 loc) · 27.7 KB
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
{
"contestants":[
{
"name": "Sneha Mishra",
"imageurl": "contestant/panda.jpg",
"about": "Noob help me out!!!",
"college": "IIIT, Allahabad",
"facebook": "https://www.facebook.com/snehamishrabb",
"github": "https://github.com/Tlazypanda",
"twitter": "",
"referral": ""
},
{
"name" : "Atul Kumar Agrawal",
"imageurl" : "contestant/atul.jpg",
"about" : "Coder.Geek",
"college" : "Veer Surendra Sai University Of Technology,Burla,Sambalpur",
"facebook" : "https://www.facebook.com/msatul1305",
"github" : "https://github.com/msatul1305",
"twitter" : "https://twitter.com/ms_atul",
"referral" : ""
},
{
"name": "Prakash Kumar",
"imageurl": "contestant/pk.jpg",
"about": "I'm here to scratch my head",
"college": "IIIT, Allahabad",
"facebook": "https://www.facebook.com/prakash.kumsr",
"github": "https://github.com/OG1998",
"twitter": "",
"referral": ""
},
{
"name": "Piyush Mantri",
"imageurl": "contestant/mantri.jpg",
"about": "Keep Learning",
"college": "NIT Durgapur",
"facebook": "https://www.facebook.com/piyush.mantri007",
"github": "https://github.com/piyu007",
"twitter": "",
"referral": "shivhek25"
},
{
"name": "Rudransh Gupta",
"imageurl": "contestant/pp1.jpg",
"about": "I turn coffee!☕ into code! 😋",
"college": "IIIT, Allahabad",
"facebook": "https://www.facebook.com/rudransh.gupta.161",
"github": "https://github.com/hacker1x1x1",
"twitter": "",
"referral": ""
},
{
"name": "Senky Bansal",
"imageurl": "contestant/senky.jpg",
"about": "The devil",
"college": "iiit allahabad",
"facebook": "https://www.facebook.com/profile.php?id=100009153186454",
"github": "https://github.com/DEVILCODER-SB99",
"twitter": "https://twitter.com",
"referral": ""
},
{
"name": "Prince Kumar",
"imageurl": "contestant/princejvm.jpg",
"about": "A simple guy seeking for perfection time to time",
"facebook": "https://www.facebook.com/princejvm",
"github": "https://github.com/princejvm",
"twitter": "https://twitter.com/princejvm_c",
"referral": ""
},
{
"name": "Kiran Velumuri",
"imageurl": "contestant/kiranvelumuri.svg",
"about": "too Noob to code!!",
"college": "IIIT Allahabad",
"facebook": "https://www.facebook.com/kiran.velumuri",
"github": "https://github.com/KiranVelumuri",
"twitter": "",
"referral": "https://github.com/surasnayak"
},
{
"name": "Saurabh Kumar",
"imageurl": "contestant/saurabh.png",
"about": "Coding is my passion. Dont take it from me!!",
"college": "IIIT Allahabad",
"facebook": "",
"github": "https://github.com/srbkhr",
"twitter": "",
"referral": "https://github.com/surasnayak"
},
{
"name": "Sumit Diwakar",
"imageurl": "contestant/sumit.png",
"about": "Keep cool and learn stuff!!",
"college": "IIIT Allahabad",
"facebook": "",
"github": "https://github.com/sumit1507",
"twitter": "",
"referral": "https://github.com/surasnayak"
},
{
"name": "Shailendra Kumar",
"imageurl": "contestant/shailendra.png",
"about": "Coding is my passion. Dont take it from me!!",
"college": "IIIT Allahabad",
"facebook": "",
"github": "https://github.com/Shail7524",
"twitter": "",
"referral": "https://github.com/surasnayak"
},
{
"name": "Anand Singh",
"imageurl": "contestant/anand.png",
"about": "Coding is my passion. Dont take it from me!!",
"college": "IIIT Allahabad",
"facebook": "",
"github": "https://github.com/asy00",
"twitter": "",
"referral": ""
},
{
"name": "Akshay Kumar",
"imageurl": "contestant/akshay.png",
"about": "Dragon Ball Super Rocks!!",
"college": "IIIT Allahabad",
"facebook": "",
"github": "https://github.com/jfx1234",
"twitter": "",
"referral": "https://github.com/surasnayak"
},
{
"name": "Sanghamitra Nayak",
"imageurl": "contestant/sanghamitra.jpg",
"about": "CBIT Queen!!",
"college": "CBIT Hyderabad",
"facebook": "",
"github": "https://github.com/sanghamitra04",
"twitter": "",
"referral": "https://github.com/surasnayak"
},
{
"name": "Kamal Chaubey",
"imageurl": "contestant/kamal.jpg",
"about": "The swagger boy!!",
"college": "IIIT Allahabad",
"facebook": "",
"github": "https://github.com/kamalchaubey1",
"twitter": "",
"referral": "https://github.com/surasnayak"
},
{
"name": "Sarath",
"imageurl": "contestant/sarath.jpg",
"about": "too Noob to code!!",
"college": "IIIT Allahabad",
"facebook": "",
"github": "https://github.com/KingBizzleLord",
"twitter": "",
"referral": "https://github.com/surasnayak"
},
{
"name": "Aquib",
"imageurl": "contestant/aquib.png",
"about": "I code People not problem!!",
"college": "IIIT Allahabad",
"facebook": "",
"github": "https://github.com/aquib786",
"twitter": "",
"referral": "https://github.com/surasnayak"
},
{
"name": "Suras Kumar Nayak",
"imageurl": "contestant/surasnayak.jpg",
"about": "I love my friends the most!!",
"facebook": "https://www.facebook.com/suras.nayak",
"github": "https://github.com/surasnayak",
"twitter": "",
"referral": ""
},
{
"name": "Arpit Mishra",
"imageurl": "contestant/Cool-avatars-anonymous-avatar.jpg",
"about": "I code when I'm bored.",
"college": "",
"facebook": "https://www.facebook.com/arpitmisraw2614",
"github": "https://github.com/arpitmisraw",
"twitter": "",
"referral": ""
},
{
"name": "Anmol Chugh",
"imageurl": "contestant/IMG_20180103_205533.jpg",
"about": "I am a high-functioning SOCIOPATH",
"facebook": "https://www.facebook.com/anmol.chugh.92",
"github": "https://github.com/techac",
"twitter": "",
"referral": ""
},
{
"name": "Vishal Pani",
"imageurl": "contestant/avatar.jpeg",
"about": "An A.I invasion will probably make me laugh.",
"college": "IIIT, Allahabad",
"facebook": "https://www.facebook.com/vishal.pani",
"github": "https://github.com/falconis",
"twitter": "",
"referral": ""
},
{
"name": "Madhur Gupta",
"imageurl": "contestant/myimage.jpg",
"about": "A wanna-be Web Developer.",
"college": "",
"facebook": "https://www.facebook.com/madhurguptaiiita",
"github": "https://github.com/madhur1998",
"twitter": "",
"referral": ""
},
{
"name": "Jigar Chavada",
"imageurl": "contestant/jsc39.jpeg",
"about": "Eat Sleep Code Repeat",
"college": "",
"facebook": "https://www.facebook.com/jsc3998",
"github": "https://github.com/Jigar3",
"twitter": "",
"referral": ""
},
{
"name": "Vivek Raj",
"imageurl": "contestant/me1.jpg",
"about": "A Worst web-developer",
"college": "",
"facebook": "https://www.facebook.com/profile.php?id=100005118040716",
"github": "https://github.com/swaager",
"twitter": "",
"referral": ""
},
{
"name": "Abhishek Singh saini",
"imageurl": "contestant/profile.jpg",
"about": "I am an enthusiastic coder & developer",
"college": "",
"facebook": "https://www.facebook.com/Abhitaker4",
"github": "https://github.com/AbhiTaker",
"twitter": "https://twitter.com/Abhi_saini_AS",
"referral": ""
},
{
"name": "Atisaya Jain",
"imageurl": "contestant/atisayajain.jpg",
"about": "Learning how to learn!",
"college": "",
"facebook": "https://www.facebook.com/atisayajain",
"github": "https://github.com/atisayajain",
"twitter": "https://twitter.com/atisayajain",
"referral": ""
},
{
"name": "Yash Rathore",
"imageurl": "contestant/Default-gitUserAvatar.jpeg",
"about": "Who? what?! where?!!",
"college": "",
"facebook": "https://www.facebook.com/yash.re.10",
"github": "https://github.com/Re42",
"twitter": "",
"referral": ""
},
{
"name": "Abhishek Sharma",
"imageurl": "contestant/IMG_20180103_205533.jpg",
"about": "The lazy one",
"college": "",
"facebook": "https://www.facebook.com/profile.php?id=100006277743199",
"github": "https://github.com/abhishhh1",
"twitter": "https://twitter.com/abhishhh1",
"referral": ""
},
{
"name": "Praful Tondomker",
"imageurl": "contestant/ImageSS.jpg",
"about": "Who? what?! where?!!",
"college": "",
"facebook": "https://www.facebook.com/saisathypraful.tondomker",
"github": "https://github.com/SSPrafulTondomker",
"twitter": "",
"referral": ""
},
{
"name": "Aayush Joglekar",
"imageurl": "contestant/aj.jpeg",
"about": "Absolutely awkward, proud nerd & geek, decreaser of world suck.",
"college": "IIIT, Allahabad",
"facebook": "https://www.facebook.com/joglekaraayush",
"github": "https://github.com/aayushjoglekar",
"twitter": "https://github.com/aayushjoglekar",
"referral": ""
},
{
"name": "Naman Tiwari",
"imageurl": "contestant/namnam.jpg",
"about": "When in doubt, use brute force!",
"college": "",
"facebook": "https://www.facebook.com/namantw",
"github": "https://github.com/namantw",
"twitter": "",
"referral": ""
},
{
"name": "Kaushtub Rawat",
"imageurl": "contestant/IMG_20170611_132210.jpg",
"about": "There's nothing like 'slightly wrong' and 'nearly correct' in coding",
"college": "",
"facebook": "https://www.facebook.com/profile.php?id=100007203708174",
"github": "https://github.com/marshallKR7",
"twitter": "",
"referral": ""
},
{
"name": "Govind Dixit",
"imageurl": "contestant/govind.jpg",
"about": "Is someone seeing?",
"college": "",
"facebook": "https://www.facebook.com/govinddixit05",
"github": "https://github.com/GOVINDDIXIT",
"twitter": "",
"referral": ""
},
{
"name": "Druval CR",
"imageurl": "contestant/druval.jpg",
"about": "New to OpenSource",
"college": "",
"facebook": "https://www.facebook.com/druval.cr",
"github": "https://github.com/druvalcr28",
"twitter": "",
"referral": ""
},
{
"name": "Nilotpal Pramanik",
"imageurl": "contestant/nilotpal.jpg",
"about": "Nice to meet you:)",
"college": "",
"facebook": "",
"github": "https://github.com/goodday451999",
"twitter": "",
"referral": ""
},
{
"name": "Pratham Prakash Gupta",
"imageurl": "contestant/github_avatar.jpg",
"about": "Error 404! Not Found",
"college": "IIIT, Allahabad",
"facebook": "https://www.facebook.com/prathamprakash29",
"github": "https://github.com/prathamprakash29",
"twitter": "",
"referral": ""
},
{
"name": "Ananya Agrawal",
"imageurl": "contestant/ananya.jpg",
"about": "Help me learn !!",
"college": "",
"facebook": "https://www.facebook.com/ananya.agrawal1251999",
"github": "https://github.com/ananya-agrawal",
"twitter": "",
"referral": ""
},
{
"name": "Anubhav Marwaha",
"imageurl": "contestant/images.png",
"about": "Coding is the new heaven",
"college": "",
"facebook": "https://www.facebook.com/anubhav.marwaha",
"github": "https://github.com/Anubhav2000",
"twitter": "",
"referral": ""
},
{
"name": "Tushaar Kumar",
"imageurl": "contestant/image1.jpg",
"about": "New in open source",
"college": "",
"facebook": "https://www.facebook.com/tushaar.kumar.98",
"github": "https://github.com/ToughDude",
"twitter": "",
"referral": ""
},
{
"name": "Ayush Gupta",
"imageurl": "contestant/ayush.png",
"about": "Consectatio Excellentiae",
"college": "",
"facebook": "https://www.facebook.com/ayush926",
"github": "https://github.com/AK-007",
"referral": ""
},
{
"name": "Nityananda Gohain",
"imageurl": "contestant/nitya.jpeg",
"about": "Code Explorer! :)",
"college": "",
"facebook": "https://www.facebook.com/nityanandagohain",
"github": "https://github.com/nityanandagohain",
"twitter": "",
"referral": ""
},
{
"name": "Nikita Jain",
"imageurl": "contestant/img.jpg",
"about": "",
"college": "",
"facebook": "",
"github": "https://github.com/nikki1016",
"twitter": "",
"referral": ""
},
{
"name": "Abhinav Kumar Srivastava",
"imageurl": "contestant/abhinav.jpg",
"about": "Yet another one, but different",
"college": "",
"facebook": "",
"github": "https://github.com/ProBeta1",
"twitter": "",
"referral": ""
},
{
"name": "Aditya Raj",
"imageurl": "contestant/aditya-raj.jpg",
"about": "Feeling open sourced!",
"college": "",
"facebook": "",
"github": "https://github.com/brain-sick",
"twitter": "",
"referral": ""
},
{
"name": "Pranjal Gupta",
"imageurl": " contestant/IMG_20171225_183446.jpg",
"about": "",
"college": "",
"facebook": "https://www.facebook.com/pranjal.gupta.562",
"github": "https://github.com/pranjalg2308",
"twitter": "",
"referral": ""
},
{
"name": "Nabeel Jawahir",
"imageurl": "contestant/nabeel.jpg",
"about": "ganggang",
"facebook": "https://www.facebook.com/nab331",
"github": "https://github.com/nab331",
"twitter": ""
},
{
"name": "Arsh Panghal",
"imageurl": "contestant/arshjat.jpg",
"about": "Interested in full stack web developing!",
"college": "",
"facebook": "https://www.facebook.com/arsh.panghal",
"github": "https://github.com/arshjat",
"twitter": "",
"referral": ""
},
{
"name": "Naga Meher Chand Pulavarty",
"imageurl": "contestant/kirito.jpg",
"about": "Normal is Boring....",
"facebook": "https://www.facebook.com/meher.rocks123",
"github": "https://github.com/blaze17280",
"twitter": "",
"referral": ""
},
{
"name": "Gaurav Pandey",
"imageurl": "contestant/dexter.jpeg",
"about": "Still a Beginner",
"college": "",
"facebook": "",
"github": "https://github.com/gau1rav",
"twitter": "",
"referral": ""
},
{
"name": "Amritesh Bhaskar",
"imageurl": "contestant/amy.jpeg",
"about": "Just a Beginner. but Beware!...",
"college": "",
"facebook": "https://www.facebook.com/technoamritesh",
"github": "https://github.com/amriteshbhaskar",
"twitter": "",
"referral": ""
},
{
"name": "Tanmay Mittal",
"imageurl": "contestant/tanmay.jpeg",
"about": "New to this Developer's World",
"college": "",
"facebook": "https://www.facebook.com/tanmay.mittal.106",
"github": "https://github.com/strikertanmay",
"twitter": "",
"referral": ""
},
{
"name": "Pulkit Goel",
"imageurl": "contestant/pulkit.jpeg",
"about": "Yup, that's my profile pic",
"college": "",
"facebook": "",
"github": "https://github.com/Tachyon01",
"twitter": "",
"referral": ""
},
{
"name": "Esha Jaiswal",
"imageurl": "contestant/esha.jpg",
"about": "Just Learning",
"college": "",
"facebook": "https://www.facebook.com/esha.jaiswal.52",
"github": "https://github.com/Esha23",
"twitter": "",
"referral": ""
},
{
"name": "Shyam K Kotecha",
"imageurl": "contestant/pic.png",
"about": "Newbie trying to learn opensource development.",
"college": "",
"facebook": "",
"github": "https://github.com/shyam49",
"twitter": "",
"referral": ""
},
{
"name": "Utkarsh Singh",
"imageurl": "contestant/utkarsh_singh.jpg",
"about": "Creaive and Passionate",
"college": "",
"facebook": "https://facebook.com/utkarshsingh369",
"github": "https://github.com/utkarshsingh99",
"twitter": "",
"referral": ""
},
{
"name": "Komal Bhadani",
"imageurl": "contestant/Pic.jpg",
"about": "Everything seems new!!",
"college": "",
"facebook": "",
"github": "https://github.com/KomalBhadani27",
"twitter": "",
"referral": ""
},
{
"name": "Aditi Aggarwal",
"imageurl": "contestant/aditi.jpg",
"about": "just learning opencode",
"college": "",
"facebook": "",
"github": "https://github.com/adiagg2000",
"twitter": "",
"referral": ""
},
{
"name": "Mohammad Amir",
"imageurl": "contestant/amir.jpg",
"about": "New to Opensource",
"college": "",
"facebook": "",
"github": "https://github.com/mdmair2021",
"twitter": "",
"referral": ""
},
{
"name": "Aayush Chaudhry",
"imageurl": "contestant/photo.jpg",
"about": "Lets all just pretend that this is a really clever bio.",
"college": "IIIT, Allahabad",
"facebook": "https://www.facebook.com/ayush.chaudhry007",
"github": "https://github.com/maverick0004",
"twitter": "",
"referral": ""
},
{
"name": "Priyesh Kumar",
"imageurl": "contestant/16priyesh.jpg",
"about": "learning open source development",
"college": "",
"facebook": "",
"github": "https://github.com/16priyesh",
"twitter": "",
"referral": ""
},
{
"name": "Aditya Sharma",
"imageurl": "contestant/im-adi.jpeg",
"about": "Learning Opencode",
"college": "IIIT, Allahabad",
"facebook": "https://www.facebook.com/292000aditya",
"github": "https://github.com/im-adi",
"twitter": "",
"referral": ""
},
{
"name": "Akshit Bansal",
"imageurl": "contestant/foto.jpg",
"about": "I am a Rookie.",
"college": "",
"facebook": "https://www.facebook.com/axit55",
"github": "https://github.com/permanent-bnsl",
"twitter": "https://twitter.com/permanent_bnsl",
"referral": ""
},
{
"name": "Muskan",
"imageurl": "contestant/muskan.jpg",
"about": "I am a contestant.",
"college": "",
"facebook": "",
"github": "https://github.com/muskan6769",
"twitter": "",
"referral": ""
},
{
"name": "Ravi Shyam",
"imageurl": "contestant/ravi.jpg",
"about": "sleepy head",
"college": "",
"facebook": "https://www.facebook.com/RaVi.UrF.SuRaJ.oO",
"github": "https://github.com/justFaGit",
"twitter": "",
"referral": ""
},
{
"name": "Akshay Nandwana",
"imageurl": "contestant/anandwana001.png",
"about": "Android Dev init",
"college": "",
"facebook": "https://www.facebook.com/anandwana001",
"github": "https://github.com/anandwana001",
"twitter": "https://twitter.com/akshay81844",
"referral": ""
},
{
"name": "Aadya Mishra",
"imageurl": "contestant/aadya.jpeg.jpg",
"about": "Noob, enthusiastic learner!",
"facebook": "https://www.facebook.com/aadya.mishra.583",
"github": "https://github.com/Panda2498",
"twitter": "",
"referral": ""
},
{
"name": "Anshuman Verma",
"imageurl": "contestant/anshumanv.jpeg",
"about": "Football | Anime",
"college": "",
"facebook": "https://www.facebook.com/anshumanv12",
"github": "https://github.com/anshumanv",
"twitter": "https://twitter.com/Anshumaniac12",
"referral": ""
},
{
"name": "Adesh Shukla",
"imageurl": "contestant/26114314_2003579423234176_4039171765716067095_o.jpg",
"about": "Lets Open the Code",
"college": "",
"facebook": "https://www.facebook.com/adesh.shukla.790",
"github": "https://github.com/aadixiiita",
"twitter": "",
"referral": ""
},
{
"name": "Arya Krishnan",
"imageurl": "contestant/arya.jpg",
"about": "learning genuinity",
"facebook": "https://www.facebook.com/arya.krishnan.106",
"github": "https://github.com/XIIQ",
"twitter": ""
},
{
"name": "Swarnima Gautam",
"imageur1": "contestant/swarnima.jpg",
"about": "learning opencode",
"college": "",
"facebook": "https://www.facebook.com/swarnima.gautam.14",
"github": "https://github.com/Swarnima-27",
"twitter": "",
"referral": ""
},
{
"name": "Ashray Sinha",
"imageurl": "contestant/my_photo.png",
"about": "Eat sleep code repeat",
"college": "",
"facebook": "https://www.facebook.com/ashray.sinha.5",
"github": "https://github.com/ashraysinha6069",
"twitter": "",
"referral": ""
},
{
"name": "Ankit Kripal",
"imageurl": "contestant/akira.jpg",
"about": "The worst one.",
"college": "",
"facebook": "",
"github": "https://github.com/NeroIS",
"twitter": "",
"referral": ""
},
{
"name": "Shivansh Srivastava",
"imageurl": "contestant/ironman.jpg",
"about": "The Optimist",
"college": "",
"facebook": "",
"github": "https://github.com/Shivansh1805",
"twitter": "",
"referral": ""
},
{
"name": "sangeeta meena",
"imageurl": "contestant/sangeeta.jpg",
"about": "learning opencode",
"facebook": "",
"github": "https://github.com/sangeeta2499",
"twitter": "",
"referral": ""
},
{
"name": "Ranjan Binwani",
"imageurl": "contestant/ranjan.jpeg",
"about": "Always learning",
"college": "Birla Institute of Technology, Mesra",
"facebook": "https://www.facebook.com/ranjan.binwani",
"github": "https://github.com/ranjanbinwani",
"twitter": "",
"referral": ""
},
{
"name": "Harsh Aryan",
"imageurl": "contestant/aryan-harsh.jpg",
"about": "Learning how to learn to code",
"college": "IIIT Allahabad",
"facebook": "https://www.facebook.com/profile.php?id=100008722324295",
"github": "https://github.com/aryan-harsh",
"twitter": "",
"referral": ""
},
{
"name": "Ashwin Samudre",
"imageurl": "contestant/kiryo.png",
"about": "Optimize.",
"college": "Pune Institute of Computer Technology, Pune",
"facebook": "",
"github": "https://github.com/kiryteo",
"twitter": "",
"referral": ""
},
{
"name": "Niharika Shrivastava",
"imageurl": "contestant/niharika.png",
"about": "Going with the flow",
"college": "IIIT Allahabad",
"facebook": "",
"github": "https://github.com/OrionStar25",
"twitter": "",
"referral": ""
},
{
"name": "Ambuj Krishna Agrawal",
"imageurl": "contestant/35086901.jpg",
"about": "It's a trap!!",
"college": "IIIT Allahabad",
"facebook": "https://www.facebook.com/ambuj.agrawal.1",
"github": "https://github.com/cuz789",
"twitter": "",
"referral": ""
},
{
"name": "Utkarsh Pankaj",
"imageurl": "contestant/utkarsh.jpg",
"about": "The devil arrives",
"college": "IIIT Allahabad",
"facebook": "https://www.facebook.com/pankajutkarsh02",
"github": "https://github.com/AlphaCholera",
"twitter": "",
"referral": ""
},
{
"name": "Vinamer Vakunth Vansil",
"imageurl": "contestant/22448433_1920658567974298_3506852267266230352_n.jpg",
"about": "A Noob",
"college": "IIIT Allahabad",
"facebook": "https://www.facebook.com/vinamer",
"github": "https://github.com/vvvinamer",
"twitter": "",
"referral": ""
},
{
"name": "Shivam Singhal",
"imageurl": "contestant/shivam.jpg",
"about": "Stay Hungry, Stay Foolish.",
"college": "NIT Durgapur",
"facebook": "https://www.facebook.com/profile.php?id=100006888462062&ref=br_rs",
"github": "https://github.com/shivhek25",
"twitter": "",
"referral": ""
},
{
"name": "Likhitha mannam",
"imageurl": "contestant/image.jpg",
"about": "keep going",
"facebook": "",
"github": "https://github.com/likhithamannam",
"twitter": "",
"referral": ""
},
{
"name": "Ashish Agarwala",
"imageurl": "contestant/ashishagarwal.jpg",
"about": "A Noob",
"college": "NIT Durgapur",
"facebook": "",
"github": "https://github.com/ashish4321",
"twitter": "",
"referral": "shivhek25"
},
{
"name": "Maanas Vohra",
"imageurl": "contestant/maanas1.jpg",
"about": "A professional procastinator",
"college": "IIIT - Allahabad",
"facebook": "https://www.facebook.com/maanas.vohra",
"github": "https://github.com/MaanasVohra",
"twitter": "",
"referral": ""
},
{
"name": "Anshu Kumari",
"imageurl": "contestant/Ros_Anshu.jpg",
"about": "Trying to set my vision",
"facebook": "https://www.facebook.com/RosAnshu",
"github": "https://github.com/Anshu-ros",
"twitter": "https://twitter.com/Ros_Anshu",
"referral": ""
},
{
"name": "Priyanka Choubey",
"imageurl": "contestant/priyanka.jpg",
"about": "Always Exploring",
"college": "Indian Institute of Information Technology, Allahabad",
"facebook": "https://www.facebook.com/profile.php?id=100004553978615",
"github": "https://github.com/priyanka-choubey",
"twitter": "",
"referral": "ananya"
},
{
"name": "Gaurav Kumar",
"imageurl": "contestant/dbz.jpg",
"about": "I am Rookie",
"college": "Indian Institute of Information Technology, Allahabad",
"facebook": "https://www.facebook.com/kg674",
"github": "https://github.com/kgauravk",
"twitter": "",
"referral": ""
},
{
"name": "Shantam Shrestha",
"imageurl": "contestant/logan.jpg",
"about": "I love devolopment(android and web)",
"college": "Indian Institute of Information Technology, Allahabad",
"facebook": "https://www.facebook.com/shantam.shrestha",
"github": "https://github.com/shantam0810",
"twitter": "https://twitter.com/shant0810",
"referral": ""
},
{
"name": "Hidayat Ullah Khan",
"imageurl": "contestant/elmo.jpg",
"about": "Newbie to webDev",
"college": "Indian Institute of Information Technology, Lucknow",
"facebook": "https://www.facebook.com/profile.php?id=100017456440701",
"github": "https://github.com/masterchef2209",
"twitter": "",
"referral": ""
},
{
"name": "Mahak Saria",
"imageurl": "contestant/mahek.jpg",
"about": "Beginner in the world of open source",
"college": "SRM Institute of Science and Technology",
"facebook": "https://www.facebook.com/mahek.saria123",
"github": "https://github.com/mahek5",
"twitter": "",
"referral": "shivhek25"
},
{
"name": "Prashik Raut",
"imageurl": "contestant/github-512.png",
"about": "Learning !!",
"college": "Indian Institute Of Information Technology,Allahabad",
"facebook": "https://www.facebook.com/prashik.raut.14",
"github": "https://github.com/prashikr",
"twitter": "",
"referral": "namantw"
},
{
"name": "Ekansh Bansal",
"imageurl": "contestant/Ekansh.png",
"about": "Naah I don't have anything witty to say!",
"college": "IIIT-Allahabad",
"facebook": "https://www.facebook.com/ekansh.bansal.77",
"github": "https://github.com/Ace-Bansal",
"twitter": "",
"referral": ""
},
{
"name": "Snigdha Dobhal",
"imageurl": "contestant/Code.jpg",
"about": "Coding is love!!!",
"college": "IIIT Allahabad",
"facebook": "https://www.facebook.com/snigdha.dobhal",
"github": "https://github.com/SnigdhaDobhal",
"twitter": "",
"referral": "https://github.com/Ace-Bansal"
},
{
"name": "Sagar Lakhani",
"imageurl": "contestant/sagar.jpg",
"about": "development is fun",
"college": "IIIT Allahabad",
"facebook": "https://www.facebook.com/profile.php?id=100017418402038",
"github": "https://github.com/SLakhani1",
"twitter": "",
"referral": "https://github.com/ananya-agrawal"
},
{
"name": "Rahul Arulkumaran",
"imageurl": "contestant/rahul_arulkumaran.jpg",
"about": "Sleep all day, Code all night | Open Source Enthusiast",
"college": "Mahindra Ecole Centrale, Hyderabad",
"facebook": "https://www.facebook.com/rahulroxx1233",
"github": "https://github.com/rahulkumaran",
"twitter": "",
"referral": ""
},
{
"name": "Swastik Singh",
"imageurl": "contestant/swastik.jpg",
"about": "",
"college": "IIIT Lucknow",
"facebook": "https://www.facebook.com/swastik.singh.501",
"github": "https://github.com/SwastikSingh0301",
"twitter": "",
"referral": "https://github.com/Ace-Bansal"
},
{
"name": "Jayant Saraf",
"imageurl": "contestant/IMG_1940.JPG",
"about": "I am a web developer",
"college": "NIT Durgapur",
"facebook": "",
"github": "https://github.com/jayantsaraf",
"twitter": "",
"referral": "shivhek25"
},
{
"name": "Aashutosh Rathi",
"imageurl": "contestant/aashutoshrathi.jpeg",
"about": "OpenSource and Python Freak | Sophomore",
"college": "IIIT Vadodara",
"facebook": "https://www.facebook.com/aashutoshrathi",
"github": "https://github.com/aashutoshrathi",
"twitter": "https://twitter.com/AashutoshRathi",
"referral": "https://github.com/anshumanv"
},
{
"name": "Yash Agarwal",
"imageurl": "contestant/yash_agarwal.jpg",
"about": "Do it with perfection, or don't do it!",
"college": "IIIT Allahabad",
"facebook": "https://www.facebook.com/yashyorker",
"github": "https://github.com/yash-agarwal17",
"twitter": "",
"referral": "falconis"
}
]
}