forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1348 lines (1299 loc) · 62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link href="https://fonts.googleapis.com/css2?family=Domine&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>Contribute To This Project</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode">
<div class="toggle-box">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js" integrity="sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ==" crossorigin="anonymous"></script>
</div>
<!-- / Night Mode Creation -->
</div>
</div>
<div class="row">
<div class="column-double">
<div class="column-left">
<h1>CONTRIBUTE TO THIS PROJECT</h1>
<h2>A project for first-time contributions</h2>
<p>This is a tutorial to help first-time contributors participate in a simple and easy project. Get more comfortable using GitHub and make your first open source contribution. It's quick and easy.</p>
<a class="button" href="https://github.com/Syknapse/Contribute-To-This-Project/blob/master/README.md" target="_blank" title="Go to project README - A step by step tutorial">
Learn how to contribute
<i class="fas fa-long-arrow-alt-right"></i>
</a>
</div>
</div>
<div class="column">
<div class="column-right">
<div class="twitter-button">
<a
href="https://twitter.com/share?ref_src=twsrc%5Etfw"
class="twitter-share-button"
data-size="large"
data-text="Contribute To This Project. An easy Git and GitHub project for first-time contributors, with a full tutorial."
data-url="https://github.com/Syknapse/Contribute-To-This-Project"
data-via="Syknapse"
data-hashtags="100DaysOfCode"
data-show-count="false"
title="Tweet this project"
>
Tweet
</a>
<script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<p>Contributions so far...</p>
<div class="animated" id="contributions-number">0</div>
</div>
</div>
</div>
<!-- <div class="searchContainer">
<input id="searchbar" type="search" name="search" placeholder="Search for your card here!" />
</div> -->
<div class="grid" id="contributions">
<!-- ================================================ -->
<!-- ================== TEMPLATE ================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Your name</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com" target="_blank">Your handle</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com" target="_blank">Your handle</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- COPY everything ABOVE this, from contributor card start to end along with the "START" and "END" comment lines -->
<!-- ============== ^^^^ TEMPLATE ^^^^ ============== -->
<!-- ================================================ -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- Keep one line of space above and below your card -->
<!-- ========= Paste YOUR CARD directly BELOW this line ========= -->
<!-- ________ Stefan Anevski card START ________ -->
<div class="card">
<p class="name">Stefan Anevski</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/stefan-anevski/" target="_blank">Stefan Anevski</a>
<i class="fab fa-github"></i>
<a href="https://github.com/anevski-stefan" target="_blank">anevski-stefan</a>
</p>
<p class="about">I am a final year computer science and engineering student with a very big passion towards software engineering. From young age started to code and that passion is growing more and more.</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.youtube.com/" target="_blank" title="Second Resource">Youtube</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">Stack Overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ Stefan Anevski card END ________ -->
<!-- ________ Guillaume card START ________ -->
<div class="card">
<p class="name">Guillaume</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Millecactus" target="_blank">Millecactus</a>
</p>
<p class="about">Self-taught developper since 3 years, PHP & JAVA</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.softwareheritage.org/" target="_blank" title="Kind of librairies of many many Historics website or application Code sources ">Software Heritage</a>
</li>
<li>
<a href="https://www.lilobase.me/" target="_blank" title="French articles about Craftman Skills and Agile in enterprise">Lilobase </a>
</li>
<li>
<a href="https://soundcloud.com/benoitgantaume" target="_blank" title=" French podcasts about programmer's life, issues and success with manys guests. for a fulfilled life as a programmer">Artisan Developper</a>
</li>
</ul>
</div>
</div>
<!-- ________ Guillaume card END ________ -->
<!-- ________ Sarvesh card START ________ -->
<div class="card">
<p class="name">Sarvesh Yadav</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/sarveshpyadav" target="_blank">sarveshpyadav</a>
<i class="fab fa-github"></i>
<a href="https://github.com/sarveshpyadav" target="_blank">sarveshpyadav</a>
</p>
<p class="about">Hi there, I am Sarvesh! I am a creative learner who loves knowing and building new things.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="First Resource">The Odin Project</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">freeCodeCamp</a>
</li>
<li>
<a href="https://www.codewithharry.com/" target="_blank" title="Third resource">CodeWithHarry</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sarvesh card END ________ -->
<!-- ________ Ibrahim card START ________ -->
<div class="card">
<p class="name">Ibrahim Shahid</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com" target="_blank">ko0olguy</a>
</p>
<p class="about">I am a freshman in college and I like to code</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">https://fireship.io/</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">https://www.w3schools.com/</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">https://www.edx.org/</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ibrahim card END ________ -->
<!-- _________DheerajPrakash card start __________ -->
<div class="card">
<p class="name">Dheeraj Prakash</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/flashofficial45" target="_blank"></a>
<i class="fab fa-github"></i>
<a href="https://github.com/mintxdp" target="_blank">mintxdp</a>
</p>
<p class="about">I don't know what i am doing in my life. I'm in library now and contributing to this page and still don't know why i am doing this.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@LearnLinuxTV" target="_blank" title="Learn Linux">Resource 1</a>
</li>
<li>
<a href="https://www.youtube.com/@freecodecamp" target="_blank" title="Learn Coding">Resource 2</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Learn Basics">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- _________DheerajPrakash card end __________ -->
<!-- ________ AuburnMedia card START ________ -->
<div class="card">
<p class="name">AuburnMedia</p>
<p class="contact">
<i class="fab fa-youtube"></i>
<a href="https://www.youtube.com/@auburnmedia" target="_blank">AuburnMedia</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/AuburnMedia" target="_blank">AuburnMedia</a>
</p>
<p class="about">A really bored person who knows too much code to be good for them :)</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/awesome-selfhosted/awesome-selfhosted" target="_blank" title="List of Self-Hosted Apps">Crazy helpful</a>
</li>
<li>
<a href="https://www.warp.dev/" target="_blank" title="Warp">A blazingly-fast modern Rust based GPU-accelerated terminal</a>
</li>
<li>
<a href="https://github.com/jlevy/the-art-of-command-line" target="_blank" title="Art of the Command Line">Would not have survived without it</a>
</li>
</ul>
</div>
</div>
<!-- ________ AuburnMedia card END ________ -->
<!-- ________ Utsho de Bravestone's Contributor card START ________ -->
<div class="card">
<p class="name">Utsho de Bravestone</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/utshobravestone" target="_blank">utshobravestone</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/utshodebravestone" target="_blank">utshodebravestone</a>
</p>
<p class="about">I'm a computer programmer based in Bangladesh. I love building stuff with code.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://craftinginterpreters.com/" target="_blank" title="Third resource">Crafting Interpreters</a>
</li>
<li>
<a href="https://fullstackopen.com/en/" target="_blank" title="Second Resource">Fullstack Open</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="First Resource">The Odin Project</a>
</li>
</ul>
</div>
</div>
<!-- ________ Utsho de Bravestone's Contributor card END ________ -->
<!-- ________ rvittozzi's card START ________ -->
<div class="card">
<p class="name">Robert Vittozzi</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/codingwithrob_" target="_blank">codingwithrob_</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/rvittozzi" target="_blank">rvittozzi</a>
</p>
<p class="about">A novice Python Game Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="Http://wwww.udemy.com/" target="_blank" title="First Resource">Udemy</a>
</li>
<li>
<a href="http://www.w3schools.com/" target="_blank" title="Second Resource">w3schools</a>
</li>
<li>
<a href="http://www.github.com/" target="_blank" title="Third resource">Github</a>
</li>
</ul>
</div>
</div>
<!-- rvittozzi's CONTRIBUTOR card END -->
<!-- ________ Fahaad's card START ________ -->
<div class="card">
<p class="name">Fahaad Abbadi</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/FahaadAbbadi" target="_blank">Fahaad Al Abbadi</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/fahaad-abbadi" target="_blank">Fahaad Al Abbadi</a>
</p>
<p class="about">Aspiring Software Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/news/tag/blog/" target="_blank" title="First Resource">Free Code Camp</a>
</li>
<li>
<a href="Http://wwww.udemy.com/" target="_blank" title="Second Resource">Udemy</a>
</li>
<li>
<a href="http://www.youtube.com/" target="_blank" title="Third resource">Youtube</a>
</li>
</ul>
</div>
</div>
<!-- Fahaad's CONTRIBUTOR card END -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Hashir Kashif</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/nothashir672" target="_blank">nothashir672</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/ihashir" target="_blank">ihashir</a>
</p>
<p class="about">A passionate coder who makes futuristic projects for the world.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtu.be/Ez8F0nW6S-w?si=Yt2cfPNWpUAPOFGm" target="_blank" title="Learn git and github">Learn git and github</a>
</li>
<li>
<a href="https://youtu.be/bMknfKXIFA8?si=yqqINYhQ6i5vYAnl" target="_blank" title="Reacr beginner course">React beginner course</a>
</li>
<li>
<a href="https://youtu.be/eKqY-oP1d_Y?si=6MEybmAen_oipPGw" target="_blank" title="How to start coding">How to start coding</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ codeanish card START ________ -->
<div class="card">
<p class="name">Anish Patel</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/codeanish" target="_blank">codeanish</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/codeanish" target="_blank">codeanish</a>
</p>
<p class="about">I've been a software engineer for around 15 years. I'm finally dipping my toes into the world of open source</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/awesome-selfhosted/awesome-selfhosted" target="_blank" title="Awesome Self Hosted">Awesome Self-Hosted</a>
</li>
<li>
<a href="https://leetcode.com/" target="_blank" title="Leetcode">Leetcode | Programming learning</a>
</li>
<li>
<a href="https://fastapi.tiangolo.com/" target="_blank" title="FastAPI">Fast API a great framework to building APIs in Python</a>
</li>
</ul>
</div>
</div>
<!-- ________ codeanish card END ________ -->
<!-- ________ jamiemetcalfe18 card START ________ -->
<div class="card">
<p class="name">Jamie Metcalfe</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/jamielmetcalfe/" target="_blank">Jamie Metcalfe</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/jamiemetcalfe18" target="_blank">jamiemetcalfe18</a>
</p>
<p class="about">Hi! I am a web developer that aims to get 1% better everyday! I love coding and pushing myself.</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.theodinproject.com/" target="_blank" title="Second Resource">The Odin Project</a>
</li>
<li>
<a href="https://discord.gg/web" target="_blank" title="Third resource">Web Dev and Design Discord</a>
</li>
</ul>
</div>
</div>
<!-- ________ jamiemetcalfe18 card END ________ -->
<!-- *Willie M. Bonavente* Contributor card START -->
<div class="card">
<p class="name">Willie M. Bonavente</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/williebonavente" target="_blank">williebonavente</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/willie-bonavente-828180207/" target="_blank">Willie M. Bonavente</a>
</p>
<p class="about">2nd-Year BSIT Student.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://docs.python.org/3/tutorial/index.html" target="_blank" title="The official tutorial from python.org">The Python Tutorial</a>
</li>
<li>
<a href="https://docs.github.com/en" target="_blank" title="Getting to know more about GitHub.">GitHub Documentation</a>
</li>
<li>
<a href="https://code.visualstudio.com/docs" target="_blank" title="Documentation for the most popular code editor for developers.">Visual Studio Code</a>
</li>
</ul>
</div>
</div>
<!-- *Willie M. Bonavente* CONTRIBUTOR card END -->
<!-- ________ N3l20 card START ________ -->
<div class="card">
<p class="name">N3l20</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/n3l20" target="_blank">N3l20</a>
</p>
<p class="about">Hi, I'm N3l20 and I just started to learn HTML and CSS. See below the resources that have helped me the most.</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.youtube.com" target="_blank" title="Second Resource">YouTube</a>
</li>
<li>
<a href="https://www.web.dev" target="_blank" title="Third resource">Web dev</a>
</li>
</ul>
</div>
</div>
<!-- ________ N3l20 card END ________ -->
<!-- ________ Karan card START ________ -->
<div class="card">
<p class="name">Karan Raval</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/raval_karan255" target="_blank">raval_karan255</a>
<i class="fab fa-github"></i>
<a href="https://github.com/KaranRaval123" target="_blank">KaranRaval123</a>
</p>
<p class="about">I'm currently learning Frontend Development and DSA. I'm excited about the endless possibilities of this field.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://leetcode.com/problemset/all" target="_blank" title="Leetcode improve problem solving skills">Leetcode</a>
</li>
<li>
<a href="https://css-tricks.com" target="_blank" title="Learn about css">CSS tricks</a>
</li>
<li>
<a href="https://replit.com" target="_blank" title="Replit provides a large range of tools">Learn how to use replit</a>
</li>
</ul>
</div>
</div>
<!-- ________ Karan card END ________ -->
<!-- ________ Samia35-2973 card START ________ -->
<div class="card">
<p class="name">Samia Haque Tisha</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/samia-haque-tisha-1596b51a7/" target="_blank">Samia Haque Tisha</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/SamiaHaqueTish1" target="_blank">Samia35-2973</a>
</p>
<p class="about">I am Tisha. I am persuing my Bachelor of Science degree in Software Engineering. I used to be a competitive programmer. My codeforces max rating is 1304. Now I am learning Data Science. I know web designing a little bit. I love playing Chess.</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.freecodecamp.org/" target="_blank" title="Second Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Third resource">Codecademy</a>
</li>
</ul>
</div>
</div>
<!-- ________ Samia35-2973 card END ________ -->
<!-- ________ muath-ye card START ________-->
<div class="card">
<p class="name">Muath Alsowadi</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/muath-ye" target="_blank">muaht-ye</a>
</p>
<p class="about">
Founder of @open-sale. Co-founder of @YemenOpenSource. Passionate and highly skilled senior full-stack web developer proficient in HTML, CSS, JavaScript, Vue.js, PHP, SQL, Laravel, and API development, with a strong commitment to leveraging technology to create
innovative solutions and positively impact the world.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://muathye.com" target="_blank" title="Muath Alsowadi">Whenever I feel like writing down something I've learnt, I do it here.</a>
</li>
<li>
<a href="https://dly.to/MCaY2MRQsW4" target="_blank" title="A Carefully Chosen Artciles for Web Developers">A Carefully Chosen Artciles for Web Developers</a>
</li>
<li>
<a href="https://github.com/yemenopensource" target="_blank" title="Yemen Open Source">Open Source Projects</a>
</li>
</ul>
</div>
</div>
<!-- ________ muath-ye card END ________-->
<!-- ________ meanmachine889 card START ________-->
<div class="card">
<p class="name">Yash Bharadwaj</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/meanmachine889" target="_blank">meanmachine889</a>
</p>
<p class="about">My name is Yash. I like to sketch, sing and code. Just wanted to start contributing to open source projects.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@CodeWithHarry" target="_blank" title="Code with Harry">Resource 1</a>
</li>
<li>
<a href="https://www.youtube.com/@CodeHelp" target="Codehelp by babbar" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="https://www.youtube.com/@striver_79" target="_blank" title="Striver">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ meanmachine889 card END ________-->
<!-- ________ Vikram card START ________ -->
<div class="card">
<p class="name">Vikram</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/vikram-ramji" target="_blank">vikram-ramji</a>
</p>
<p class="about">AI Enthusiast and developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="First Resource">ChatGPT</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">GeeksforGeeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ Vikram card END ________ -->
<!-- ________ John Cong card START ________ -->
<div class="card">
<p class="name">John Chong</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/johnchong1999/" target="_blank">@johnchong1999</a>
<i class="fab fa-github"></i>
<a href="https://github.com/johny-chongy" target="_blank">@johny-chongy</a>
</p>
<p class="about">
I'm a software engineer who is looking to contribute to the ever-growing software industry by tackling challenges, learning new technologies, and creating products that can impact people. Currently seeking real-world opportunities like open-source projects,
internships, or full-time employment. Let's connect!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.rithmschool.com/" target="_blank" title="First Resource">Rithm School</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="Second Resource">Chat GPT</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=v63SGGY6TnQ" target="_blank" title="Third resource">Coding Playlist</a>
</li>
</ul>
</div>
</div>
<!-- ________ John Cong card END ________ -->
<!-- ________ Josef card START ________ -->
<div class="card">
<p class="name">Josef</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Josef8852" target="_blank">Josef88852</a>
</p>
<p class="about">Junior Software Engineer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://leetcode.com/problemset/all" target="_blank" title="Leetcode improve problem solving skills">Leetcode</a>
</li>
<li>
<a href="https://css-tricks.com" target="_blank" title="Learn about css">CSS tricks</a>
</li>
<li>
<a href="https://replit.com" target="_blank" title="Replit provides a large range of tools">Learn how to use replit</a>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">GeeksforGeeks</a>
</li>
<li>
<a href="https://react.dev/" target="_blank" title="Third resource">React Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<!-- ________ Josef card END ________ -->
<!-- ________ Abdul card START ________ -->
<div class="card">
<p class="name">Abdul Rahman</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/abdul-rahman-779425197/" target="_blank"> Abdul Rahman</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/AbdulRahmanGit" target="_blank">AbdulRahmanGit</a>
</p>
<p class="about">
An Enthusiastic Third-year Computer Science Engineering student, I am eager to leverage my skills and passion for software development and machine learning to contribute to innovative projects in a dynamic team environment. Seeking an opportunity for improving my
skills as an intern and gain real-world experience.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org" target="_blank" title="Basics of knowing any technologies">Resource 1</a>
</li>
<li>
<a href="https://www.hackerrank.com" target="_blank" title="Get Started with coding">Resource 2</a>
</li>
<li>
<a href="https://leetcode.com" target="_blank" title="Best place for competitive Coding">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ Abdul card END ________ -->
<!-- ========= Md sahil card START ========= -->
<div class="card">
<p class="name">Md sahil kathewadi</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sahil-kathewadi/" target="_blank">LIN:sahil</a>
<i class="fab fa-github"></i>
<a href="https://github.com/mksahil" target="_blank">@mksahil</a>
</p>
<p class="about">I'm a Fullstack Devoloper passionate about building fast and rubost applications, My tech stack is Asp.net core, Angular and JavaScript</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="First resource">ChatGPT</a>
</li>
<li>
<a href="https://www.youtube.com/KunalKushwaha" target="_blank" title="Second Resource">KunalKushwaha best course for DSA</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Awesome Course try it">The Odin project is the best resource for beginners in web development</a>
</li>
</ul>
</div>
</div>
<!-- ========= Md sahil card END ========= -->
<!-- ________ Simardeep Singh card START ________ -->
<div class="card">
<p class="name">Simardeep Singh</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/eta.unicorn/" target="_blank">eta.unicorn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/SimardeepSingh-zsh" target="_blank">SimardeepSingh-zsh </a>
</p>
<p class="about">I'm a passionate and self taught coder.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="https://youtube.com/@CodeWithHarry?si=4Bd8fbDKKYtd5JUE">Resource 1</a>
</li>
<li>
<a href="#" target="_blank" title="https://www.youtube.com/@KevinPowell">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="https://chat.openai.com/">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ Simardeep Singh card END ________ -->
<!-- ________ *juliaecaro* Contributor card START ________ -->
<div class="card">
<p class="name">Julia Caro</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/juliaecaro/" target="_blank">juliaecaro</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/juliaecaro" target="_blank">juliaecaro</a>
</p>
<p class="about">I'm studying to get certificates in Web Design and Web Programming.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML" target="_blank" title="Developer Mozilla HTML">Developer Mozilla HTML</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" title="Developer Mozilla JavaScript">Developer Mozilla JavaScript</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank" title="Developer Mozilla CSS">Developer Mozilla CSS</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ========= Fernando card START ========= -->
<div class="card">
<p class="name">Fernando Rodrigues</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Fe4n4ndo" target="_blank">Fernando</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/fernando7181" target="_blank">@Fernando7181</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/fernando-barbosa-rodrigues-8803a5245/" target="_blank">Fernando Rodrigues</a>
</p>
<p class="about">I'm Just a normal person trying to study and understand eveything that's around the world I'll get back to the community everthing they did to me!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://pll.harvard.edu/course/cs50-introduction-computer-science" target="_blank" title="First Resource">CS50</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">Stack Overflow</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">freecodecamp</a>
</li>
</ul>
</div>
</div>
<!-- ========= Fernando Card END ========= -->
<!-- ________ *Richie Rosario* Contributor card START ________ -->
<div class="card">
<p class="name">Richie Rosario</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/Richiedevr" target="_blank">Richiedevr</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Richiedevr" target="_blank">Richiedevr</a>
</p>
<p class="about">Im a full-stack developer, Linux tinkerer and Dev-Ops engineer working with Bash, Typescript, and Go for work and play. Finally deciding to devote some extra time to open source!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://phind.com" target="_blank" title="First Resource"> Phind.com your AI search engine and pair programmer </a>
</li>
<li>
<a href="https://exercism.org" target="_blank" title="Second Resource"> Exercism.org. Free resource that helps anyone learn any language for free. Im currently using it to teach myself Rust! </a>
</li>
<li>
<a href="https://charm.sh" target="_blank" title="Third resource"> Charm.sh...Tons of awesome CLI tools to make working in the terminal a bit more fun and stylish </a>
</li>
</ul>
</div>
</div>
<!-- ________ *Richie Rosario* Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Merwin Rebello</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.instagram.com/merwinrebello" target="_blank">merwinrebello</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Merwin-Rebello" target="_blank">Merwin-Rebello</a>
</p>
<p class="about">learning about fullstack webdev creation of wealth through enterprenership and businesses</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtube.com/@CodeWithHarry?si=4Bd8fbDKKYtd5JUE" target="_blank" title="First Resource"> CodeWithHarry </a>
</li>
<li>
<a href="https://youtube.com/@KevinPowell?si=DvFkV7vQosLNkCxb" target="_blank" title="Second Resource"> KevinPowell </a>
</li>
<li>
<a href="www.google.com" target="_blank" title="Third resource">Google.com</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Leo Wang card START ________ -->
<div class="card">
<p class="name">Leo Wang</p>
<p class="contact">
<i class="fa fa-link"></i>
<a href="https://ascodeasice.github.io/personal-website/" target="_blank">Personal Website</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ascodeasice" target="_blank">ascodeasice</a>
</p>
<p class="about">Hi! I'm a fullstack developer and CS college student in Taiwan. On my way to contribute to more open source projects.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com" target="_blank" title="First Resource">The Odin Project</a>
</li>
<li>
<a href="https://www.learncpp.com" target="_blank" title="Second Resource">Learn C++</a>
</li>
<li>
<a href="https://codepen.io/sosuke/pen/Pjoqqp" target="_blank" title="Third resource"> Svg Color Css Calculator </a>
</li>
</ul>
</div>
</div>
<!-- ________ Leo Wang card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Deepak Kaswan</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/kaswa99" target="_blank">kaswa99</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/notkaswan" target="_blank">notkaswan</a>
</p>
<p class="about">Learning about open source contributions.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/" target="_blank" title="First Resource">Youtube</a>
</li>
<li>
<a href="https://www.google.com/" target="_blank" title="Second Resource">Google</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">stack overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ========= START ========= -->
<!-- ========= Card 1 START ========= -->
<div class="card">
<p class="name">Majid Valizadeh</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/majid-valizadeh" target="_blank">Majid Valizadeh</a>
<i class="fab fa-github"></i>
<a href="https://github.com/majidv7" target="_blank">majidv7</a>
</p>
<p class="about">A Linux System Administrator! I'm passionate about learning new technologies and it doesn't matter how hard that would be... I will learn it anyway!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.linuxbabe.com/" target="_blank" title="First Resource">Linux Babe</a>
</li>
<li>
<a href="https://www.learnlinux.tv/" target="_blank" title="Second Resource">Linux TV</a>
</li>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Third Resource">Roadmap</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 1 END ========= -->
<!-- ========= Card 2 START ========= -->
<div class="card">
<p class="name">Saleh khatri</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/saleh-khatri-29b541242/" target="_blank">Saleh Khatri</a>
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/SalehKhatri" target="_blank">SalehKhatri</a>
<i class="fab fa-github"></i>
<a href="https://github.com/SalehKhatri" target="_blank">SalehKhatri</a>
</p>
<p class="about">Passionate about technology and on a journey to become a skilled software engineer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@CodeWithHarry" target="_blank" title="First Resource"> CodeWithHarry </a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title="Second Resource">StackOverFlow</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">w3schools</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 2 END ========= -->
<!-- ========= Card 3 START ========= -->
<div class="card">
<p class="name">Nitin Kumar</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/l_nitinkumar_l" target="_blank">@l_nitinkumar_l</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/GeneralNitin" target="_blank">@GeneralNitin</a>
</p>
<p class="about">I am full stack software developer and a masters student from India. I love to explore and learn new things.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/mtdvio/every-programmer-should-know" target="_blank" title="First Resource"> Every Developer Should Know </a>
</li>
<li>
<a href="https://javascript.info/" target="_blank" title="Second Resource">Javascript Info</a>
</li>