forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1751 lines (1683 loc) · 70.5 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="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<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.4.0/jquery.min.js"></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"
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">
<!-- ================================================ -->
<!-- ================== 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>
</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>
<!-- ________*END 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 ========= -->
<!-- ________ Ugo's card START ________ -->
<div class="card">
<p class="name">Ugo Chiori</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/Adaohafia" target="_blank">@Adaohafia</a>
</p>
<p class="about">I'm currently studying for a diploma in Software Engineering(Front End). Writing code is fast becoming my favourite thing, after coffee. When I'm not writing code, I am baking. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://javascript.info/" target="_blank" title="Javascript info">Javascript Info</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="Second Resource">Dev.to</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">StackOverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ugo's card END ________ -->
<!-- Pankaj Sharma Card -->
<div class="card">
<p class="name">Pankaj Sharma</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Pankaj_sharma43" target="_blank">@Pankaj_sharma43</a>
</p>
<p class="about">I am a Fullstack developer | JS, NodeJS, React, MongoDB, SQL | Code is Fun | Experience in building real-time web apps.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://javascript.info/" target="_blank" title="Javascript info">Javascript Info</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="Second Resource">Dev.to</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">StackOverflow</a>
</li>
</ul>
</div>
</div>
<!-- Pankaj Sharma Card End -->
<!-- ________ Vraj's CARD START ________ -->
<div class="card">
<p class="name">VRAJ PATEL</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/VrajPat16244254" target="_blank">@VrajPat16244254</a>
</p>
<p class="about">I'm currently pursuing B.tech in computer and I am in 3rd year of my college learning some cool stuff like web development,machine learning etc. I am here to contribute 1st open source project and in search of internships</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.programiz.com/" target="_blank" title="Second Resource">programiz</a>
</li>
<li>
<a href="https://jschallenger.com/" target="_blank" title="Third resource">jschallenger</a>
</li>
</ul>
</div>
</div>
<!-- ________Vraj's CARD END ________ -->
<!-- ________ Cesar's Contributor card START ________ -->
<div class="card">
<p class="name">Cesar Cuadro</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/cesar-cuadro-5699291ba/" target="_blank">Cesar Cuadro</a>
</p>
<p class="about">Hello World! I am bootcamp student from Learn Acadmey that uses a full stack development course. I plan to contribute more to open source along my learning journey.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">
Free Code Camp
</a>
</li>
<li>
<a href="https://www.codeplatoon.org/intro-2-coding/" target="_blank" title="Code Platoon">
Code Platoon
</a>
</li>
<li>
<a href="https://www.learnacademy.org/" target="_blank" title="Learn Academy">
Learn Academy
</a>
</li>
</ul>
</div>
</div>
<!-- ________Cesar's Contributor card END ________ -->
<!-- Shreyash's CARD START -->
<div class="card">
<p class="name">Shreyash</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ShreyashPingle" target="_blank">@ShreyashPIngle</a>
</p>
<p class="about">
I'm 19 y/o majoring in Computer Science from India. I'm learning MEVN Stack and JAVA + DSA.
My fav artist is Travis Scott.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://goodfirstissue.dev/" target="_blank">
goodfirstissue
</a>
</li>
<li>
<a
href="https://deepsource.io/discover"
target="_blank"
>
DeepSource
</a>
</li>
<li>
<a
href="https://www.gitpod.io/"
target="_blank"
>
Gitpod
</a>
</li>
</ul>
</div>
</div>
<!-- Shreyash's CARD END -->
<!--________________Indu's Card START_____________-->
<div class="card">
<p class="name">Indu Kushwaha</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/goforindu" target="_blank">@goforindu</a>
</p>
<p class="about">I am a frontend developer. I have experience in html5 css3 bootstrap4 javascript reactjs . I just want to restart my career . so I just learning to contribute to open-source projects. Hope this will help me and others also. so that I can share my learnings and skill with them. </p>
<div class="resources">
<p>3 Useful Dev Resources in my web development Journey</p>
<ul>
<li>
<a href="https://www.w3schools.com" target="_blank" title="First Resource">w3schools</a>
</li>
<li>
<a href="https://www.udemy.com/course/react-the-complete-guide-incl-redux/" target="_blank" title="Second Resource">React course by maximilian Schwarzmuller </a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">stackoverflow</a>
</li>
</ul>
</div>
</div>
<!--__________Indu's Card END_______________-->
<!-- ________ Ze Xin's card START ________ -->
<div class="card">
<p class="name">Ze Xin</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Zex31084119" target="_blank">@Zex31084119</a>
</p>
<p class="about"> Just a software engineering undergraduate and Gunpla enthusiast. Best wishes to all developers and have an awesome day. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools/">W3 Schools</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="GeeksforGeeks">GeeksforGeeks</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow">Stack Overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________Ze Xin's card END ________ -->
<!-- ________ Oluwaseyi Akinbile's card START ________ -->
<div class="card">
<p class="name">Oluwaseyi Akinbile</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/Akinbiletony" target="_blank">@Akinbiletony</a>
</p>
<p class="about">I'm an aspiring Fullstack Web Developer, <br>
When I'm not writing code I'm either reading a book, writing heart break or love songs, <br>
watching a movie, or thinking about what to eat, then thinking about making it,<br>
then feeling tired and then resorting to eat whatever is available </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://scrimba.com/learn/learnjavascript" target="_blank" title="Second Resource">Scrimba's 7 hour interactive course on Javascript. This ones lit</a>
</li>
<li>
<a href="https://Google.com/" target="_blank" title="Third resource">Google</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- ________ Kuon Yaw's card START ________ -->
<div class="card">
<p class="name">Kuon Yaw</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/YawsSky" target="_blank">@YawsSky</a>
</p>
<p class="about">Best wishes to y'all. Wish open-source projects never die. Hope more pc games can be run on apple silicon Mac computers without all the hassles :P</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools/">W3 Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">Mozilla Developer Network</a>
</li>
<li>
<a href="https://www.makeuseof.com/category/programming/" target="_blank" title="makeuseof.com">MakeUseOf</a>
</li>
</ul>
</div>
</div>
<!-- ________ Kuon Yaw's card END ________ -->
<!-- Cian Gallagher's card START -->
<div class="card">
<p class="name">Cian Gallagher</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/CianGallagher_" target="_blank">@CianGallagher_</a>
</p>
<p class="about">Hello there, I'm a Finance professional who is career pivoting into the Tech field. I've always been interested in software and technology, also I'm a learning addict!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/python/default.asp" target="_blank" title="First Resource">W3School</a>
</li>
<li>
<a href="https://www.theodinproject.com/dashboard" target="_blank" title="Second Resource">The Odin Project</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/" target="_blank" title="Third resource">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- Cian Gallagher's card END -->
<!-- mohammedarbaz119's card START -->
<div class="card">
<p class="name">Mohammed Arbazuddin Qureshi</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/mda835856" target="_blank">@mohammed arbaz</a>
</p>
<p class="about">Student of CS,Currently learning web developement and practising DSA</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Frecodecamp">Resource 1</a>
</li>
<li>
<a href="https://www.google.com" target="_blank" title="Google">Resource 2</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="YouTube">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- mohammedarbaz119's card Ends -->
<!-- Baraa Mansor's Card START -->
<div class="card">
<p class="name">Baraa Mansor</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/BoOoMeD2" target="_blank">@BoOoMeD2</a>
</p>
<p class="about">Hi, I am an aspiring Web developer who is working to learn everything, and I am hoping to have a full stack ready to work before this year ends</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="http://www.uigoodies.com/" target="_blank" title="First Resource">UI goodies</a>
</li>
<li>
<a href="https://dev.to/rahxuls/free-ultimate-resources-for-front-end-development-in-2021-giveaway-3838" target="_blank" title="Second Resource">General useful resources</a>
</li>
<li>
<a href="https://undraw.co/illustrations" target="_blank" title="Third resource">Undraw illustrations</a>
</li>
</ul>
</div>
</div>
<!-- Baraa Mansor's Card END -->
<!-- ________ Shubhdeep's Card START ________ -->
<div class="card">
<p class="name">Shubhdeep Singh</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/rajput_shubhum" target="_blank">@rajput_shubhum</a>
</p>
<p class="about">I am a proud computer engineer I know java, java script, solidity,html,css. i am going to use my skills to contribute to open source. 😄</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Best place for begineers.">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="You will learn everything step by step.">W3Schools</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="This is the best friend of developers.">StackOverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shubhdeep's Card END ________ -->
<!-- ________ Vansitha's card START ________ -->
<div class="card">
<p class="name">Vansitha</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/vansitha12" target="_blank">@vansitha12</a>
</p>
<p class="about">
I am a student programmer and currently focused on putting what I've learned into good use by contributing
to open source projects. 😄
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org/"
target="_blank"
title="Best place to start your coding journey."
>
FreeCodeCamp
</a>
</li>
<li>
<a
href="https://www.w3schools.com/"
target="_blank"
title="Has good guides and examples on how to get things done for the technology your're using."
>
W3Schools
</a>
</li>
<li>
<a
href="https://stackoverflow.com/"
target="_blank"
title="Place where all programers goto when they encouter nasty bugs."
>
StackOverflow
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Vansitha's card END ________ -->
<!-- ________ Anurag's card START ________ -->
<div class="card">
<p class="name">Anurag Tiwari</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://linkedin.com/in/https://www.linkedin.com/in/anurag-tiwari-4192b8206/" target="_blank">
Your handle
</a>
</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Danuragtiwari" 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="https://www.freecodecamp.org/" target="_blank" title="First Resource">Freecodecamp</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Second Resource">MDN Web docs</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="Third resource">Github</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Matheus Trilha Koch</p>
<p class="contact">
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/matheus-koch-712806162/" target="_blank">Matheus T. Koch</a>
</p>
<p class="about">
Hi, my name is Matheus! I started studying web development in 2022 and i plan on being a Front-End
developer. Best of luck to all of us on this journey!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org/learn/"
target="_blank"
title="This a link to a free website that taught me almost everything i know today."
>
FreeCodeCamp Site
</a>
</li>
<li>
<a
href="https://www.youtube.com/c/DorianDevelops"
target="_blank"
title="This is a awesome content creator for beginners in programming."
>
Dorian Develops channel
</a>
</li>
<li>
<a
href="https://stackoverflow.com/"
target="_blank"
title="This a website that contains almost all of the questions that other people had when programming, if you dont know yet it's worth checking out!"
>
StackOverflow site
</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- ________ Asad's card START ________ -->
<div class="card">
<p class="name">Mohammed Asadullah Sayeed</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/asdsydd" target="_blank">asdsydd</a>
</p>
<p class="about">CS Student learning open source and development. Minimalist :)</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.commclassroom.org/" target="_blank" title="First Resource">Community Classroom</a>
</li>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Second Resource">Roadmap.sh</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Third resource">Odin Project</a>
</li>
</ul>
</div>
</div>
<!-- ________Asad's card END ________ -->
<!-- ________ *Trilha* Contributor card START ________ -->
<div class="card">
<p class="name">Matheus Trilha Koch</p>
<p class="contact">
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/matheus-koch-712806162/" target="_blank">Matheus T. Koch</a>
</p>
<p class="about">Hi, my name is Matheus! I started studying web development in 2022 and i plan on being a Front-End developer. Best of luck to all of us on this journey!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/learn/" target="_blank" title="This a link to a free website that taught me almost everything i know today.">FreeCodeCamp Site</a>
</li>
<li>
<a href="https://www.youtube.com/c/DorianDevelops" target="_blank" title="This is a awesome content creator for beginners in programming.">Dorian Develops channel</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="This a website that contains almost all of the questions that other people had when programming, if you dont know yet it's worth checking out!">StackOverflow site</a>
</li>
</ul>
</div>
</div>
<!-- ________*Trilha* Contributor card END ________ -->
<!-- ________ spark07's card START ________ -->
<div class="card">
<p class="name">spark07</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/sparkO7" target="_blank">sparkO7</a>
</p>
<p class="about">Aspiring Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">freeCodeCamp</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Second Resource">MDN</a>
</li>
<li>
<a href="https://medium.com/" target="_blank" title="Third resource">Medium</a>
</li>
</ul>
</div>
</div>
<!-- ________ spark07's card END ________ -->
<!-- ________ Tebogo's card START ________ -->
<div class="card">
<p class="name">Tebogo Ndaba</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/tebogo-ndaba-315188118/" target="_blank">Tebogo Ndaba</a>
</p>
<p class="about">Fullstack Developer, fanatically obsessed with code.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">
W3Schools Online Web Tutorials
</a>
</li>
<li>
<a href="https://www.codegrepper.com/" target="_blank" title="Code Grepper">
Grepper | The Q&A System for the Coder Community
</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="GitHub">GitHub</a>
</li>
</ul>
</div>
</div>
<!-- ________ Tebogo's card END ________ -->
<!-- Abdullah's card START -->
<div class="card">
<p class="name">Abdullah Bin Rashid</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="www.linkedin.com/in/abdullah-rashid-42411822b" target="_blank">Abdullah Bin Rashid</a>
</p>
<p class="about">Junior Flutter Developer Thriving to become React&BlockChain Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="https://github.com/abdullah19191/AI-Covid-19-GetX" target="_blank" title="Second Resource">
Resource 2
</a>
</li>
<li>
<a
href="https://github.com/abdullah19191/Desktop-Personal-Assistant"
target="_blank"
title="Third resource"
>
Resource 3
</a>
</li>
</ul>
</div>
</div>
<!-- Abdullah Card Ends -->
<!-- ________ Nehemiah's card START ________ -->
<div class="card">
<p class="name">Nehemiah Dias</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/nehemiah-dias-2504a61a1/" target="_blank">Nehemiah Dias</a>
</p>
<p class="about">Someone obsessed with Software and Web Applications since I was young :)</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="https://www.freecodecamp.org/learn" title="First Resource">freeCodeCamp</a>
</li>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Second Resource">CodeCademy</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Third resource">YouTube</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nehemiah's card END ________ -->
<!-- ________ Shivam's card START ________ -->
<div class="card">
<p class="name">Shivam Verma</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/Stoppieboyy" target="_blank">@Stoppieboyy</a>
</p>
<p class="about">Learning version control system</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://theodinproject.com" target="_blank" title="First Resource">The Odin Project</a>
</li>
<li>
<a href="https://w3schools.com" target="_blank" title="Second Resource">W3Schools</a>
</li>
<li>
<a href="https://freecodecamp.org" target="_blank" title="Third resource">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shivam's card END ________ -->
<!-- ________ fiqgant's card START ________ -->
<div class="card">
<p class="name">Taufiqurrahman</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/fiqgant" target="_blank">@fiqgant</a>
</p>
<p class="about">I am a geek who is passionate about Machine Learning and Artificial Intelligence</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://machinelearningmastery.com/" target="_blank" title="First Resource">
Machine Learning Mastery
</a>
</li>
<li>
<a href="https://www.analyticsvidhya.com/" target="_blank" title="Second Resource">Analytics Vidhya</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="Third resource">Dev.to</a>
</li>
</ul>
</div>
</div>
<!-- ________fiqgant's card END ________ -->
<!-- ________AlCo2 card START ________ -->
<div class="card">
<p class="name">Abdou Lahboub</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/AlCo2" target="_blank">AlCo2</a>
</p>
<p class="about">just a 19years old boy enjoy coding and want to learn more.</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://stackoverflow.com/" target="_blank" title="Second Resource">stack overflow</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">w3schools</a>
</li>
</ul>
</div>
</div>
<!-- ________AlCo2 card END ________ -->
<!-- ________ gibaMute's card START ________ -->
<div class="card">
<p class="name">gibaMute</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/gibaMute" target="_blank">@gibaMute</a>
</p>
<p class="about">I'm floating across everything</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com" target="_blank" title="First Resource">
W3Schools Online Web Tutorials
</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org" target="_blank" title="Second Resource">
GeeksforGeeks | A computer science portal for geeks
</a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title="Third resource">
Stack Overflow - Where Developers Learn, Share, & Build Careers
</a>
</li>
</ul>
</div>
</div>
<!-- ________gibaMute's card END ________ -->
<!-- ________ Sachin's card START ________ -->
<div class="card">
<p class="name">Sachin Sharma</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/sachin_sh18" target="_blank">@sachin_sh18</a>
</p>
<p class="about">Trying to learn and enjoy</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://cs50.harvard.edu/x/2022/" target="_blank" title="First Resource">CS50 by Harvard</a>
</li>
<li>
<a href="https://medium.com/@sachin.sh926" target="_blank" title="Second Resource">Medium Blog</a>
</li>
<li>
<a href="https://www.wqu.edu/" target="_blank" title="Third resource">WQU Data Science</a>
</li>
</ul>
</div>
</div>
<!-- ________Sachin's card END ________ -->
<!-- ________ Sai Kumar's card START ________ -->
<div class="card">
<p class="name">Sai Kumar</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/hellosai-github" target="_blank">@hellosai-github</a>
</p>
<p class="about">Trying to make a change</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://cs50.harvard.edu/x/2022/" target="_blank" title="First Resource">CS50 by Harvard</a>
</li>
<li>
<a href="https://www.w3schools.com" target="_blank" title="Third resource">w3schools</a>
</li>
<li>
<a href="https://www.freecodecamp.com" target="_blank" title="First Resource">Freecodecamp</a>
</li>
</ul>
</div>
</div>
<!-- ________Sachin's card END ________ -->
<!-- ________ somesh's card START ________ -->
<div class="card">
<p class="name">Somesh Bhandare</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/someshb06" target="_blank">@someshb06</a>
</p>
<p class="about">Aspiring Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://dev.to/" target="_blank" title="Second Resource">Dev.to</a>
</li>
<li>
<a href="https://freecodecamp.org/" target="_blank" title="Third resource">Freecodecamp</a>
</li>
<li>
<a href="https://medium.com" target="_blank" title="First Resource">Medium</a>
</li>
</ul>
</div>
</div>
<!-- ________ somesh's card END ________ -->
<!-- ________ Neil Gebhard's START ________ -->
<div class="card">
<p class="name">Neil Gebhard</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/neil_gebhard" target="_blank">@neil_gebhard</a>
</p>
<p class="about">I'm a web developer from the tiny island of Saipan.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://egghead.io/" target="_blank" title="egghead">egghead</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Udemy">Udemy</a>
</li>
<li>
<a href="https://javascript.info/" target="_blank" title="javascript.info">javascript.info</a>
</li>
</ul>
</div>
</div>
<!-- ________ Neil Gebhard's END ________ -->
<!-- ________ Robcior's card START ________ -->
<div class="card">
<p class="name">Robcior</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/rrobciorr" target="_blank">rrobciorr</a>
</p>
<p class="about">
Now I am an electrician but I want to be a programmer so i need to learn fast . I think that programming is
very interesting. I love the idea that you can travel anywhere and you have your job in laptop. You dont
have to back to your city after holiday, you can stay anywhere and work at any hour, bulding interesting
things. It,s make me feel some kind of freedom ...
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.codingame.com/" target="_blank" title="Learn by playing">Codingame</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Find tutorials ">Youtube</a>
</li>
<li>
<a href="https://www.google.com/" target="_blank" title="Troubleshooting">Google</a>
</li>
</ul>
</div>
</div>
<!-- ________ Robcior's card END ________ -->
<!-- ________ Rodrick's card START ________ -->
<div class="card">
<p class="name">Rodrick C.</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Rodrick-alt" target="_blank">@Rodrick-alt</a>
</p>
<p class="about">
Aspiring Web Developer | Hobby Digital Artist | Chronic Overthinker. Moving forward one heavy step at a