This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
index.html
1025 lines (867 loc) · 50.8 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<style>
.hide {
display: none;
}
/* .myDIV:hover + .hide {
display: block;
color: gray;
} */
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1 ">
<title>Open-Source Events & Hackathon's</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<!-- <link rel="stylesheet" href="css/styles1.css"> -->
<script src="./js/quote.js"></script>
<script src="https://kit.fontawesome.com/0cd233bad9.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Da+2&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="icon" href="Assets/favicon.ico">
<!-- <link rel="stylesheet" href="rj.css"> -->
<!-- <link rel="stylesheet" href="months.css"> -->
<link rel="stylesheet" href="css/style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HFGL3JD6ZS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-HFGL3JD6ZS');
</script>
</head>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="50">
<div class="scrollup" onclick="topFunction()" id="scroll" title="Go to top">
<i class="fa fa-chevron-up"></i>
</div>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-fixed-top menu menu-1">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#myPage"><i class="fab fa-osi"></i></a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#eventsSection">Month</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contri.html">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Form</a>
</li>
<li><a href="#"><span class="glyphicon glyphicon-search"></span></a></li>
</ul>
</div>
</div>
</nav>
<!-- Title -->
<div class="row upper">
<div class="col-xl-5 col-lg-4 col-md-12 col-sm-12">
<h1>Open-Source Events & Hackathon's</h1>
<br><br><br><br><br><br><br><br><br><br>
</div>
<div class="col-xl-7 col-lg-8 col-md-12 col-sm-12">
<img class="image" src="assets/back.png" alt="os-image">
</div>
</div>
<h3 class="quotes">
<div>
<ul class="flip4"></ul>
<li> “The people who are crazy enough to think they can change the world are the ones who do.”</li>
<li>“Quality is more important than quantity. One home run is much better than two doubles.”</li>
<li>“Innovation distinguishes between a leader and a follower.” </li>
<li>“Sometimes life is going to hit you in the head with a brick. Don’t lose faith.”</li>
</ul>
</div>
</h3>
<section class="container-fluid">
<div class="row align-items-center">
<div class="col-lg-4 col-md-6 col-xs-12 pl-5 pr-0 ml-0 px-2">
<div class="row">
<div class="col-lg-3"></div>
<div class="col-lg-9">
<img class="img-fluid" src="Assets/programmer.png" height="1200" width="1400">
</div>
</div>
</div>
<div id="one" class="col-lg-8 col-xs-12 col-md-6 text-left pl-5 pr-0 ml-0">
<div class="row">
<div class="col-lg-1"></div>
<div class="col-lg-11">
<b>
<p id="para" align="center" style="color: #5e90e0;"><i class="fa fa-hand-peace-o"></i> Open Source</p>
</b>
<p class="p"><b>The term <em>open source</em> refers to something people can modify and share because its
design is
publicly accessible.<br>
The term originated in the context of software development to designate a specific approach to
creating computer programs. Today, however, <em>"open source"</em> designates a broader set of
values—what we
call <em>"the open source way."</em> Open source projects, products, or initiatives embrace and
celebrate
principles of open exchange, collaborative participation, rapid prototyping, transparency, meritocracy,
and
community-oriented development.</em></b></p>
</div>
</div>
</div>
</div>
</section>
<section class="container-fluid pt-4">
<div class="row align-items-center">
<div id="one" class="col-lg-7 col-xs-12 col-md-6 text-left pl-0 pr-0 ml-0">
<div class="row">
<div class="col-1"></div>
<div class="col-10">
<b>
<p id="para3" align="center" style="color: #5e90e0;"><i class="fa fa-thumb-tack"></i> Hackathon</p>
</b>
<p class="pa" style="color: black;"><b>A <b>hackathon </b> (also known as a <b>hack day</b>, <b>hackfest
</b>or <b>codefest</b>; a
portmanteau of hacking marathon) is a design sprint-like event; often, in which computer programmers and
others involved in software development, including graphic designers, interface designers, project
managers,
domain experts, and others collaborate intensively on software projects.</p></b>
<p class="pa" style="color: black;"><b>The goal of a hackathon is to create functioning software or hardware
by the end of the event.
Hackathons tend to have a specific focus, which can include the programming language used, the operating
system, an application, an API, or the subject and the demographic group of the programmers</p></b>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-xs-12 pl-5 pr-5 pb-2 pt-2">
<img class="img-fluid" src="Assets/giphy.gif" width="800">
</div>
</div>
</section>
<div id="months pt-0">
<section class="upcoming-events" id="eventsSection">
<h2 style="text-align:center">
Open Source Events and Hackathons
</h2>
<hr style="margin-left: 200px; margin-right: 200px;" class="mw-100 line" />
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel" data-interval="false">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="3"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="4"></li>
</ol>
<!-- Wrapper for months -->
<div class="carousel-inner">
<div class="carousel-item active">
<div class="timeline pt-5">
<div class="timeline-container left">
<div class="timeline-content">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://summerofcode.withgoogle.com/">1. Google Summer Of Code.</a>
</p>
<div class="hide">Google Summer of Code is a global program focused on introducing students to open
source software development. Students work on a 3-month programming project with an open-source
organization during their break from university.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://github.com/JIITODC">2. JIIT Open-Source Developers Circle (JODC)</a>
</p>
<div class="hide">JIIT Month of Code is an online programme by the open-source club of Jaypee
Institute of Information Technology, JIIT Noida-128, the JODC, focused on introducing students to
open source software development and documentation writing.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.gssoc.tech/">3. GirlScript Summer of Code</a>
</p>
<div class="hide">GirlScript Summer of Code is the 3 months 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 while encouraging diversity.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.outreachy.org/">4. Outreachy</a>
</p>
<div class="hide">Outreachy provides internships to work in open source and free software. Outreachy
internships are open to applicants around the world. Interns work remotely and are not required to
move. Interns are paid a stipend of $5,500 USD for the three-month internship. Interns have a $500
USD travel stipend to attend conferences or events.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://opencodeiiita.github.io/">5. OpenCode IIITA</a>
</p>
<div class="hide">OpenCode is a month-long program starting in January for students to start there
journey in the world of open source.
The Only requirement being an enthusiastic heart to learn.
</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://crosswoc.ieeedtu.in/">6. CrossWoC</a>
</p>
<div class="hide">CrossWoC is a six-week long opensource event organised by IEEE DTU & IEEE DTU CS,
which gives programmers and innovators an opportunity to bring out their nascent talent and find intriguing
solutions to real-world problems. It provides a platform for developers to dig deeper into their gray matter
and bring out their latent creativity through open source.</div>
</div>
<div class="time time-1">
<h5>January</h5>
</div>
</div>
</div>
<div class="timeline-container right">
<div class="timeline-content">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://careers.google.com/students/engineering-and-technical-internships/">1.
STEP(Google)</a>
</p>
<div class="hide">STEP program is a developmental opportunity for first- and second-year
undergraduate
students with a passion for technology—especially students from historically underrepresented
groups
in the field.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://summerofcode.withgoogle.com/">2. Google Summer of Code</a>
</p>
<div class="hide"> <i>List of accepted mentoring organizations published</i> Google Summer of Code
is
a global program focused on introducing students to open source software development. Students
work
on a 3-month programming project with an open-source organization during their break from
university.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.openmainframeproject.org/projects/mentorship-program">3. Open Mainframe
Project Mentorship Program</a>
</p>
<div class="hide">The Open Mainframe Project funds mentees to complete projects during the period
between semesters in the months of May, June, July, August, and September. Upon successful
completion of the mentorship, mentees are invited to present at an industry conference. The Open
Mainframe Project funds travel and expenses for mentees.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://research.redhat.com/red-hat-open-source-contest/">4. Red Hat Open Source
Contest</a>
</p>
<div class="hide">Red Hat Open Source Contest is a competition for students during which we want to
show students how easy it is to participate in open source projects. Students can also get
feedback
on their code and get it included in a real project. By participating in the Red Hat Open Source
Contest students can win nice prizes.</div>
</div>
<div class="time time-2">
<h5>February</h5>
</div>
</div>
</div>
<div class="timeline-container left">
<div class="timeline-content end">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.codess.net/about-codess/">1. Codess</a>
</p>
<div class="hide">Codess is a community for female coders initiated by Microsoft and was established
to explore ways to promote gender diversity in the engineering field. Since its inception in 2013
in
London, Codess has been inspiring women in engineering and helping them achieve their professional
goals.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://sites.google.com/view/summerofearthengine/home?authuser=0">2. Google Summer of
Earth Engine</a>
</p>
<div class="hide">Google Summer of Earth Engine is a research program for Indian university students
&
researchers to get a chance to work with leading research organizations in the country working in
environment, conservation, water resources and agricultural domains over 3 months of summer on a
project and get paid to do so!</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://railsgirlssummerofcode.org/">3. RAILS GIRLS SUMMER OF CODE</a>
</p>
<div class="hide">RAILS GIRLS SUMMER OF CODE is a global fellowship program for women and non-binary
coders. Students receive a three-month scholarship to work on existing Open Source projects and
expand their skill set.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://wiki.linuxfoundation.org/lkmp">4. Linux Kernel Mentorship Program</a>
</p>
<div class="hide">The Linux Kernel Mentorship Program offers a structured remote learning
opportunity
to aspiring Linux Kernel developers. Experienced Linux Kernel developers and maintainers mentor
volunteer mentees and help them become contributors to the Linux Kernel.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.fsf.org/about/staff-and-board">5. Free Software Foundation</a>
</p>
<div class="hide">This is an educational opportunity to work with the organization that sponsors the
GNU Project, publishes the GNU General Public License (GPL), and fights for software freedom.
</div>
</div>
<div class="time time-1">
<h5>March</h5>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="timeline pt-5">
<div class="timeline-container left">
<div class="timeline-content">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://rare-technologies.com/incubator/#details">1. RARE Technologies Student Incubator
Programme</a>
</p>
<div class="hide">Our student Incubator offers a unique mix of academic mentorship, hand-on project
work and technical training. It is a highly selective program where you will be mentored by an
industry expert as you develop a pragmatic solution to a real-world problem using machine
learning.
</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a
href="https://www.igalia.com/2020/02/03/The-2020-Web-Engines-Hackfest-is-happening-in-May.html">2.
Igalia Web Engines Hackfest</a>
</p>
<div class="hide">Igalia has been hosting the Web Engines Hackfest every year since 2009. And every
year the event has grown bigger, with an increasing number of participants and broader areas of
interest.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://lab.codingblocks.com/boss">3. BOSS - Bountiful Open Source Summer</a>
</p>
<div class="hide">Each year BOSS teaches hundreds of students coding, programming and software
development. Over the past five years (we started off in April 2014), we have helped more than
3000
students gain expertise in Android, Web, Data Science and more.BOSS 2019 is open to any Indian
Student. You could be a student enrolled in any school or a college or university.</div>
</div>
<div class="time time-4">
<h5>April</h5>
</div>
</div>
</div>
<div class="timeline-container right">
<div class="timeline-content">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://developers.google.com/season-of-docs">1. Season of Docs</a>
</p>
<div class="hide">Google Season of Docs is a program giving technical writers an opportunity to
contribute to open source projects, by paying them a three month stipend and facilitating
connections between writers and projects. As a platform that’s all about supporting the open
source
community, we think this is fantastic, because a lot of open source projects really need
documentation help.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a
href="https://www.esa.int/Enabling_Support/Space_Engineering_Technology/SOCIS_The_ESA_Summer_of_Code_in_Space">2.
A Summer of Code in Space</a>
</p>
<div class="hide">ESA Summer of Code in Space (SOCIS) is a program run by the European Space Agency
that focuses on bringing student developers into open source software development for space
applications. Students work with a mentoring organization (with potential support from ESA
experts)
on a 3 month programming project during their summer break.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.oss.kr/en_oss_world_challenage">3. OSS World Challenge</a>
</p>
<div class="hide">Open Source Software World Challenge is an annual competition hosted by the
Ministry
of Science, ICT and Future Planning of Korea.Brings together the gems of open source developers to
cultivate developing-skills through cooperated projects which will eventually expand the open
source
minds/spirit and practices among community.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://2020.acmmm.org/index.html">4. ACM MM Open Source Software Competition</a>
</p>
<div class="hide">The Open Source Software Competition is an important part of the ACM Multimedia
program. The competition, now in its 17th edition, is intended to celebrate, encourage and promote
the contribution of researchers, software developers and educators to advance the field by
providing
the community with implementations of codecs, middleware, frameworks, toolkits, libraries,
multimedia players, applications, authoring tools, and other multimedia software.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://fellowship.mlh.io/">5. MLH Fellowship</a>
</p>
<div class="hide">The MLH Fellowship is an internship alternative for software engineers. Instead of
working on a project for just one company, you'll contribute to Open Source projects that are used
by companies around the world. You'll collaborate with a group of 10 students under the guidance
of
a professional mentor whose only job is to help you successfully contribute.</div>
</div>
<div class="time time-5">
<h5>May</h5>
</div>
</div>
</div>
<div class="timeline-container left">
<div class="timeline-content end">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://wiki.linuxfoundation.org/lkmp">1. Linux Kernel Mentorship Program</a>
</p>
<div class="hide">The Linux Kernel Mentorship Program offers a structured remote learning
opportunity
to aspiring Linux Kernel developers. Experienced Linux Kernel developers and maintainers mentor
volunteer mentees and help them become contributors to the Linux Kernel.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.openstack.org/summit/">2. Open Stack Summit</a>
</p>
<div class="hide">Open Stack Summit gives an opportunity to collaborate directly with the people
building and running open source infrastructure using OpenStack, Kubernetes and 30+ other
technologies.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a
href="https://events.linuxfoundation.org/open-source-summit-north-america/https://events.linuxfoundation.org/open-source-summit-north-america/">3.
Open Source Summit</a>
</p>
<div class="hide">Open Source Summit connects the open source ecosystem under one roof. It’s a
unique
environment for cross-collaboration between developers, sysadmins, devops, architects and others
who
are driving technology forward.</div>
</div>
<div class="time time-4">
<h5>June</h5>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="timeline pt-5">
<div class="timeline-container left">
<div class="timeline-content">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://alibaba.github.io/">1. Alibaba Summer of Code</a>
</p>
<div class="hide">The Linux Security Summit (LSS) is a technical forum for collaboration between
Linux
developers, researchers, and end-users. Its primary aim is to foster community efforts in
analyzing
and solving Linux security challenges.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://events.linuxfoundation.org/linux-security-summit-north-america/">2. Linux
Security Summit</a>
</p>
<div class="hide"></div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.lfasiallc.cn/cloud-native-open-source-virtual-summit-china/">3. Cloud Native
+ Open Source Virtual Summit China</a>
</p>
<div class="hide">Cloud Native + Open Source Virtual Summit China 2020 gathers leading technologists
of China’s active open source and cloud native communities to further the education and
advancement
of cloud native computing and for an immersive digital experience to share learnings, highlight
innovation, and discuss emerging trends in microservices architectures and container orchestration
with technologies such as Kubernetes, Prometheus, and many more.</div>
</div>
<div class="time time-6">
<h5>July</h5>
</div>
</div>
</div>
<div class="timeline-container right">
<div class="timeline-content">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://hackinout.co/"> 1. InOut Hackathon</a>
</p>
<div class="hide">InOut prides itself on being India’s biggest community hackathon.Since its
inception
in 2015, InOut has been a platform where technology leaders and the brightest minds come together
to
collaborate on building tools that solve real problems.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://wikimania.wikimedia.org/wiki/Wikimania">2. Wikimania Hackathon</a>
</p>
<div class="hide">Wikimania is the annual conference celebrating all the free knowledge projects
hosted by the Wikimedia Foundation with three days of conferences, discussions, meetups, training,
and workshops. Hundreds of volunteers and Free Knowledge leaders from around the world gather to
discuss issues, report on new projects and approaches, and exchange ideas</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://events.linuxfoundation.org/linux-kernel-maintainer-summit/">3. Linux Kernel
Maintainer Summit</a>
</p>
<div class="hide">The Linux Kernel Maintainer Summit brings together the world's leading core kernel
developers to discuss the state of the existing kernel and plan the next development cycle.</div>
</div>
<div class="time time-2">
<h5>August</h5>
</div>
</div>
</div>
<div class="timeline-container left">
<div class="timeline-content end">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://codeheat.org/">1. CodeHeat Coding Contest of FOSSASIA</a>
</p>
<div class="hide">In the Heat of the Code is a coding contest for FOSSASIA projects on GitHub.
The contest runs until February. Grand prize winners will be invited to present their work at the
FOSSASIA OpenTechSummit in Singapore in March and will get up to 600 SGD in travel funding to
attend, plus a free speaker ticket. Other participants will have the chance to win Tshirts, Swag
and
vouchers to attend Open Tech events in the region and will get certificates of participation.
</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="http://mdg.iitr.ac.in/soc.html"> 2. MDG Season of Code- IIT-R</a>
</p>
<div class="hide">MDG is an active student group of IIT Roorkee directing its efforts towards
creating
useful mobile applications and promoting tech-based learning for the same.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://act-w.org/">3. ACT-W: Seattle, Seattle, WA USA</a>
</p>
<div class="hide">ACT-W 2020 is an action-packed conference where talented womxn and allies can
build
skills, grow their community, and accelerate their career path.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://events.linuxfoundation.org/open-networking-edge-summit-north-america/">4. Open
Networking & Edge Summit</a>
</p>
<div class="hide">Open Networking & Edge Summit (formerly Open Networking Summit) is the industry’s
premier open networking event now expanded to comprehensively cover Edge Computing, Edge Cloud &
IoT. Open Networking & Edge Summit (ONES) enables collaborative development and innovation across
enterprises, service providers/telcos and cloud providers to shape the future of networking and
edge
computing.</div>
</div>
<div class="time time-3">
<h5>September</h5>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="timeline pt-5">
<div class="timeline-container left">
<div class="timeline-content">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://hacktoberfest.digitalocean.com/">1. Hacktoberfest</a>
</p>
<div class="hide">Hacktoberfest is a month-long celebration of open source software run by
DigitalOcean and DEV. Hacktoberfest is open to everyone in our global community. To participate,
four pull requests must be submitted to public GitHub repositories. You can sign up anytime
between
October 1 and October 31.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://in.pycon.org/2020/">2. Pycon</a>
</p>
<div class="hide">Pycon is the premier conference in India on using and developing the Python
programming language.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://wiki.linuxfoundation.org/lkmp">3. Linux Kernel Mentorship Program</a>
</p>
<div class="hide">The Linux Kernel Mentorship Program offers a structured remote learning
opportunity
to aspiring Linux Kernel developers. Experienced Linux Kernel developers and maintainers mentor
volunteer mentees and help them become contributors to the Linux Kernel.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://halite.io/">4. Halite AI Bot Challenge</a>
</p>
<div class="hide">Halite is an artificial intelligence challenge, created by Two Sigma. Participants
write bots using the programming language of their choice to compete in an original online
multiplayer game.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://njackwinterofcode.github.io/">5. NJACK Winter of Code</a>
</p>
<div class="hide">NJACK Winter of Code is an initiative by NJACK, IIT Patna, targeted at students
who
have never participated in Free or Open Source Software (FOSS) development before, as well as at
those who have already become an expert in Open Source Development and are currently contributing
to
projects of any domain, say Web, Mobile, Machine Learning, Blockchain, IoT etc.</div>
</div>
<div class="time time-1">
<h5>October</h5>
</div>
</div>
</div>
<div class="timeline-container right">
<div class="timeline-content">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://devscript.tech/woc/">1. DevScript Winter of Code</a>
</p>
<div class="hide">DevScript Winter of Code is a 3-month long open-source program envisioned by DevScript
that helps understand the paradigm of Open Source contribution. It aims to bring students into the world
of open source development and see the power of unified problem-solving in real time.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.ecell.in/esummit/ihack/">2. I_Hack(IIT B)</a>
</p>
<div class="hide">At I_Hack, we bring together India’s best coders, developers, designers,
innovators,
creators and entrepreneurs of tomorrow. I_Hack is geared up for those who are passionate about
building, designing and innovating. It is a 30 Hr event where the enthusiasts meet, develop and
compete in the product prototyping competition.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://events.linuxfoundation.org/kubernetes-contributor-summit-europe/">3. Kubernetes
Contributor Summit</a>
</p>
<div class="hide">It is an event that brings together new and current Kubernetes’ contributors alike
to connect and share face-to-face; and serves as an opportunity for existing contributors to help
shape the future of community development.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://swoc.tech/">4. Script Winter of Code</a>
</p>
<div class="hide">Script Winter of Code is an 3-month long open-source program envisioned by the Script
Foundation. It aims to bring students into the world of open source development and see the power of
unified problem-solving in real time. The students will be guided by experienced mentors throughout their
journey. They will learn the skills essential in the world of programming, all the while developing a deep
appreciation for the world of open-source.</div>
</div>
<div class="time time-2">
<h5>November</h5>
</div>
</div>
</div>
<div class="timeline-container left">
<div class="timeline-content end">
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://www.sih.gov.in/"> 1. SIH (Smart India Hackathon)</a>
</p>
<div class="hide">World’s Biggest Hackathon and Open Innovation model, an initiative by Ministry of
HRD 4th edition of highly successful.Smart India Hackathon initiative Involves 2 Lakh+ students
with
57,000+ ideas from 2200+ institutions against 530+ problem statements provided by 120+
organizations
from across India.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://kwoc.kossiitkgp.org/">2. KWoC (Kharagpur Winter of Code)</a>
</p>
<div class="hide">Kharagpur Winter of Code is a 5-week long online programme for students who are
new
to open source software development. The programme not only helps students to get involved in open
source, but also prepares them for many open source summer programmes; Google Summer of Code being
one of them. The program is hosted by Kharagpur Open Source Society an independent student group
at
IIT Kharagpur, but is open to students of any university.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://season.kde.org/?q=program_home&prg=47">3. KDE Student Programs</a>
</p>
<div class="hide">Focused on offering an opportunity to anyone (not just enrolled students)
contributing to the KDE community, this is a program that is comparable to the well-known Google
Summer of Code, with some special differences.</div>
</div>
<div onmouseenter='enter(this)' onmouseleave='exit(this)' class="myDIV">
<p class="description">
<a href="https://24pullrequests.com/about">4. 24 Pull Requests</a>
</p>
<div class="hide">24 Pull Requests goal is to encourage contribution to open source projects during
December. The site suggests open projects, highlights tickets that are good for new contributors,
provides guides for contributing and promotes good contributions submitted each day.</div>
</div>
<div class="time time-3">
<h5>December</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<!--Quotes-->
<p id="spam"></p>
<!-- footer -->
<svg viewBox="0 0 120 28">
<defs>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" stdDeviation="1" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="
1 0 0 0 0
0 1 0 0 0
0 0 1 0 0
0 0 0 13 -9" result="goo" />
<xfeBlend in="SourceGraphic" in2="goo" />
</filter>
<path id="wave"
d="M 0,10 C 30,10 30,15 60,15 90,15 90,10 120,10 150,10 150,15 180,15 210,15 210,10 240,10 v 28 h -240 z" />
</defs>
<use id="wave3" class="wave" xlink:href="#wave" x="0" y="-6"></use>
<use id="wave2" class="wave" xlink:href="#wave" x="0" y="-5"></use>
<g class="gooeff" filter="url(#goo)">
<use id="wave1" class="wave" xlink:href="#wave" x="0" y="-7" />
</g>
<g>
<use id="wave1" class="wave" xlink:href="#wave" x="0" y="1" />
</g>
</svg>
<footer id="bottom">
<div class="flexdisplay">
<div class="row container-fluid">
<div class="col-sm">
<div class="logo center"><img src="Assets/orgLogo.png">
</div>
</div>
<div class="col-sm" id="secondfooter">
<br><br><br>
<div class="socialmedia center">
<a href="https://github.com/Catalyst-IN"> <i class="fa fa-github foot"></i> </a>
<a href="https://www.linkedin.com/company/47584087"> <i class="fa fa-linkedin foot"></i> </a>
<a href="https://twitter.com/Catalyst_IND"><i class="fa fa-twitter foot"></i> </a>
</div>
<div>Made with ❤️ by <a href="">Catalyst</a></div>
</div>
<div class="col-sm">
<div class="newsletter center">
<h3>Join Our Newsletter</h3>
<p class="footer-p">Enter Your Email to get our news and updates.</p>
<form>
<input type="email" placeholder="Enter your Email" required>
<!-- A pop-up to thank the user for subscribing to newsletter. -->
<button type="submit" class="send" onclick="notify()">Send</button>
</form>
</div>
</div>
</div>
</footer>
<!-- jquery -->
<script>
$(document).ready(function () {
// Initialize Tooltip
$('[data-toggle="tooltip"]').tooltip();
// Add smooth scrolling to all links in navbar + footer link
$(".navbar a, footer a[href='#myPage']").on('click', function (event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (900) specifies the number of milliseconds it takes to scroll to the specified area
// $('html, body').animate({
// scrollTop: $(hash).offset().top
// }, 900, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
};
} // End if
);
})
</script>
<script>
function notify() {
alert("Thank you for subscribing! We will keep you updated with the latest news and events on open-sourced contributions. Stay Tuned 😄!!");
}
</script>
<script>