-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathopportunities.ts
1137 lines (1090 loc) · 32.9 KB
/
opportunities.ts
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
export const opportunities = [
// Start of Jan
{
name: 'Qualcomm Global Scholars Program',
link: 'https://www.iie.org/Programs/WeTech/STEM-Scholarships-for-Women/Qualcomm-Global-Scholars-Program/India',
deadline: '2 January',
type: 'Scholarship for Women',
},
{
name: 'Goldman Sachs Engineering Campus Hiring Program',
link: 'https://www.goldmansachs.com/careers/students/programs/india/engineers-campus-hiring-program.html',
deadline: '3 January 2022',
type: 'Internship and FTE',
},
{
name: 'Season of KDE',
link: 'https://season.kde.org/',
deadline: '4 January',
type: 'Summer of Code/ Mentorship',
},
{
name: 'Microsoft Research Fellows Program',
link: 'https://www.microsoft.com/en-us/research/academic-program/research-fellows-program-at-microsoft-research-india/',
deadline: '14 January 2022',
type: 'Fellowship',
},
{
name: 'Goldman Sachs Women Possibilities Summit: Finance',
link: 'https://www.goldmansachs.com/careers/students/programs/india/womens-possibilities-summit-finance.html',
deadline: '15 January',
type: 'Scholarship to attend conference',
},
{
name: 'Internshala Career Scholarship for Girls',
link: 'https://blog.internshala.com/2021/12/internshala-career-scholarship-for-girls-2022/',
deadline: '15 January 2022',
type: 'Scholarship',
},
{
name: 'ETHWMN Fellowship',
link: 'https://ethwmn.devfolio.co/',
deadline: '15 January 2022',
type: 'Fellowship for women',
},
{
name: 'Goldman Sachs WeTech',
link: 'https://www.iie.org/Programs/WeTech/STEM-Scholarships-for-Women/Goldman-Sachs-Scholarship',
deadline: '18 January',
type: 'Mentorship for Women',
},
{
name: 'Intuit Augment Program',
link: 'https://www.surveymonkey.com/r/INTUIT_2020',
deadline: '21 January',
type: 'Mentorship for Women',
},
{
name: 'Data Science for Social Good',
link: 'https://www.dssgfellowship.org/apply-to-be-a-2022-dssg-summer-fellow/',
deadline: '28 January 2022',
type: 'Fellowship',
},
{
name: 'URAM Scholarship Program',
link: 'https://uramscholarship.in/',
deadline: '30 January 2022',
type: 'Scholarship for Women',
},
{
name: 'Pragati Scholarship',
link: 'https://www.buddy4study.com/article/pragati-scholarship',
deadline: '31 January',
type: 'Scholarship for Women',
},
{
name: 'HPAIR Harvard Conference',
link: 'https://hpair.org/harvard-conference-2021',
deadline: 'January',
type: 'Scholarship to attend conference',
},
{
name: 'Code for Good by JP Morgan',
link: 'https://careers.jpmorgan.com/us/en/students/programs/code-for-good?search=&tags=location__AsiaPacific__India',
deadline: 'January',
type: 'Pre-internship-hackathon',
},
{
name: 'Cargill Scholarship',
link: 'https://www.cargillglobalscholars.com/scholarship/',
deadline: 'January',
type: 'Scholarship',
},
{
name: 'Build@Mercari',
link: 'https://mercan.mercari.com/en/articles/40098/',
deadline: 'January',
type: 'Scholarship',
},
//End of Jan
//Start of Feb
{
name: 'Uber She++',
link: 'https://events.beamery.com/uber/uber-she++-2022-t1khjteyw',
deadline: 'February 2022',
type: 'Mentorship for Women',
},
{
name: 'IRIS-HEP Fellows',
link: 'https://iris-hep.org/fellows.html',
deadline: 'February',
type: 'Research Fellowship',
},
{
name: 'Harvard US-India Initiative Conference',
link: 'https://www.huii.in/apply-now',
deadline: '3 February',
type: 'Scholarship to attend Conf',
},
{
name: 'Flipkart Girls Wanna Code',
link: 'https://www.google.com/amp/s/dare2compete.com/o/flipkart-girls-wanna-code-30-flipkart-145093/amp',
deadline: '5 Feb',
type: 'Mentorship for Women',
},
{
name: 'Microsoft India - Design Challenge 2022',
link: 'https://www.msdesignchallenge.in/',
deadline: '6 February 2022',
type: 'Design Challenge',
},
{
name: 'LFX',
link: 'https://lfx.linuxfoundation.org/tools/mentorship/',
deadline: '12 February',
type: 'Mentorship',
},
{
name: 'Society of Women Engineers Scholarship Application System',
link: 'https://scholarships.swe.org/applications/login.asp',
deadline: '15 February 2022',
type: 'Scholarship for Women',
},
{
name: 'J.P. Morgan Quant Mentorship Program',
link: 'https://jpmc.recsolu.com/app/collect/event/TDMNonCLZS-KWbHKF9c_DA',
deadline: 'before 17 Februaury 2022',
type: 'Mentorship for Women',
},
{
name: 'GirlScript Summer Of Code',
link: 'https://gssoc.girlscript.tech/index.html',
deadline: '19 February',
type: 'Mentorship',
},
{
name: 'American Express Makethon',
link: 'https://american-express-makeathon-2022.hackerearth.com/',
deadline: '20 February 2022',
type: 'Hackathon for Women',
},
{
name: 'Outreachy Summer Cycle',
link: 'https://www.outreachy.org/',
deadline: '25 February 2022',
type: 'Internship for Women',
},
{
name: 'Uber HackTag 2.0',
link: 'https://dare2compete.com/hackathon/uber-hacktag-20-uber-technologies-inc-260528',
deadline: '25 February 2022',
type: 'Hackathon/Internship',
},
{
name: 'Student of Vision Abie Award',
link: 'https://anitab.org/awards-grants/abie-awards/student-of-vision/',
deadline: '25 February',
type: 'Scholarship',
},
{
name: 'LinkedIn CoachlN',
link: 'https://linkedincoachin3.splashthat.com/',
deadline: '27 February 2022',
type: 'Mentorship for Women',
},
{
name: 'Github Campus Expert Program',
link: 'https://apply.githubcampus.expert/',
deadline: '28 February 2022',
type: 'Campus Expert Program',
},
//End of Feb
//Start of March
{
name: 'Google Computer Science Summer Institute',
link: 'https://buildyourfuture.withgoogle.com/programs/computer-science-summer-institute/',
deadline: 'March',
type: 'Fellowship',
},
{
name: 'Microsoft Reinforcement Learning Open Source Fest',
link: 'https://www.microsoft.com/en-us/research/academic-program/rl-open-source-fest/',
deadline: '1 March',
type: 'Open Source Fest',
},
{
name: 'Juspay Hiring Challenge 2022',
link: 'https://dare2compete.com/hackathon/juspay-hiring-challenge-2022-juspay-263513',
deadline: '5 March 2022',
type: 'Hackathon/Coding Challenge',
},
{
name: 'Amdocs Hackfest 2022',
link: 'https://www.hackerearth.com/challenges/competitive/amdocs-hackfest-2022/',
deadline: '4 March 2022',
type: 'Coding Challenge',
},
{
name: 'Crossroads Emerging Leaders Program',
link: 'https://cmes.fas.harvard.edu/crossroads-emerging-leaders-program',
deadline: '8 March',
type: 'Fellowship',
},
{
name: 'Google Girl Hackathon',
link: 'https://buildyourfuture.withgoogle.com/programs/girl-hackathon/',
deadline: '9 March 2022',
type: 'PIO and PPO at Google',
},
{
name: 'Reply Code Challenge',
link: 'https://www.reply.com/en/newsroom/events/reply-code-challenge-2021',
deadline: '11 March',
type: 'Coding Challenge',
},
{
name: 'Micron Global Women\'s Mentorship Program',
link: 'https://micron.wd1.myworkdayjobs.com/External/job/Hyderabad---Skyview-India/Micron-Global-Women-s-Mentorship-Program_JR13982',
deadline: '12 March',
type: 'Mentorship for Women',
},
{
name: 'Microsoft Diversity (US only)',
link: 'https://www.microsoft.com/en-us/diversity/programs/women-at-microsoft-scholarship',
deadline: '12 March',
type: 'Scholarship',
},
{
name: 'Summer Of Bitcoin',
link: 'https://www.summerofbitcoin.org/',
deadline: '15 March 2022',
type: 'Open Source Intership',
},
{
name: 'Caltech Student-Faculty Programs (SURF)',
link: 'SURF',
deadline: '15 March',
type: 'Fellowship',
},
{
name: 'Cisco thingQbator',
link: 'https://thingqbator.nasscomfoundation.org/login',
deadline: '15 March',
type: 'Mentorship',
},
{
name: 'Global Impact Scholarship',
link: 'https://www.palantir.com/careers/students/scholarship/global-impact/',
deadline: '17 March 2022',
type: 'Scholarship',
},
{
name: 'WTEF by TalentSprint',
link: 'https://we.talentsprint.com/',
deadline: '21 March',
type: 'Fellowship for Women',
},
{
name: 'Virtual Insights Series: An Exploratory Program',
link: 'https://www.goldmansachs.com/careers/students/programs/americas/undergrad-virtual-insight-series.html',
deadline: '21 March',
type: 'Exploratory Program by Goldman Sachs',
},
{
name: 'Western Digital Scholarships for STEM',
link: 'https://www.westerndigital.com/company/corporate-philanthropy/scholarship-programs',
deadline: '24 March',
type: 'Scholarship for Women',
},
{
name: 'Delta Analytics Global Teaching Fellow',
link: 'http://www.deltanalytics.org/global-teaching-fellowship-application.html',
deadline: '27 March',
type: 'Fellowship',
},
{
name: 'Adobe CoDiva',
link: 'https://www.firstnaukri.com/careers/customised/landingpage/adobe/codiva/index.html',
deadline: '27 March',
type: 'Hackathon for Women',
},
{
name: 'AWS Community Builder Program',
link: 'https://aws.amazon.com/developer/community/community-builders/',
deadline: '30 March',
type: 'Ambassador Program',
},
{
name: 'Rail Girls Summer of Code',
link: 'https://railsgirlssummerofcode.org/',
deadline: '30 March',
type: 'Open Source Program',
},
//End of March
//Start of April
{
name: 'Palantir Global Impact Scholarship',
link: 'https://www.palantir.com/students/scholarship/global-impact/',
deadline: '1 April',
type: 'Scholarship for Women',
},
{
name: '1000 Dreams Fund (US only)',
link: 'https://1000dreamsfund.org/apply/',
deadline: '2 April',
type: 'Scholarship for Women',
},
{
name: 'IDFC FIRST Bank_Women Only Challenge',
link: 'https://assessment.hackerearth.com/challenges/hiring/idfc-first-bank_women-only-challenge/',
deadline: '3 April, 2022',
type: 'FTE',
},
{
name: 'Mozilla Fellowship',
link: 'https://foundation.mozilla.org/en/what-we-fund/fellowships/fellowships-faq/',
deadline: ' 8 April',
type: 'Fellowship',
},
{
name: 'Code in Place by Stanford',
link: 'https://codeinplace.stanford.edu/',
deadline: '8 April',
type: 'Classroom (CS106A)',
},
{
name: 'GoogleCloudReady Facilitator Program',
link: 'https://events.withgoogle.com/googlecloudready-facilitator-program/#content',
deadline: '9 April',
type: 'Program by Google for Google Cloud',
},
{
name: 'AWS DeepRacer Women League - India 2021',
link: 'https://awsdeepracerleague.in/womens-league-2021/',
deadline: '9 April',
type: 'Hackathon for Women',
},
{
name: 'The Processing Foundation',
link: 'https://medium.com/processing-foundation/open-call-for-2021-fellowships-44c777cc335',
deadline: '9 April',
type: 'Fellowship',
},
{
name: 'GDSC Solution Developer Challenge',
link: 'https://developers.google.com/community/dsc-solution-challenge',
deadline: '11 April',
type: 'Hackathon',
},
{
name: 'Google Summer of Code (GSOC)',
link: 'GSOC',
deadline: '13 April',
type: 'Internship, Stipend',
},
{
name: 'ERPNext Summer of Code',
link: 'https://erpnext.org/esoc',
deadline: '14 April',
type: 'Internship',
},
{
name: 'Google Summer of Earth Engine (SoEE)',
link: 'SoEE',
deadline: '15 April',
type: 'Internship',
},
{
name: 'GDSC Lead Application India',
link: 'https://developers.google.com/community/dsc/leads',
deadline: '15 April 2022',
type: 'GDSC Lead Application',
},
{
name: 'Flipkart Runaway',
link: 'https://dare2compete.com/o/flipkart-runway-flipkart-157441?utm_campaign=site-emails&utm_medium=site-emails&utm_source=take-the-flipkart-runway-quiz-now',
deadline: '18 April',
type: 'Internship for Women',
},
{
name: 'Google Code Jam to I/O for Women',
link: 'https://codingcompetitions.withgoogle.com/codejamio',
deadline: '18 April',
type: 'Scholarship + VIP tickets to Google I/O',
},
{
name: 'GDSC Application India',
link: 'https://developers.google.com/community/dsc/leads',
deadline: '20 April',
type: 'GDSC Lead Application',
},
{
name: 'GHC Scholarship',
link: 'https://ghc.anitab.org/attend/scholarships/academics/',
deadline: '28 April',
type: 'Scholarship for Women in Tech',
},
{
name: 'Digital India Internship Scheme (MeitY)',
link: 'https://www.meity.gov.in/digital-india-internship-scheme-2021',
deadline: '29 April',
type: 'Internship',
},
{
name: 'Google Women Techmakers Ambassador Application',
link: 'https://docs.google.com/forms/d/e/1FAIpQLSclJkcN8kjG5Cn1grhw4tjc_NojZoGj9Ewah8UDK61KpJmUXA/viewform',
deadline: '30 April 2022',
type: 'Ambassador Program',
},
{
name: 'LiFT Scholarships',
link: 'https://linuxfoundation.org/diversity-inclusivity/lift-scholarships/',
deadline: '30 April 2022',
type: 'Open Source Scholarship + Women',
},
{
name: 'Linux Foundation Training Scholarship (LiFT)',
link: 'https://openjsf.org/blog/2021/04/13/lift-scholarship/',
deadline: '30 April',
type: 'Scholarship',
},
{
name: 'Western Union Scholarship',
link: 'https://foundation.westernunion.com/wuscholars/index.html',
deadline: '30 April',
type: 'Scholarship',
},
//End of April
//Start of May
{
name: 'Call for Code',
link: 'https://developer.ibm.com/callforcode/',
deadline: 'May',
type: 'Ideathon by Linux Foundation and IBM',
},
{
name: 'Kode with Klossy',
link: 'https://www.kodewithklossy.com/',
deadline: 'May',
type: 'Scholarship for Women',
},
{
name: 'FOSSASIA Internship Program',
link: 'https://docs.google.com/forms/d/e/1FAIpQLScp8h5SIPVK5G2SAm5vtrv7KLKeOeYTxlZBkDRE6I7Toybt0A/viewform',
deadline: 'May',
type: 'Internship',
},
{
name: 'Hackwithinfy',
link: 'https://www.infosys.com/careers/hackwithinfy.html',
deadline: '5 May',
type: 'Hackathon with PII and PPO at Infosys',
},
{
name: 'FOSSE IIT Bombay',
link: 'https://fossee.in/fellowship/2021',
deadline: '5 May',
type: 'Fellowship',
},
{
name: 'Women in Product Conference',
link: 'https://www.womenpm.org/conference-scholarships',
deadline: '5 May',
type: 'Scholarship for Women',
},
{
name: 'LFN Mentorship Program',
link: 'https://wiki.lfnetworking.org/display/LN/LFN+Mentorship+Program#LFNMentorshipProgram-2021ProgramTimeline*',
deadline: '10 May',
type: 'Mentorship',
},
{
name: 'Free Software Foundation (FSF) Internship program',
link: 'FSF',
deadline: '10 May',
type: 'Internship',
},
{
name: 'professor harry messel international science school',
link: 'https://www.sydney.edu.au/science/industry-and-community/community-engagement/international-science-school.html',
deadline: '14 May',
type: 'Conference',
},
{
name: 'Girl Up Scholarship',
link: 'https://clubs.girlup.org/blogs/169/3653',
deadline: '17 May',
type: 'Scholarship for Women',
},
{
name: 'Exchange with Google Developers',
link: 'https://events.withgoogle.com/exchange-with-google-developers/',
deadline: '17 May',
type: 'Mentorship',
},
{
name: 'IBM Quantum Challenge 2021',
link: 'https://challenges.quantum-computing.ibm.com/iqc21',
deadline: '20 May',
type: 'Coding Challenge',
},
{
name: 'McKinsey Achievement Awards',
link: 'https://www.mckinsey.com/careers/mckinsey-achievement-awards/overview?fbclid=IwAR3yrq_x9eLBJNokIbslAXfhre5Jzpj4rcbfoUOFJoz_Nh9FHsfQH13Ub4U',
deadline: '21 May',
type: 'Mentorship and Scholarship',
},
{
name: 'Osoc',
link: 'https://osoc.be/students',
deadline: '23 May',
type: 'Open Source Mentorship',
},
{
name: 'Microsoft Engage',
link: 'https://microsoft.acehacker.com/engage2021/?mc_cid=a82d11f2ad&mc_eid=3f7ceca487',
deadline: '24 May',
type: 'Mentorship',
},
{
name: 'Nutanix',
link: 'https://www.nutanix.com/scholarships',
deadline: '27 May 2022',
type: 'Scholarship for Women',
},
{
name: 'Microsoft Build',
link: 'https://mybuild.microsoft.com/home',
deadline: '26 May',
type: 'Conference',
},
{
name: 'Avery Dennison Foundation Scholarship',
link: 'https://www.applytoaverydennisoninvent.org/',
deadline: '31 May 2022',
type: 'Scholarship',
},
//End of May
//Start of June
{
name: 'Polygon Fellowship: Web3 Beginner Track',
link: 'https://polygon.technology/polygon-fellowship/',
deadline: '1 June 2022',
type: 'Fellowship',
},
{
name: 'Walmart CodeHers',
link: 'https://dare2compete.com/o/walmart-codehers-walmart-india-pvt-ltd-167089',
deadline: '11 June',
type: 'Full Time SDE roles',
},
{
name: 'Polygon Fellowship: Web3 Builder Track',
link: 'https://polygon.technology/polygon-fellowship/',
deadline: '18 June 2022',
type: 'Fellowship',
},
{
name: 'Pclubs Summer of Code',
link: 'https://www.psoc.in/',
deadline: '22 June 2022',
type: 'Open Source Mentorship',
},
{
name: 'Open Source Day by Anita B. org',
link: 'https://anitab.org/events-programs/open-source-day/',
deadline: '30 Jun',
type: 'Mentorship',
},
{
name: 'AWS She Builds Mentoring Program',
link: 'https://awsshebuildsmentoringprogram.splashthat.com/',
deadline: '30 Jun',
type: 'Mentorship',
},
//End of June
//Start of July
{
name: 'Ethereum India Fellowship',
link: 'https://ethereumindiafellowship.devfolio.co/',
deadline: 'July',
type: 'Fellowship',
},
{
name: 'Get Ahead Google',
link: 'https://events.withgoogle.com/get-ahead-apac-2019/#content',
deadline: 'July',
type: 'Fellowship',
},
{
name: 'Flipkart GRiD 3.0',
link: 'https://dare2compete.com/hackathon/flipkart-grid-30-software-development-challenge-flipkart-grid-30-flipkart-173986?lb=nciUx5O',
deadline: '10 July',
type: 'Hackathon (PIO and PPO offers)',
},
{
name: 'Google for Games Developer Summit 2021',
link: 'https://developersonair.withgoogle.com/events/game-dev-summit-2021',
deadline: '12 July',
type: 'Summit',
},
{
name: 'HackRx by Bajaj Finserv',
link: 'https://hackrx.in/',
deadline: '15 July',
type: 'Annual Hackathon with PIP/PPO at Bajaj',
},
{
name: 'Google Quantum Summer Symposium 2021',
link: 'https://events.withgoogle.com/2021-quantum-summer-symposium/',
deadline: '21 July',
type: 'Conference',
},
{
name: 'Free Software Foundation',
link: 'https://www.fsf.org/volunteer/internships',
deadline: '21 July',
type: 'Internship',
},
{
name: 'Software Engineering Internship Cisco',
link: 'https://dare2compete.com/internship/software-engineering-internship-cisco-183203?lb=G0Ozofw',
deadline: '22 July',
type: 'Internship',
},
{
name: 'Grace Hopper Scholarship (GWC X Walmart) 2021',
link: 'GWC X Walmart',
deadline: '25 July',
type: 'Hackathon + Scholarship for Women',
},
{
name: 'Google Dialogflow CX Competition (Global)',
link: 'https://events.withgoogle.com/dialogflow-cx-competition-global/?utm_source=medium_post&utm_medium=site&utm_campaign=cx_competition',
deadline: '27 July 2021',
type: 'Open Source Competition',
},
{
name: 'Amazon ML Challenge',
link: 'https://amazonmlchallenge.splashthat.com/',
deadline: '29 July',
type: 'ML Hackathon + PIP/PPO offer',
},
{
name: 'Walmark SparkTech Showcase',
link: 'https://ys-events.yourstory.com/walmart-sparktechshowcase',
deadline: '30 July',
type: 'Hackathon (PIO and PPO offers)',
},
{
name: 'Google Research Intern, PhD, Fall 2021',
link: 'https://careers.google.com/jobs/results/72189721129689798/',
deadline: '30 July',
type: 'Research Intern',
},
{
name: '30 Days of Google Cloud',
link: 'https://inthecloud.withgoogle.com/google-cloud-skills/register.html?utm_source=google&utm_medium=blog&utm_campaign=FY21-Q1-global-trainingandenablement-website-other-skills_challenge&utm_content=q1rollup',
deadline: '30 July',
type: 'Skills challenge',
},
//End of july
//start of aug
{
name: 'ThinkSwiss Research Scholarships: Asia-Pacific',
link: 'https://swissnex.org/india/thinkswiss/',
deadline: 'August',
type: 'Research Scholarship',
},
{
name: 'Rolls-Royce Unnati Scholarships for Women Engineering Students',
link: 'https://www.buddy4study.com/page/rolls-royce-unnati-scholarships-for-women-engineering-students',
deadline: '1 August 2022',
type: 'Scholarship for Women',
},
{
name: 'WiCyS:Security Training Scholarship',
link: 'https://www.wicys.org/benefits/security-training-scholarship/',
deadline: '2 August 2021',
type: 'Fellowship for Women',
},
{
name: 'Open Networking and Edge Summit North America',
link: 'https://events.linuxfoundation.org/open-networking-edge-summit-north-america/attend/scholarships/',
deadline: '5 August 2021',
type: 'Travel Funding Scholarship',
},
{
name: 'ONGC Meritorious Scholarships',
link: 'https://ongcscholar.org/',
deadline: '6 August 2021',
type: 'Scholarship (1st year)',
},
{
name: 'Above and Beyond Computer Science',
link: 'https://www.surveymonkey.com/r/ABCS2021?sf247725529=1',
deadline: '6 August 2021',
type: '10-week workshop series with Facebook SWE',
},
{
name: 'Hiring Contest for Software Engineer (GeeksforGeeks)',
link: 'GeeksforGeeks',
deadline: '7 August 2021',
type: 'Coding Competition',
},
{
name: 'KubeCon CloudNative North America 2021 (In person)',
link: 'In person',
deadline: '8 August 2021',
type: 'Scholarship to attend conf',
},
{
name: 'Postman Student Summit 2021',
link: 'https://www.eventbrite.com/e/postman-student-summit-2021-tickets-161638299505',
deadline: '8 August 2021',
type: 'Conference',
},
{
name: 'Goldman Sachs Engineering Campus Hiring Program [Off-campus]',
link: 'https://www.goldmansachs.com/careers/students/programs/india/engineers-campus-hiring-program.html',
deadline: '15 August 2021',
type: 'FTE and Internship',
},
{
name: 'DXC Progressing Minds Scholarship',
link: 'https://www.buddy4study.com/page/dxc-progressing-minds-scholarship',
deadline: '15 August 2021',
type: 'Scholarship',
},
{
name: 'GirlScript Winter of Contributing ',
link: 'https://gwoc.girlscript.tech/',
deadline: '15 August 2021',
type: 'Open Source Mentorship',
},
{
name: 'IET India Scholarship Award 2021',
link: 'https://scholarships.theietevents.com/#!',
deadline: '15 August 2021',
type: 'Scholarship',
},
{
name: 'Amazon WoW',
link: 'https://xathon.mettl.com/event/AmazonWoW',
deadline: '16 August 2021',
type: 'Internship and FT for females',
},
{
name: 'Adobe India Women-in-Technology Scholarship',
link: 'https://research.adobe.com/adobe-india-women-in-technology-scholarship/',
deadline: '22 August 2021',
type: 'Scholarship for Women',
},
{
name: 'Google Kickstart Round E',
link: 'https://codingcompetitions.withgoogle.com/kickstart/about',
deadline: '22 August 2021',
type: 'Coding Competition',
},
{
name: 'Open Networking and Edge Summit North America',
link: 'https://events.linuxfoundation.org/open-networking-edge-summit-north-america/attend/scholarships/',
deadline: '26 August 2021',
type: 'Registration Scholarship',
},
{
name: 'Decode with Google',
link: 'https://careersonair.withgoogle.com/events/decode-with-google-21',
deadline: '26 August 2021',
type: 'Google Event',
},
{
name: 'Facebook Hacker Cup',
link: 'https://www.facebook.com/codingcompetitions/hacker-cup',
deadline: '27 August 2021',
type: 'Coding Competition',
},
{
name: 'Twitter DevelopHer',
link: 'https://join.smartrecruiters.com/Twitter2/5485dd2b-817e-41ac-ad36-33735b8c2b68-developher2021india',
deadline: '27 August 2021',
type: 'Internship',
},
{
name: 'Github Campus Expert Program',
link: 'https://apply.githubcampus.expert/',
deadline: '29 August 2021',
type: 'Campus Expert Program',
},
{
name: 'Outreachy Winter Internship',
link: 'https://www.outreachy.org/apply/eligibility/',
deadline: '30 August 2021',
type: 'Internship',
},
{
name: 'DESIS Ascend Educare for Women in Tech',
link: 'https://www.deshaw.com/forms/OERCQTZFNjEtQUIyQi00ODkwLTlBODktMkU2MDQ1NzQwRUE4',
deadline: '30 August 2021',
type: 'Fellowship for Women',
},
{
name: 'DAAD Scholarship',
link: 'https://dare2compete.com/scholarship/daad-scholarship-university-of-bonn-germany-188554?lb=nciUx5O',
deadline: '31 August 2021',
type: 'Scholarship',
},
{
name: 'Hack-O-Uplift',
link: 'https://uplift.girlscript.tech/hack-o-uplift',
deadline: '30 August 2021',
type: 'Hackathon',
},
//end of aug
//start of sept
{
name: 'American Express CodeStreet 21',
link: 'https://codestreet-2021.hackerearth.com/',
deadline: '5 September 2021',
type: 'Internship and FTE',
},
{
name: 'She Codes, Indeed',
link: 'https://www.indeedevents.com/en-in/shecodes-women-at-indeed-11-13092021-cs/',
deadline: '10 September 2021',
type: 'Virtual Event',
},
{
name: 'BorderHacks 2021',
link: 'https://dare2compete.com/o/borderhacks-2021-borderhacks-177290?lb=21070516',
deadline: '10 September 2021',
type: 'Hackathon',
},
{
name: 'D2C Igniters Club',
link: 'https://dare2compete.com/internship/d2c-igniters-club-dare2compete-140176?utm_source=newsletter&utm_medium=Opprtunities&utm_campaign=sendy_newsletter&lb=nciUx5O',
deadline: '15 September 2021',
type: 'Campus Ambassador',
},
{
name: 'Facebook Fellowship program',
link: 'https://research.fb.com/blog/2021/08/application-now-open-for-the-2022-facebook-fellowship-program/',
deadline: '20 September',
type: 'Fellowship',
},
{
name: 'Mitacs Globalink Research Internship 2022',
link: 'https://www.mitacs.ca/en/programs/globalink/globalink-research-internship',
deadline: '22 September 2021',
type: 'Research Internship',
},
{
name: '30 Days of Google Cloud',
link: 'https://cloud.google.com/blog/topics/training-certifications/google-cloud-free-training-opportunities-q1-2021',
deadline: '30 September',
type: 'Cloud challenge',
},
{
name: 'DRDO Scholarship Scheme for Girl',
link: 'https://www.drdo.gov.in/sites/default/files/whats_new_document/advt_ardb2020.pdf',
deadline: '30 September',
type: 'Scholarship for Women',
},
//end of sept
//start of oct
{
name: 'Santa Fe Undergraduate Complexity Research',
link: 'https://www.santafe.edu/engage/learn/programs/undergraduate-complexity-research',
deadline: 'Early October',
type: 'Mentorship',
},
{
name: 'FOSS Asia Codeheat',
link: 'https://codeheat.org/',
deadline: '1 October',
type: 'Coding Competition',
},
{
name: 'KubeCon CloudNative North America 2021 Virtual',
link: 'https://events.linuxfoundation.org/kubecon-cloudnativecon-north-america/attend/scholarships/',
deadline: '1 October 2021',
type: 'Scholarship to attend conf',
},
{
name: 'Zonta International Women in Technology Scholarship',
link: 'https://www.zonta.org/womenintech',
deadline: '15 October 2021',
type: 'Scholarship for Women',
},
{
name: 'Codechef Snackdown',
link: 'https://snackdown.codechef.com',
deadline: '19 October 2021',
type: 'Coding Competition',
},
{
name: 'Loreal India For Young Women In Science Scholarships',
link: 'https://www.buddy4study.com/page/loreal-india-for-young-women-in-science-scholarships',
deadline: '23 October',
type: 'Scholarship for Women',
},
{
name: 'HacktoberFest',
link: 'https://hacktoberfest.digitalocean.com/',
deadline: '31 October',
type: 'Open Source Program',
},
{
name: 'S.N. Bose Scholars Program',
link: 'https://www.iusstf.org/program/for-indian-students',
deadline: '31 October',
type: 'Scholarship',
},
//end of oct
//start of nov
{
name: 'Pratibha - Scholarships for Women Engineers',
link: 'http://www.eaton.in/EatonIN/EatonExcellenceAwards/index.htm',
deadline: 'November',
type: 'Scholarship for Women',
},
{
name: 'WINTATHON by LinkedIn',
link: 'https://wintathon2020.splashthat.com/',
deadline: '6 November',
type: 'Hackathon for Women',
},
{
name: 'Machine Learning Department Summer Internships',
link: 'https://www.ml.cmu.edu/news/news-archive/2021-2025/2021/november/ml-internship.html',
deadline: '22 November 2021',
type: 'Research Internship',
},
{
name: 'Education Scholarship Scheme for Army Personnel (ESSA)',
link: 'https://scholarship.awesindia.com/',
deadline: '30 November 2021',