forked from acm-w-nitk/ACM-W-Website-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopp.json
1298 lines (1298 loc) · 65 KB
/
opp.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": "Microsoft Codess",
"organiser": "Microsoft",
"typeOfEvent": "Coding contest -> Hackathon",
"awardsPrizesBenefits": "Internship opportunity",
"eventDomainTags": "CP",
"website": "https://www.codess.net/",
"applicationDate": "-",
"eligibility": "Second year female students",
"description": "Codess aims to inspire female coders and help them achieve their professional goals."
},
{
"name": "Visa Code Ur Way",
"organiser": "Visa",
"typeOfEvent": "Coding contest -> Trip to visa office",
"awardsPrizesBenefits": "Internship/placement opportunity",
"eventDomainTags": "CP",
"website": "https://www.hackerearth.com/challenges/hiring/visa-code-your-way-2019/",
"applicationDate": "-",
"eligibility": "Third + Fourth year female students",
"description": "-"
},
{
"name": "Adobe India WIT Scholarship",
"organiser": "Adobe",
"typeOfEvent": "Scholarship\n",
"awardsPrizesBenefits": "Scholarship Amount + GHCI Travel Grant + Mentor for final year project",
"eventDomainTags": "Scholarship",
"website": "https://research.adobe.com/adobe-india-women-in-technology-scholarship/",
"applicationDate": "Sept 22",
"eligibility": "First to pre-final year\n",
"description": "Adobe Research is growing in new areas, including AI, machine learning, virtual reality, augmented reality, immersive media, computer-human interaction, systems technologies, document intelligence, data science, video advertising, and customer intelligence."
},
{
"name": "Adobe WIT Scholarship (Global)",
"organiser": "Adobe",
"typeOfEvent": "Scholarship\n",
"awardsPrizesBenefits": "Scholarship Amount + Internship opportunity + Mentor for final year project + Creative Cloud subscription membership",
"eventDomainTags": "Scholarship",
"website": "https://research.adobe.com/scholarship/",
"applicationDate": "Sept 27",
"eligibility": "2nd to pre-final year",
"description": "The Adobe Research Women-in-Technology Scholarship recognizes outstanding undergraduate and masters female students anywhere in the world who are studying computer science."
},
{
"name": "Github Universe",
"organiser": "GitHub",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Community, learning skills",
"eventDomainTags": "Conference",
"website": "https://githubuniverse.com/",
"applicationDate": "Nov 13-14",
"eligibility": "All GitHub users",
"description": "To get to know GitHub's products and recent technologies"
},
{
"name": "PyCon",
"organiser": "Pythonistas",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Community, contributing to Python",
"eventDomainTags": "Conference",
"website": "-",
"applicationDate": "2019-11-25T18:30:00.000Z",
"eligibility": "All students",
"description": "PyCon India is the annual gathering of Pythonistas, run by the Indian Python community, to foster adoption of the Python programming language."
},
{
"name": "Unite India - Unity Conference",
"organiser": "Unity",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Networking, workshops",
"eventDomainTags": "Conference",
"website": "https://unity.com/event/unite-india-2019",
"applicationDate": "2019-11-12T18:30:00.000Z",
"eligibility": "All students",
"description": "Discover the latest developments in the content creation engine used by millions."
},
{
"name": "WTM Scholarship",
"organiser": "Google",
"typeOfEvent": "Scholarship\n",
"awardsPrizesBenefits": "Scholarship, retreat, community",
"eventDomainTags": "Scholarship",
"website": "https://www.womentechmakers.com/scholars",
"applicationDate": "2019-12-05T18:30:00.000Z",
"eligibility": "Females CSE and IT undergraduates and graduates",
"description": "Provides visibility, community, and resources for women in technology.\n"
},
{
"name": "GHC",
"organiser": "AnitaB",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Scholarship, community, Abie Awards",
"eventDomainTags": "Conference",
"website": "https://ghcindia.anitab.org/",
"applicationDate": "2019-03-05T18:30:00.000Z",
"eligibility": "All female undergraduate and graduate students",
"description": "It is the world's largest gathering of women in computing."
},
{
"name": "Abie Awards",
"organiser": "Anita Borg Institute for Women and Technology",
"typeOfEvent": "Celebration (Award distribution)",
"awardsPrizesBenefits": "Travel grant to GHC",
"eventDomainTags": "Celebration",
"website": "https://ghc.anitab.org/abie-awards/",
"applicationDate": "-",
"eligibility": "All female undergraduate and graduate students",
"description": "Abie Awards honor these distinguished women, whose achievements and life stories demonstrate that all of us have the power to improve our world, individually and collective"
},
{
"name": "GHCI ACMW Scholarship\n",
"organiser": "ACM",
"typeOfEvent": "Scholarship\n",
"awardsPrizesBenefits": "Scholarships",
"eventDomainTags": "Scholarship",
"website": "https://women.acm.org/scholarships/",
"applicationDate": "-",
"eligibility": "Female undergraduate and graduates in CSE and IT",
"description": "provides support for women undergraduate and graduate students in Computer Science and related programs to attend research conferences."
},
{
"name": "Google Inside",
"organiser": "Google",
"typeOfEvent": "Internship",
"awardsPrizesBenefits": "Trip to Google Office",
"eventDomainTags": "Internship",
"website": "https://buildyourfuture.withgoogle.com/programs/inside-look/",
"applicationDate": "May 6 - June 9",
"eligibility": "CSE and IT undergraduates (excluding final years)",
"description": "Inside Look brings computer science students from underrepresented groups who are studying in Europe, the Middle East, and Africa together for an inside view of engineering at Google."
},
{
"name": "Google Venkat Scholarship",
"organiser": "Google",
"typeOfEvent": "Scholarship\n",
"awardsPrizesBenefits": "Financial award of 750 USD, funding for research",
"eventDomainTags": "Scholarship",
"website": "https://buildyourfuture.withgoogle.com/scholarships/venkat-panchapakesan-memorial-scholarship/",
"applicationDate": "2019-09-14T18:30:00.000Z",
"eligibility": "Computer Science undergraduates and graduates",
"description": "This is a scholarship that will support university students in making the world a more sustainable place using technology and are passionate about the field of computer science and engineering."
},
{
"name": "Google Tech Intern Connect",
"organiser": "Google Interns",
"typeOfEvent": "Networking event",
"awardsPrizesBenefits": "Network with tech interns",
"eventDomainTags": "Conference",
"website": "-",
"applicationDate": "-",
"eligibility": "-",
"description": "It is an opportunity to network with Googlers, other tech interns from different organizations and universities and to learn more about Google’s culture."
},
{
"name": "Hack InOut",
"organiser": "InOut",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "Internship opportunity, cash prize",
"eventDomainTags": "Hackathon",
"website": "https://hackinout.co/",
"applicationDate": "2019-10-04T18:30:00.000Z",
"eligibility": "Everyone (students as well as professionals)",
"description": "InOut has been a platform where technology leaders and the brightest minds come together to collaborate on building tools that solve real problems."
},
{
"name": "Gojek Hackathon - sheHack",
"organiser": "Gojek",
"typeOfEvent": "Hackathon (only for women)",
"awardsPrizesBenefits": "Cash prizes and free courses on edureka",
"eventDomainTags": "Hackathon",
"website": "https://skillenza.com/challenge/gojek-she-hack-hackathon",
"applicationDate": "2019-10-19T18:30:00.000Z",
"eligibility": "All female students",
"description": "It offers a platform to select and develop projects of their choosing with the technologies they see fit."
},
{
"name": "LinkedIn Wintathon\n",
"organiser": "LinkedIn",
"typeOfEvent": "All female Hackathon",
"awardsPrizesBenefits": "Prizes and networking",
"eventDomainTags": "Hackathon",
"website": "https://wintathon2019.splashthat.com/",
"applicationDate": "-",
"eligibility": "3rd or 4th Year B.Tech Engineering Students / 1st Year M.Tech Students / PhD Computer Science / Data Science / Machine Learning majors",
"description": "Develop an awesome product using Javascript, HTML, CSS, Java "
},
{
"name": "ACMW Conference Sponsorship",
"organiser": "ACM W",
"typeOfEvent": "Conference Sponsorship",
"awardsPrizesBenefits": "Sponsorship for attending ACMW related conferences",
"eventDomainTags": "Sponsorship",
"website": "https://www.iarcs.org.in/activities/grants.php#eligibility",
"applicationDate": "-",
"eligibility": "a student or a faculty member to an academic institution based in India",
"description": "Get sponsorship from ACM to attend a conference for free"
},
{
"name": "GHC Travel Grant",
"organiser": "Anita Borg Institute for Women and Technology",
"typeOfEvent": "Conference Sponsorship",
"awardsPrizesBenefits": "Sponsorship for attending GHC",
"eventDomainTags": "Sponsorship",
"website": "https://anitab.org/career-toolbox/ghc-scholarship-grants/",
"applicationDate": "-",
"eligibility": "-",
"description": "Get sponsorship to attend a GHC conference for free"
},
{
"name": "Google Udacity Scholarship",
"organiser": "Google",
"typeOfEvent": "Scholarship",
"awardsPrizesBenefits": "Scholarship for udacity and google courses",
"eventDomainTags": "Scholarship",
"website": "https://blog.udacity.com/2019/02/google-udacity-scholars-land-careers-in-tech.html",
"applicationDate": "-",
"eligibility": "-",
"description": "You can get scholarship for learning through Udacity tutorials "
},
{
"name": "Bertelsman Scholarship",
"organiser": "Bertelsman",
"typeOfEvent": "Scholarship",
"awardsPrizesBenefits": "Sponsorship for udacity courses",
"eventDomainTags": "Scholarship",
"website": "https://www.udacity.com/bertelsmann-tech-scholarships",
"applicationDate": "-",
"eligibility": " open to any student, 18 years of age or older",
"description": "You can get scholarship for learning through Udacity tutorials "
},
{
"name": "HiPC Conference",
"organiser": "IEEE",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Networking",
"eventDomainTags": "Conference",
"website": "https://hipc.org/",
"applicationDate": "-",
"eligibility": "-",
"description": "Basically a conference by IEEE where you can attend lectures or yourself present papers etc and network"
},
{
"name": "Women in Data Science Conference",
"organiser": "Stanford University",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Networking",
"eventDomainTags": "Conference",
"website": "https://www.widsconference.org/",
"applicationDate": "sold out for 2020",
"eligibility": "Everyone",
"description": "Conference at Stanford University related to Data Science where you can attend lectures or present papers etc and network"
},
{
"name": "Google Women I/O\n",
"organiser": "Google",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "Ticket and reimbursement to offset travel expenses to Google I/O",
"eventDomainTags": "Contest",
"website": "https://codingcompetitions.withgoogle.com/codejamio",
"applicationDate": "Not opened yet",
"eligibility": "https://codingcompetitions.withgoogle.com/terms ",
"description": "Basically called Code Jam: a coding contest by google"
},
{
"name": "Hackerrank Women's Coding Challenge\n",
"organiser": "Hackerrank",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "Cash prize, Tshirts",
"eventDomainTags": "Challenges",
"website": "https://www.hackerrank.com/hackerrank-all-womens-codesprint-2019/#info",
"applicationDate": "-",
"eligibility": "-",
"description": "Coding challenge by Hackerrank"
},
{
"name": "Hacktoberfest",
"organiser": "Digital Ocean and Github",
"typeOfEvent": "Celebration",
"awardsPrizesBenefits": "Goodies ",
"eventDomainTags": "Challenges",
"website": "https://hacktoberfest.digitalocean.com/",
"applicationDate": "-",
"eligibility": "-",
"description": "Fest where you can learn by attending informative sessions and solving coding challenges to get goodies"
},
{
"name": "Facebook F8",
"organiser": "Facebook",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Conference",
"eventDomainTags": "Conference",
"website": "https://www.f8.com/",
"applicationDate": "-",
"eligibility": "-",
"description": "Conference for networking and learning"
},
{
"name": "Android Summit",
"organiser": "Android",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Conference",
"eventDomainTags": "Celebration",
"website": "https://www.androidsummit.org/",
"applicationDate": "-",
"eligibility": "-",
"description": "Conference for learning and solving problems related to android"
},
{
"name": "Tensorflow Summit",
"organiser": "TensorFlow",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Conference",
"eventDomainTags": "Conference",
"website": "https://www.tensorflow.org/dev-summit",
"applicationDate": "-",
"eligibility": "Everyone",
"description": "in Sunnyvale, CA on March 11-12, 2020. Join us for two days of highly technical talks, demos, breakout sessions and in-depth conversations with the TensorFlow team and community!"
},
{
"name": "Django Con",
"organiser": "Django",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Five days of talks, sprints, and\ntutorials in Porto.",
"eventDomainTags": "Conference",
"website": "https://2020.djangocon.eu/",
"applicationDate": "not released yet",
"eligibility": "not released yet",
"description": "Five days of talks, sprints, and tutorials in Porto. MAY 27 - 31"
},
{
"name": "Linux Open Source Summit",
"organiser": "Linux Foundation",
"typeOfEvent": "Summit",
"awardsPrizesBenefits": "Oppurtunities to collaborate",
"eventDomainTags": "Conference",
"website": "https://events.linuxfoundation.org/open-source-summit-north-america/",
"applicationDate": "will open in January 2020",
"eligibility": "Everyone",
"description": "Open Source Summit North America (OSS NA) is the leading conference for developers, architects, and other technologists – as well as open source community and industry leaders – to collaborate, share information, learn about the latest technologies and gain a competitive advantage by using innovative open solutions."
},
{
"name": "Google Summer of Code",
"organiser": "Google",
"typeOfEvent": "Coding",
"awardsPrizesBenefits": "Internships",
"eventDomainTags": "Coding",
"website": "https://summerofcode.withgoogle.com/",
"applicationDate": "March 16 - 31, 2020",
"eligibility": "Everyone",
"description": "Students work on a 3 month programming project with an open source organization during their break from university."
},
{
"name": "Google Code In",
"organiser": "Google",
"typeOfEvent": "Coding contest for teenagers (aged 13-17)",
"awardsPrizesBenefits": "prizes from t-shirts to a trip to Google HQ",
"eventDomainTags": "Contest",
"website": "https://codein.withgoogle.com/",
"applicationDate": "Dec 2 2019- Jan 23 2020",
"eligibility": "Ages 13 -17",
"description": "Google Code-in is a contest to introduce pre-university students (ages 13-17) to open source software development. Since 2010, over 8100 students from 107 countries have completed work in the contest."
},
{
"name": "Outreachy",
"organiser": "Outreachy",
"typeOfEvent": "Internship",
"awardsPrizesBenefits": "Internships",
"eventDomainTags": "Internship",
"website": "https://www.outreachy.org/",
"applicationDate": "opens on January 22",
"eligibility": "Everyone",
"description": "Outreachy provides internships to work in Free and Open Source Software (FOSS). Interns work remotely, and are not required to move."
},
{
"name": "Google I/O",
"organiser": "Google",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Goodies and prizes",
"eventDomainTags": "Conference and Exhibition",
"website": "https://www.clocate.com/conference/google-io/3536/",
"applicationDate": "-",
"eligibility": "not released yet",
"description": "Google IO 2020is a technical conference and exhibition that provides content featuring Android, Google Chrome, Google APIs, GWT, App Engine, open web technologies, and more."
},
{
"name": "Rails Girls Summer of Code",
"organiser": "RGSoc",
"typeOfEvent": "scholarship",
"awardsPrizesBenefits": "Scholarships and Conferences",
"eventDomainTags": "Open Source Projects",
"website": "https://railsgirlssummerofcode.org/",
"applicationDate": "2019-12-31T18:30:00.000Z",
"eligibility": "women and non-binary coders",
"description": "global fellowship program"
},
{
"name": "Mitacs",
"organiser": "Mitacs",
"typeOfEvent": "Research internships",
"awardsPrizesBenefits": "Research Internships",
"eventDomainTags": "Internships",
"website": "https://www.mitacs.ca/en/mitacs-globalink-research-internships-2020",
"applicationDate": "To be notified when the 2020 application is open, fill the form on the website",
"eligibility": "-",
"description": "The Mitacs Globalink Research Internship is a competitive initiative for international undergraduates"
},
{
"name": "DAAD",
"organiser": "DAAD Germany",
"typeOfEvent": "Scholarship",
"awardsPrizesBenefits": "Scholarship",
"eventDomainTags": "Scholarships",
"website": "https://www2.daad.de/deutschland/stipendium/datenbank/en/21148-scholarship-database/?detail=50076777",
"applicationDate": "-",
"eligibility": "DAAD scholarship is given to the students who have at least two years of proven work experience",
"description": "DAAD (German Academic Exchange Service) is the largest funding organisation in the world covering more then 1.5m scholars in Germany and abroad."
},
{
"name": "Girlscript Summer of Code",
"organiser": "GirlScript Foundation",
"typeOfEvent": "Scholarships, collabs",
"awardsPrizesBenefits": "Scholarships and Fellowship",
"eventDomainTags": "Open Source projects",
"website": "https://www.gssoc.tech/",
"applicationDate": "Not released yet",
"eligibility": "Female students",
"description": "GirlScript Summer of Code is the 3 month long Open Source program during summers conducted by GirlScript Foundation, started in 2018, with an aim to help beginners get started with Open Source Development."
},
{
"name": "Goldman Sachs Women in Finance",
"organiser": "Goldman Sachs",
"typeOfEvent": "Leadership Camp",
"awardsPrizesBenefits": "Exposure to recruiting processes",
"eventDomainTags": "Workshops and leadership camp",
"website": "https://www.goldmansachs.com/careers/students/programs/americas/womens-leadership-camp.html",
"applicationDate": "NA for 2020",
"eligibility": "Female students graduating between December 2021 - June 2023",
"description": "Participants learn how to navigate the summer intern recruiting process, participate in career workshops and meet with members of the firm’s Women’s Network."
},
{
"name": "Goldman Sachs GSQuant",
"organiser": "Goldman Sachs",
"typeOfEvent": "Internship",
"awardsPrizesBenefits": "New Analyst Program in a full time position",
"eventDomainTags": "Internship",
"website": "goldmansachs.com/careers/students/programs/india/summer-analyst-program.html",
"applicationDate": "-",
"eligibility": "Candidates pursuing college/University degree,usually undertaken during second penultimate year of study",
"description": "Training where one learns the benefits and responsibilities of being a member of Goldman Sachs"
},
{
"name": "Singapore-India Hackthon",
"organiser": "MHRD Innovation Cell,All India Council for Technical Education and Nanyang Technological University Singapore",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "Cash prize",
"eventDomainTags": "Hackathon",
"website": "mic.gov.in/si2019/",
"applicationDate": "February",
"eligibility": "Pre-final year students who have participated in Grand Finale Software Edition and given their consent for participation",
"description": "Fast paced 36-hour competition to develop creative and innovative solutions focused on the theme"
},
{
"name": "Smart India Hackathon",
"organiser": "Ministry of HRD",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "Prizes Rs1,00,000 for each problem statement",
"eventDomainTags": "Hackathon",
"website": "sih.gov.in",
"applicationDate": "January",
"eligibility": "All technology students,team of 6 students with atleast one female candidate",
"description": "To harness creativity and expertise of students"
},
{
"name": "Codefundo++",
"organiser": "Microsoft",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "Cash Prize,T-shirt",
"eventDomainTags": "Hackathon",
"website": "codefundo.io",
"applicationDate": "July",
"eligibility": "All students from specified colleges",
"description": "One of its kind learning opportunity for students of select engineering colleges of India"
},
{
"name": "Google IWD Celebrations",
"organiser": "Google",
"typeOfEvent": "Scholarships,meetups etc",
"awardsPrizesBenefits": "Scholarship",
"eventDomainTags": "Scholarship,Meetup etc",
"website": "womentechmakers.com/iwd19",
"applicationDate": "-",
"eligibility": "Anyone above the age of 18",
"description": "The program provides visibility,community,and resources for women in technology"
},
{
"name": "Kickstart",
"organiser": "Google",
"typeOfEvent": "Coding competition",
"awardsPrizesBenefits": "Interview at Google",
"eventDomainTags": "Coding competition",
"website": "codingcompetitions.withgoogle.com/kickstart",
"applicationDate": "February",
"eligibility": "Atleast 16 years of age during registration,but atleast Minimum Age(older of 18 years or age of majority in your country of residence) to attend the onsite final round",
"description": "To understand the technical skills needed for a career at Google"
},
{
"name": "Google Code Jam",
"organiser": "Google",
"typeOfEvent": "Coding competition",
"awardsPrizesBenefits": "Championship title,Cash prize",
"eventDomainTags": "Coding competition",
"website": "codingcompetitions.withgoogle.com/codejam",
"applicationDate": "March",
"eligibility": "Atleast 16 years of age during registration,but atleast Minimum Age(older of 18 years or age of majority in your country of residence) to attend the onsite final round",
"description": "Google's longest running global coding competition calls on programmers around the world to solve challenging, algorithmic puzzles against the clock"
},
{
"name": "Facebook Hackercup",
"organiser": "Facebook",
"typeOfEvent": "World-wide programming competition",
"awardsPrizesBenefits": "Cash prize, interview call from Facebook for Software Developer role",
"eventDomainTags": "Programming competition",
"website": "facebook.com/hackercup/",
"applicationDate": "Before June 14",
"eligibility": "Registered users of Facebook service who are atleast 18 years of age",
"description": "International competition to engage programmers in algorithmic programming"
},
{
"name": "Hack the North",
"organiser": "University of Waterloo",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "T-shirts,Gadgets etc along with main prize",
"eventDomainTags": "Hackathon",
"website": "hackthenorth.com",
"applicationDate": "July",
"eligibility": "Students of any education level",
"description": "To experiment and create unique software or hardware projects from scratch"
},
{
"name": "Google for Mobile India",
"organiser": "Google",
"typeOfEvent": "-",
"awardsPrizesBenefits": "-",
"eventDomainTags": "-",
"website": "-",
"applicationDate": "-",
"eligibility": "-",
"description": "-"
},
{
"name": "ACM Assets\n",
"organiser": "ACM SIGACCESS",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Best Student Paper Award",
"eventDomainTags": "Conference",
"website": "sigaccess.org/assets/",
"applicationDate": "August",
"eligibility": "Student/ACM member/Non-ACM Member",
"description": "Series of conferences aimed at providing a technical forum for innovative research results that address the use of computing and information technologies to help people with disabilities"
},
{
"name": "KubeCon",
"organiser": "Cloud Native Computing Foundation",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Scholarships",
"eventDomainTags": "Conference",
"website": "events19.linuxfoundation.org/events/kubecon-cloudnativecon-north-america-2019/#",
"applicationDate": "May22-June9",
"eligibility": "Student",
"description": "Conference for gathering developers,IT professionals and leaders across the ecosystem to share learnings, discuss future of cloud Native Computing etc"
},
{
"name": "Uber She++\n",
"organiser": "Uber",
"typeOfEvent": "Coding competition",
"awardsPrizesBenefits": "Invite to Uber offices, direct interviews for internship season",
"eventDomainTags": "-",
"website": "-",
"applicationDate": "-",
"eligibility": "-",
"description": "-"
},
{
"name": "Fidelity Codathon",
"organiser": "Fidelity",
"typeOfEvent": "Coding competition",
"awardsPrizesBenefits": "Cash prizes, Internship opportunity\n",
"eventDomainTags": "-",
"website": "-",
"applicationDate": "-",
"eligibility": "-",
"description": "-"
},
{
"name": "Apple WWDC",
"organiser": "Apple",
"typeOfEvent": "Scholarship",
"awardsPrizesBenefits": "Attending WWDC",
"eventDomainTags": "conference",
"website": "https://developer.apple.com/wwdc19/scholarships/",
"applicationDate": "March",
"eligibility": "should 13 years and above, be registered for free as an apple developer",
"description": "awards talented students and STEM organization members with the opportunity to attend the year's conference"
},
{
"name": "Google WEcode",
"organiser": "Google",
"typeOfEvent": "Workshop",
"awardsPrizesBenefits": "-",
"eventDomainTags": "Workshop",
"website": "-",
"applicationDate": "March",
"eligibility": "-",
"description": "-"
},
{
"name": "Women in Open source award",
"organiser": "Redhat",
"typeOfEvent": "Award",
"awardsPrizesBenefits": "$2,500 stipend plus other perks and a trophy",
"eventDomainTags": "contribution to open source",
"website": "https://www.redhat.com/en/about/women-in-open-source",
"applicationDate": "November",
"eligibility": "an individual who is a\r\nwoman (including cisgender, intersex, and transgender) and above age in her country",
"description": "to recognize the important contributions that women make to open source"
},
{
"name": "We are developers conference",
"organiser": "We are developers Congress\n",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "-",
"eventDomainTags": "-",
"website": "https://www.wearedevelopers.com/events/world-congress/\n",
"applicationDate": "-",
"eligibility": "-",
"description": "-"
},
{
"name": "ACM-ICPC",
"organiser": "ACM",
"typeOfEvent": "-",
"awardsPrizesBenefits": "Top team takes home $15,000 along with the ICPC Gold medal",
"eventDomainTags": "Coding contest",
"website": "https://icpc.baylor.edu/",
"applicationDate": "-",
"eligibility": "Enrolled in a degree program at an institution (in or outside India) that can sponsor you"
},
{
"name": "Global Crowdsource Summit by Google",
"organiser": "Google Developers",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "-",
"eventDomainTags": "Conference",
"website": "-",
"applicationDate": "-",
"eligibility": "-",
"description": "-"
},
{
"name": "Narendra Scheme\n",
"organiser": " Department of Computer Science and Automation (CSA), Indian Institute of Science,",
"typeOfEvent": "Internship",
"awardsPrizesBenefits": "Stipend of 20000",
"eventDomainTags": "Research",
"website": "https://events.csa.iisc.ac.in/internship2018/",
"applicationDate": "April 16th",
"eligibility": "second year, third year and fourth year B.E./B.Tech students in India."
},
{
"name": "SRIP IIT Gandhinagar",
"organiser": "IIT Gandhinagar",
"typeOfEvent": "Research intership",
"awardsPrizesBenefits": "Weekly stipend of Rs. 2000 ",
"eventDomainTags": "Research",
"website": "https://sites.iitgn.ac.in/srip/",
"applicationDate": "-",
"eligibility": "Students pursuing a bachelor’s or master’s degree .",
"description": " It will allow visitors to participate in on-going research projects, undergo mentorship by IITGN faculty and develop close partnerships and collaborations between respective institutions."
},
{
"name": "EPFL",
"organiser": "Swiss Federal Institute of Technology Lausanne",
"typeOfEvent": "Research internsip",
"awardsPrizesBenefits": "-",
"eventDomainTags": "-",
"website": "https://www.epfl.ch/education/international/en/coming-to-epfl/research-internships/",
"applicationDate": "November",
"eligibility": "-",
"description": "-"
},
{
"name": "Spark IIT Roorkee",
"organiser": "IIT Roorkee",
"typeOfEvent": "Institute and project funded Summer Internships",
"awardsPrizesBenefits": "Stipend",
"eventDomainTags": "Research",
"website": "http://spark.iitr.ac.in/",
"applicationDate": "15th January, 2020",
"eligibility": "2nd year students onwards. CGPA>=8.0",
"description": "IIT Roorkee invites applications for institute-funded SPARK fellowships for summer internships and project-funded summer internships."
},
{
"name": "InterviewBit - Coding competition",
"organiser": "InterviewBit",
"typeOfEvent": "6 coding contests-->Grand Finale",
"awardsPrizesBenefits": "Assured interviews with companies like Facebook and Uber, [MacBook Pro, One Plus 7 Pro, PS4--2019 top prizes]",
"eventDomainTags": "Coding Competition/Competitive Programming",
"website": "https://www.interviewbit.com/codersbit/",
"applicationDate": "Last Year:- July-November",
"eligibility": "Top 1000 Developers will be selected (based on scores in the 6 competitions)",
"description": "CodersBit is one of a kind, nationwide Coding Challenge that would span across 3 months and spread over 1000 colleges. During this period, there will be 6 coding contests organized by InterviewBit, followed by a Grand Finale."
},
{
"name": "MItacs",
"organiser": "Mitacs",
"typeOfEvent": "Internships, fellowship, research and sponsors",
"awardsPrizesBenefits": "Various benefits depending upon program. https://www.mitacs.ca/en/programs",
"eventDomainTags": "Internship/Sponsorship/Research",
"website": "https://www.mitacs.ca/en",
"applicationDate": "Depends on choice of program",
"eligibility": "Depends on choice of program",
"description": "develop your career through new research connections, experience, and professional skills training. Funding is available for all disciplines."
},
{
"name": "Google Explore ML",
"organiser": "Google",
"typeOfEvent": "BootCamp",
"awardsPrizesBenefits": "Training in course materials, facilitation skills and more",
"eventDomainTags": "Training Program",
"website": "https://events.withgoogle.com/explore-ml-in/",
"applicationDate": "Last Year:- June-July",
"eligibility": "In pre-final year (in 3rd semester or to 5th semester) currently.",
"description": "Explore Machine Learning (ML) is a Google-sponsored program for university students to get started with Machine Learning"
},
{
"name": "Google Cloud Platform Crash Course",
"organiser": "Google",
"typeOfEvent": "Training Program",
"awardsPrizesBenefits": "Certificate upon completion ",
"eventDomainTags": "Training Program",
"website": "https://cloud.google.com/training/#overview",
"applicationDate": "Classes open all the time",
"eligibility": "No such requirements",
"description": "Learn in the way that best suits you, invest in your career, and prepare for certification through Google Cloud training."
},
{
"name": "Google Android Challenge",
"organiser": "Google",
"typeOfEvent": "App Development Challenge",
"awardsPrizesBenefits": "App will be available on Playstore, Working session with experts, Tickets to Google I/O",
"eventDomainTags": "Coding Competition/ App Development",
"website": "https://developer.android.com/dev-challenge",
"applicationDate": "Last Year:- Started in October",
"eligibility": "No such requirements, further details available in website page",
"description": "Android Developer Challenge: helpful innovation, powered by On-Device Machine Learning + you!"
},
{
"name": "Tensorflow Challenge",
"organiser": "Devpost",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "$150,000 in prizes, Project will be featured at TensorFlow World",
"eventDomainTags": "Hackathon",
"website": "https://tensorflow.devpost.com/",
"applicationDate": "Last Year:- Deadline for submission of projects- 6th, May ",
"eligibility": "Any developer may enter, teams may have 1-6 members",
"description": "TensorFlow 2.0 has arrived, with a focus on ease of use, developer productivity, and scalable, production-ready machine learning workloads"
},
{
"name": "Siebel Scholarship(For select Universities)",
"organiser": "Thomas and Stacey Siebel Foundation",
"typeOfEvent": "Scholarship",
"awardsPrizesBenefits": "$35,000 award toward their final year of studies",
"eventDomainTags": "Scholarship",
"website": "http://www.siebelscholars.com/about",
"applicationDate": "N/A",
"eligibility": "Students at the top of their class are selected during their final year of studies based on outstanding academic performance and leadership",
"description": "Recognizing the most talented students at the world’s leading graduate schools of business, computer science, bioengineering, and energy science."
},
{
"name": "HPAir",
"organiser": "Harvard University and Nazarbayev University",
"typeOfEvent": "Conference and Scholarship",
"awardsPrizesBenefits": "Conference experience, Allocated over $20,000 USD in scholarship funds for the 2020 Harvard College Conference.\r\n\r\n",
"eventDomainTags": "Conference/Scholarhsip",
"website": "https://hpair.org/",
"applicationDate": "Last Year Deadline for scholarship form:- 1st November",
"eligibility": "The situtaion is judged by a panel of judges but mainly depends upon your passion and urgency of the scholarship",
"description": "Our mission is simple: we connect the top leaders of today and tomorrow in a dynamic forum of exchange."
},
{
"name": "Firebase Summit",
"organiser": "Google",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "International Exposure, Conference Experience, Meets with successful Professionals",
"eventDomainTags": "Conference",
"website": "https://firebase.google.com/summit",
"applicationDate": "Last Year Conference Date:- 26th Spetember ",
"eligibility": "An application needs to be filled out for tickets. Link available in website",
"description": "Summit filled with technical talks and demos"
},
{
"name": "GopherCon",
"organiser": "Google and contributors from Open Source Community",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Sponsorship prospects, Conference Experience",
"eventDomainTags": "Conference/Sponsorship",
"website": "https://gopherconindia.com/#about",
"applicationDate": "28-29 March, 2020",
"eligibility": "No such requirements",
"description": "Go makes it easy to build simple, reliable, and efficient software."
},
{
"name": "JsConf",
"organiser": "A Federation of Developers",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Exposure to new ideas, Conference Experience, Ideas from a diverse community",
"eventDomainTags": "Conference",
"website": "https://jsconf.com/",
"applicationDate": "Several conferences held all over the world",
"eligibility": "No such requirements",
"description": "We focus on two things, pushing the boundaries of what is thought to be conceivable with JS and providing exceptional human social activities that encourage community and friendship building."
},
{
"name": "sheHacks - Canada",
"organiser": "Women in Technology Society ",
"typeOfEvent": "All-Female Hackaton",
"awardsPrizesBenefits": "Workshops, Mentoring sessions, Networking",
"eventDomainTags": "Hackathon",
"website": "https://shehacks.ca/#hero-area",
"applicationDate": "November 20 (closed for 2020), volunteer applications still open",
"eligibility": " All women and non-binary individuals",
"description": "Canada’s Largest 24 hr All-Female Hackathon regardless of your background or experience level. Provide with resources, connections, travel and food to fuel your ideas. "
},
{
"name": "InspireIT Credit Suisse",
"organiser": "Credit Suisse Entities",
"typeOfEvent": "Coding challenge",
"awardsPrizesBenefits": "Apple MacBook Air (13.3\") for 1st place, career opportunities, merchandize/goodies for the top participants. ",
"eventDomainTags": "Campus recruiting event ",
"website": "https://www.interviewbit.com/contest/inspireit/",
"applicationDate": "November ",
"eligibility": "Any CSE or IT B. tech student (2021 batch) from selected colleges only (https://docs.google.com/document/d/14KyxnRi1G5UJAfWOtcnlokd3mQ6ms4UWCcdVrKwUO_M/edit)",
"description": "Campus recruiting event organised by Credit Suisse for university students passionate about technology."
},
{
"name": "Hacktoberfest\n",
"organiser": "DigitalOcean in partnership with DEV",
"typeOfEvent": "4 pull requests to any public repository on GitHub",
"awardsPrizesBenefits": "Open source awareness, network, Hacktober T-shirts",
"eventDomainTags": "Open source",
"website": "https://hacktoberfest.digitalocean.com/",
"applicationDate": "October",
"eligibility": "Anyone interested in learning about and/or contributing to open source",
"description": "Month-long celebration of open source software"
},
{
"name": "OPJEMS scholarship",
"organiser": "O. P. Jindal Group",
"typeOfEvent": "Business proposal, online test, interview",
"awardsPrizesBenefits": "INR 80,000 per student yearly",
"eventDomainTags": "Scholarship ",
"website": "http://www.opjems.com/",
"applicationDate": "August ",
"eligibility": "http://www.opjems.com/eligibilityCriterion.html",
"description": "Awarded to meritorious students who emulate the vision and values of Shri O. P. Jindal "
},
{
"name": "IUSSTF-Viterbi",
"organiser": "Indo-US Science and Technology Forum & Viterbi School of Engineering, University of Southern California ",
"typeOfEvent": "Research internship",
"awardsPrizesBenefits": "Stipend+Airfare",
"eventDomainTags": "Research",
"website": "https://www.iusstf.org/program/iusstf-viterbi-program",
"applicationDate": "September",
"eligibility": "Third year students of CSE, EEE, ECE with CGPA>=8.5",
"description": "Opportunity to Indian students to undertake a research internship at the Viterbi School of Engineering in the summer of 2020 for a period of 8 weeks"
},
{
"name": "Facebook iD8",
"organiser": "Facebook",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Network, Learning, Experiences sharing, resources",
"eventDomainTags": "Conference",
"website": "https://developers.facebook.com/blog/post/v2/2019/09/19/facebook-iD8-is-coming-to-your-city/",
"applicationDate": "Register anytime to join Developer Circles (in 5 Indian cities currently)",
"eligibility": "Any developer ",
"description": "Engaging in-person through local events to connect face-to-face with developers and share the latest technology and product updates, opportunity to share where they are in their journey. Topics range from AR/VR, Messenger, Social Commerce and more."
},
{
"name": "Mozfest",
"organiser": "Mozilla",
"typeOfEvent": "Conference",
"awardsPrizesBenefits": "Talks, workshops, film screenings and networking opportunities",
"eventDomainTags": "Conference",
"website": "https://www.mozillafestival.org/en/",
"applicationDate": "Tickets usually go on sale in September",
"eligibility": "Anyone ",
"description": "Annual gathering of passionate thinkers and inventors from around the world who meet to learn from each other and help forge the future of the web."
},
{
"name": "HackCBS",
"organiser": "SSCBS, Delhi University ",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "Hackathon, workshops, keynotes, SWAGs, paid internship opportunity",
"eventDomainTags": "Hackathon",
"website": "https://www.hackcbs.tech/",
"applicationDate": "October",
"eligibility": "Only students (To be verified with Student ID)",
"description": "Hackathon-cum-conference."
},
{
"name": "HackMIT",
"organiser": "Massachusetts Institute of Technology",
"typeOfEvent": "Hackathon",
"awardsPrizesBenefits": "Hackathon, tech fair and expo, network",
"eventDomainTags": "Hackathon",
"website": "https://hackmit.org/",
"applicationDate": "July",
"eligibility": "Any college undergraduate student who is 18 years old and above",
"description": "Annual student-run hackathon held in the fall at the Massachusetts Institute of Technology"
},
{
"name": "Charpak Scholarship",
"organiser": "Embassy of France in India",
"typeOfEvent": "Scholarship",
"awardsPrizesBenefits": "650-800 Euros living allowance, social security, visa, travel, fee waiver, stipend, accomadation assistance (benefits vary depending on scholarship type)",
"eventDomainTags": "Scholarship",
"website": "https://www.inde.campusfrance.org/charpak-scholarship",
"applicationDate": "Varies depending on Scholarship type",
"eligibility": "Different eligibilty criteria for different scholarship programmes so do go throught the link in detail.",
"description": "(i) Research Internships (ii) Exchange programmes and (iii) Master’s Degree Programmes."
},
{
"name": "Cargill Global Scholarship",
"organiser": " Institute of International Education on behalf of Cargill",
"typeOfEvent": "Scholarship",
"awardsPrizesBenefits": "Funding upto two years, network, mentorship program",
"eventDomainTags": "Scholarship",
"website": "https://www.cargillglobalscholars.com/participating-countries/india-faqs/",
"applicationDate": "December. ",
"eligibility": "Only NITT, IIT-B/D/GN, IISc, Lady Sri Ram College for Women, H.R. College of Commerce & Economics students in 1st(/2nd) year in a 3 (/4) year UG program",
"description": "Two-year leadership development program that provides financial support, leadership development training and one-on-one mentoring"
},
{
"name": "Flutter Interact",
"organiser": "Google",
"typeOfEvent": "Event (live stream)",
"awardsPrizesBenefits": "Deep technical sessions, demos, fun interactive experiences, explore the latest Flutter tools and technologies, community",
"eventDomainTags": "Event",
"website": "https://developers.google.com/events/flutter-interact",
"applicationDate": "Deadline November. No registration for livestream.",
"eligibility": "Flutter users, developers",
"description": "A day dedicated to creation and collaboration with the world, inspired by the makers of brilliant experiences"
},
{
"name": "Julia Con",
"organiser": "Julia",
"typeOfEvent": "Conference ",
"awardsPrizesBenefits": "A 5 days conference with keynotes, talks and workshops ",
"eventDomainTags": "Conference ",
"website": "https://juliacon.org/2020/",
"applicationDate": "Buy Tickets as early as possible",
"eligibility": "Tickets to be bought (50% Discount for Students)",
"description": "JuliaCon is the biggest Julia conference of the year, bringing together speakers, developers, and enthusiasts from all over the world, for 5 days packed with keynotes, talks and workshops!"
},
{
"name": "Caltech SURF",
"organiser": "Caltech",
"typeOfEvent": "Summer Undergraduate Research Fellowship ",
"awardsPrizesBenefits": "$6,420 award for the ten-week period. Invited to attend : Weekly Seminars, Social and cultural activities, Weekly small student-faculty dinners, Special field trips",
"eventDomainTags": "Research",
"website": "https://sfp.caltech.edu/programs/surf",
"applicationDate": "2019-02-21T18:30:00.000Z",
"eligibility": "Applicants write research proposals as part of the application process (Read:Req for International Students -https://sfp.caltech.edu/programs/surf/eligibility_requirements)",
"description": "Students collaborate with a potential mentor to define and develop a project, Faculty review the application proposals and recommend awards, Students carry out the work over a 10-week period during the summer"
},
{
"name": "FOSSASIA Codeheat",
"organiser": "FOSSASIA",
"typeOfEvent": "Open Source Contributions ",
"awardsPrizesBenefits": "Grand prize winners will be invited to present their work at the FOSSASIA OpenTechSummit in Singapore from March 19-22, 2020. (650 SGD - Travel Funding)",
"eventDomainTags": "Open source",
"website": "https://codeheat.org/",
"applicationDate": "Contest runs till 20th February, 2020",
"eligibility": "No such requirements",
"description": "Coding contest for FOSSASIA projects on GitHub"
},
{
"name": "Halite AI Bot Challenge",
"organiser": "Two Sigma",
"typeOfEvent": "AI Bots Competing in Multiplayer Game\n",
"awardsPrizesBenefits": "NA",
"eventDomainTags": "AI Bots Competing in Multiplayer Game\n",
"website": "https://halite.io/",
"applicationDate": "All Time ",
"eligibility": "No such requirements",
"description": "Participants write bots using the programming language of their choice to compete in an original online multiplayer game."
},