forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
13155 lines (12742 loc) · 498 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" />
<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="double-column">
<div class="left-column">
<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="right-column">
<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="grid">
<!-- ============================================================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- make sure there is one line of space above and below your card -->
<!-- ________ *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="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 -->
<!-- ________ *TenTraicion* Contributor card START ________ -->
<div class="card">
<p class="name">TenTraicion</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/TenTraicion" target="_blank">@TenTraicion</a>
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/TenTraicion" target="_blank">@TenTraicion</a>
<i class="fab fa-discord"></i>
<a href="https://discord.com/invite/fxhmHJXvzM" target="_blank">TenTraicion#6565</a>
</p>
<p class="about">
I'm a student and new to this programming world. Recently set my goal to become a Full Stack Web Developer.
I am eager to join any community which is friendly enough to accept me as one of them.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="This project is designed to fill in the gap for people who are trying to hack it on their own but still want a high quality education.">
The Odin Project
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="a nonprofit community that helps you learn to code by building projects.">
Free Code Camp
</a>
</li>
<li>
<a href="https://codepen.io/" target="_blank" title="CodePen is a social development environment">
CodePen
</a>
</li>
</ul>
</div>
</div>
<!-- ________*TenTraicion* Contributor card END ________ -->
<!-- ________ Aaryaman's Contributor card START ________ -->
<div class="card">
<p class="name">Aaryaman Shah</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/AaryamanShah_1" target="_blank">@AaryamanShah_1</a>
</p>
<p class="about">Hi Everyone👋. I am Aaryaman Shah, Currently In Grade 10th and based in India. Am really Passionate about Coding and contributing in Open Source Communities. I also have a slight bend towards Stock Market.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.github.com/" target="_blank" title="Github.com">
Github, I think I dont need to mention anything :)
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/" target="_blank" title="freecodecamp.org">
Freecodecamp, a very good site to learn coding at home.
</a>
</li>
<li>
<a href="https://www.javatpoint.com/" target="_blank" title="javatpoint.com">
javatpoint, they have amazing tutorials.
</a>
</li>
</ul>
</div>
</div>
<!-- ________Aaryaman's Contributor card END ________ -->
<!-- ________ David's Contributor card START ________ -->
<div class="card">
<p class="name">David</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/hi-imdave/" target="_blank">hi-ImDave</a>
</p>
<p class="about">I'm a software engineer based out of the Pacific Northwest. I enjoy playing open-world survival games in my free time.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN">
The holy grail of resources
</a>
</li>
<li>
<a href="https://javascript.info/" target="_blank" title="JS Info">
Good site for intro to Full Stack JS
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">
Good site to ask questions or browse previously answered questions
</a>
</li>
</ul>
</div>
</div>
<!-- ________David's Contributor card END ________ -->
<!-- _______Shekhar Dangi's Contribution START________ -->
<div class="card">
<p class="name">Shekhar Dangi</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/shekhar__dangi" target="_blank">@shekhar__dangi</a>
</p>
<p class="about">Hi everyone, I am a student passionate about coding 💻 and learning new things.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://learning.edx.org/course/course-v1:HarvardX+CS50T+Technology/home" target="_blank" title="First Resource">
CS50 Harvard
</a>
</li>
<li>
<a href="https://learning.edx.org/course/course-v1:NYUx+FCS.NET.1+1T2021/home" target="_blank" title="Second Resource">
Introduction to Networking
</a>
</li>
<li>
<a href="https://material-ui.com/" target="_blank" title="Third Resource">
Material UI
</a>
</li>
</ul>
</div>
</div>
<!-- _______Shekhar Dangi's Contribution END________ -->
<!-- ________ Eric Cheong's Contributor card START ________ -->
<div class="card">
<p class="name">Eric Cheong Kai Kit</p>
<p class="contact">
<i class="fab fa-github-alt"></i>
<a href="https://www.ericcheongkaikit.com/" target="_blank">25Ericcheong</a>
</p>
<p class="about">I like solving problems and am interested in meeting like-minded developers. I am currently looking for open source projects to contribute so that I can expand my knowledge and gain experience for fun! Have a good day!</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://github.com/leonardomso/33-js-concepts" target="_blank" title="Second Resource">
JavaScript concepts all developers should know
</a>
</li>
<li>
<a href="https://reactjs.org/docs/getting-started.html" target="_blank" title="Third resource">
React Docs
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Eric Cheong's Contributor card END ________ -->
<!-- ________ Andrew Shneider card START ________ -->
<div class="card">
<p class="name">Andrew Shneider</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Shneideris" target="_blank">@shneideris</a>
</p>
<p class="about">Learning to use GitHub for the first time! Hello World!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stepik.org/" target="_blank" title="Stepik">
A lot of free courses with tests
</a>
</li>
<li>
<a href="https://roadmap.sh" target="_blank" title="roadmap.sh">
Roadmaps to learn anything
</a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title="Stackoverflow">
Here you can find answers to any stupid question you have
</a>
</li>
</ul>
</div>
</div>
<!-- ________Andrew Shneider card END ________ -->
<!-- ________ Sourabh's Contributor card START ________ -->
<div class="card">
<p class="name">Sourabh Haldar</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">@sourabhh21</a>
</p>
<p class="about">I am a software developer. I am a beginner to open source and looking forward to become a pro in open source contributions. I like to play pc games and very fond of sports.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Freecodecamp">
FreeCodeCamp
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools">
W3Schools
</a>
</li>
<li>
<a href="https://htmldog.com/" target="_blank" title="htmldog">
HTMLDog
</a>
</li>
</ul>
</div>
</div>
<!-- ________Sourabh's Contributor card END ________ -->
<!-- ________ Sanchit's Contributor card START ________ -->
<div class="card">
<p class="name">Sanchit Arora</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">@sanchitarorra</a>
</p>
<p class="about">Hi Everyone👋. I'm a Software Engineer based out of India and passionate about tech and coding in general. I like contributing to open source projects. Enjoy watching Movies and working out. Also, a big MMA fan🥋</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/learn/" target="_blank" title="First Resource">
FreeCodeCamp
</a>
</li>
<li>
<a href="https://www.youtube.com/c/BroCodez" target="_blank" title="Second Resource">
BroCode
</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Third resource">
Odin Project
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sanchit's Contributor card END ________ -->
<!-- ________ Juan's card START ________ -->
<div class="card">
<p class="name">Juan Nino</p>
<p class="contact">
<i class="fab fa-github-alt"></i>
<a href="https://github.com/nino-juan" target="_blank">nino-juan</a>
</p>
<p class="about">Long time hardware and software developer but recently started to contribute to open source.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://fireship.io/" target="_blank" title="Fireship io">
Fireship has short but sweet explanation videos.
</a>
</li>
<li>
<a href="https://www.raspberrypi.com/documentation/microcontrollers/raspberry-pi-pico.html" target="_blank" title="Technical details of the Raspberry pi pico">
The technical details of raspberry pi pico are good to keep handy when developing hardware.
</a>
</li>
<li>
<a href="https://www.crackingthecodinginterview.com/" target="_blank" title="Cracking the coding interview">
Nice book about coding interview to start your journey with the end in mind.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Juan's Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Stu MacLeod</p>
<p class="contact">
<i class="fab fa-facebook"></i>
<a href="https://www.facebook.com/stu.macleod.5" target="_blank">Stu MacLeod</a>
</p>
<p class="about">I love hiking, hanging with friends, and making music.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/paths/foundations/courses/foundations" target="_blank" title="This is a popular resource.">
The Odin Project
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/" target="_blank" title="This is the resource I personally follow.">
Free Code Camp
</a>
</li>
<li>
<a href="https://jsbeginners.com/" target="_blank" title="I've heard this is a good practice site for JavaScript.">
JS Beginners
</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- ________ Yuval's Contributor card START ________ -->
<div class="card">
<p class="name">Yuval Sharma</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/Yuval_shrma1207" target="_blank">@Yuval_shrma1207</a>
</p>
<p class="about">I am a Engineering student currently learning DSA in Java </p>
<p class="about">I am also keen to learn web development </p>
<p class="about">Looking forward to contribute more in these projects</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">
W3School
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design/" target="_blank" title="Second Resource">
FreeCodeCamp
</a>
</li>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Third resource">
CodeAcademy
</a>
</li>
</ul>
</div>
</div>
<!-- ________Yuval's Contributor card END ________ -->
<!-- ________ Vardaan's Contributor card START ________ -->
<div class="card">
<p class="name">Vardaan Aggarwal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/VardaanAgg" target="_blank">@VardaanAgg</a>
</p>
<p class="about">Hey Everyone, I am 18 years old Computer Science Student .</p>
<p class="about">I am always looking forward to learn something new to upskill
myself and can add some value in this amazing open source community . </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">
W3School
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design/" target="_blank" title="Second Resource">
FreeCodeCamp
</a>
</li>
<li>
<a href="https://www.github.com/" target="_blank" title="Third resource">
GitHub
</a>
</li>
</ul>
</div>
</div>
<!-- ________Vardaan's Contributor card END ________ -->
<!-- ________ Uday's Contributor card START ________ -->
<div class="card">
<p class="name">Uday Mehtani</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/uday03meh" target="_blank">@uday03meh</a>
</p>
<p class="about">Hi! I am a 19 year old engineering undergrad from India.</p>
<p class="about">Currently interested in learning web development and Data Structures and Algorithms.</p>
<p class="class">Looking forward to contributing to more open source projects in future. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/course/the-complete-web-development-bootcamp/" target="_blank" title="Complete Web Development Bootcamp for absolute beginners(PAID).">
Angela Yu Bootcamp
</a>
</li>
<li>
<a href="https://www.w3schools.com/whatis/" target="_blank" title="Good resource if you prefer learning stuff by reading over watching tutorials.">
W3Schools
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design/" target="_blank" title="It helps you learn Web Development by building stuff along the jourey.">
FreeCodeCamp
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Uday's Contributor card END ________ -->
<!-- ________ *Mbedobe's* Contributor card START ________ -->
<div class="card">
<p class="name">Mbedobe</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">@KDMFLASH</a>
</p>
<p class="about">I am a self taught software developer. Currently learning to acquire some backend skills. I love to play volleyball.
Always looking for opportunities to learn something new.
</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://www.udemy.com/" target="_blank" title="Second Resource">
Udemy
</a>
</li>
<li>
<a href="https://www.github.com/" target="_blank" title="Third resource">
GitHub
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Mbedobe's* Contributor card END ________ -->
<!-- ________ Kprime21 Contributor card START ________ -->
<div class="card">
<p class="name">Kprime21</p>
<p class="contact">
<i class="fab fa-github-alt"></i>
<a href="https://github.com/kprime21" target="_blank">kprime21</a>
</p>
<p class="about">Sup! I am Kprime21. I enjoy coding and want to contribute to the open source world.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://cssgradient.io/" target="_blank" title="CSS Gradient Generator">
Generate gradient CSS
</a>
</li>
<li>
<a href="https://regex101.com/" target="_blank" title="RegEx tester">
Website to test your RegEx
</a>
</li>
<li>
<a href="https://svgexport.io/" target="_blank" title="SVG Downloader">
Download SVG's from web pages
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Kprime21 Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Nicholas Davidson</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/nicholasdavidson01/" target="_blank"> @nicholasdavidson01</a>
</p>
<p class="about">I am a Software Engineer passionate about the ML/AI space. This is my first contribution to Open Source--and looking forward to more! Message me on LinkedIn to get in contact.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://threejs-journey.com/" target="_blank" title="ThreeJS course by Bruno Simon">
ThreeJS Journey
</a>
</li>
<li>
<a href="https://www.theodinproject.com/lessons/foundations-choose-your-path-forward" target="_blank" title="Free Front-End webdev tools course">
The Odin Project
</a>
</li>
<li>
<a href="https://fullstackopen.com/en/" target="_blank" title=" Fre Full Stack course">
Full Stack Open
</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- ________ Yoon Lee Contributor card START ________ -->
<div class="card">
<p class="name">Yoonjung Lee</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/yjcodes" target="_blank">@yjcodes</a>
</p>
<p class="about">Hello! This is my first contribution as a beginner! Looking forward to learning more about web development and contributing to more open source projects. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN">
MDN
</a>
</li>
<li>
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/" target="_blank" title="CSS Tricks">
CSS Tricks
</a>
</li>
<li>
<a href="https://javascript.info/" target="_blank" title="JavaScript.Info">
JavaScript.Info
</a>
</li>
</ul>
</div>
</div>
<!-- ________Yoon Lee Contributor card END ________ -->
<!-- ________ Anu's card START ________ -->
<div class="card">
<p class="name">Anu</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/anucodes" target="_blank">@anucodes</a>
<i class="fab fa-github"></i>
<a href="https://github.com/anu-codes" target="_blank">@anu-codes</a>
</p>
<p class="about">I am a college student, currently interested in web development, cloud, open source and blockchain! </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://cssgridgarden.com/" target="_blank" title="Game to learn CSS grids">
Grid Garden
</a>
</li>
<li>
<a href="https://flexboxfroggy.com/" target="_blank" title="Game to learn CSS flexbox">
Flexbox froggy
</a>
</li>
<li>
<a href="https://fullstackopen.com/" target="_blank" title="Full Stack course by University of Helsinki">
Full Stack Open: course
</a>
</li>
</ul>
</div>
</div>
<!-- ________Anu's card END ________ -->
<!-- ________ *John's card START ________ -->
<div class="card">
<p class="name">John Figueroa</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/John_Figueroa" target="_blank">@John_Figueroa</a>
</p>
<p class="about">Full stack developer begginer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="https://developer.mozilla.org/es/docs/Web/JavaScript" title="First Resource">
Javascipt
</a>
</li>
<li>
<a href="#" target="https://nodejs.org/en/" title="Second Resource">
NodeJS
</a>
</li>
<li>
<a href="#" target="https://reactjs.org/" title="Third resource">
ReactJS
</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- ________ MrPancakes39 card START ________ -->
<div class="card">
<p class="name">Salman Hasan</p>
<p class="contact">
<i class="fab fa-github-alt"></i>
<a href="https://github.com/MrPancakes39" target="_blank">MrPancakes39</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/salman-hasan-00b1b4212/" target="_blank">Salman Hasan</a>
</p>
<p class="about">Hello there I'm Salman! but you can call me Sal your new Pal! I like programming, drawing, mathematics, and my hobby is playing Capture The Flag Competetions (CTFs)... I'm a self learner too. Check out my Github Page for my projects!! ❤️</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/TheCodingTrain" target="_blank" title="First Resource">
The Coding Train
</a>
</li>
<li>
<a href="https://www.youtube.com/kevinpowell" target="_blank" title="Second Resource">
Kevin Powell
</a>
</li>
<li>
<a href="https://www.regextester.com" target="_blank" title="Third resource">
RegEx Tester
</a>
</li>
</ul>
</div>
</div>
<!-- ________ MrPancakes39 card END ________ -->
<!-- ________ John's card START ________ -->
<div class="card">
<p class="name">John Figueroa</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/John_Figueroa" target="_blank">@John_Figueroa</a>
</p>
<p class="about">Full stack developer begginer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="https://developer.mozilla.org/es/docs/Web/JavaScript" title="First Resource">
Javascipt
</a>
</li>
<li>
<a href="#" target="https://nodejs.org/en/" title="Second Resource">
NodeJS
</a>
</li>
<li>
<a href="#" target="https://reactjs.org/" title="Third resource">
ReactJS
</a>
</li>
</ul>
</div>
</div>
<!-- ________ John's card END ________ -->
<!-- ________ Shruti's card START ________ -->
<div class="card">
<p class="name">Shruti</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/shrutipatel2312" target="_blank">@shrutipatel2312</a>
</p>
<p class="about"></p>
<div class="resources">
<p>Hello! I'm Web Developer, waiting for my potential to bloom. </p>
<ul>
<li>
<a href="https://www.w3schools.com/whatis/" target="_blank" title="Best resource with practice snippets">
W3C School
</a>
</li>
<li>
<a href="https://learning.edureka.co/my-classroom/full-stack-web-development/coursecontent?courseId=1113&fromMasterCourse=0" target="_blank" title="Best course with best mentor">
Full Stack Web Dev internship
</a>
</li>
<li>
<a href="https://capitalone.udemy.com/course/the-complete-web-development-bootcamp/learn/lecture/12638830#overview" target="_blank" title="Well structured with all resources">
The Complete 2022 Web Development
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shruti's card END ________ -->
<!-- ________ Ankit Gupta card START ________ -->
<div class="card">
<p class="name">Ankit Gupta</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/__Ankit__Gupta" target="_blank">@__Ankit__Gupta</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ankit-gupta0/" target="_blank">Ankit Gupta</a>
</p>
<p class="about">Hello, I am an undergraduate student currently sharping my development and learning DSA. Let's connect on LinkedIn. 🤝</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/CodeWithHarry" target="_blank" title="First Resource">
Code With Harry
</a>
</li>
<li>
<a href="https://www.youtube.com/c/TraversyMedia" target="_blank" title="Second Resource">
Traversy Media
</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third Resource">
GeeksForGeeks
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ankit Gupta card END ________ -->
<!-- ________ Basil Bosnjak card START ________ -->
<div class="card">
<p class="name">Basil Bosnjak</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/BasilBosnjak" target="_blank">@BasilBosnjak</a>
</p>
<p class="about">Hello there. I love QA and Web Development.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3schools">
Everything you need for your first steps.
</a>
</li>
<li>
<a href="https://www.codewars.com/" target="_blank" title="Code Wars">
Great for practical learning.
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow">
If you get stuck, the community will always help you.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Basil Bosnjak card END ________ -->
<!-- ________ Emily_Lubkert Contributor card START ________ -->
<div class="card">
<p class="name">Emily Lubkert</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/emilylub" target="_blank">@emilylub</a>
</p>
<p class="about">I am an elementary educator turned full stack developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://missing.csail.mit.edu/2020/course-shell/" target="_blank" title="First Resource">
The Missing Semester of Your CS Education
</a>
</li>
<li>
<a href="https://24ways.org/2012/how-to-make-your-site-look-half-decent/" target="_blank" title="Second Resource">
How to Make Your Site Look Half-Decent in Half an Hour
</a>
</li>
<li>
<a href="https://github.com/lydiahallie/javascript-questions#readme" target="_blank" title="Third resource">
JavaScript Questions
</a>
</li>
</ul>
</div>
</div>
<!-- ________Emily_Lubkert Contributor card END ________ -->
<!-- ________ Josh Contributor card START ________ -->
<div class="card">
<p class="name">Josh Pattison</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/_pattisoj" target="_blank">@_pattisoj</a>
</p>
<p class="about">Hi! I am currently studying at the SchoolOfCode boot camp!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="codewars.com" target="_blank" title="First Resource">
Code Wars! Great for some practice.
</a>
</li>
<li>
<a href="https://github.com/getify/You-Dont-Know-JS" target="_blank" title="Second Resource">
Free JavaScript book! 'You don't know JS.'
</a>
</li>
<li>
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/" target="_blank" title="Third resource">
CSS tips - A guide to Flexbox.
</a>
</li>
</ul>
</div>
</div>
<!-- ________Josh Contributor card END ________ -->
<!-- ________ *Scotts card START ________ -->
<div class="card">
<p class="name">Scotty</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="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="https://www.youtube.com/watch?v=J6rVaFzOEP8" 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 Scotts card END ________ -->
<!-- ________ Valeriias Contributor card START ________ -->
<div class="card">
<p class="name">Valeriia Kurtova</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="www.linkedin.com" target="_blank"></a>
</p>
<p class="about">I am trying to learn automation qa</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.google.com.ua/" target="_blank" title="This one will help you">
Google
</a>
</li>
<li>
<a href="https://www.google.com.ua/" target="_blank" title="Second Resource">
Google
</a>
</li>
<li>
<a href="https://www.google.com.ua/" target="_blank" title="Third resource">
Google
</a>
</li>
</ul>
</div>
</div>
<!-- ________Valeriias Contributor card END ________ -->
<!-- ________ Twillio Game card START ________ -->