forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2826 lines (2723 loc) · 129 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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link href="https://fonts.googleapis.com/css2?family=Domine&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>Contribute To This Project</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode">
<div class="toggle-box">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js" integrity="sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ==" crossorigin="anonymous"></script>
</div>
<!-- / Night Mode Creation -->
</div>
</div>
<div class="row">
<div class="column-double">
<div class="column-left">
<h1>CONTRIBUTE TO THIS PROJECT</h1>
<h2>A project for first-time contributions</h2>
<p>This is a tutorial to help first-time contributors participate in a simple and easy project. Get more comfortable using GitHub and make your first open source contribution. It's quick and easy.</p>
<a class="button" href="https://github.com/Syknapse/Contribute-To-This-Project/blob/master/README.md" target="_blank" title="Go to project README - A step by step tutorial">
Learn how to contribute
<i class="fas fa-long-arrow-alt-right"></i>
</a>
</div>
</div>
<div class="column">
<div class="column-right">
<div class="twitter-button">
<a
href="https://twitter.com/share?ref_src=twsrc%5Etfw"
class="twitter-share-button"
data-size="large"
data-text="Contribute To This Project. An easy Git and GitHub project for first-time contributors, with a full tutorial."
data-url="https://github.com/Syknapse/Contribute-To-This-Project"
data-via="Syknapse"
data-hashtags="100DaysOfCode"
data-show-count="false"
title="Tweet this project"
>
Tweet
</a>
<script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<p>Contributions so far...</p>
<div class="animated" id="contributions-number">0</div>
</div>
</div>
</div>
<!-- <div class="searchContainer">
<input id="searchbar" type="search" name="search" placeholder="Search for your card here!" />
</div> -->
<div class="grid" id="contributions">
<!-- ================================================ -->
<!-- ================== TEMPLATE ================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Your name</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com" target="_blank">Your handle</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com" target="_blank">Your handle</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- COPY everything ABOVE this, from contributor card start to end along with the "START" and "END" comment lines -->
<!-- ============== ^^^^ TEMPLATE ^^^^ ============== -->
<!-- ================================================ -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- Keep one line of space above and below your card -->
<!-- ========= Paste YOUR CARD directly BELOW this line ========= -->
<!-- ________ Marco Scandrogio card START ________ -->
<div class="card">
<p class="name">Marco Scandroglio</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/marco-scandroglio/" target="_blank">Marco Scandroglio</a>
</br>
<i class="fab fa-github"></i>
<a href="https://github.com/marcoscandroglio" target="_blank">marcoscandroglio</a>
</p>
<p class="about">I am a computer science student with interests in high performance computing, predictive analytics, and AI/ML.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://webassembly.org/" target="_blank" title="WebAssembly is a binary instruction format that can be executed at near-native speed in web browsers.
">Web Assembly</a>
</li>
<li>
<a href="https://www.selenium.dev/" target="_blank" title="Selenium automates browsers. That's it!">Selenium</a>
</li>
<li>
<a href="https://graphql.org/" target="_blank" title="A query language for your API">GraphQL</a>
</li>
</ul>
</div>
</div>
<!-- ________ Marco Scandroglio card END ________ -->
<!-- ________ Devansh card START ________ -->
<div class="card">
<p class="name">Devansh</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/devansh_002" target="_blank">@devansh_002</a>
<i class="fab fa-github"></i>
<a href="https://github.com/dev-002" target="_blank">@dev-002</a>
</p>
<p class="about">Web Developer || Student || #CodeCoffeeChill</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="http://git-cheatsheet.com/" target="_blank" title="First Resource">Git CheatSheet</a>
</li>
<li>
<a href="https://www.dafont.com/" target="_blank" title="Second Resource">Font Library</a>
</li>
<li>
<a href="https://spline.design/" target="_blank" title="Third resource">3D Designs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Devansh card END ________ -->
<!-- ________ Aliu card START ________ -->
<div class="card">
<p class="name">Aliu Gloria</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/theglxry" target="_blank">theglxry</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Theglxry" target="_blank">theglxry</a>
</p>
<p class="about">Hi i'm Glory , a growing developer and this is my first time contribting to open-source :).</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.frontendmentor.io/" target="_blank" title="Frontend mentor">Frontend mentor (projects)</a>
</li>
<li>
<a href="https://www.youtube.com/@KevinPowell" target="_blank" title="Kevin Powell Practical css guide">Kevin Powell (css)</a>
</li>
<li>
<a href="https://www.udemy.com/course/the-complete-javascript-course/" target="_blank" title="javascript Course">Jonas Schmedtmann (javascript) </a>
</li>
</ul>
</div>
</div>
<!-- ________ Aliu card END ________ -->
<!-- ________ *danielkimGH* Contributor card START ________ -->
<div class="card">
<p class="name">Daniel Kim</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/danielkimGH" target="_blank">GitHub</a>
</p>
<p class="about">CS student learning more about open source contributions!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.leetcode.com" target="_blank" title="First Resource">LeetCode</a>
</li>
<li>
<a href="https://www.youtube.com" target="_blank" title="Second Resource">YouTube</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Third resource">Odin Project</a>
</li>
</ul>
</div>
</div>
<!-- ________ *danielkimGH* Contributor card END ________ -->
<!-- ________ Deanna card START ________ -->
<div class="card">
<p class="name">Deanna Ireland</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/dead_houseplant" target="_blank">@dead_houseplant</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/deannaIreland" target="_blank">deannaIreland</a>
</p>
<p class="about">Studying Botany and Computer Science at OSU. Love my dogs.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://producingoss.com/" target="_blank" title="OSS Textbook">Producing Open Source Software</a>
</li>
<li>
<a href="https://rubberduckdebugging.com/" target="_blank" title="Rubber Duck Debugging">Rubber Duck Debugging</a>
</li>
<li>
<a href="https://dev.to/doylecodes/git-for-dummies-1a2i" target="_blank" title="Git for Dummies">Git for Dummies</a>
</li>
</ul>
</div>
</div>
<!-- ________ Deanna card END ________ -->
<!-- ________ Miles card START ________ -->
<div class="card">
<p class="name">Miles Kesser</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/miles-kesser-75b0431b2/" target="_blank">Miles Kesser</a>
<i class="fab fa-github"></i>
<a href="https://github.com/mileskesser" target="_blank">mileskesser</a>
</p>
<p class="about">Hello there! I am a senior CS major @ OSU!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="First Resource">StackOverflow</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">GeeksForGeeks</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">W3Schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ Miles card END ________ -->
<!-- ________ AlpatKun card START ________ -->
<div class="card">
<p class="name">Alfat TN</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/AlpatKun" target="_blank">AlpatKun</a>
<i class="fab fa-github"></i>
<a href="https://github.com/AlfatTaufik" target="_blank">Alfat Taufik</a>
</p>
<p class="about">Ya ini saya, pengcommit segalanya/p></p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://learn.microsoft.com/id-id/training/modules/csharp-if-elseif-else/3-exercise-elseif-else" target="_blank" title="First Resource">Learn Microsoft</a>
</li>
<li>
<a href="https://github.com" target="_blank" title="Second Resource">github</a>
</li>
<li>
<a href="https://www.w3schools.com" target="_blank" title="Third resource">W3 School</a>
</li>
</ul>
</div>
</div>
<!-- ________ AlpatKun card END ________ -->
<!-- ________ Jay Pokharna card START ________ -->
<div class="card">
<p class="name">Jay Pokharna</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/pokharnajay" target="_blank">pokharnajay</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/jaypokharna" target="_blank">jaypokharna</a>
</p>
<p class="about">Python/Django Developer | Crafting Web Solutions with Code | Simplifying Complexity One Line at a Time | Code, Coffee, Repeat.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@CodeWithHarry" target="_blank" title="First Resource">CodeWithHarry</a>
</li>
<li>
<a href="https://www.youtube.com/@piyushgargdev" target="_blank" title="Second Resource">Piyush Garg</a>
</li>
<li>
<a href="https://www.youtube.com/@harkirat1" target="_blank" title="Third resource"> Harkirat Singh</a>
</li>
</ul>
</div>
</div>
<!-- ________ Jay Pokharna card END ________ -->
<!-- ________ *Scotts Card START ________ -->
<div class="card">
<p class="name">Scott Heney</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/thugbunnys" target="_blank">thugbunnys</a>
</p>
<p class="about">Im a Asipiring programmer for web development</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Codecademy">Codecademy</a>
</li>
<li>
<a href="https://leetcode.com/" target="_blank" title="LeetCode">LeetCode</a>
</li>
<li>
<a href="https://developer.mozilla.org/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Scotts Card END ________ -->
<!-- ________ Chahat Card START ________ -->
<div class="card">
<p class="name">Chahat Jain</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/chahat-jain-96b1b51b9/" target="_blank">LinkedIn</a><br />
<i class="fab fa-github"></i>
<a href="https://github.com/Chahatj23" target="_blank">GitHub</a>
</p>
<p class="about">Chahat Jain is a passionate developer interested in open source and frontend development. Always eager to learn and contribute to real-world projects.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">Web3school</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">freecodecamp</a>
</li>
<li>
<a href="https://www.frontendmentor.io/" target="_blank" title="Third Resource">frontend mentor</a>
</li>
</ul>
</div>
</div>
<!-- ________ Chahat Card END ________ -->
<!-- =====================Kaniz's card start==================== -->
<div class="card">
<p class="name">Kaniz Fatma</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/Kaniz-Fatma" target="_blank">@Kaniz-Fatma</a>
</p>
<p class="about">Hii.. I am Kaniz Fatma. I am a beginner level web developer and i am contributing for the very first time in open-source.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="YouTube">YouTube</a>
</li>
<li>
<a href="https://twitter.com/" target="_blank" title="Twitter">Twitter/X</a>
</li>
</ul>
</div>
</div>
<!-- =======================Kaniz's card END================== -->
<!-- ________ Yadav97 card START ________ -->
<div class="card">
<p class="name">Krishna Yadav</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/krishna-yadav97/" target="_blank">Krishna Yadav</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Yadav97" target="_blank">Yadav97</a>
</p>
<p class="about">Hello World! I am Krishna Yadav, I'm a Computer Science Graduate who likes get into problem solving and I like Web Development and Desktop App Development ,Also Know JavaScript,Java,C, CPP,PHP,Python,Latex,Django,Node,React,Mysql</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="First Resource">The Odin Project</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML" target="_blank" title="Third resource">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Yadav97 card END ________ -->
<!-- ________ PMorey22 card START ________ -->
<div class="card">
<p class="name">Purva R. Morey</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/purva_morey11" target="_blank">@purva_morey11</a>
<i class="fab fa-github"></i>
<a href="https://github.com/PMorey22" target="_blank">PMorey22</a>
</p>
<p class="about">Code and Chill</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=F7XGddoTxrA" target="_blank" title="Falling in Love with Web Development | Kyle Cook - @WebDevSimplified | Beyond Coding Podcast #75">@BeyondCoding</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=u72H_zZzkcw" target="_blank" title="Web Development In 2023 - A Practical Guide">@TraversyMedia</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=3MRWBahy02U" target="_blank" title="Becoming Great at CSS | @KevinPowell - Kevin Powell | Beyond Coding Podcast #69">@BeyondCoding</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *AyomiCoder card START ________ -->
<div class="card">
<p class="name">AyomiCoder</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/AyomiCoder" target="_blank">AyomiCoder</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/AyomiCoder" target="_blank">AyomiCoder</a>
</p>
<p class="about">I'm a fullstack developer working towards enhancing human interactions with softwares.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://freecodecamp.org" target="_blank" title="First Resource">Freecodecamp</a>
</li>
<li>
<a href="https://youtube.com" target="_blank" title="Second Resource">Youtube</a>
</li>
<li>
<a href="https://codecademy.com" target="_blank" title="Third resource">CodeCademy</a>
</li>
</ul>
</div>
</div>
<!-- ________ AyomiCoder card END ________ -->
<!-- ________ Sarthexe Card START ________ -->
<div class="card">
<p class="name">Sarthak Maurya</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sarthak-kumar-maurya-a03926242/" target="_blank">Sarthak Kumar Maurya</a>
<i class="fab fa-github"></i>
<a href="https://github.com/sarthexe" target="_blank">sarthexe</a>
</p>
<p class="about">In my second year of college majoring in AI-ML. Specializing in Frontend developer and is starting to go into more depth of development. Starting to learn OpenSource and contributing.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Docs for open web techs like HTML,CSS,JS etc ">MDN Web Docs</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="One of the best sites for paid courses.">Udemy</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="For learning Web Development for free!">w3schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sarthexe card END ________ -->
<!-- ________ Sami Syed card START ________ -->
<div class="card">
<p class="name">Sami Noor Syed</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/saminoorsyed" target="_blank">@saminoorsyed</a>
<i class="fab fa-github"></i>
<a href="https://github.com/saminoorsyed" target="_blank">saminoorsyed</a>
</p>
<p class="about">I'm currently a student at Oregon State University Studying Computer Science. This post is my first OSS contribution and I hope to make many more in the coming years. Good luck everyone. Wishing you all happy life long learning!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/jlord/git-it-electron#readme" target="_blank" title="First Resource">Learn how to use git through an intuitive desktop app!</a>
</li>
<li>
<a href="https://up-for-grabs.net/#/" target="_blank" title="Second Resource">Here's a list of open source projects contributions you can make!</a>
</li>
<li>
<a href="https://en.wikipedia.org/wiki/Kernel_(operating_system)" target="_blank" title="Third resource">Here's a dry but good read on operating systems</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sami Syed card END ________ -->
<!-- ________ Shabab card START ________ -->
<div class="card">
<p class="name">Shabab Hussain</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/shussain_5" target="_blank">@shussain_5</a>
<i class="fab fa-github"></i>
<a href="https://github.com/smhussain5" target="_blank">smhussain5</a>
</p>
<p class="about">
Hello, hello! My name is Shabab (like shish-kebab). I am newish to the lovely world of programming and I am excited to learn and connect! I have been dabbling in web-development since the good ol' days on Tumblr and decided to finally dive into this passion of
mine. Also, I have a cat named 'Khushi' who is yelling at me for not paying attention to him right now...
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.realtimecolors.com/?colors=000000-ffffff-8fb3ff-ebf1ff-d41d6d&fonts=Poppins-Poppins" target="_blank" title="CSS inspiration">Realtime Colors</a>
</li>
<li>
<a href="https://simpleicons.org/" target="_blank" title="SVG icons">Simple Icons</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=3HqN-YS8eso&ab_channel=TraversyMedia" target="_blank" title="Open-source introduction">Getting Started With Open Source & GitHub</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shabab card END ________ -->
<!-- ________ iwatat card START ________ -->
<div class="card">
<p class="name">Terri Iwata</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/iwatat/" target="_blank">iwatat</a>
</p>
<p class="about">Here to contribute to open source software.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://missing.csail.mit.edu/" target="_blank" title="MissingSemester">Missing Semester of CS</a>
</li>
<li>
<a href="https://grugbrain.dev/" target="_blank" title="GrugBrainedDeveloper">Grug Brained Developer</a>
</li>
</ul>
</div>
</div>
<!-- ________ iwatat card END ________ -->
<!-- ________ Alexandre card START ________ -->
<div class="card">
<p class="name">Alexandre Peres</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/alexandre-peres-a085b9a6/" target="_blank">Your handle</a>
<i class="fab fa-github"></i>
<a href="https://github.com/AlexandreP23" target="_blank">I need a job!</a>
</p>
<p class="about">Hello there! I am a self-taught person, highly motivated and passionate about constant learning</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.codehype.in/2023/09/github-readme-generator.html" target="_blank" title="Perfect GitHub">Get a professional GitHub </a>
</li>
<li>
<a href="https://www.codehype.in/2023/09/sidebarwithglasseffect.html?m=1" target="_blank" title="Sidebar">Sidebar with Glassmorphism HTML CSS</a>
</li>
<li>
<a href="https://clean-code.io/" target="_blank" title="Pratice HTML-CSS-JavaScript">Practice Shorthand Tricks HTML CSS JavaScript</a>
</li>
</ul>
</div>
</div>
<!-- ________ Alexandre card END ________ -->
<!-- ________ Sanketh card START ________ -->
<div class="card">
<p class="name">Sanketh R</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Sankethhr" target="_blank">Sankethhr</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Sanketh00" target="_blank">Sanketh00</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sanketh-r-821222192/" target="_blank">Sanketh R</a>
</p>
<p class="about">Hey there! My name is Sanketh R, I'm a Computer Science Graduate who loves problem solving and now contributing to this page</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">freecodecamp</a>
</li>
<li>
<a href="https://takeuforward.org/" target="_blank" title="Second Resource">For DSA</a>
</li>
<li>
<a href="https://neetcode.io/" target="_blank" title="Third resource">Neetcode</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sanketh card END ________ -->
<!-- ________ Jason card START ________ -->
<div class="card">
<p class="name">Jason Ferrell</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/jgf-osu" target="_blank">jgf-osu</a>
</p>
<p class="about">Hello, I'm contributing to this project!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://projecteuler.net/" target="_blank" title="A website for practicing programming">Project Euler</a>
</li>
<li>
<a href="https://docs.python.org/" target="_blank" title="Official documentation for the Python programming language">docs.python.org</a>
</li>
<li>
<a href="https://www.gnu.org/software/emacs/" target="_blank" title="You don't actually need any other software">GNU Emacs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Jason card END ________ -->
<!-- ________ Sreshta card START ________ -->
<div class="card">
<p class="name">Sreshta</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/sreshta_1102" target="_blank">sreshta_1102</a>
<i class="fab fa-github"></i>
<a href="https://github.com/sreshtech" target="_blank">sreshtech</a>
</p>
<p class="about">web Devoloper</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">W3Schools</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">GeeksForGeeks</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">StackOverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* sreshta card END ________ -->
<!-- ________ nluginbill card START ________ -->
<div class="card">
<p class="name">Nathaniel Luginbill</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/winespodyody" target="_blank">Ackacka</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/nluginbill" target="_blank">nluginbill</a>
</p>
<p class="about">Just a human being that's trying to get vim-brained.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/philc/vimium" target="_blank" title="Vimium">Vimium</a>
</li>
<li>
<a href="https://github.com/scrapy/scrapy" target="_blank" title="Scrapy">Scrapy</a>
</li>
<li>
<a href="https://github.com/ycm-core/YouCompleteMe" target="_blank" title="YouCompleteMe">YouCompleteMe</a>
</li>
</ul>
</div>
</div>
<!-- ________ nluginbill card END ________ -->
<!-- ________ swapna's card START ________ -->
<div class="card">
<p class="name">Swapna pradhan</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/swapna-pradhan-b36a42244/" target="_blank">linkedin</a><br />
<i class="fab fa-github"></i>
<a href="https://github.com/dreeaamie" target="_blank">github</a>
</p>
<p class="about">
i am happy sending my first pull request:)<br />
I am a newbie in opensource <br />
and i found frontend development interesting so here i am to learn by contributing on real worl projects<br />
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">Web3school</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">freecodecamp</a>
</li>
<li>
<a href="https://www.frontendmentor.io/" target="_blank" title="Third resource">frontend mentor</a>
</li>
</ul>
</div>
</div>
<!-- ________ swapna's card end ________ -->
<!-- ________ 6arturodiaz card START ________ -->
<div class="card">
<p class="name">Arturo Diaz</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/6arturodiaz" target="_blank">Github</a>
</p>
<p class="about">
I am an aspiring Full-Stack Developer with a passion for engineering innovative solutions and creating efficient, user-friendly applications. Proven track record of an unyielding drive and rapid skill development. Knowledgeable in full-stack development, agile
methodologies, and problem-solving. Strong ability to collaborate with cross-functional teams and adapt to changing project requirements. Committed to continuous learning and propelling myself above and beyond the competition.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Specific code examples">Stack OverFlow</a>
</li>
<li>
<a href="https://www.google.com/" target="_blank" title="Overall code helper">Google</a>
</li>
<li>
<a href="https://chat.openai.com/auth/login" target="_blank" title="Basic Algorithm Checker">ChatGBT</a>
</li>
</ul>
</div>
</div>
<!-- ________ 6arturodiaz card END ________ -->
<!-- ________ Matthew card START ________ -->
<div class="card">
<p class="name">Matthew Cheng</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/mattcheng591" target="_blank">My LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/mattcheng591" target="_blank">My GitHub</a>
</p>
<p class="about">Hello, I am a Computer Science student at Oregon State University. I hope to learn more about open source contribution!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://neetcode.io/" target="_blank" title="First Resource">Neetcode</a>
</li>
<li>
<a href="https://www.theodinproject.com/dashboard" target="_blank" title="Second Resource">The Odin Project</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">Stack Overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ Matthew card END ________ -->
<!-- ________ Aylee's card START ________ -->
<div class="card">
<p class="name">Aylee Shomali</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/aylee-shomali/" target="_blank">My LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Aylee-Shomali" target="_blank">My GitHub</a>
</p>
<p class="about">
Hey there! I'm currently a senior at Oregon State University studying Computer Science.<br />
My main interests are in the realm of Mobile and Web Application development, especially with an emphasis on front-end work and testing. However, I'm always excited to learn new technologies in other areas, languages, and fields.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://m3.material.io/" target="_blank" title="Google's open source design system">Material 3</a>
</li>
<li>
<a href="https://regex101.com/" target="_blank" title="Create and test Regular Expressions">Regex 101</a>
</li>
<li>
<a href="https://learn.microsoft.com/en-us/samples/browse/" target="_blank" title="Microsoft Documentation Code Samples Page">Microsoft Docs Code Samples</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aylee's card END ________ -->
<!-- ________ Cassidy card START ________ -->
<div class="card">
<p class="name">Cassidy Williams</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/willicassi" target="_blank">willicassi</a>
</p>
<p class="about">I am a CS student exploring open source.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="First Resource">Codecademy</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">StackOverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ Cassidy card END ________ -->
<!-- ________ Arushi card START ________ -->
<div class="card">
<p class="name">Arushi Trivedi</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/arushi-trivedi-2757881b3/" target="_blank">My LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/arushitrivedi" target="_blank">My Github</a>
</p>
<p class="about">
Hi! I am an Engineering graduate.<br />
I have a keen interest in technology and its uses in the real world!<br />
I work on Frontend technologies.<br />
Now I'm trying my hand in open source!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://codepen.io/" target="_blank" title="First Resource">Codepen</a>
</li>
<li>
<a href="https://devdocs.io/" target="_blank" title="Second Resource">Devdocs</a>
</li>
<li>
<a href="https://www.codeply.com/" target="_blank" title="Third resource">Codeply</a>
</li>
</ul>
</div>
</div>
<!-- ________ Arushi card END ________ -->
<!-- ________ Kiran's card START ________ -->
<div class="card">
<p class="name">Kiran Nair</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/knbbb55" target="_blank">My Twitter</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/kiranair101" target="_blank">My Github</a>
</p>
<p class="about">
My name is Kiran Nair and I am currently and Junior at Oregon State University pursuing a Bachelors in Computer Science I can say without a doubt that Python is my favorite language to use since it is user-friendly. I love to learn new things and can't wait to
learn new things.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="First Resource">ChatGPT</a>
</li>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Second Resource">Codecademy</a>
</li>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Third resource">Roadmap</a>
</li>
</ul>
</div>
</div>
<!-- ________ Kiran's card END ________ -->
<!-- ________ danhjoseph card START ________ -->
<div class="card">
<p class="name">Dan</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/danhjoseph" target="_blank">danhjoseph</a>
</p>
<p class="about">I'm Dan, a full stack software developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org" target="_blank" title="Courses">FreeCodeCamp</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Documentation">MDN</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Support">StackOverFlow</a>
</li>
</ul>
</div>
</div>
<!-- ________ danhjoseph card END ________ -->
<!-- ________ xxfreeshroudxx card START ________ -->
<div class="card">
<p class="name">Baibhav KC</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/lordwarrior32" target="_blank">@lordwarrior32</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/xxfreeshroudxx" target="_blank">My Github</a>
</p>
<p class="about">
Hey there, I am Baibhav from Nepal and I am a frontend developer and I am really interested in fullstack development. I am currently learning MERN Stack and really passionate about tech and stuff who is always motivated to learn new things in Information and
Technology.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="First Resource">Stack Overflow</a>
</li>
<li>
<a href="https://www.codewars.com/" target="_blank" title="Second Resource">CodeWars</a>
</li>
<li>
<a href="http://www.coursera.org/" target="_blank" title="Third resource">Coursera</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *Adelakun Godspower card START ________ -->
<div class="card">
<p class="name">Adelakun Godspower David</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com" target="_blank">ly_nxhyper</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com" target="_blank">Adelakun God'spower</a>
</p>
<p class="about">"As a talented front-end developer and skilled graphics designer, i seamlessly combine creativity and technical expertise to craft visually stunning and user-friendly digital experiences.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>