forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1829 lines (1770 loc) · 75.1 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>
</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" 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 ========= -->
<!-- ________ luciano44 card START ________ -->
<div class="card">
<p class="name">Luciano Ribeiro</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/lucianoasri" target="_blank">lucianoasri</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/luciano44" target="_blank">luciano44</a>
</p>
<p class="about">
I am a full-stack web developer who loves creating projects for fun and learning every day through courses
and practice.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="ChatGPT">ChatGPT</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Udemy">Udemy</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="freeCodeCamp">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ luciano44 card END ________ -->
<!-- ________ *amrmabdelazeem Card* Start ________ -->
<div class="card">
<p class="name">AmrAbdelazeem</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/amrmabdelazeem/" target="_blank">amrmabdelazeem</a>
</p>
<p class="about">
I'm an Egyptian web developer by day and I'm batman at night. I'm looking forward to becoming a senior
Fullstack developer with the capacity to contribute to massive projects with new tools.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.bigocheatsheet.com/" target="_blank" title="BigO">BigO Cheat for CS</a>
</li>
<li>
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/" target="_blank" title="CSS-Tricks">
CSS tricks for Flexbox and Grid
</a>
</li>
<li>
<a href="https://learngitbranching.js.org/" target="_blank" title="Git">Learning Git with a Game</a>
</li>
</ul>
</div>
</div>
<!-- ________ *amrmabdelazeem Card* END ________ -->
<!-- ________ Kartikey010 card START ________ -->
<div class="card">
<p class="name">Kartikey</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Kartikey010" target="_blank">Kartikey010</a>
</p>
<p class="about">
Aspiring Software Engineer who is keen about learning, solving problems and making impacts.I am a ml
enthusiast also .Blockchain also amazes me.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">Resource 1</a>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools">W3Schools</a>
</li>
<li>
<a href="https://www.youtube.com/@CodeWithHarry" target="_blank" title="Second Resource">
CodeWithHarry
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">Stackoverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ Kartikey010 card END ________ -->
<!-- ________ *realPJL* Contributor card START ________ -->
<div class="card">
<p class="name">realPJL</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/realPJL" target="_blank">realPJL</a>
<i class="fab fa-github"></i>
<a href="https://github.com/realPJL" target="_blank">realPJL</a>
</p>
<p class="about">
CS and business student from Germany. Looking to collab on projects so I can learn new things.
</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.ironhack.com/" target="_blank" title="Second Resource">Ironhack</a>
</li>
<li>
<a href="https://wiki.selfhtml.org/wiki/HTML/Tutorials/Einstieg" target="_blank" title="Third resource">
[German] Selfhtml
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *realPJL* Contributor card END ________ -->
<!-- ________ *de_soot* Contributor card START ________ -->
<div class="card">
<p class="name">de_soot</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/de-soot" target="_blank">de-soot</a>
</p>
<p class="about">
An aspiring software developer looking to solve problems with code. Currently learning about the web
development and more.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://vscodium.com"
target="_blank"
title="Visual Studio Code without Telemetry and Tracking"
>
VSCodium
</a>
</li>
<li>
<a href="https://try.ruby-lang.org" target="_blank" title="Learn Ruby in the Browser">TryRuby</a>
</li>
<li>
<a href="https://pagespeed.web.dev" target="_blank" title="Analyse the Performance of any Website">
PageSpeed
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *de_soot* Contributor card END ________ -->
<!-- ________ divixtr3n card START ________ -->
<div class="card">
<p class="name">divixtr3n</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/r0tt3n86" target="_blank">r0tt3n86</a>
<i class="fab fa-github"></i>
<a href="https://github.com/divixtr3n" target="_blank">divixtr3n</a>
</p>
<p class="about">
I'm a beginner frontend developer, learning the basics of HTML / CSS with SASS compiler. My next step is
Java Script, I am constantly looking for new knowledge and developing my skills.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="First Resource">MDN Web Docs</a>
</li>
<li>
<a href="https://css-tricks.com/" target="_blank" title="Second Resource">CSS-Tricks</a>
</li>
<li>
<a href="https://unsplash.com/" target="_blank" title="Third resource">Unsplash</a>
</li>
</ul>
</div>
</div>
<!-- ________ divixtr3n card END ________ -->
<!-- ________ Felix Gomez card START ________ -->
<div class="card">
<p class="name">Felix Gomez</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/felixdavid1221" target="_blank">@felixdavid1221</a>
<i class="fab fa-github"></i>
<a href="https://github.com/FelixDavid12" target="_blank">FelixDavid12</a>
</p>
<p class="about">Mechatronics Engineer | AI/ML Engineer | Full Stack & Mobile Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=u4ZoJKF_VuA" target="_blank" title="Understanding The Why">
Understanding The Why
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/felix-david-gomez-marin/" target="_blank" title="LinkedIn">
LinkedIn
</a>
</li>
<li>
<a href="https://ifelix.dev/" target="_blank" title="Personal Website">Personal Website</a>
</li>
</ul>
</div>
</div>
<!-- ________ Felix Gomez card END ________ -->
<div class="card">
<p class="name">Marco Ciccale</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/mciccaleb" target="_blank">@mciccaleb</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/mciccale" target="_blank">@mciccale</a>
</p>
<p class="about">
I'm a Software Engineer in Madrid that loves Web Development, AI, Functional Programming, Web3 and many
other fields. I really enjoy using TypeScript as my go-to language. I use Next.js, React and TailwindCSS for
my Web projects. I enjoy publishing tools for the community!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://mciccale.live" target="_blank" title="First Resource">Personal Website</a>
</li>
<li>
<a href="https://www.npmjs.com/~mciccale" target="_blank" title="Second Resource">NPM Profile</a>
</li>
<li>
<a href="https://www.linkedin.com/in/marco-ciccale-baztan" target="_blank" title="Third resource">
LinkedIn
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Bruno card START ________ -->
<div class="card">
<p class="name">Bruno Ganontha</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/ganontha" target="_blank">@ganontha</a>
<i class="fab fa-github"></i>
<a href="https://github.com/GANONTHA" target="_blank">GANONTHA</a>
</p>
<p class="about">
I am a front-end web developer. I use React and vanilla javascript to build websites. I use many other tools
as well such as TypeScipt, Bootstrap and Jest. I am open to any job position. Be it an intership or an
volunteering job.
</p>
<div class="resources">
<p>My 3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://frontendmasters.com/" target="_blank" title="First Resource">FrontEnd Masters</a>
</li>
<li>
<a href="https://unsplash.com/" target="_blank" title="Second Resource">Unsplash</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">Stackoverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ Bruno card END ________ -->
<!-- ________ *Sahil* Contributor card START ________ -->
<div class="card">
<p class="name">sahil nayak</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/ogsahilnayak" target="_blank">ogsahilnayak</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ogsahil" target="_blank">ogsahil</a>
</p>
<p class="about">A boy who loves tech with hardware</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/python/" target="_blank" title="First Resource">
python for newbies
</a>
</li>
<li>
<a href="https://www.youtube.com/@freecodecamp" target="_blank" title="Second Resource">
A free channel who will help you in your tech journey
</a>
</li>
<li>
<a href="https://www.youtube.com/@nesoacademy" target="_blank" title="Third resource">
Best yt channel if you dont like long videos.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *sahil* Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Jon Desserres</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/JonnyDdesign" target="_blank">JonnyDdesign</a>
</p>
<p class="about">
Hello, my name is Jon Desserres and I am an aspiring Software Engineer. In addition to my coding obsession,
I enjoy spending time with my family, coffee, sports, coffee, cars, and did I mention coffee?
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools Resource for all things code">
W3Schools
</a>
</li>
<li>
<a
href="https://developer.mozilla.org/en-US/"
target="_blank"
title="MDN Web Docs Resource is an open-source project to help developers"
>
MDN Web Docs
</a>
</li>
<li>
<a
href="https://www.webaim.org/"
target="_blank"
title="WebAIM resource teaching about how to make the web accessible to all individuals"
>
WebAIM
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Chase Corbitt</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/ChaseCorbi5584" target="_blank">ChaseCorbi5584</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/metaltheory" target="_blank">metaltheory</a>
</p>
<p class="about">
I am a web developer who is excited about starting a new career in the tech industry. Music, gaming,
history, and technology are my passions. This is my first contribution!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=Xg9ihH15Uto" target="_blank" title="Tips to Land a tech job">
How to land a 100k/year tech job
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stackoverflow">
The best place to ask questions and find answers about code
</a>
</li>
<li>
<a href="https://youtu.be/SO8lBVWF2Y8" target="_blank" title="Signals vs Hooks in React">
Why signals are better than React hooks
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Imhotep Benjamin</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/imhotepbenjamin/" target="_blank">LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/imhotepbenjamin" target="_blank">Github</a>
</p>
<p class="about">
I'm a sound designer, creative developer, and digital artist based in Washington, DC. My most listened to
artist on this year's Spotify Wrapped is Bladee and my favorite boba tea flavor is honeydew.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.youtube.com/watch?v=i_Iq4_Kd7Rc"
target="_blank"
title="Building Audio Plugin with C++"
>
Learn Modern C++ by Building an Audio Plugin (w/ JUCE Framework)
</a>
</li>
<li>
<a href="https://www.sololearn.com/" target="_blank" title="Sololearn">Sololearn</a>
</li>
<li>
<a href="https://css-tricks.com/" target="_blank" title="CSS-Tricks">CSS-Tricks</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Matthew Contributor card START ________ -->
<div class="card">
<p class="name">Matthew Wheeler</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/m-wheeler-dev" target="_blank">m-wheeler-dev</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/mwheel93/" target="_blank">LinkedIn</a>
</p>
<p class="about">Software Engineer who is always looking for ways to learn and grow.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="First Resource">MDN Web Docs</a>
</li>
<li>
<a href="https://react.dev/learn" target="_blank" title="Second Resource">Reactjs Docs</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Third resource">The Odin Project</a>
</li>
</ul>
</div>
</div>
<!-- ________ Matthew Contributor card END ________ -->
<!-- ________ Gaurav's card START ________ -->
<div class="card">
<p class="name">Gaurav Lokhande</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/gaurav-lokhande-a47515161/" target="_blank">Gaurav Lokhande</a>
<i class="fab fa-github"></i>
<a href="https://github.com/gaurav1607" target="_blank">gaurav1607</a>
</p>
<p class="about">
I am a Full Stack Developer.Working on MERN stack and Building an pixcel perfect webiste. Now trying to do
some open source contributions and this is my first open source contribution in life.
</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.programiz.com/" target="_blank" title="programiz">Programiz</a>
</li>
<li>
<a href="https://react.dev/" target="_blank" title="reactdev">React official site</a>
</li>
</ul>
</div>
</div>
<!-- ________ Gaurav's card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Chani Shain</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/ChaniShain" target="_blank">Chani Shain</a>
</p>
<p class="about">
I am a programmer who is addicted to code and technology. You will usually find me on the computer writing
code with headphones and coffee.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="First Resource">geeksforgeeks</a>
</li>
<li>
<a href="https://www.codewars.com/" target="_blank" title="Second Resource">codewars</a>
</li>
<li>
<a href="https://medium.com/" target="_blank" title="Third resource">medium</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Arkya Contributor card START ________ -->
<div class="card">
<p class="name">Arkya Patwa</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/arkya_patwa" target="_blank">arkya_patwa</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Arkyapatwa" target="_blank">Arkyapatwa</a>
</p>
<p class="about">I am a Software Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://leetcode.com/problemset/all/" target="_blank" title="First Resource">Leetcode</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">geeksforgeeks</a>
</li>
<li>
<a href="https://takeuforward.org/" target="_blank" title="Third resource">Take You Forward</a>
</li>
</ul>
</div>
</div>
<!-- ________ Arkya Contributor card END ________ -->
<!-- ________ Tolia card START ________ -->
<div class="card">
<p class="name">Tolia ibrahim</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/mans_phlosphy" target="_blank">mans_phlosphy</a>
</p>
<p class="about">I'm a software developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://web-dev-resources.com" target="_blank" title="Free web development resources">
Web Resource
</a>
</li>
<li>
<a href="https://keycdn.com" target="_blank" title="Key CDN">command line</a>
</li>
<li>
<a href="https://dev.to" target="_blank" title="Dev community">community development</a>
</li>
</ul>
</div>
</div>
<!-- ________ Tolia card END ________ -->
<!-- ________ Himanshu Kushwaha Contributor card START ________ -->
<div class="card">
<p class="name">Himanshu Kushwaha</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/himanshucfdav" target="_blank">@himanshucfdav</a>
<i class="fab fa-github"></i>
<a href="https://github.com/kushwahahimanshu22" target="_blank">kushwahahimanshu22</a>
</p>
<p class="about">Aspiring web developer and an amatuer chess player.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Udemy">Udemy</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="freeCodeCamp">freeCodeCamp</a>
</li>
<li>
<a href="https://codingheroes.io/" target="_blank" title="codingheroes">
CodingHeroes by Jonas Schmedtmann
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Himanshu Kushwaha Contributor card END ________ -->
<!-- ________ Artyom F Contributor card START ________ -->
<div class="card">
<p class="name">Artyom F</p>
<p class="contact">
<i class="fab fa-telegram"></i>
<a href="https://kextcache.t.me" target="_blank">@kextcache</a>
<i class="fab fa-github"></i>
<a href="https://github.com/kextcache" target="_blank">@kextcache</a>
</p>
<p class="about">I like cool stuff</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.patterns.dev/" target="_blank" title="Frontend design patterns">
Frontend design patterns
</a>
</li>
<li>
<a href="https://github.com/avelino/awesome-go" target="_blank" title="Awesome Go stuff">
Awesome Go stuff
</a>
</li>
<li>
<a href="https://solidbook.vercel.app/" target="_blank" title="Solidbook (ru)">Solidbook (ru)</a>
</li>
</ul>
</div>
</div>
<!-- ________ Artyom F Contributor card END ________ -->
<!-- ________ Reed Jones Contributor card START ________ -->
<div class="card">
<p class="name">Reed Jones</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/reedjones" target="_blank">Reed Jones</a>
</p>
<p class="about">Expert in art, music, programming, security, and magick.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://superdesigner.co/tools" target="_blank" title="First Resource">
Super Design Tools...
</a>
</li>
<li>
<a href="https://thewhale.cc/?p=posts" target="_blank" title="Second Resource">
Technology tracking for devs
</a>
</li>
<li>
<a href="https://fffuel.co/dddraw/" target="_blank" title="Third resource">
Very Nice SVG drawing tool.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Reed Jones Contributor card END ________ -->
<!-- ________ Jay card START ________ -->
<div class="card">
<p class="name">Jay Santana</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/santana-jay/" target="_blank">Jazel Santana</a>
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/JazelSantana" target="_blank">@JazelSantana</a>
<i class="fab fa-github"></i>
<a href="https://github.com/santana-jay" target="_blank">santana-jay</a>
</p>
<p class="about">Software Engineer & Cyber Security Enthusiast.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://neetcode.io/courses" target="_blank" title="First Resource">NeetCode</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Second Resource">Udemy</a>
</li>
<li>
<a href="https://frontendmasters.com/" target="_blank" title="Third resource">Frontend Masters</a>
</li>
</ul>
</div>
</div>
<!-- ________ Jay card END ________ -->
<!-- ________ Sodiq Farhan's Contributor card START ________ -->
<div class="card">
<p class="name">Farhan Sodiq</p>
<p class="contact">
<i class="fa-brands fa-x-twitter"></i>
<a href="https://www.x.com/sodiqfarhan" target="_blank">@sodiqfarhan</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/codeHokage1" target="_blank">@codeHokage1</a>
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sodiqfarhan" target="_blank">Farihan Sodiq</a>
</p>
<p class="about">
Software Engineer who is keen about learning, solving problems and making impacts. Loves basketball too.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://communitytaught.org/"
target="_blank"
title="A very good resource to learn and track web dev"
>
100Devs Progress Tracker
</a>
</li>
<li>
<a
href="https://fullstackopen.com/en/"
target="_blank"
title="Build applications and test your full stack skills"
>
Full Stack Open: Deep Dive Into Modern Web Development
</a>
</li>
<li>
<a
href="https://nodeschool.io/"
target="_blank"
title="Learn all you need to be a Node JS dev and more"
>
Nodeschool
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sodiq Farhan's Contributor card END ________ -->
<!-- ________ Aditi Kumari Contributor card START ________ -->
<div class="card">
<p class="name">Aditi Kumari</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/the-aditikumari841/" target="_blank">Aditi Kumari</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/the_aditikumari" target="_blank">@the_aditikumari</a>
<i class="fab fa-github"></i>
<a href="https://github.com/the-aditikumari841" target="_blank">the-aditikumari841</a>
</p>
<p class="about">
I am a CSE undergrad and an aspiring Full Stack Developer with a passion for open-source contributions.
Currently looking for interships and full-time roles.
</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://frontendmasters.com/" target="_blank" title="Second Resource">frontend-masters</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Third resource">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditi Kumari Contributor card END ________ -->
<!-- ________ Nathaniel Joseph Contributor card START ________ -->
<div class="card">
<p class="name">Nathaniel Joseph</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/nathaniel-joseph-8b172a291/" target="_blank">Nathaniel Joseph</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/nathanCodes05" target="_blank">@nathanCodes05</a>
<i class="fab fa-github"></i>
<a href="https://github.com/joeCodes05" target="_blank">joeCodes05</a>
</p>
<p class="about">
Fullstack developer with 3years of experience. Based in Nigeria, available for remote and freelance jobs
</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://udemy.com/" target="_blank" title="Second Resource">Udemy(Some courses are free)</a>
</li>
<li>
<a href="https://coursera.org/" target="_blank" title="Third resource">coursera</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nathaniel Joseph Contributor card END ________ -->
<!-- ________ Abhinav Pandey Contributor card START ________ -->
<div class="card">
<p class="name">Abhinav Pandey</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.linkedin.com/in/abhinav-pandey-oo72/" target="_blank">Linked IN</a>
<i class="fab fa-github"></i>
<a href="https://github.com/zemgeez" target="_blank">GitHub</a>
</p>
<p class="about">
Hey there I am Abhinav Pandey, Student by profile and teacher by profession. I like Art, Coding and love
Cars.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="First Resource">geeksforgeeks</a>
</li>
<li>
<a href="https://frontendmasters.com/" target="_blank" title="Second Resource">frontend-masters</a>
</li>
<li>
<a href="https://learnxinyminutes.com/" target="_blank" title="Third resource">learn x in y minutes</a>
</li>
</ul>
</div>
</div>
<!-- ________ Abhinav Pandey Contributor card END ________ -->
<!-- ________ Aditya Gaikwad Contributor card START ________ -->
<div class="card">
<p class="name">Aditya Gaikwad</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/aditya--gaikwad" target="_blank">aditya--gaikwad</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/dev_adityag" target="_blank">dev_adityag</a>
<i class="fab fa-github"></i>
<a href="https://github.com/aaadityag" target="_blank">aaadityag</a>
</p>
<p class="about">A Fullstack enthusiast with the interest of open source contributions...</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.sololearn.com/profile" target="_blank" title="First Resource">
Sololearn(Website)
</a>
</li>
<li>
<a href="https://wildlearner.com/" target="_blank" title="Second Resource">Wildlearner(Website)</a>
</li>
<li>
<a href="https://coddy.tech/" target="_blank" title="Third resource">Coddy(Website)</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya Gaikwad Contributor card START ________ -->
<!-- ________ *MarkYupari* Contributor card START ________ -->
<div class="card">
<p class="name">MarkYupari</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/YupariMark" target="_blank">markyupari</a>
<i class="fab fa-github"></i>
<a href="https://github.com/markyupari" target="_blank">markyupari</a>
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/markyupariruiz/" target="_blank">markyupari</a>
</p>
<p class="about">
I love the automation and all related to it. I also like playing tennis and watching anime. I am excited to
share my first contribution ever.
</p>
<div class="resources">