-
Notifications
You must be signed in to change notification settings - Fork 18
/
hacktoberfest2021.html
619 lines (543 loc) · 30.5 KB
/
hacktoberfest2021.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>OSS — IIT Dharwad</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="./images/oss_logo.png" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Nunito+Sans:200,300,400,700,900|Roboto+Mono:300,400,500">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="css/fl-bigmug-line.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/custom.css">
<style type "text/css">
/* @group Blink */
.blink {
-webkit-animation: blink .75s linear infinite;
-moz-animation: blink .75s linear infinite;
-ms-animation: blink .75s linear infinite;
-o-animation: blink .75s linear infinite;
animation: blink .75s linear infinite;
}
@-webkit-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 1;
}
50.01% {
opacity: 0;
}
100% {
opacity: 0;
}
}
@-moz-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 1;
}
50.01% {
opacity: 0;
}
100% {
opacity: 0;
}
}
@-ms-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 1;
}
50.01% {
opacity: 0;
}
100% {
opacity: 0;
}
}
@-o-keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 1;
}
50.01% {
opacity: 0;
}
100% {
opacity: 0;
}
}
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 1;
}
50.01% {
opacity: 0;
}
100% {
opacity: 0;
}
}
/* @end */
</style>
<script>
(function () {
var qs, js, q, s, d = document,
gi = d.getElementById,
ce = d.createElement,
gt = d.getElementsByTagName,
id = "typef_orm_share",
b = "https://embed.typeform.com/";
if (!gi.call(d, id)) {
js = ce.call(d, "script");
js.id = id;
js.src = b + "embed.js";
q = gt.call(d, "script")[0];
q.parentNode.insertBefore(js, q)
}
})()
</script>
</head>
<body>
<div class="site-wrap">
<div class="site-mobile-menu">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div> <!-- .site-mobile-menu -->
<header class="site-navbar py-1" role="banner">
<div class="container">
<div class="row align-items-center">
<div class="col-6 col-xl-2">
<a href="index.html"><img src="images/oss_logo.png" style="max-height: 100px;"></a>
<!-- <h1 class="mb-0"><a href="index.html" class="text-black h2 mb-0">O<strong>SS</strong></a></h1> -->
</div>
<div class="col-10 col-xl-10 d-none d-xl-block">
<nav class="site-navigation text-right" role="navigation">
<ul class="site-menu js-clone-nav mr-auto d-none d-lg-block">
<li><a href="index.html">Home</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="previousTeam.html">Previous Team</a></li>
<li><a href="new_post.html"><span class="rounded bg-primary py-2 px-3 text-white"><span
class="h5 mr-2">+</span>Propose an Idea </span></a></li>
</ul>
</nav>
</div>
<div class="col-6 col-xl-2 text-right d-block">
<div class="d-inline-block d-xl-none ml-md-0 mr-auto py-3" style="position: relative; top: 3px;"><a href="#"
class="site-menu-toggle js-menu-toggle text-black"><span class="icon-menu h3"></span></a></div>
</div>
</div>
</div>
</header><!-- SoC Banner -->
<div class="container">
<div class="unit-5 banner" style="background: url('images/Hacktoberfest/newl.png'); background-repeat: no-repeat; background-position:
center; background-size: auto; margin-left: 15px; margin-right: 15px;">
<div class="container text-center">
<h2 style="padding: 100px" class="mb-2"></h2>
</div>
</div>
</div>
<!--Start Section Events-->
<div class="site-section" style="padding-top: 0%;">
<div class="container">
<h2>Overview</h2>
<p>
Hacktoberfest, in its 8th year, is a month-long celebration of open source software run by DigitalOcean.
During the month of October, we invite you to join open-source software enthusiasts, beginners, and the
developer community by contributing to open-source projects.<br>
You can do this in a variety of ways:
<ul>
<li>Prepare and share your project for collaboration</li>
<li>Contribute to the betterment of a project via pull requests</li>
<li>Organize an event</li>
<li>Mentor others</li>
<li>Donate directly to open source projects</li>
</ul>
</p>
<br>
<h2>How does the event work?</h2>
<li> We have uploaded a set of projects ranging from beginner-friendly to expert on the OSS organization present on github.
</li>
<li>Each project has a Mentor assigned to it and enhancements mentioned in its README.md file. </li>
<li> You are free to pick any of the enhancements and open an issue in the repository for the enhancement. </li>
<li>Once opened, the issue will be assigned to you by the mentor if it is available.</li>
<li>Once assigned, you can fork the repo and make your changes (commits). Once done with development of the
enhancement, create a pull request (PR).</li>
<li>The mentor verifies the PR and merges the same to the main repository. Spam PR will not be accepted and will
be penalized. All the upto the mark PRs will contribute to your PR at hacktoberfest.</li>
</ul>
<br><br>
<h2>Rules</h2>
<ul>
<li>No spamming of PRs.</li>
<li>All the PRs should have a sensible heading and description which depicts the enhancement made.</li>
<li>Take up issues that have not been assigned already.</li>
</ul>
<br><br>
<!-- Row 1 -->
<h2>
Software Projects
</h2>
<div class="row" style="margin-top: 30px;">
<div class="card border-info mb-3" style="max-width: 18rem; margin:5px;">
<div class="card-header" style="display: flex; justify-content: space-between; align-items: center;">
<div class="h4" style="flex:8; align-items: center;">
<b>Prevelec</b>
</div>
<div style="flex:1;">
<div class="fork-btn nav-item"><a href="https://github.com/oss2019/prevelec" target="_blank"
class="fork-btn-inner btn btn-info"><svg stroke="currentColor" fill="none" stroke-width="0"
viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"
style="font-size: 1.2em;">
<path
d="M7 5C7 3.89543 7.89543 3 9 3C10.1046 3 11 3.89543 11 5C11 5.74028 10.5978 6.38663 10 6.73244V14.0396H11.7915C12.8961 14.0396 13.7915 13.1441 13.7915 12.0396V10.7838C13.1823 10.4411 12.7708 9.78837 12.7708 9.03955C12.7708 7.93498 13.6662 7.03955 14.7708 7.03955C15.8753 7.03955 16.7708 7.93498 16.7708 9.03955C16.7708 9.77123 16.3778 10.4111 15.7915 10.7598V12.0396C15.7915 14.2487 14.0006 16.0396 11.7915 16.0396H10V17.2676C10.5978 17.6134 11 18.2597 11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 18.2597 7.4022 17.6134 8 17.2676V6.73244C7.4022 6.38663 7 5.74028 7 5Z"
fill="currentColor"></path>
</svg> <svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024"
height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" style="font-size: 1.1em;">
<path
d="M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 0 0 .6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0 0 46.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z">
</path>
</svg></a>
</div>
</div>
</div>
<div class="card-body text-info" style="display: flex; flex-direction: column; ">
<span class="d-block text-gray-500 text-normal font-weight-bold small mb-3">Mentors: <a target="_blank"
href="https://github.com/AtulSingh-Emyre">Atul Singh</a>
</span>
<p class="card-text"><b>Email:</b> [email protected]<br><b>Phone:</b> +91-7892128329</p>
<div>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 120px; font-size: 12px; padding: 1px; border-radius: 10px;">
<b>beginner-friendly</b></button>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 60px; font-size: 12px; padding: 1px; border-radius: 10px;"><b>ReactJS</b></button>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 60px; font-size: 12px; padding: 1px; border-radius: 10px;"><b>HTML</b></button>
</div>
</div>
</div>
<div class="card border-info mb-3" style="max-width: 18rem; margin:5px;">
<div class="card-header" style="display: flex; justify-content: space-between; align-items: center;">
<div class="h4" style="flex:8; align-items: center;">
<b>Adventure<br>Game</b>
</div>
<div style="flex:1;">
<div class="fork-btn nav-item"><a href="https://github.com/oss2019/Text_Based_Adventure_Game" target="_blank"
class="fork-btn-inner btn btn-info"><svg stroke="currentColor" fill="none" stroke-width="0"
viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"
style="font-size: 1.2em;">
<path
d="M7 5C7 3.89543 7.89543 3 9 3C10.1046 3 11 3.89543 11 5C11 5.74028 10.5978 6.38663 10 6.73244V14.0396H11.7915C12.8961 14.0396 13.7915 13.1441 13.7915 12.0396V10.7838C13.1823 10.4411 12.7708 9.78837 12.7708 9.03955C12.7708 7.93498 13.6662 7.03955 14.7708 7.03955C15.8753 7.03955 16.7708 7.93498 16.7708 9.03955C16.7708 9.77123 16.3778 10.4111 15.7915 10.7598V12.0396C15.7915 14.2487 14.0006 16.0396 11.7915 16.0396H10V17.2676C10.5978 17.6134 11 18.2597 11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 18.2597 7.4022 17.6134 8 17.2676V6.73244C7.4022 6.38663 7 5.74028 7 5Z"
fill="currentColor"></path>
</svg> <svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024"
height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" style="font-size: 1.1em;">
<path
d="M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 0 0 .6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0 0 46.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z">
</path>
</svg></a>
</div>
</div>
</div>
<div class="card-body text-info" style="display: flex; flex-direction: column; ">
<span class="d-block text-gray-500 text-normal font-weight-bold small mb-3">Mentors: <a target="_blank"
href="https://github.com/harshraj22">Harsh Raj</a>
</span>
<p class="card-text"><b>Email:</b> [email protected]<br><b>Phone:</b> +91-7877781646</p>
<div>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 130px; font-size: 12px; padding: 1px; border-radius: 10px;">
<b>beginner-friendly</b></button>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 60px; font-size: 12px; padding: 1px; border-radius: 10px;"><b>Python</b></button>
</div>
</div>
</div>
<div class="card border-info mb-3" style="max-width: 18rem; margin:5px;">
<div class="card-header" style="display: flex; justify-content: space-between; align-items: center;">
<div class="h4" style="flex:8; align-items: center;">
<b>Moviehub</b>
</div>
<div style="flex:1;">
<div class="fork-btn nav-item"><a href="https://github.com/oss2019/Movie-Hub" target="_blank"
class="fork-btn-inner btn btn-info"><svg stroke="currentColor" fill="none" stroke-width="0"
viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"
style="font-size: 1.2em;">
<path
d="M7 5C7 3.89543 7.89543 3 9 3C10.1046 3 11 3.89543 11 5C11 5.74028 10.5978 6.38663 10 6.73244V14.0396H11.7915C12.8961 14.0396 13.7915 13.1441 13.7915 12.0396V10.7838C13.1823 10.4411 12.7708 9.78837 12.7708 9.03955C12.7708 7.93498 13.6662 7.03955 14.7708 7.03955C15.8753 7.03955 16.7708 7.93498 16.7708 9.03955C16.7708 9.77123 16.3778 10.4111 15.7915 10.7598V12.0396C15.7915 14.2487 14.0006 16.0396 11.7915 16.0396H10V17.2676C10.5978 17.6134 11 18.2597 11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 18.2597 7.4022 17.6134 8 17.2676V6.73244C7.4022 6.38663 7 5.74028 7 5Z"
fill="currentColor"></path>
</svg> <svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024"
height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" style="font-size: 1.1em;">
<path
d="M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 0 0 .6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0 0 46.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z">
</path>
</svg></a>
</div>
</div>
</div>
<div class="card-body text-info" style="display: flex; flex-direction: column; ">
<span class="d-block text-gray-500 text-normal font-weight-bold small mb-3">Mentors: <a target="_blank"
href="https://github.com/ashishakash">Ashish Akash</a>
</span>
<p class="card-text"><b>Email:</b> [email protected]<br><b>Phone:</b> +91-7033677200</p>
<div>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 90px; font-size: 12px; padding: 1px; border-radius: 10px;">
<b>Intermediate</b></button>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 60px; font-size: 12px; padding: 1px; border-radius: 10px;"><b>Django</b></button>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 60px; font-size: 12px; padding: 1px; border-radius: 10px;"><b>HTML</b></button>
</div>
</div>
</div>
<div class="card border-info mb-3" style="max-width: 18rem; margin:5px;">
<div class="card-header" style="display: flex; justify-content: space-between; align-items: center;">
<div class="h4" style="flex:8; align-items: center;">
<b>MiniYoutube</b>
</div>
<div style="flex:1;">
<div class="fork-btn nav-item"><a href="https://github.com/oss2019/MiniYouTube" target="_blank"
class="fork-btn-inner btn btn-info"><svg stroke="currentColor" fill="none" stroke-width="0"
viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"
style="font-size: 1.2em;">
<path
d="M7 5C7 3.89543 7.89543 3 9 3C10.1046 3 11 3.89543 11 5C11 5.74028 10.5978 6.38663 10 6.73244V14.0396H11.7915C12.8961 14.0396 13.7915 13.1441 13.7915 12.0396V10.7838C13.1823 10.4411 12.7708 9.78837 12.7708 9.03955C12.7708 7.93498 13.6662 7.03955 14.7708 7.03955C15.8753 7.03955 16.7708 7.93498 16.7708 9.03955C16.7708 9.77123 16.3778 10.4111 15.7915 10.7598V12.0396C15.7915 14.2487 14.0006 16.0396 11.7915 16.0396H10V17.2676C10.5978 17.6134 11 18.2597 11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 18.2597 7.4022 17.6134 8 17.2676V6.73244C7.4022 6.38663 7 5.74028 7 5Z"
fill="currentColor"></path>
</svg> <svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024"
height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" style="font-size: 1.1em;">
<path
d="M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 0 0 .6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0 0 46.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z">
</path>
</svg></a>
</div>
</div>
</div>
<div class="card-body text-info" style="display: flex; flex-direction: column; ">
<span class="d-block text-gray-500 text-normal font-weight-bold small mb-3">Mentors: <a target="_blank"
href="https://github.com/rishitsaiya">Rishit Saiya</a>, <a target="_blank"
href="https://github.com/AtulSingh-Emyre">Atul Singh</a>
</span>
<p class="card-text"><b>Email:</b> [email protected]<br><b>Phone:</b> +91-9619708003</p>
<div>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 90px; font-size: 12px; padding: 1px; border-radius: 10px;">
<b>Intermediate</b></button>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 60px; font-size: 12px; padding: 1px; border-radius: 10px;"><b>ReactJS</b></button>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 30px; font-size: 12px; padding: 1px; border-radius: 10px;"><b>API</b></button>
</div>
</div>
</div>
<div class="card border-info mb-3" style="max-width: 18rem; margin:5px;">
<div class="card-header" style="display: flex; justify-content: space-between; align-items: center;">
<div class="h4" style="flex:8; align-items: center;">
<b>Keeper</b>
</div>
<div style="flex:1;">
<div class="fork-btn nav-item"><a href="https://github.com/oss2019/Keeper-App" target="_blank" class="fork-btn-inner btn btn-info"><svg
stroke="currentColor" fill="none" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em"
xmlns="http://www.w3.org/2000/svg" style="font-size: 1.2em;">
<path
d="M7 5C7 3.89543 7.89543 3 9 3C10.1046 3 11 3.89543 11 5C11 5.74028 10.5978 6.38663 10 6.73244V14.0396H11.7915C12.8961 14.0396 13.7915 13.1441 13.7915 12.0396V10.7838C13.1823 10.4411 12.7708 9.78837 12.7708 9.03955C12.7708 7.93498 13.6662 7.03955 14.7708 7.03955C15.8753 7.03955 16.7708 7.93498 16.7708 9.03955C16.7708 9.77123 16.3778 10.4111 15.7915 10.7598V12.0396C15.7915 14.2487 14.0006 16.0396 11.7915 16.0396H10V17.2676C10.5978 17.6134 11 18.2597 11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 18.2597 7.4022 17.6134 8 17.2676V6.73244C7.4022 6.38663 7 5.74028 7 5Z"
fill="currentColor"></path>
</svg> <svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 1024 1024"
height="1em" width="1em" xmlns="http://www.w3.org/2000/svg" style="font-size: 1.1em;">
<path
d="M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 0 0 .6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0 0 46.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z">
</path>
</svg></a>
</div>
</div>
</div>
<div class="card-body text-info" style="display: flex; flex-direction: column; ">
<span class="d-block text-gray-500 text-normal font-weight-bold small mb-3">Mentors: <a target="_blank"
href="https://github.com/saurabh021120">Saurabh Ratnaparkhi</a>
</span>
<p class="card-text"><b>Email:</b> [email protected]<br><b>Phone:</b> +91-8379027012</p>
<div>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 130px; font-size: 12px; padding: 1px; border-radius: 10px;">
<b>beginner-friendly</b></button>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 30px; font-size: 12px; padding: 1px; border-radius: 10px;"><b>API</b></button>
<button type="button" class="btn btn-warning"
style="height: 20px; width: 60px; font-size: 12px; padding: 1px; border-radius: 10px;"><b>ReactJS</b></button>
</div>
</div>
</div>
</div>
<strong>Your contributions will count only if you have registered and have been added as a member of
OSS. Keep tabs on this page as more projects shall be added with time!</strong><br>
<br>
<h2>How to Register?</h2>
<ul>
<li>Make sure to register yourself at the official Hacktoberfest website for the PR to count!</li>
<li> Fill up the following form so we can add you to the OSS organization!</li>
</ul>
<strong> Join Hacktoberfest, 2021</strong><br>
<div class="d-grid gap-2 d-md-block" style="padding: 5px; display: flex; justify-content: space-between;">
<button class="btn btn-outline-info" type="button" style="flex: 1;"><a
href="https://hacktoberfest.digitalocean.com/" target="_blank">Official Event</a></button>
<button class="btn btn-outline-info" type="button" style="flex: 2;"><a
href="https://forms.gle/pQ2k4JmE1RGhW4HB7" target="_blank">IIT Dharwad Edition</a></button>
</div>
<span>Participants must register through both the links given above.</span>
<br><br>
<h2>Rewards</h2>
<ul>
<li>All members who contribute at least 4 valid PRs during the event period will be given the role of 'Member'
post the event. All the accepted PRs will also be accepted as a part of the official Hacktoberfest event as
well. </li>
<li>The mentors who have contributed their projects will be included in the Core Committee of OSS for the next
one year and will be given the role of 'Maintainer' in OSS github organization. We are still accepting
projects and you may contribute to them by contacting the Campus Lead with your ideas directly. </li>
<li>Those who conduct workshops through the period shall be provided with a 'Mentor' role at both OSS and OSS
github organization. For conducting workshops, contact Campus Lead with your ideas directly.</li>
</ul>
<br>
<h2>Resources</h2>
<p>Here are some useful resources to get started with (Also available on hacktoberfest website)
</p>
<ul>
<li><a href="https://training.github.com/downloads/github-git-cheat-sheet/" target="_blank">Git Cheat Sheet</a></li>
<li><a href="https://guides.github.com/introduction/flow/" target="_blank">Git Flow Diagram</a></li>
<li><a href="https://www.coursera.org/learn/version-control-with-git" target="_blank">Version Control with Git</a></li>
</ul>
<p>You can also find a lot of Git related content available on Youtube.</p>
<strong>Have a query? Feel free to bother us at <a target="_blank"
href="mailto:[email protected]">[email protected]</a></strong>
<br>
</div>
</div>
<!--End Section Events-->
<!--Start Footer-->
<footer class="site-footer unit-5 overlay footer-color">
<div class="container">
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="col-6 col-md-6 col-lg-6 mb-5 mb-lg-0">
<img src="images/oss_logo.png" style="max-width: 100%">
</div>
<div class="col-6 col-md-3 col-lg-3 mb-5 mb-lg-0">
</div>
<div class="col-6 col-md-3 col-lg-3 mb-5 mb-lg-0">
<div class="text-center">
<h3 class="footer-heading mb-4">Quick Links</h3>
<ul class="list-unstyled">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="codeofconduct.html">Terms & Policies</a></li>
</ul>
</div>
<div class="text-center">
<h3 class="footer-heading mb-4">Follow Us</h3>
<span class="unit-3-icon icon" style="margin-left: 5%">
<a href="https://www.facebook.com/OSS-Open-Student-Society-390468168410308/" target="_blank">
<img src="images/facebook.png" style="max-width: 20px">
</a>
</span>
<span class="unit-3-icon icon" style="margin-left: 5%">
<a href="https://www.linkedin.com/company/oss2019" target="_blank">
<img src="images/linkedin.png" style="max-width: 20px">
</a>
</span>
<span class="unit-3-icon icon" style="margin-left: 5%">
<a href="https://github.com/oss2019/oss2019.github.io/" target="_blank">
<img src="images/github.png" style="max-width: 20px">
</a>
</span>
</div>
</div>
</div>
</div>
<div class="col-lg-3">
<h3 class="footer-heading mb-4">Contact Info</h3>
<ul class="list-unstyled">
<li>
<span class="d-block text-white">Address</span>
Indian Institute of Technology, Dharwad,
Karnataka 580011
</li>
<li>
<span class="d-block text-white">Email</span>
</li>
</ul>
</div>
</div>
<div class="row pt-5 mt-5 text-center">
<div class="col-md-12">
<p>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
Copyright ©
<script data-cfasync="false"
src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
<script>document.write(new Date().getFullYear());</script> All Rights Reserved <br> OSS, IIT Dharwad<br>
</p>
<p style="font-size: 10px;">
This template is made by <a href="https://colorlib.com" target="_blank">Colorlib</a>
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
<br>
Icons made by <a href="https://www.flaticon.com/authors/geotatah" target="_blank"
title="geotatah">geotatah</a> from <a href="https://www.flaticon.com/" target="_blank"
title="Flaticon">www.flaticon.com </a> is licensed by <a
href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC
3.0 BY</a>
</p>
</div>
</div>
</div>
<div class="footer-up-btn">
<div>
<img src="images/arrow-up.png" alt="up">
</div>
</div>
</footer>
<!--End Footer-->
</div>
<script src="js/custom.js"></script>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/jquery-migrate-3.0.1.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/owl.carousel.min.js"></script>
<script src="js/jquery.stellar.min.js"></script>
<script src="js/jquery.countdown.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/bootstrap-datepicker.min.js"></script>
<script src="js/aos.js"></script>
<script src="js/main.js"></script>
</body>
</html>