-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
index.html
2871 lines (2778 loc) · 120 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/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 ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">MartianCactus</p>
<p class="contact">
<i class="fa-brands fa-google"></i>
<a href="https://www.google.com" target="_blank">dont use twitter lol</a>
<i class="fab fa-github"></i>
<a href="https://github.com/MartianCactus" target="_blank">MartianCactus</a>
</p>
<p class="about">Hi! Im a data science guy learning some stuff about collaborative development! Dont know much about front end but here are some general learning resources!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.khanacademy.org" target="_blank" title="First Resource">Khan Academy</a>
</li>
<li>
<a href="https://www.fast.ai/" target="_blank" title="Second Resource">Fast AI: Deep Learning</a>
</li>
<li>
<a href="https://pll.harvard.edu/course/cs50-introduction-computer-science" target="_blank" title="Third resource">Harvard CS50x</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ kelseadecker START ________ -->
<div class="card">
<p class="name">Kelsea Decker</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/kelseadecker" target="_blank">kelseadecker</a>
</p>
<p class="about">Hello! My name is Kelsea and I am a beginner Full Stack Web Developer. I got my certification about a year ago. Other than figuring out technology I play music and have been for 19 years.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">Free Code Camp</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Second Resource">W3 Schools</a>
</li>
<li>
<a href="https://codesandbox.io/" target="_blank" title="Third resource">Code Sand Box</a>
</li>
</ul>
</div>
</div>
<!-- ________ kelseadecker card END ________ -->
<!-- ________ marshallhhhh Contributor card START ________ -->
<div class="card">
<p class="name">Marshall H</p>
<p class="contact">
<i class="fa-brands fa-instagram"></i>
<a href="https://www.instagram.com/marshallh.jpeg" target="_blank">marshallh.jpeg</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/marshallhhhh" target="_blank">marshallhhhh</a>
</p>
<p class="about">Online: Cyber Security Student / Hobbyist Web Dev / Ergonomic Keyboard Designer || Offline: Rock Climber / UL Hiker / Photographer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.uidesign.tips/ui-tips" target="_blank" title="UI design tips by jim raptis">Jim Raptis UI Design Tips</a>
</li>
<li>
<a href="https://youtu.be/CvCiNeLnZ00?si=ONtwgZSns5h4DMjc" target="_blank" title="Eight hour long MERN stack web devlopment tutorial">Dave Gray MERN Stack Youtube Tutorial</a>
</li>
<li>
<a href="https://gtfobins.github.io/" target="_blank" title="Unix binaries that can be used to bypass local security restrictions in misconfigured systems">GTFO Bins</a>
</li>
</ul>
</div>
</div>
<!-- ________ marshallhhhh Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Timon Fiedler</p>
<p class="contact">
<i class="fa-brands fa-instagram"></i>
<a href="https://www.instagram.com/timon.dev/" target="_blank">@timon.dev</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Timon-D3v" target="_blank">Timon-D3v</a>
</p>
<p class="about">
Hi, I am a webdev from Switzerland and I try to do more open source. I have built some websites like <a href="https://www.timondev.com" target="_blank">my portfolio</a>, <a href="https://www.sofareinigung-zuerich.ch" target="_blank">Sofareinigung Zürich</a> and <a href="https://www.zurich-meets-tanzania.com" target="_blank">Zurich meets Tanzania</a>. I've also built my own javascript framework <a href="https://www.npmjs.com/package/timonjs" target="_blank">timon.js</a>.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.npmjs.com/package/timonjs" target="_blank" title="My own javascript framework">jQuery like javascript framework, but with all the native functions for each element</a>
</li>
<li>
<a href="https://shoelace.style" target="_blank" title="Shoelace">A clean and easy to use design component library</a>
</li>
<li>
<a href="https://app.haikei.app" target="_blank" title="haikei">Generate awsome SVG's</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- Contributors' Cards END -->
<div class="card">
<p class="name">Ehtiram</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ehtiram-ullah-92084a319/" target="_blank">Ehtiram</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Ehtiram-Ullah" target="_blank">ehtiram-ullah</a>
</p>
<p class="about">I'm a passionate Cross-Platform Developer specializing in Flutter, always eager to learn, grow, and connect with like-minded individuals. Let's collaborate, share knowledge, and make great things happen together!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://www.udemy.com/" target="_blank">Udemy (Online Courses)</a></li>
<li><a href="https://dribbble.com/" target="_blank">Dribbble (Design Inspirations)</a></li>
<li><a href="https://mycolor.space/" target="_blank">MyColor (Color Scheme Generator)</a></li>
</ul>
</div>
</div>
<!-- Ehtiram's Contributor card END -->
<!-- Zerubbabel's Contributor card START -->
<div class="card">
<p class="name">Zerubbabel Tesfaye</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/zerut16" target="_blank">zerut16</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/ZerubbabelT" target="_blank">ZerubbabelT</a>
</p>
<p class="about">Full-stack Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://chatgpt.com" target="_blank">ChatGPT</a></li>
<li><a href="https://stackoverflow.com/" target="_blank">Stack Overflow</a></li>
<li><a href="https://github.com" target="_blank">GitHub</a></li>
</ul>
</div>
</div>
<!-- Zerubbabel's Contributor card END -->
<!-- Ashen Savinda's Contributor card START -->
<div class="card">
<p class="name">Ashen Savinda</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/ashensavi" target="_blank">ashensavi</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/ashensavi" target="_blank">ashensavi</a>
</p>
<p class="about">I'm learning to be a full-stack software developer. Coding is my passion.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://stackoverflow.com/" target="_blank">Stack Overflow</a></li>
<li><a href="https://www.sololearn.com/en/" target="_blank">Sololearn</a></li>
<li><a href="https://www.w3schools.com/" target="_blank">W3Schools</a></li>
</ul>
</div>
</div>
<!-- Ashen Savinda's Contributor card END -->
<!-- Ihsan's Contributor card START -->
<div class="card">
<p class="name">Ihsan Jadhao</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/ishaannn31" target="_blank">@Ishaannn31</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Ishaannn31" target="_blank">Ishaannn31</a>
</p>
<p class="about">👨💻 Data Science & AI student @ Universität des Saarlandes | Web Dev & DevOps enthusiast | Coder by day, learner by night | Exploring ML & Computer Vision 🚀</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://towardsdatascience.com/" target="_blank">Towards Data Science</a></li>
<li><a href="https://dev.to/" target="_blank">Dev.to</a></li>
<li><a href="https://www.kaggle.com/" target="_blank">Kaggle</a></li>
</ul>
</div>
</div>
<!-- Ihsan's Contributor card END -->
<!-- Oluwashola's Contributor card START -->
<div class="card">
<p class="name">Oluwashola</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/Sholy_Cul" target="_blank">Sholy_cul on X</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Sholycul" target="_blank">SholyCul on GitHub</a>
</p>
<p class="about">I am a passionate computer science student striving to make a mark in Backend development.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://gprm.itsvg.in/" target="_blank">Beautify your GitHub</a></li>
<li><a href="https://cryptii.com/" target="_blank">How strong is your encryption</a></li>
<li><a href="https://www.heroku.com/" target="_blank">Hosting Services</a></li>
</ul>
</div>
</div>
<!-- Oluwashola's Contributor card END -->
<!-- Aneesh's Contributor card START -->
<div class="card">
<p class="name">Aneesh</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/shoomankhatri" target="_blank">shoomankhatri</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/shoomankhatri" target="_blank">shoomankhatri</a>
</p>
<p class="about">I am an enthusiastic web developer and love to make new dev friends.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li><a href="https://daily.dev/" target="_blank">Daily Dev</a></li>
<li><a href="https://wellfound.com/jobs" target="_blank">Internships</a></li>
<li><a href="https://monkeytype.com/" target="_blank">A dev should know how to type too</a></li>
</ul>
</div>
</div>
<!-- Aneesh's Contributor card END -->
<!-- KrakenM's Contributor card START -->
<div class="card">
<p class="name">KrakenM</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/KrakenMInitials" target="_blank">KrakenMInitials</a>
</p>
<p class="about">Journey to Google Summer of Code 2025!!!</p>
<div class="resources">
<p>Some resources I frequent:</p>
<ul>
<li><a href="https://www.freecodecamp.org/" target="_blank">FreeCodeCamp</a></li>
<li><a href="https://www.geeksforgeeks.org/" target="_blank">GeeksforGeeks</a></li>
<li><a href="https://stackoverflow.com/" target="_blank">Stack Overflow</a></li>
</ul>
</div>
</div>
<!-- KrakenM's Contributor card END -->
<!-- Contributors' Cards END -->
<!-- ________ Dipanshu's Contributor card START ________ -->
<div class="card">
<p class="name">Dipanshu Sahu</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/dipanshuu_sahu" target="_blank">dipanshuu_sahu</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/dipanshu-sahu/" target="_blank">dipanshu-sahu</a>
<i class="fab fa-github"></i>
<a href="https://github.com/dipanshu447" target="_blank">dipanshu447</a>
</p>
<p class="about">
Hello I'm Dipanshu and im from India, doing Bachelor Of Computer Science. I'm working on improving
myself from every aspect and trying my best to stay awake in a world of delusion. I love reading Books,
watching movies/series, and especially I love reading self help books which help me stay aware. Feel free to
connect with me. Also here is my discord username - dipanshuu
</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://ocw.mit.edu/" target="_blank" title="Second Resource">MIT OpenCourseWare</a>
</li>
<li>
<a href="https://communitytaught.org/" target="_blank" title="Third resource">Communitytaught.org</a>
</li>
</ul>
</div>
</div>
<!-- ________ Dipanshu's Contributor card END ________ -->
<!-- ________ shashi kumar kasturi's Contributor card START ________ -->
<div class="card">
<p class="name">Shashi Kumar kasturi</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/shashikumarkasturi/" target="_blank">shashikumarkasturi</a>
<i class="fab fa-github"></i>
<a href="https://github.com/kshashikumar" target="_blank">kshashikumar</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.shashikumarkasturi.me/" target="_blank">www.shashikumarkasturi.me</a></p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://devpost.com/" target="_blank" title="Dev Post">Dev Post</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>
<!-- ________ shashi kumar kasturi's Contributor card END ________ -->
<!-- ________ CLPDevelopment's Contributor card START ________ -->
<div class="card">
<p class="name">CLPDevelopment</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/DevCrono" target="_blank">DevCrono</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/CLPDevelopment" target="_blank">CLPDevelopment</a>
</p>
<p class="about">I'm a Python and Web Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/" target="_blank" title="First Resource">An amazing place to Contribute</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">The best place to solve problems</a>
</li>
<li>
<a href="https://www.google.com/" target="_blank" title="Third resource">The second best place to solve problems</a>
</li>
</ul>
</div>
</div>
<!-- ________ CLPDevelopment's Contributor card END ________ -->
<!-- lhcee3's Contributor card START-->
<div class="card">
<p class="name">Aneesh</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/lhcee3" target="_blank">lhcee3</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/lhcee3" target="_blank">lhcee3</a>
</p>
<p class="about">I am enthusiastic and love to make new dev friends.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://daily.dev/" target="_blank" title="First Resource">Daily Dev</a>
</li>
<li>
<a href="https://wellfound.com/jobs" target="_blank" title="Second Resource">Internships</a>
</li>
<li>
<a href="https://monkeytype.com/" target="_blank" title="Third resource">
A dev should know to type too
</a>
</li>
</ul>
</div>
</div>
<!-- lhcee3's Contributor card END-->
<!-- ________ tanmay Contributor card START ________ -->
<div class="card">
<p class="name">Tanmay ghosh</p>
<p class="contact">
<i class="fab fa-x-linkedin"></i>
<a href="https://www.linkedin.com/posts/tanmay-ghosh-ab71952b6_made-a-data-visualizer-with-the-help-of-pandas-activity-7250422072844124160-bo2X?utm_source=share&utm_medium=member_desktop
" target="_blank">Tanmay ghosh</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Tanmay-coderr" target="_blank">Tanmay-coderr</a>
</p>
<p class="about">I am an aspiring software develepor who is looking to contribute to open sourse projects.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://daily.dev/" target="_blank" title="First Resource">Daily Dev</a>
</li>
<li>
<a href="https://wellfound.com/jobs" target="_blank" title="Second Resource">Internships</a>
</li>
<li>
<a href="https://monkeytype.com/" target="_blank" title="Third resource">Typing speed</a>
</li>
</ul>
</div>
</div>
<!-- ________ tanmay Contributor card END ________ -->
<!-- ________ *TEMPLATE: GiovanniN98 Contributor card START ________ -->
<div class="card">
<p class="name">Giovanni N.</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/GiovanniN98" target="_blank">GiovanniN98</a>
</p>
<p class="about">Hi everyone, I'm Giovanni and I'm eager to contribute to meaningful projects!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://streamlit.io/" target="_blank" title="Create a WebApp with no Frontend knowledge">
Streamlit
</a>
</li>
<li>
<a href="https://plotly.com/python/plotly-express/" target="_blank" title="Free and open-source visualization module for Python">
Plotly Express
</a>
</li>
<li>
<a href="https://colab.research.google.com/" target="_blank" title="Write and execute python code in browser">
Google Colab
</a>
</li>
</ul>
</div>
</div>
<!-- ________ GiovanniN98 Contributor card END ________ -->
<!-- ________ DietermiGamzD125 Contributor card START ________ -->
<div class="card">
<p class="name">Diego Rodríguez</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/DietermiGamzD125" target="_blank">DietermiGamzD125</a>
<br/>
<i class="fa-brands fa-reddit"></i>
<a href="https://www.reddit.com/user/Sensitive_Lab8330/" target="_blank">u/Sensitive_Lab8330</a>
</p>
<p class="about">I don't even use reddit. I like Homestuck btw.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://neocities.org/tutorials" target="_blank" title="Neocities tutorials">Tons of HTML tutorials for neocities</a>
</li>
<li>
<a href="https://www.w3schools.com/html/" target="_blank" title="w3schools">I always use this one to look up tags</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=salY_Sm6mv4&pp=ygUEaHRtbA%3D%3D" target="_blank" title="HTML in 5 minutes">Didn't know what to put so have a video</a>
</li>
</ul>
</div>
</div>
<!-- ________ DietermiGamzD125 Contributor card END ________ -->
<!-- ________ Saqib's Contributor card START ________ -->
<div class="card">
<p class="name">Saqib Malik</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/maliksaqibdev" target="_blank">@maliksaqibdev</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/maliksaqibahmad" target="_blank">maliksaqibahmad</a>
</p>
<p class="about">I am a full stack developer, still learning</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">
An amazing resource to learn coding
</a>
</li>
<li>
<a href="https://scrollrevealjs.org/" target="_blank" title="Second Resource">
A JavaScript library to animate elements as they scroll into view
</a>
</li>
<li>
<a href="https://css-tricks.com/" target="_blank" title="Third resource">
A website about making websites
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Saqib's Contributor card END ________ -->
<!-- ________ Dishank's Contributor card START ________ -->
<div class="card">
<p class="name">Dishank Jha</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/DishankJha" target="_blank">@DishankJha</a>
<i class="fab fa-github"></i>
<a href="https://github.com/DishankJha" target="_blank">DishankJha</a>
</p>
<p class="about">I am learning web developement!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtu.be/G3e-cpL7ofc?feature=shared" target="_blank" title="First Resource">Tutorial to learn html and css</a>
</li>
<li>
<a href="https://youtu.be/EerdGm-ehJQ?feature=shared" target="_blank" title="Second Resource">Tutorial to learn javaScript</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/tailwind-css/" target="_blank" title="Third resource">Documentation to learn tailwind css</a>
</li>
</ul>
</div>
</div>
<!-- ________ Dishank's Contributor card END ________ -->
<!-- ________ DxRavage's Contributor card START ________ -->
<div class="card">
<p class="name">DxRavage</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/MarianoAvilaC" target="_blank">@MarianoAvilaC</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/DxRavage" target="_blank">DxRavage</a>
</p>
<p class="about">Hi! I'm a Software Engineering student</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh" target="_blank" title="First Resource">
Guides for developers with educational content
</a>
</li>
<li>
<a href="https://responsively.app" target="_blank" title="Second Resource">
Responsively: Desktop app useful for front end and responsive design
</a>
</li>
<li>
<a href="https://www.tailwindgen.com" target="_blank" title="Third resource">Tailwind Grid Generator</a>
</li>
</ul>
</div>
</div>
<!-- ________ DxRavage's Contributor card END ________ -->
<!-- ________ Eri's card START ________ -->
<div class="card">
<p class="name">Eri</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/erijawa" target="_blank">erijawa</a>
</p>
<p class="about">
Hi everyone! I'm Eri and I love coding!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://railsguides.jp/" target="_blank" title="Rails Guides">Rails Guides</a>
</li>
<li>
<a href="https://developer.mozilla.org" target="_blank" title="MDN">MDN</a>
</li>
<li>
<a href="https://docs.ruby-lang.org/" target="_blank" title="docs.ruby-lang.org">docs.ruby-lang.org</a>
</li>
</ul>
</div>
</div>
<!-- ________ Eri's card END ________ -->
<!-- ________ Hanzala's card START ________ -->
<div class="card">
<p class="name">Muhammad Hanzla</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/hanzala-h" target="_blank">@hanzala-h</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/hanzala-h" target="_blank">hanzala-h</a>
</p>
<p class="about">
Hey everyone! I'm a second-year AI student, an aspiring full-stack developer, and a self-taught programmer.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@sheryians" target="_blank" title="A coding bootcamp based in India">
Sheryians Coding School
</a>
</li>
<li>
<a
href="https://developers.google.com/"
target="_blank"
title="Google's official resources for developers"
>
<span style="color: #1a73e8">G</span>
<span style="color: #ea4335">o</span>
<span style="color: #fbbc04">o</span>
<span style="color: #1a73e8">g</span>
<span style="color: #34a853">l</span>
<span style="color: #ea4335">e</span>
for Developers
</a>
</li>
<li>
<a href="https://webpack.js.org/" target="_blank" title="A powerful JavaScript module bundler">
Webpack (for the curious)
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Hanzala's card END ________ -->
<!-- ________ bjutxe's card START ________ -->
<div class="card">
<p class="name">bjutxe</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/slinky2629" target="_blank">TaiyoMate</a>
<i class="fab fa-github"></i>
<a href="https://github.com/bjutxe" target="_blank">bjutxe</a>
</p>
<p class="about">Japanese programmer passionate about shell tricks and mathematics.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://qiita.com/" target="_blank" title="Qiita">Qiita: Japanese geeksforgeeks site</a>
</li>
<li>
<a href="https://b.ueda.tech/" target="_blank" title="Ryuichi Ueda's site">
ShellTricks: This site created with shell
</a>
</li>
<li>
<a href="https://www.3blue1brown.com/" target="_blank" title="3Blue1Brown">3Blue1Brown: Amazing math</a>
</li>
</ul>
</div>
</div>
<!-- ________ bjutxe's card END ________ -->
<!-- ________ Keval Gothi's card START ________ -->
<div class="card">
<p class="name">Keval Gothi</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/Kevalgothi" target="_blank">KevalGothi</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/kevalGothi" target="_blank">kevalGothi</a>
</p>
<p class="about">About Me I wanna be FAMOUS!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@chaiaurcode" target="_blank"
title="Chai Aur Code">Chai aur Code</a>
</li>
<li>
<a href="https://github.com/EbookFoundation/free-programming-books"
target="_blank"
title="Books">Progrmming books</a>
</li>
<li>
<a href="https://github.com/hkirat" target="_blank"
title="A web3 devloper">Harkirat Singh</a>
</li>
</ul>
</div>
</div>
<!-- ________ Keeval Gothi's card END ________ -->
<!-- ________ Atharva Rasane's card START ________ -->
<div class="card">
<p class="name">Atharva Rasane</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/atharva-rasane/" target="_blank">Atharva Rasane</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Atharva-Rasane/" target="_blank">Atharva-Rasane</a>
</p>
<p class="about">I am a developer who likes bugs (and not just the computer kind)</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/" target="_blank" title="YouTube">YouTube</a>
</li>
<li>
<a href="https://chatgpt.com/" target="_blank" title="Chatgpt">Chatgpt</a>
</li>
<li>
<a href="https://www.google.com/" target="_blank" title="Google">Google</a>
</li>
</ul>
</div>
</div>
<!-- ________ Atharva Rasane's card END ________ -->
<!-- ________ ArgyPet card START ________ -->
<div class="card">
<p class="name">Argyris Petras</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/your_user_handle" target="_blank">Argyris Petras</a>
</p>
<p class="about">
I am a software engineering enthusiast whose goal is to learn as much as possible about Open Source, GitHub,
and software in general.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/" target="_blank" title="GitHub - Version Control Platform">GitHub</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow - Q&A for Developers">
Stack Overflow
</a>
</li>
<li>
<a
href="https://scikit-learn.org/stable/"
target="_blank"
title="Scikit-Learn - Machine Learning Library"
>
Scikit-Learn
</a>
</li>
</ul>
</div>
</div>
<!-- ________ ArgyPet card END ________ -->
<!-- ________ Faris Haziq's card START ________ -->
<div class="card">
<p class="name">Faris Haziq</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/faris-haziq-669b31244/" target="_blank">Faris Haziq</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/FarisHaziq02" target="_blank">FarisHaziq02</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://www.freecodecamp.org/" target="_blank" title="For beginners">freeCodeCamp</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="To understand more">w3schools</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Project Ideas">YouTube</a>
</li>
</ul>
</div>
</div>
<!-- ________ Faris Haziq's card END ________ -->
<!-- ________ yzyeoh's card START ________ -->
<div class="card">
<p class="name">yzyeoh</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/yuan-zhen-yeoh/" target="_blank">Yuan Zhen Yeoh</a>
</p>
<p class="about">Aspiring polymath | CS(AI) Graduate'25</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/sindresorhus/awesome" target="_blank" title="First Resource">
GitHub Awesome List
</a>
</li>
<li>
<a href="https://github.com/achristmascarl/rainfrog" target="_blank" title="Second Resource">
DB Management UI tool - rainfrog
</a>
</li>
<li>
<a href="https://github.com/tensorflow/tensorflow" target="_blank" title="Third resource">
Open Source Deep Learning Framework - Tensorflow
</a>
</li>
</ul>
</div>
</div>
<!-- ________ yzyeoh's card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Anal joseph</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/anal_joseph2" target="_blank">Anal joseph</a>
<i class="fab fa-github"></i>
<a href="https://github.com/anal96" target="_blank">anal96</a>
</p>
<p class="about">Im a BCA student Aspring MERN Stack</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/" target="_blank" title="First Resource">Github</a>
</li>
<li>
<a href="https://chatgpt.com/" target="_blank" title="Second Resource">Chatgpt</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">Stack overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- 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 ========= -->
<!-- ________ *TEMPLATE: Warren Smith START ________ -->
<div class="card">
<p class="name">Warren Smith</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://x.com/WxrrenSmith" target="_blank">@WxrrenSmith</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Wxrren" target="_blank">Wxrren</a>
</p>
<p class="about">
Hi there! I'm an aspiring software developer who started learning how to code on 25/04/2023. I'm currently
doing a Level 5 diploma in web development and looking for as many ways as possible to enhance my skills.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org"
target="_blank"
title="Free online courses in full stack development"
>
FreeCodeCamp
</a>
</li>
<li>
<a
href="https://getbootstrap.com/docs/4.3/getting-started/introduction/"
target="_blank"
title="Bootstrap CDN documentation"
>
Bootstrap
</a>
</li>
<li>
<a
href="https://www.theodinproject.com"
target="_blank"
title="Full stack curriculum supported by an open source community"
>
The Odin Project
</a>
</li>
</ul>