forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
5315 lines (5151 loc) · 216 KB
/
index.html
File metadata and controls
5315 lines (5151 loc) · 216 KB
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/v6.4.2/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>
<script type="module" src="assets/script.js" defer=""></script>
</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-x-twitter"></i>
<a href="https://www.twitter.com/your_user_handle" target="_blank">Your handle</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/your_user_handle" 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 ________ -->
<!-- ________ *ianology* Contributor card START ________ -->
<div class="card">
<p class="name">Ian Freedain</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/ianology" target="_blank">ianology</a>
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ian-freedain-a87595287/" target="_blank">Ian Freedain</a>
</p>
<p class="about">College Grad Looking to Start IT Career</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://d3fend.mitre.org/"
target="_blank"
title="MITRE Catalog of Defensive Cybersec Techniques"
>
MITRE D3FEND
</a>
</li>
<li>
<a href="https://pomofocus.io/" target="_blank" title="Pomodoro Timer for Managing Procrastination">
Pomofocus
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *ianology* Contributor card END ________ -->
<div class="card">
<p class="name">Syed Khuzema Ali</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/syed-khuzema-ali" target="_blank">syed-khuzema-ali</a>
</p>
<p class="about">I am Syed Khuzema Ali, a 16 years old ML developer from Pakistan.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.codewithharry.com/blogpost/python-cheatsheet"
target="_blank"
title="First Resource"
>
Python Cheatsheet
</a>
</li>
<li>
<a href="https://htmlcheatsheet.com/" target="_blank" title="Second Resource">HTML cheatsheet</a>
</li>
<li>
<a href="https://fonts.google.com/" target="_blank" title="Third resource">Google fonts</a>
</li>
</ul>
</div>
</div>
<!-- ________ *2d-game-dev* Contributor card START ________ -->
<div class="card">
<p class="name">2d-game-dev</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/2d-game-dev" target="_blank">2d-game-dev</a>
</p>
<p class="about">
University student exploring web development and making my first open source contributions.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/news/tag/web-development/" target="_blank" title="First Resource">
FreeCodeCamp for Web Development
</a>
</li>
<li>
<a
href="https://www.netacad.com/learning-collections/web-development?courseLang=en-US"
target="_blank"
title="Second Resource"
>
Web Development - Cisco Networking Academy
</a>
</li>
<li>
<a href="https://tumo.org/project/webdevelopment/" target="_blank" title="Third resource">
Web Development - TUMO
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *2d-game-dev* Contributor card END ________ -->
<!-- ________ *AadarshGajula* Contributor card START ________ -->
<div class="card">
<p class="name">Aadarsh Gajula</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/aadarshgajula" target="_blank">aadarshgajula</a>
</p>
<p class="about">A 17 year old who wants to change the world with coding.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="roadmap.sh" target="_blank" title="First Resource">Roadmap.sh</a>
</li>
<li>
<a href="geeksforgeeks.org" target="_blank" title="Second Resource">GeeksForGeeks</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=ygXn5nV5qFc" target="_blank" title="Third resource">
Python For AI
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *AadarshGajula* Contributor card END ________ -->
<!-- ________ *ShaikFurqan* Contributor card START ________ -->
<div class="card">
<p class="name">Shaik Furqan</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/ShaikFurqan12" target="_blank">ShaikFurqan</a>
</p>
<p class="about">I am a college student with lots of intrest in contributing to open source</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@javascriptmastery" target="_blank" title="yt channel for dev">
JsMastery
</a>
</li>
<li>
<a
href="https://www.w3schools.com/html/default.asp"
target="_blank"
title="Online learning -basic html"
>
W3-schools
</a>
</li>
<li>
<a
href="https://medium.com/lets-code-future/60-free-web-development-resources-i-wish-i-knew-earlier-for-devs-in-2025-c9f995f07c44"
target="_blank"
title="Place where all resources are bundled up"
>
Medium
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *ShaikFurqan* Contributor card END ________ -->
<!-- ________ Sourabh Contributor card START ________ -->
<div class="card">
<p class="name">Sourabh</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/sourabhX16" target="_blank">sourabhX16</a>
<i class="fab fa-github"></i>
<a href="https://github.com/SourabhX16" target="_blank">SourabhX16</a>
</p>
<p class="about">Learner <3</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtu.be/i16HTSt-wl4?si=Q0ZQOH7AqozeLyGd" target="_blank" title="First Resource">
Video by sam ovens on productivity
</a>
</li>
<li>
<a href="https://youtu.be/c6SzMmGEPlM?si=lPYY4ei9uwQCw1mV" target="_blank" title="Second Resource">
harkirat's video
</a>
</li>
<li>
<a href="https://youtu.be/uI6YZTT6BOU?si=cRv8ds4OVdwnqaTc" target="_blank" title="Third resource">
motivating video by math sorcerer
</a>
</li>
</ul>
</div>
</div>
<!-- ________ SourabhContributor card START ________ -->
<!-- ________ Manoj Contributor card START ________ -->
<div class="card">
<p class="name">Manoj Kumar</p>
<p class="contact">
<i class="fa-solid fa-globe"></i>
<a href="https://portfolio-pink-theta-95.vercel.app/" target="_blank">Portfolio</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ManojMJ17" target="_blank">ManojMJ17</a>
</p>
<p class="about">Don't dream even in your sleep, if you're lazy</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://algomap.io/" target="_blank" title="First Resource">Algomap.io</a>
</li>
<li>
<a href="https://chatgpt.com/" target="_blank" title="Second Resource">ChatGPT</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">GeeksForGeeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ Manoj Contributor card END ________ -->
<!-- ________ Sourabh Contributor card START ________ -->
<div class="card">
<p class="name">Sourabh</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/sourabhX16" target="_blank">sourabhX16</a>
<i class="fab fa-github"></i>
<a href="https://github.com/SourabhX16" target="_blank">SourabhX16</a>
</p>
<p class="about">Learner <3</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtu.be/i16HTSt-wl4?si=Q0ZQOH7AqozeLyGd" target="_blank" title="First Resource">
Video by sam ovens on productivity
</a>
</li>
<li>
<a href="https://youtu.be/c6SzMmGEPlM?si=lPYY4ei9uwQCw1mV" target="_blank" title="Second Resource">
harkirat's video
</a>
</li>
<li>
<a href="https://youtu.be/uI6YZTT6BOU?si=cRv8ds4OVdwnqaTc" target="_blank" title="Third resource">
motivating video by math sorcerer
</a>
</li>
</ul>
</div>
</div>
<!-- ________ SourabhContributor card START ________ -->
<!-- ________ Manoj Contributor card START ________ -->
<div class="card">
<p class="name">Manoj Kumar</p>
<p class="contact">
<i class="fa-solid fa-globe"></i>
<a href="https://portfolio-pink-theta-95.vercel.app/" target="_blank">Portfolio</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ManojMJ17" target="_blank">ManojMJ17</a>
</p>
<p class="about">Don't dream even in your sleep, if you're lazy</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://algomap.io/" target="_blank" title="First Resource">Algomap.io</a>
</li>
<li>
<a href="https://chatgpt.com/" target="_blank" title="Second Resource">ChatGPT</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">GeeksForGeeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ Manoj Contributor card END ________ -->
<!-- ________ Jey Contributor card START ________ -->
<div class="card">
<p class="name">Jey</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/Jey_Shiv" target="_blank">Jey_Shiv</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Jeyapaul" target="_blank">Jeyapaul</a>
</p>
<p class="about">Just an average engineer trying to make a mark.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://uiverse.io/" target="_blank" title="For your UI Components">UIVerse</a>
</li>
<li>
<a href="https://readme.so/" target="_blank" title="For your README">README</a>
</li>
<li>
<a href="https://carbon.now.sh/" target="_blank" title="Carbon">Carbon</a>
</li>
<li>
<a href="https://ray.so/" target="_blank" title="Ray">Ray (Alternative to Carbon)</a>
</li>
</ul>
</div>
</div>
<!-- ________ JeyContributor card END ________ -->
<!-- Lokesh Contributor card END -->
<div class="card">
<p class="name">Lokesh</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/2400032210" target="_blank">2400032210</a>
</p>
<p class="about">2nd Year B.Tech CSE student at KL University. Passionate about learning and coding 🧑💻</p>
<div class="resources">
<p>1 Useful Dev Resource</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- Lokesh Contributor card END -->
<!-- ________ Maeruf Mohammed card START ________ -->
<div class="card">
<p class="name">Maeruf Mohammed</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/your_user_handle" target="_blank"></a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/hu-maeruf" target="_blank">hu-maeruf</a>
</p>
<p class="about">
I am interested in tech. This is my first open source contribution. The start of something big.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com" target="_blank" title="TOP">TOP</a>
</li>
<li>
<a href="https://www.freecodecamp.org" target="_blank" title="free code camp">freeCodeCamp</a>
</li>
<li>
<a href="https://www.youtube.com/@teluskoalien" target="_blank" title="Telusko">Telusko</a>
</li>
</ul>
</div>
</div>
<!-- ________ Maeruf Mohammed card END ________ -->
<!--____Praveenitis card STARTS-->
<div class="card">
<p class="name">Praveen G</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/Praveen" target="_blank">Praveen G U</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Praveenitis" target="_blank">Praveenitis</a>
</p>
<p class="about">A passionate Software developer learning to contribute in open source Projects via Github</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://github.com/ossu/computer-science"
target="_blank"
title="Ossu - Computer Science Masterclass"
>
OSSU - Computer Science Masterclass
</a>
</li>
<li>
<a
href="https://github.com/EbookFoundation/free-programming-books"
target="_blank"
title="Free Programming Books for Developers"
>
Free Programming Books for Developers
</a>
</li>
<li>
<a
href="https://www.youtube.com/@cs50"
target="_blank"
title="CS50's Youtube Channel for Free coding tutorials"
>
CS50's Youtube Channel for Free coding tutorials
</a>
</li>
</ul>
</div>
</div>
<!--____Praveenitis card ENDS-->
<!-- ________ *Ankit* Contributor card START ________ -->
<div class="card">
<p class="name">Ankit.js</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/sezzwaan" target="_blank">sezzwan</a>
<i class="fab fa-github"></i>
<a href="https://github.com/nogitankit" target="_blank">nogitankit</a>
</p>
<p class="about">I just LOVE tech!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://coder-coder.com/stay-motivated-learning-code/" target="_blank" title="First Resource">
Programmer Motivation
</a>
</li>
<li>
<a href="https://www.figma.com/" target="_blank" title="Second Resource">Design web pages</a>
</li>
<li>
<a href="https://www.postman.com/" target="_blank" title="Third resource">Postman</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Ankit* Contributor card END ________ -->
<!-- ________ *narsky* Contributor card START ________ -->
<div class="card">
<p class="name">narsky</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/your_user_handle" target="_blank">Narsky7</a>
</p>
<p class="about">I like C programming, Understanding how things work and playing Path of Exile</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/codecrafters-io/build-your-own-x" target="_blank" title="First Resource">
Build your own X repo
</a>
</li>
<li>
<a href="https://www.youtube.com/@LowLevelTV" target="_blank" title="Second Resource">Low Level</a>
</li>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Third resource">Roadmaps</a>
</li>
</ul>
</div>
</div>
<!-- ________ *narsky* Contributor card END ________ -->
<!-- Aryan Contributor card START ________ -->
<div class="card">
<p class="name">Aryan Biswas</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/AryanBiswas198" target="_blank">AryanBiswas198</a>
</p>
<p class="about">Part time biker. Full Time Software Engineer. Love to code 🧑💻</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://leetcode.com/" target="_blank" title="First Resource">Leetcode</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">GeeksForGeeks</a>
</li>
</ul>
</div>
</div>
<!-- Aryan Contributor card END -->
<!-- ________ *Lori* Contributor card START ________ -->
<div class="card">
<p class="name">Lori</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/lorishui" target="_blank">LoriShui</a>
</p>
<p class="about">A programmer, gamer, and product tinkerer — always building, exploring, and creating.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://kie.ai" target="_blank" title="First Resource">kie.ai</a>
</li>
<li>
<a href="https://jsontotable.net" target="_blank" title="Second Resource">Json To Table</a>
</li>
<li>
<a href="https://blankspacecopy.net" target="_blank" title="Third resource">Blank Space Copy</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Lori* Contributor card END ________ -->
<!-- ________ *HaitamGM* Contributor card START ________ -->
<div class="card">
<p class="name">Haitam Gmira</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/GmiraHaitam" target="_blank">GmiraHaitam</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/HaitamGM" target="_blank">HaitamGM</a>
</p>
<p class="about">
Data scientist delevering effective multi-domain Machine Learning models and Generative AI solutions for
buisness-oriented problem. I'm also a Product builder, a cali athlete and I love animals :3
</p>
<div class="resources">
<p>3 Useful Data Science Resources</p>
<ul>
<li>
<a
href="https://www.youtube.com/watch?v=uakGF0DP-mk&t=3s"
target="_blank"
title="Roadmap to become a Data scientist"
>
Roadmap to Data science
</a>
</li>
<li>
<a href="https://www.youtube.com/@johnnyharris" target="_blank" title="Youtube channel">
Youtuber and Journalist I love
</a>
</li>
<li>
<a href="https://www.kaggle.com/" target="_blank" title="Community and Platform">
Best platform for AI & Datascience
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *HaitamGM* Contributor card END ________ -->
<!-- ________ kartikj card START ________ -->
<div class="card">
<p class="name">Kartik Jain</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/kartik-ja" target="_blank">kartik-ja</a>
</p>
<p class="about">Full Stack Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@TraversyMedia" target="_blank" title="First Resource">
Traversy Media - great for crash courses in all things web
</a>
</li>
<li>
<a
href="https://developer.mozilla.org/en-US/docs/Learn_web_development"
target="_blank"
title="Second Resource"
>
mozilla's Web Docs
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">
W3Schools - Learn Web Development
</a>
</li>
</ul>
</div>
</div>
<!-- ________ kartikj Contributor card END ________ -->
<!-- ________ rohan-shridhar card START ________ -->
<div class="card">
<p class="name">Rohan Shridhar</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/Rohan_shridhar" target="_blank">Rohan_shridhar</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/rohan-shridhar" target="_blank">rohan-shridhar</a>
</p>
<p class="about">I love to learn and built things. Starting my open source contribution today</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://egghead.io/" target="_blank" title="Third resource">Egghead</a>
</li>
</ul>
</div>
</div>
<!-- ________ rohan-shridhar card END ________ -->
<!-- ________ kl2400033266 card START ________ -->
<div class="card">
<p class="name">kl2400033266</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/kl2400033266" target="_blank">kl2400033266</a>
</p>
<p class="about">A passionate software developer learning open source contributions and web development.</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://developer.mozilla.org/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ kl2400033266 card END ________ -->
<!-- ________ Mu_hu001 card START ________ -->
<div class="card">
<p class="name">Muhamed Hossam</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="linkedin.com/in/muhamed-hossam-931674189e" target="_blank">Muhamed_hoss</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/muhamed-hossam2001" target="_blank">Muhamed_hoss</a>
</p>
<p class="about">An aspiring Full-stack devloper starting my first open-source projects.</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://developer.mozilla.org/en-US/docs/Learn" target="_blank" title="Second Resource">
MDN Web Docs
</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Third resource">The Odin Project</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mu_hu001 card END ________ -->
<!-- ________ Ycamacho card START ________ -->
<div class="card">
<p class="name">YCamacho</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Y-Camacho" target="_blank">Y-Camacho</a>
</p>
<p class="about">
Hi there, I am a passionate full stack developer, and I'm here to learn how to contribute to this project.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://icon-sets.iconify.design/" target="_blank" title="First Resource">Iconify</a>
</li>
<li>
<a href="https://es.pattern.monster/" target="_blank" title="Second Resource">Patter monster</a>
</li>
<li>
<a href="https://www.codewars.com/" target="_blank" title="Third resource">Codewars</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ycamacho card END ________ -->
<!-- ________ *kairavb* Contributor card START ________ -->
<div class="card">
<p class="name">Kairav Bhatia</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/kairavb8" target="_blank">kairavb8</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/kairavb" target="_blank">kairavb</a>
</p>
<p class="about">Know more about me on www.kairav.dev</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.reddit.com/" target="_blank" title="First Resource">Reddit</a>
</li>
<li>
<a href="https://devdocs.io/" target="_blank" title="Second Resource">Devdocs io</a>
</li>
<li>
<a href="https://www.youtube.com/@BroCodez" target="_blank" title="Third resource">Bro Code</a>
</li>
</ul>
</div>
</div>
<!-- ________ *kairavb* Contributor card END ________ -->
<!-- ________ *Reko* Contributor card START ________ -->
<div class="card">
<p class="name">Reko</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/Reko21470486" target="_blank">reko</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/rekodexe" target="_blank">rekodexe</a>
</p>
<p class="about">Learning about Github</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@Fireship" target="_blank" title="First Resource">Fireship</a>
</li>
<li>
<a href="https://stackoverflow.com/questions" target="_blank" title="Second Resource">Stackoverflow</a>
</li>
<li>
<a href="https://www.youtube.com/@BroCodez" target="_blank" title="Third resource">Bro Code</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Reko* Contributor card END ________ -->
<!-- ________ *MEET* Contributor card START ________ -->
<div class="card">
<p class="name">Meet Kathiriya</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/meet-kathiriya-534318224/" target="_blank">Meet Kathiriya</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Meet763" target="_blank">Meet763</a>
</p>
<p class="about">
I am backend developer and currently doing internship nd starting my joureney to contribute in this
opensource project
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.boot.dev/" target="_blank" title="First Resource">Boot.Dev</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Second Resource">W3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">Freecodecamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ *MEET* Contributor card END ________ -->
<!-- ________ *preobo* Contributor card START ________ -->
<div class="card">
<p class="name">Precious</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/preobo" target="_blank">preobo</a>
</p>
<p class="about">I am a Web Dev, whose also trying to get into Cybersecurity</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=HGTJBPNC-Gw&t=1494s" target="_blank" title="First Resource">
HTML & CSS Full Course
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=lfmg-EJ8gm4&t=1s" target="_blank" title="Second Resource">
JavaScript Full Course
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=erEgovG9WBs" target="_blank" title="Third resource">
100+ Things about Web Dev
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *preobo* Contributor card END ________ -->
<!-- ________ nishantraj06's Contributor card START ________ -->
<div class="card">
<p class="name">Nishant kumar</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/nishant-kumar-329017229/" target="_blank">Contact me</a>
<i class="fab fa-github"></i>
<a href="https://github.com/nishantraj06" target="_blank">Nishant kumar</a>
</p>
<p class="about">
Tech Enthusiast and driven Full Stack software engineer crafting robust and innovative solutions. Proficient
in a diverse set of technologies.
<a href="https://www.github.in/nishanraj06" target="_blank">https://www.github.in/nishanraj06</a>
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://devpost.com/" target="_blank" title="Dev Post">Active learner</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="Dev Community">Dev Community</a>
</li>
<li>
<a href="https://daily.dev/" target="_blank" title="Daily Dev">Daily Dev</a>
</li>
</ul>
</div>
</div>
<!-- ________ nishantraj06's Contributor card END ________ -->
<!-- ________ YDvlpr card START ________ -->
<div class="card">
<p class="name">Yohan Pereira da Costa</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/ypcmassaruti" target="_blank">@ypcmassaruti</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/YDvlpr" target="_blank">YDvlpr</a>
</p>
<p class="about">Aspiring Software Developer and Runner. Road to Marathon 2026!</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://roadmap.sh/" target="_blank" title="Second Resource">Roadmap.sh</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Third resource">MDN web docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ YDvlpr card END ________ -->
<!-- ________ *Muzided* Contributor card START ________ -->
<div class="card">
<p class="name">Muzammil Lone</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/your_user_handle" target="_blank">Your handle</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Muzided/" target="_blank">Muzided</a>
</p>
<p class="about">I am a Web-3 dev starting my journey to contribute in opensource projects</p>
<div class="resources">