-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
711 lines (617 loc) · 39 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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>Open Source Gallery📚</title><style>
/* cspell:disable-file */
/* webkit printing magic: print all background colors */
html {
-webkit-print-color-adjust: exact;
}
* {
box-sizing: border-box;
-webkit-print-color-adjust: exact;
}
html,
body {
margin: 0;
padding: 0;
}
@media only screen {
body {
margin: 2em auto;
max-width: 900px;
color: rgb(55, 53, 47);
}
}
body {
line-height: 1.5;
white-space: pre-wrap;
}
a,
a.visited {
color: inherit;
text-decoration: underline;
}
.pdf-relative-link-path {
font-size: 80%;
color: #444;
}
h1,
h2,
h3 {
letter-spacing: -0.01em;
line-height: 1.2;
font-weight: 600;
margin-bottom: 0;
}
.page-title {
font-size: 2.5rem;
font-weight: 700;
margin-top: 0;
margin-bottom: 0.75em;
}
h1 {
font-size: 1.875rem;
margin-top: 1.875rem;
}
h2 {
font-size: 1.5rem;
margin-top: 1.5rem;
}
h3 {
font-size: 1.25rem;
margin-top: 1.25rem;
}
.source {
border: 1px solid #ddd;
border-radius: 3px;
padding: 1.5em;
word-break: break-all;
}
.callout {
border-radius: 3px;
padding: 1rem;
}
figure {
margin: 1.25em 0;
page-break-inside: avoid;
}
figcaption {
opacity: 0.5;
font-size: 85%;
margin-top: 0.5em;
}
mark {
background-color: transparent;
}
.indented {
padding-left: 1.5em;
}
hr {
background: transparent;
display: block;
width: 100%;
height: 1px;
visibility: visible;
border: none;
border-bottom: 1px solid rgba(55, 53, 47, 0.09);
}
img {
max-width: 100%;
}
@media only print {
img {
max-height: 100vh;
object-fit: contain;
}
}
@page {
margin: 1in;
}
.collection-content {
font-size: 0.875rem;
}
.column-list {
display: flex;
justify-content: space-between;
}
.column {
padding: 0 1em;
}
.column:first-child {
padding-left: 0;
}
.column:last-child {
padding-right: 0;
}
.table_of_contents-item {
display: block;
font-size: 0.875rem;
line-height: 1.3;
padding: 0.125rem;
}
.table_of_contents-indent-1 {
margin-left: 1.5rem;
}
.table_of_contents-indent-2 {
margin-left: 3rem;
}
.table_of_contents-indent-3 {
margin-left: 4.5rem;
}
.table_of_contents-link {
text-decoration: none;
opacity: 0.7;
border-bottom: 1px solid rgba(55, 53, 47, 0.18);
}
table,
th,
td {
border: 1px solid rgba(55, 53, 47, 0.09);
border-collapse: collapse;
}
table {
border-left: none;
border-right: none;
}
th,
td {
font-weight: normal;
padding: 0.25em 0.5em;
line-height: 1.5;
min-height: 1.5em;
text-align: left;
}
th {
color: rgba(55, 53, 47, 0.6);
}
ol,
ul {
margin: 0;
margin-block-start: 0.6em;
margin-block-end: 0.6em;
}
li > ol:first-child,
li > ul:first-child {
margin-block-start: 0.6em;
}
ul > li {
list-style: disc;
}
ul.to-do-list {
text-indent: -1.7em;
}
ul.to-do-list > li {
list-style: none;
}
.to-do-children-checked {
text-decoration: line-through;
opacity: 0.375;
}
ul.toggle > li {
list-style: none;
}
ul {
padding-inline-start: 1.7em;
}
ul > li {
padding-left: 0.1em;
}
ol {
padding-inline-start: 1.6em;
}
ol > li {
padding-left: 0.2em;
}
.mono ol {
padding-inline-start: 2em;
}
.mono ol > li {
text-indent: -0.4em;
}
.toggle {
padding-inline-start: 0em;
list-style-type: none;
}
/* Indent toggle children */
.toggle > li > details {
padding-left: 1.7em;
}
.toggle > li > details > summary {
margin-left: -1.1em;
}
.selected-value {
display: inline-block;
padding: 0 0.5em;
background: rgba(206, 205, 202, 0.5);
border-radius: 3px;
margin-right: 0.5em;
margin-top: 0.3em;
margin-bottom: 0.3em;
white-space: nowrap;
}
.collection-title {
display: inline-block;
margin-right: 1em;
}
.simple-table {
margin-top: 1em;
font-size: 0.875rem;
}
.simple-table-header {
background: rgb(247, 246, 243);
color: black;
font-weight: 500;
}
time {
opacity: 0.5;
}
.icon {
display: inline-block;
max-width: 1.2em;
max-height: 1.2em;
text-decoration: none;
vertical-align: text-bottom;
margin-right: 0.5em;
}
img.icon {
border-radius: 3px;
}
.user-icon {
width: 1.5em;
height: 1.5em;
border-radius: 100%;
margin-right: 0.5rem;
}
.user-icon-inner {
font-size: 0.8em;
}
.text-icon {
border: 1px solid #000;
text-align: center;
}
.page-cover-image {
display: block;
object-fit: cover;
width: 100%;
max-height: 30vh;
}
.page-header-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.page-header-icon-with-cover {
margin-top: -0.72em;
margin-left: 0.07em;
}
.page-header-icon img {
border-radius: 3px;
}
.link-to-page {
margin: 1em 0;
padding: 0;
border: none;
font-weight: 500;
}
p > .user {
opacity: 0.5;
}
td > .user,
td > time {
white-space: nowrap;
}
input[type="checkbox"] {
transform: scale(1.5);
margin-right: 0.6em;
vertical-align: middle;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.image {
border: none;
margin: 1.5em 0;
padding: 0;
border-radius: 0;
text-align: center;
}
.code,
code {
background: rgba(135, 131, 120, 0.15);
border-radius: 3px;
padding: 0.2em 0.4em;
border-radius: 3px;
font-size: 85%;
tab-size: 2;
}
code {
color: #eb5757;
}
.code {
padding: 1.5em 1em;
}
.code-wrap {
white-space: pre-wrap;
word-break: break-all;
}
.code > code {
background: none;
padding: 0;
font-size: 100%;
color: inherit;
}
blockquote {
font-size: 1.25em;
margin: 1em 0;
padding-left: 1em;
border-left: 3px solid rgb(55, 53, 47);
}
.bookmark {
text-decoration: none;
max-height: 8em;
padding: 0;
display: flex;
width: 100%;
align-items: stretch;
}
.bookmark-title {
font-size: 0.85em;
overflow: hidden;
text-overflow: ellipsis;
height: 1.75em;
white-space: nowrap;
}
.bookmark-text {
display: flex;
flex-direction: column;
}
.bookmark-info {
flex: 4 1 180px;
padding: 12px 14px 14px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.bookmark-image {
width: 33%;
flex: 1 1 180px;
display: block;
position: relative;
object-fit: cover;
border-radius: 1px;
}
.bookmark-description {
color: rgba(55, 53, 47, 0.6);
font-size: 0.75em;
overflow: hidden;
max-height: 4.5em;
word-break: break-word;
}
.bookmark-href {
font-size: 0.75em;
margin-top: 0.25em;
}
.sans { font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"; }
.code { font-family: "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace; }
.serif { font-family: Lyon-Text, Georgia, ui-serif, serif; }
.mono { font-family: iawriter-mono, Nitti, Menlo, Courier, monospace; }
.pdf .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK JP'; }
.pdf:lang(zh-CN) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK SC'; }
.pdf:lang(zh-TW) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK TC'; }
.pdf:lang(ko-KR) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK KR'; }
.pdf .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.pdf .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK JP'; }
.pdf:lang(zh-CN) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK SC'; }
.pdf:lang(zh-TW) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK TC'; }
.pdf:lang(ko-KR) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK KR'; }
.pdf .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.highlight-default {
color: rgba(55, 53, 47, 1);
}
.highlight-gray {
color: rgba(120, 119, 116, 1);
fill: rgba(145, 145, 142, 1);
}
.highlight-brown {
color: rgba(159, 107, 83, 1);
fill: rgba(187, 132, 108, 1);
}
.highlight-orange {
color: rgba(217, 115, 13, 1);
fill: rgba(215, 129, 58, 1);
}
.highlight-yellow {
color: rgba(203, 145, 47, 1);
fill: rgba(203, 148, 51, 1);
}
.highlight-teal {
color: rgba(68, 131, 97, 1);
fill: rgba(108, 155, 125, 1);
}
.highlight-blue {
color: rgba(51, 126, 169, 1);
fill: rgba(91, 151, 189, 1);
}
.highlight-purple {
color: rgba(144, 101, 176, 1);
fill: rgba(167, 130, 195, 1);
}
.highlight-pink {
color: rgba(193, 76, 138, 1);
fill: rgba(205, 116, 159, 1);
}
.highlight-red {
color: rgba(212, 76, 71, 1);
fill: rgba(225, 111, 100, 1);
}
.highlight-gray_background {
background: rgba(241, 241, 239, 1);
}
.highlight-brown_background {
background: rgba(244, 238, 238, 1);
}
.highlight-orange_background {
background: rgba(251, 236, 221, 1);
}
.highlight-yellow_background {
background: rgba(251, 243, 219, 1);
}
.highlight-teal_background {
background: rgba(237, 243, 236, 1);
}
.highlight-blue_background {
background: rgba(231, 243, 248, 1);
}
.highlight-purple_background {
background: rgba(244, 240, 247, 0.8);
}
.highlight-pink_background {
background: rgba(249, 238, 243, 0.8);
}
.highlight-red_background {
background: rgba(253, 235, 236, 1);
}
.block-color-default {
color: inherit;
fill: inherit;
}
.block-color-gray {
color: rgba(120, 119, 116, 1);
fill: rgba(145, 145, 142, 1);
}
.block-color-brown {
color: rgba(159, 107, 83, 1);
fill: rgba(187, 132, 108, 1);
}
.block-color-orange {
color: rgba(217, 115, 13, 1);
fill: rgba(215, 129, 58, 1);
}
.block-color-yellow {
color: rgba(203, 145, 47, 1);
fill: rgba(203, 148, 51, 1);
}
.block-color-teal {
color: rgba(68, 131, 97, 1);
fill: rgba(108, 155, 125, 1);
}
.block-color-blue {
color: rgba(51, 126, 169, 1);
fill: rgba(91, 151, 189, 1);
}
.block-color-purple {
color: rgba(144, 101, 176, 1);
fill: rgba(167, 130, 195, 1);
}
.block-color-pink {
color: rgba(193, 76, 138, 1);
fill: rgba(205, 116, 159, 1);
}
.block-color-red {
color: rgba(212, 76, 71, 1);
fill: rgba(225, 111, 100, 1);
}
.block-color-gray_background {
background: rgba(241, 241, 239, 1);
}
.block-color-brown_background {
background: rgba(244, 238, 238, 1);
}
.block-color-orange_background {
background: rgba(251, 236, 221, 1);
}
.block-color-yellow_background {
background: rgba(251, 243, 219, 1);
}
.block-color-teal_background {
background: rgba(237, 243, 236, 1);
}
.block-color-blue_background {
background: rgba(231, 243, 248, 1);
}
.block-color-purple_background {
background: rgba(244, 240, 247, 0.8);
}
.block-color-pink_background {
background: rgba(249, 238, 243, 0.8);
}
.block-color-red_background {
background: rgba(253, 235, 236, 1);
}
.select-value-color-pink { background-color: rgba(245, 224, 233, 1); }
.select-value-color-purple { background-color: rgba(232, 222, 238, 1); }
.select-value-color-green { background-color: rgba(219, 237, 219, 1); }
.select-value-color-gray { background-color: rgba(227, 226, 224, 1); }
.select-value-color-orange { background-color: rgba(250, 222, 201, 1); }
.select-value-color-brown { background-color: rgba(238, 224, 218, 1); }
.select-value-color-red { background-color: rgba(255, 226, 221, 1); }
.select-value-color-yellow { background-color: rgba(253, 236, 200, 1); }
.select-value-color-blue { background-color: rgba(211, 229, 239, 1); }
.checkbox {
display: inline-flex;
vertical-align: text-bottom;
width: 16;
height: 16;
background-size: 16px;
margin-left: 2px;
margin-right: 5px;
}
.checkbox-on {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2358A9D7%22%2F%3E%0A%3Cpath%20d%3D%22M6.71429%2012.2852L14%204.9995L12.7143%203.71436L6.71429%209.71378L3.28571%206.2831L2%207.57092L6.71429%2012.2852Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E");
}
.checkbox-off {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%220.75%22%20y%3D%220.75%22%20width%3D%2214.5%22%20height%3D%2214.5%22%20fill%3D%22white%22%20stroke%3D%22%2336352F%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
}
</style>
</head>
<body>
<article id="719c3ef4-5c3b-449d-8a4d-ec2260b3cd71" class="page sans">
<header><img class="page-cover-image" src="https://images.unsplash.com/photo-1547555999-14e818e09e33?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb" style="object-position:center 50%"/><div class="page-header-icon page-header-icon-with-cover"><span class="icon">📚</span></div><h1 class="page-title">Open Source Gallery📚</h1>
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/Astrodevil" data-color-scheme="no-preference: dark_high_contrast; light: light; dark: dark_high_contrast;" data-size="large" data-show-count="true" aria-label="Follow @Astrodevil on GitHub">Follow @Astrodevil</a> <a class="github-button" href="https://github.com/Astrodevil/Open-Source-Gallery" data-color-scheme="no-preference: dark_high_contrast; light: light; dark: dark_high_contrast;" data-size="large" data-show-count="true" aria-label="Star Astrodevil/Open-Source-Gallery on GitHub">Star</a> <a class="github-button" href="https://github.com/Astrodevil/Open-Source-Gallery/issues" data-color-scheme="no-preference: dark_high_contrast; light: light; dark: dark_high_contrast;" data-icon="octicon-issue-opened" data-size="large" data-show-count="true" aria-label="Issue Astrodevil/Open-Source-Gallery on GitHub">Issue</a>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9454380729366227"
crossorigin="anonymous"></script>
<a href="https://www.producthunt.com/posts/open-source-gallery?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-open-source-gallery" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=325005&theme=light" alt="Open Source Gallery - All contents related to Open-Source. | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
</header><div class="page-body"><p id="63603244-419b-4a90-9c46-265799e6c498" class=""><strong>Curated By </strong><mark class="highlight-blue"><strong><a href="https://twitter.com/Astrodevil_">Mr. Ånand</a></strong></mark></p><h1 id="5fe6375c-5958-475c-a89d-c18c56d42922" class="">The Art, Beauty, and Science of Open Source Software.</h1><figure id="8198b85f-4052-4794-99f0-8761f2a1f376"><a href="https://blog.michaelasiedu.com/the-art-beauty-and-science-of-open-source-software" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">The Art, Beauty, and Science of Open Source Software.</div><div class="bookmark-description">When you are having problems using particular centralized software, the first thing you do is to contact a team or the company about your problem. In most cases, what they do is forward your complaint to their internal engineering team to put some code together and fix the issue.</div></div><div class="bookmark-href"><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1611242187756/TRTNYp32O.png" class="icon bookmark-icon"/>https://blog.michaelasiedu.com/the-art-beauty-and-science-of-open-source-software</div></div><img src="https://hashnode.com/utility/r?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1639698130670%2FzpNBAYZLb.png%3Fw%3D1200%26h%3D630%26fit%3Dcrop%26crop%3Dentropy%26auto%3Dcompress%2Cformat%26format%3Dwebp%26fm%3Dpng" class="bookmark-image"/></a></figure><p id="d116c268-f320-4c2d-8538-f6cbfdbc3718" class="">
</p><ul id="72f9bde6-e6cc-486c-a100-114a6227a7c4" class="toggle"><li><details open=""><summary><mark class="highlight-teal"><strong>Open-Source Resources</strong></mark>🎭</summary><ul id="96859f40-07f6-4d25-aef9-ba40ee6dfaea" class="toggle"><li><details open=""><summary><strong>Videos📽️</strong></summary><h2 id="356085d1-efd6-4ac4-ba0f-c43b5967f936" class=""><mark class="highlight-red_background">What is Open Source & How to Start?</mark></h2><figure id="e86ba585-84c9-4d5e-9c9d-e4a6e35675a9"><div class="source"><iframe width="795" height="595" src="https://www.youtube-nocookie.com/embed/msyGybzCKRs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div></figure><h2 id="207e6c44-1680-439b-8a2e-a5d42e94e77c" class=""><mark class="highlight-red_background">Github Star Eddie Jaoude: Why should you Open Source?</mark></h2><figure id="fcdc8db5-27b5-4959-8a90-16557e599458"><div class="source"><iframe width="795" height="595" src="https://www.youtube-nocookie.com/embed/XYA97AydLVs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div></figure><h2 id="19d2bfe6-5155-4222-b3fd-3862bb69ce5b" class=""><mark class="highlight-red_background">Complete Git and GitHub Tutorial</mark></h2><figure id="fec748d8-c119-444d-865b-c356225caf6a"><div class="source"><iframe width="795" height="595" src="https://www.youtube-nocookie.com/embed/apGV9Kg7ics" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div></figure><h2 id="8e321631-6306-46c2-9043-3a21579d3ba2" class=""><mark class="highlight-red_background">Complete Guide to Open Source - How to Contribute</mark></h2><figure id="cacdcae5-07c7-4bb1-ae32-14096505140e"><div class="source"><iframe width="795" height="595" src="https://www.youtube-nocookie.com/embed/yzeVMecydCE" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div></figure></details></li></ul><ul id="77cc5ed0-6c0c-40a1-b63d-58eae50b60ad" class="toggle"><li><details open=""><summary><strong>Articles</strong>📰</summary><figure id="90e49c70-546b-46a2-82bb-0c40b8d11c03"><a href="https://muthuannamalai.tech/how-to-contribute-to-open-source-projects-as-a-beginner" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">How To Contribute To Open-Source Projects As A Beginner</div><div class="bookmark-description">This article is about getting started with open source and more specifically how to contribute to open source as a beginner contributing to open source projects is a great way of improving your programming skills and contributing to the community als...</div></div><div class="bookmark-href"><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1611242187756/TRTNYp32O.png" class="icon bookmark-icon"/>https://muthuannamalai.tech/how-to-contribute-to-open-source-projects-as-a-beginner</div></div><img src="https://hashnode.com/utility/r?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1624099346466%2FiynRSnQef.png%3Fw%3D1200%26h%3D630%26fit%3Dcrop%26crop%3Dentropy%26auto%3Dcompress%2Cformat%26format%3Dwebp%26fm%3Dpng" class="bookmark-image"/></a></figure><figure id="4eaaf98c-1d3e-4c2c-ae97-c094ae611036"><a href="https://benny.hashnode.dev/how-to-contribute-to-open-source-projects-as-a-non-coder" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">How to Contribute to Open Source Projects as a Non-Coder?</div><div class="bookmark-description">A few weeks ago, I came across Edidiong's article about contributing to open-source projects. The article piqued my interest and I set out to learn how to contribute to open-source projects without possibly writing any code.</div></div><div class="bookmark-href"><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1611242187756/TRTNYp32O.png" class="icon bookmark-icon"/>https://benny.hashnode.dev/how-to-contribute-to-open-source-projects-as-a-non-coder</div></div><img src="https://hashnode.com/utility/r?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1634905825976%2Fpjc7Kwv_F.png%3Fw%3D1200%26h%3D630%26fit%3Dcrop%26crop%3Dentropy%26auto%3Dcompress%2Cformat%26format%3Dwebp%26fm%3Dpng" class="bookmark-image"/></a></figure><figure id="acc8e979-f4cc-4137-80ed-c189235f65cd"><a href="https://astrodevil.hashnode.dev/how-not-to-contribute-to-open-source-on-github-tips-for-beginners" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">How NOT to contribute to Open Source on GitHub: Tips For Beginners</div><div class="bookmark-description">While maintaining some projects on GitHub during Hacktoberfest 2021, I came across many new open source contributors. They are just starting their open-source journey and making mistakes. In the beginning, making mistakes is not a bad thing. But, correctly contributing to open-source projects is also very important.</div></div><div class="bookmark-href"><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1636462477868/aAE12VOik.png?auto=compress,format&format=webp&fm=png" class="icon bookmark-icon"/>https://astrodevil.hashnode.dev/how-not-to-contribute-to-open-source-on-github-tips-for-beginners</div></div><img src="https://hashnode.com/utility/r?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1635363072116%2FI25s5cwsS.png%3Fw%3D1200%26h%3D630%26fit%3Dcrop%26crop%3Dentropy%26auto%3Dcompress%2Cformat%26format%3Dwebp%26fm%3Dpng" class="bookmark-image"/></a></figure><figure id="5e1c8a6a-5c81-4411-b371-551c7ce37fcb"><a href="https://h.daily-dev-tips.com/git-basics-contributing-to-open-source" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">Git basics: Contributing to open source</div><div class="bookmark-description">In the previous article, we looked at how you can create pull requests. We can put these in action when contributing to open source. In this article, we'll go through the following steps. Fork an open-source repo Make changes to the repo Create a PR...</div></div><div class="bookmark-href"><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1629097208499/u6cOhdw8y.png?auto=compress,format&format=webp&fm=png" class="icon bookmark-icon"/>https://h.daily-dev-tips.com/git-basics-contributing-to-open-source</div></div><img src="https://hashnode.com/utility/r?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1636434419529%2FfArSDtX4H.jpeg%3Fw%3D1200%26h%3D630%26fit%3Dcrop%26crop%3Dentropy%26auto%3Dcompress%2Cformat%26format%3Dwebp%26fm%3Dpng" class="bookmark-image"/></a></figure><figure id="c0ec0a91-6b7e-4fdf-a4a3-b0434f9925d7"><a href="https://blog.sohamderoy.dev/series/git" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">GIT - Soham De Roy's Blog</div><div class="bookmark-description">In this series, I'll be releasing articles related to version controlling system git and regarding its important commands.</div></div><div class="bookmark-href"><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1611242187756/TRTNYp32O.png" class="icon bookmark-icon"/>https://blog.sohamderoy.dev/series/git</div></div><img src="https://hashnode.com/utility/r?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1559814205701%2Fek9fO-yT0.jpeg%3Fw%3D800%26bm%3Dnormal%26balph%3D100%26txt64%3DU29oYW0gRGUgUm95J3MgQmxvZw%26txtsize%3D42%26txtfit%3Dmax%26txtalign%3Dmiddle%2Ccenter%26txtfont%3DHelvetica%20Neue%2CBold%26txtclr%3D000000%26blend%3Dffffff" class="bookmark-image"/></a></figure><figure id="c86a3e4a-a9e7-4ee0-b764-bd38500a4479"><a href="https://www.freecodecamp.org/news/writing-good-commit-messages-a-practical-guide/" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">How to Write Good Commit Messages: A Practical Git Guide</div><div class="bookmark-description">To create a useful revision history, teams should first agree on a commit message convention to use. This also applies to personal projects. Recently on Hashnode I asked, "Which commit message convention do you use at work?" and I got some amazing responses with users explaining the conventions they use</div></div><div class="bookmark-href"><img src="https://www.freecodecamp.org/news/favicon.png" class="icon bookmark-icon"/>https://www.freecodecamp.org/news/writing-good-commit-messages-a-practical-guide/</div></div><img src="https://www.freecodecamp.org/news/content/images/2019/11/article-banner.png" class="bookmark-image"/></a></figure></details></li></ul><ul id="f05fd8ad-03f6-4ea3-9c59-8dc028f81ae8" class="toggle"><li><details open=""><summary><strong>Beginner Friendly Projects</strong>🦾</summary></p><figure id="00c6c06e-a9e8-4b10-b94e-4dc6ff1a340f"><div class="source"><iframe width="795" height="595" src="https://awesomeopensource.com/"></iframe></div></figure><p id="c989bde2-418a-451a-a6dc-8346258a09f3" class="">
</p><figure id="00c6c06e-a9e8-4b10-b94e-4dc6ff1a340f"><div class="source"><iframe width="795" height="595" src="https://up-for-grabs.net/#/"></iframe></div></figure></details></li></ul><ul id="768577b5-4aad-4f68-bb9e-44664f52da11" class="toggle"><li><details open=""><summary><strong>Programs</strong>🎉</summary><figure id="e6e2ff4d-fb14-4780-ab09-3c0fc344cd87"><div class="source"><iframe width="795" height="595" src="https://opensourceinternships.herokuapp.com/"></iframe></div></figure><figure id="8ee9f05b-98e0-42ae-90b0-2f287110415b"><div class="source"><iframe width="795" height="595" src="https://navendu.me/posts/open-source-internship-programs/"></iframe></div></figure><h2 id="7aaf5e7e-fb71-4ce2-b16f-ce002c4c5caf" class=""><mark class="highlight-red_background">What are MLH, GSOC, Outreachy?</mark></h2><figure id="1460ffe0-34ac-427f-aee7-33495e0db61d"><div class="source"><iframe width="795" height="595" src="https://www.youtube-nocookie.com/embed/BQXJMEkAtAQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div></figure><h1 id="70460a06-05cf-4860-9885-024183bf3f4c" class="">Open-Source Programs: November 2021🎉</h1><figure id="ee8a7651-7634-418e-b0ba-9a30a53f5e1b"><a href="https://astrodevil.hashnode.dev/open-source-programs-students-can-apply-to-in-november-2021" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">Open-Source Programs Students Can Apply To In November 2021</div><div class="bookmark-description">It's November and if you're still interested in open source, congrats. You just passed hacktoberfest. There are various open-source programs happening from time to time every year. October ends don't mean open source contributions end. Many of you are definitely took part in hacktoberfest just ended and waiting for your swags.</div></div><div class="bookmark-href"><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1636462477868/aAE12VOik.png?auto=compress,format&format=webp&fm=png" class="icon bookmark-icon"/>https://astrodevil.hashnode.dev/open-source-programs-students-can-apply-to-in-november-2021</div></div><img src="https://hashnode.com/utility/r?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1635959042611%2FkQ9HlzZyg.png%3Fw%3D1200%26h%3D630%26fit%3Dcrop%26crop%3Dentropy%26auto%3Dcompress%2Cformat%26format%3Dwebp%26fm%3Dpng" class="bookmark-image"/></a></figure></details></li></ul><ul id="6da0eabd-c49c-4f81-b886-77e8535b3192" class="toggle"><li><details open=""><summary><strong>Community🎭</strong></summary><figure id="05c154a5-4c19-4f1e-8820-e71d712ffc20"><a href="https://github.com/EddieHubCommunity" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">EddieHub</div><div class="bookmark-description">Meet Hubber! Our Mascot! 🤝 Here, right now on your screen, you are in the presence of the most inclusive Open Source community on the planet! This organisation is the home of open source ! Make Pull Requests, open Issues, share ideas, help each other, fix problems! Raise an issue to join the EddieHub GitHub organisation.</div></div><div class="bookmark-href"><img src="https://github.com/favicon.ico" class="icon bookmark-icon"/>https://github.com/EddieHubCommunity</div></div><img src="https://avatars.githubusercontent.com/u/66388388?s=280&v=4" class="bookmark-image"/></a></figure><figure id="1030b296-012b-4658-bade-0cb7eda51c81"><a href="https://github.com/Tech-Phantoms" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">Tech Phantoms</div><div class="bookmark-description">Tech Phantoms is an open source community run by awesome students and early careers from our community. We hang out to share our knowledge and to build cool projects.</div></div><div class="bookmark-href"><img src="https://github.com/favicon.ico" class="icon bookmark-icon"/>https://github.com/Tech-Phantoms</div></div><img src="https://avatars.githubusercontent.com/u/61622105?s=280&v=4" class="bookmark-image"/></a></figure><figure id="33c33d3b-6b4c-4532-ae88-6afa0944a455"><a href="https://github.com/Coders-Evoke-Community" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">Coders-Evoke-Community</div><div class="bookmark-description">Coders Evoke is a coding community 💻, aimed to increase one's knowledge about programming skills. We have discussions on various topics feel free to interact with us ✨. Should you face any doubt in any field, you can ask us! Join to our Discord community and follow us on Twitter to stay tuned about new announcements, events, and much more.</div></div><div class="bookmark-href"><img src="https://github.com/favicon.ico" class="icon bookmark-icon"/>https://github.com/Coders-Evoke-Community</div></div><img src="https://avatars.githubusercontent.com/u/85440563?s=280&v=4" class="bookmark-image"/></a></figure></details></li></ul><ul id="d500cc0c-0e82-45f3-a49c-deda04f134fb" class="toggle"><li><details open=""><summary><strong>Peoples</strong>🧑🏼💻</summary><h3 id="63380c3e-3096-494a-8593-4986bd2d467c" class=""><mark class="highlight-blue_background">You can Reach Out To</mark></h3><p id="8ee1cf81-a94e-45cb-b2c2-b3c969712ac9" class=""><em><a href="https://twitter.com/Vinit_Shahdeo"><mark class="highlight-teal"><strong>Vinit Shahdeo</strong></mark></a></em></p><p id="31bad7e0-65eb-4fe0-b66c-ddcecd078725" class=""><strong><em><mark class="highlight-teal"><a href="https://twitter.com/eddiejaoude">Eddie Jaoude</a></mark></em></strong></p><p id="d95378d0-c3ce-4086-a464-02c2dcb61c45" class=""><strong><mark class="highlight-teal"><a href="https://twitter.com/debs_obrien">Debbie O'Brien</a></mark></strong></p><p id="fee1f089-d4ae-41bb-bb00-582675548855" class=""><mark class="highlight-teal"><strong><a href="https://twitter.com/SantoshYadavDev">Santosh Yadav</a></strong></mark></p><h3 id="7a1b6a71-881b-4a80-bdff-33a41d453b6d" class=""><mark class="highlight-blue_background"><strong>GitHub Stars</strong></mark></h3><figure id="70edc87b-a38a-4a0c-ae23-b9715f1d8ba8"><div class="source"><iframe width="795" height="595" src="https://stars.github.com/profiles/"></iframe></div></figure></details></li></ul><ul id="6259b4af-8c5d-47cc-9dc5-adcef3cfa47c" class="toggle"><li><details open=""><summary><strong>GSOC 2022📌</strong></summary><figure id="1155920c-4dfb-4a42-b6f2-bd1389e6d41c"><div class="source"><iframe width="795" height="595" src="https://opensource.googleblog.com/2021/11/expanding-google-summer-of-code-in-2022.html"></iframe></div></figure></details></li></ul></details></li></ul><ul id="7a93556a-284d-4147-9cdf-6833127996fa" class="toggle"><li><details open=""><summary><mark class="highlight-orange"><strong>Some More Resources📚</strong></mark></summary><h1 id="fcc77d4b-d538-47f0-a072-06ad9c365566" class="">Developer Roadmaps📈</h1><figure id="41a3ca36-79f8-4d8c-a868-079660b021ec"><div class="source"><iframe width="795" height="595" src="https://roadmap.sh/"></iframe></div></figure><h1 id="e0fb5fe3-a096-47d6-afa1-42913fa750e0" class="">Udemy Top Rated Courses (Free)🧑🏼🏫</h1><p id="7ae5ab36-a463-429a-ba5f-2248b2d133a4" class="">
</p><figure id="1416e924-399b-41ca-83c4-d0b082eb707e"><div class="source"><iframe width="795" height="595" src="https://hidevs.net/"></iframe></div></figure><h1 id="4768ab41-19fe-4918-9343-1ff44c6a9bc7" class="">Html Cheat sheet📝</h1><figure id="b71a75a8-23e9-4d18-a5f3-22b238f2e934"><div class="source"><iframe width="795" height="595" src="https://htmlcheatsheet.com/"></iframe></div></figure></details></li></ul><ul id="0eddd142-754d-40bd-88ea-df2156f89ba0" class="toggle"><li><details open=""><summary><mark class="highlight-purple"><strong>Some Random Useful Sites</strong></mark>🕸️</summary><figure id="a6c5636f-3613-4bfe-898e-42b7d8d6828d"><a href="https://astrodevil.hashnode.dev/25-must-visit-killer-websites-for-developers" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">25 Must-Visit Killer Websites For Developers</div><div class="bookmark-description">There are so many websites to make the work of developers easier. Everyone doesn't know all. In this article, we will see 25 Must-Visit Killer Websites For Developers. DevDocs brings together numerous API documentation in a single, searchable interface. You will find docs related to various programming languages, technologies in one place.</div></div><div class="bookmark-href"><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1636462477868/aAE12VOik.png?auto=compress,format&format=webp&fm=png" class="icon bookmark-icon"/>https://astrodevil.hashnode.dev/25-must-visit-killer-websites-for-developers</div></div><img src="https://hashnode.com/utility/r?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1638381453175%2FdKSHj75LD.png%3Fw%3D1200%26h%3D630%26fit%3Dcrop%26crop%3Dentropy%26auto%3Dcompress%2Cformat%26format%3Dwebp%26fm%3Dpng" class="bookmark-image"/></a></figure><figure id="fae0c4af-f8bc-4daa-821c-ebdd25a0a5ad"><a href="https://astrodevil.hashnode.dev/40-no-codelow-code-tools-and-resources-for-developers-in-2022" class="bookmark source"><div class="bookmark-info"><div class="bookmark-text"><div class="bookmark-title">40+ No Code/Low Code Tools And Resources For Developers In 2022</div><div class="bookmark-description">There are so many no-code tools to make the work of developers easier. Anyone can build some useful products, startups without writing even a single line of code. In this article, we will see 40+ No Code/Low Code Tools And Resources For Developers that is going to help you In 2022.</div></div><div class="bookmark-href"><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1636462477868/aAE12VOik.png?auto=compress,format&format=webp&fm=png" class="icon bookmark-icon"/>https://astrodevil.hashnode.dev/40-no-codelow-code-tools-and-resources-for-developers-in-2022</div></div><img src="https://hashnode.com/utility/r?url=https%3A%2F%2Fcdn.hashnode.com%2Fres%2Fhashnode%2Fimage%2Fupload%2Fv1639599232063%2F1eTggXnM2.png%3Fw%3D1200%26h%3D630%26fit%3Dcrop%26crop%3Dentropy%26auto%3Dcompress%2Cformat%26format%3Dwebp%26fm%3Dpng" class="bookmark-image"/></a></figure></details></li></ul><p id="fe1644e6-69de-4e35-beb4-61f0df170c37" class="">
</p><p id="deef460f-3cdc-41fa-a9ba-184e5934a30c" class="">
</p><p id="61926387-d7fe-4930-a7c9-ae8c249fdd4e" class=""><mark class="highlight-yellow"><em>Loading.....</em></mark></p><p id="37cda09c-0c62-47bc-838b-3521cb52ca75" class="">
</p></div></article>
<h1 id="moreresourcegallery">More Resource Gallery📚</h1>
<details>
<summary>🌐 Web Development</summary>
<ul>
<li><a href="https://abyssinian-marquis-9a5.notion.site/Web-dev-resources-public-3c83830cc5024da0807d4c5d43e3dba9">Link 1</a></li>
<li><a href="https://markodenic.com/free-web-development-resources/">Link 2</a></li>
</details>
<details>
<summary>🤖 Machine Learning</summary></li>
<li><a href="https://github.com/dair-ai/ML-YouTube-Courses">Link 1</a></li>
</details>
<details>
<summary>☕ Programmers Must Know</summary>
<li><a href="https://github.com/mtdvio/every-programmer-should-know#readme">Link 1</a>
</details></li>
<details>
<summary>🐍 Python</summary>
<li><a href="https://www.reddit.com/r/learnpython/wiki/index/">Link 1</a>
</details></li>
<details>
<summary>🔥 Web3/Blockchain</summary>
<li><a href="https://github.com/web3community/blockchain-dev-path">Link 1</a>
</details></li>
</ul>
<script data-name="BMC-Widget" data-cfasync="false" src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js" data-id="Astrodevil" data-description="Support me on Buy me a coffee!" data-message="" data-color="#FFA500" data-position="Right" data-x_margin="50" data-y_margin="50">
</script>
<strong><a style="color: #066052;" href="https://github.com/Astrodevil/Open-Source-Gallery">Open-Source-Gallery</a> is Maintained by <a style="color: #066052;" href="https://github.com/Astrodevil">Mr. Ånand</a></strong>
<a href="https://www.producthunt.com/posts/open-source-gallery?utm_source=badge-review&utm_medium=badge&utm_souce=badge-open-source-gallery#discussion-body" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/review.svg?post_id=325005&theme=light" alt="Open Source Gallery - All contents related to Open-Source. | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>