forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
8153 lines (7914 loc) · 311 KB
/
index.html
File metadata and controls
8153 lines (7914 loc) · 311 KB
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 -->
<!-- make sure there is one line of space above and below your card -->
<!-- ========== ⬇⬇ Paste YOUR CARD directly BELOW this line ⬇⬇ ========== -->
<!-- ________ *Cesar959 card START ________ -->
<div class="card">
<p class="name">Cesar dos Santos de Almeida</p>
<p class="contact">
<a href="https://github.com/Cesar959" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/cesarsantosalmeida/" target="_blank"><i class="fab fa-linkedin"></i></a>
</p>
<p class="about">Sou programador júnior, Apaixonado por programação web, formado no curso técnico em informatica do Senac de taubaté.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://readme.so/" target="_blank" title="Readme.so">
Readme.so
</a>
</li>
<li>
<a href="https://www.frontendmentor.io/challenges" target="_blank" title="Frontend Mentor">
Frontend Mentor
</a>
</li>
<li>
<a href="https://www.dailyui.co/" target="_blank" title="Daily UI">
Daily UI
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Cesar959 card END ________ -->
<!-- ________ Simran's card START ________ -->
<div class="card">
<p class="name">Simran Chaurasia</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/simransia" target="_blank">simransia</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/simran-chaurasia-003" target="_blank">Simran Chaurasia</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/simransia07" target="_blank">@simransia07</a>
</p>
<p class="about">
Hey, this is is Simran. I am from India. I love web-development & UI/UX designing.
And I am currently very happy to make my first open source contribution today!!.
Hoping to do something big into open source in near future:)
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtube.com/playlist?list=PLlasXeu85E9cQ32gLCvAvr9vNaUccPVNP" target="_blank" title="Third resource">
Namaste🙏 Javascript
</a>
</li>
<li>
<a href="https://youtube.com/playlist?list=PLC3y8-rFHvwgg3vaYJgHGnModB54rxOk3" target="_blank" title="First Resource">
ReactJS Tutorial For Beginners✌️
</a>
</li>
<li>
<a href="https://javascript30.com/" target="_blank" title="Second Resource">
Javascript30🔥
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Simran's card END ________ -->
<!-- ________ *Abubakr's card START ________ -->
<div class="card">
<p class="name">Muhammad Abubakr</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">maverickAbubakr</a>
</p>
<p class="about">I am from Pakistan and working as a Java Software Engineer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/channel/UCwRXb5dUK4cvsHbx-rGzSgw" target="_blank" title="First Resource">
If you have prior software experience, this channel (Derek Banas) has the best tutorials to learn new tools and technologies (at a much faster pace).
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCYt1sfh5464XaDBH0oH_o7Q" target="_blank" title="Second Resource">
Best place (Java Brains) to learn Spring stuff.
</a>
</li>
<li>
<a href="https://github.com/AbuBakrCh/spring-boot-microservice" target="_blank" title="Third resource">
A very basic application to learn Spring Based Micro-Services.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Abubakr's card END ________ -->
<!-- ________ Ben-Ortiz's card START ________ -->
<div class="card">
<p class="name">Benedict Ortiz</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Ben-Ortiz" target="_blank">Ben-Ortiz</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/benedictortiz/" target="_blank">benedictortiz</a>
</p>
<p class="about">
My name is Benedict Ortiz. I recently graduated with a BS in Computer Science from Rutgers University. I'm currently studying DSA and learning how to contribute to open source.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="youtube.com/" target="_blank" title="First Resource">
youtube
</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">
w3 school (Learn the fundamentals)
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ben-Ortiz's card END ________ -->
<!-- ________ Oluwaseyi's card START ________ -->
<div class="card">
<p class="name">F. Oluwaseyi</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/xoluwaseyi" target="_blank">@xOluwaseyi</a>
</p>
<p class="about">I am a junior frontend developer who's hoping to be one of the best devs in the world some day and make an impact to my generation and the coming one</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/course-dashboard-redirect/?course_id=1565838" target="_blank" title="First Resource">
Web Development bootcamp
</a>
</li>
<li>
<a href="https://www.udemy.com/course-dashboard-redirect/?course_id=1362070" target="_blank" title="Second Resource">
ReactJS Course
</a>
</li>
<li>
<a href="http://www.youtube.com/playlist?list=PL4cUxeGkcC9joIM91nLzd_qaH_AimmdAR" target="_blank" title="Third resource">
Bootstrap
</a>
</li>
</ul>
</div>
</div>
<!-- ________Oluwaseyi's card END ________ -->
<!-- ________ *Sass's card START ________ -->
<div class="card">
<p class="name">Ash Sass</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">Your handle</a>
</p>
<p class="about">I am a wannabe coder working in the restaurant industry. I'm trying to get out of said industry and make it as a software developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="codecademy.com" target="_blank" title="A super popular website to learn the coding basics. You can sign up for pro to dive a little deeper">
Codecademy
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=jpttWsL-oD4" target="_blank" title="This youtube channel shows women in tech, if that's something that gives you motivation.">
Stereotype Breaking
</a>
</li>
<li>
<a href="khanacademy.org" target="_blank" title="Khan academy covers a bunch of topics applicable to learning code, including different layers of math.">
Khan Academy
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Sass's card END ________ -->
<!-- ________ *Vladislava's card START ________ -->
<div class="card">
<p class="name">Vladislava Cherkasova</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/VlaDis005" target="_blank">VlaDis005</a>
</p>
<p class="about">Hey there! I'm a junior web developer currently learning django and working on my first pet project called <a href="https://github.com/Vladislava05/TaskMaster"><i>TaskMaster</i></a></p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://habr.com/ru" target="_blank" title="First Resource">
Habr
</a>
</li>
<li>
<a href="https://goodfirstissue.dev" target="_blank" title="Second Resource">
Good First Issue
</a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title="Third resource">
StackOverflow
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Vladislava's card END ________ -->
<!-- ________ Elena's card START ________ -->
<div class="card">
<p class="name">Elena Kirillova</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">@pillowedwillow</a>
</p>
<p class="about">🌸 Manga translator, building a parallel career in coding. I love to work on my languages (RU/EN/JP/SP), climb rocks, and all things chocolate.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/learn" target="_blank" title="A great place to learn code.">
freeCodeCamp
</a>
</li>
<li>
<a href="https://www.100daysofcode.com/" target="_blank" title="Stay motivated by joining this twitter challenge.">
#100DaysOfCode
</a>
</li>
<li>
<a href="https://medium.com/free-code-camp/how-i-switched-careers-and-got-a-developer-job-in-10-months-a-true-story-b8895e855a8b" target="_blank" title="Get inspired by the story of this project's creator.">
"How I got my first developer job at age 40 after 10 months of hard work" by Syk Houdeib
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Elena's card END ________ -->
<!-- ________ *Fima's card START ________ -->
<div class="card">
<p class="name">Fima Treiger</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/FimaTreiger" target="_blank">@FimaTreiger</a>
</p>
<p class="about">I'm an ex-HVAC technician and electrician turning web developer!
I like fixing things, Captain Crunch cereal and the color blue.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/" target="_blank" title="CSS-tricks">
CSS-tricks on flexbox
</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web" target="_blank" title="mozilla">
mozilla docs for all your needs
</a>
</li>
<li>
<a href="https://github.com/bmorelli25/Become-A-Full-Stack-Web-Developer" target="_blank" title="Github-repo">
bmorelli25's github repo
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Fima's card END ________ -->
<!-- ________ Ekansh's card START ________ -->
<div class="card">
<p class="name">Ekansh Panwar</p>
<p class="contact">
<a href="https://twitter.com/PanwarEkansh" target="_blank" style="margin-right: 1em;">
<i class="fab fa-twitter"></i>
</a>
<a href="https://github.com/Ekansh-187" target="_blank" style="margin-right: 1em;">
<i class="fab fa-github"></i>
</a>
<a href="https://in.linkedin.com/in/ekansh-panwar-751795200" target="_blank" style="margin-right: 1em;">
<i class="fab fa-linkedin-in"></i>
</a>
</p>
<p class="about">I am a web dev as well as competitive coding enthusiast. I hope to create a successfull dynamic website someday.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/" target="_blank" title="First Resource">
Roadmaps
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">
freecodecamp
</a>
</li>
<li>
<a href="https://www.codecademy.com/learn/paths/web-development" target="_blank" title="Third resource">
Codecademy
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ekansh's card END ________ -->
<!-- ________ *Cagin's card START ________ -->
<div class="card">
<p class="name">Cagin Cevik</p>
<p class="contact">
<a href="https://www.linkedin.com/in/cagincevik/" target="_blank" style="margin-right: 1em;"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/cgncvk" target="_blank" style="margin-right: 1em;"><i class="fab fa-github"></i></a>
<a href="https://mobile.twitter.com/cagin_cevik" target="_blank" style="margin-right: 1em;"><i class="fab fa-twitter"></i></a>
</p>
<p class="about">I do data analysis to make life more understandable, i don't mind getting my hands dirty to collect data. 😊</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/cgncvk" target="_blank" title="First Resource">
My Github
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">
Stackoverflow
</a>
</li>
<li>
<a href="https://www.datacamp.com/" target="_blank" title="Third resource">
Datacamp
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Cagin's card END ________ -->
<!-- ________ *Athul's card START ________ -->
<div class="card">
<p class="name"> Athul Joy </p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/iathul" target="_blank"> iathul </a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/athul-joy/" target="_blank"> athul-joy </a>
</p>
<p class="about">
I am Athul Joy. I am a fullstack developer at Lightrains Technolabs.
I am interested in open source technology.
</p>
<div class="resources">
<p> 3 Useful Dev Resources </p>
<ul>
<li>
<a href="https://medium.com/@a.athuljoy/callback-function-in-javascript-99b5262f6750" target="_blank" title="Callback Function in JavaScript">
Callback Function in JavaScript
</a>
</li>
<li>
<a href="https://httpstatuses.com/" target="_blank" title="HTTP Status Codes">
HTTP Status Codes
</a>
</li>
<li>
<a href="https://devcenter.heroku.com/articles/deploying-nodejs" target="_blank" title="Deploying Node.js Apps on Heroku">
Deploying Node.js Apps on Heroku
</a>
</li>
</ul>
</div>
</div>
<!-- ________Athul's card END ________ -->
<!-- ________ Lakshay Tyagi's Contributor card START ________ -->
<div class="card">
<p class="name">Lakshay Tyagi</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/imlakshay08" target="_blank">imlakshay08</a>
</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/imLakshay08" target="_blank">imLakshay08</a>
</p>
<p class="about">I am a Full-Stack Web developer and a penetration tester. Right now, Focusing on Open-Source contribution. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org/learn/?messages=success%5B0%5D%3Dflash.signin-success"
target="_blank"
title="First Resource"
>
Freecodecamp
</a>
</li>
<li>
<a href="https://www.theodinproject.com/courses/html-and-css" target="_blank" title="Second Resource">
Odin Project
</a>
</li>
<li>
<a href="https://www.w3schools.com/html/" target="_blank" title="Third resource">
W3Schools
</a>
</li>
</ul>
</div>
</div>
<!-- ________Lakshay Tyagi's Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">M1ma</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">"None"</a>
</p>
<p class="about">Noob in coding. Fast learner, new coding or learning stuff makes me happy. wanna be a dev :) </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">
w3schools.com for code help/examples
</a>
</li>
<li>
<a href="https://www.lucidchart.com/" target="_blank" title="Second Resource">
lucidchart for architecture/design/visualization
</a>
</li>
<li>
<a href="https://www.figma.com/" target="_blank" title="Third resource">
Figma for Prototyping
</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- ________ *Sudipto's card START ________ -->
<div class="card">
<p class="name">Sudipto Chakraboryy</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank"></a>
</p>
<p class="about">I am a Software enthusiast and engineer, want to build an amazing application someday!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">
https://www.udacity.com/course/product-design--ud509
</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">
https://developer.mozilla.org/en-US/
</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">
https://github.com/
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Sudipto's card END ________ -->
<!-- ________ *Michael's* Contributor card START ________ -->
<div class="card">
<p class="name">Michael Alestock</p>
<p class="contact">
<i class="fab fa-wolf-pack-battalion"></i>
<a href="https://guidedhacking.com/members/n3tbi0s.274842/" target="_blank">@n3tbi0s</a>
</p>
<p class="about">Just an IT professional & game-hacker who wants to become better at Windows administration and hacking games.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.oreilly.com/" target="_blank" title="Best website for the best technology books">
O'Reilly Online
</a>
</li>
<li>
<a href="https://www.richroll.com/all-episodes/" target="_blank" title="Stay motivated and really LEARN">
Rich Roll Podcast
</a>
</li>
<li>
<a href="https://guidedhacking.com/" target="_blank" title="Best Resource to learn game-hacking">
GuidedHacking
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Michael's* Contributor card END ________ -->
<!-- ________ *Andrew's card START ________ -->
<div class="card">
<p class="name">Andrew Deason</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">adzin310</a>
</p>
<p class="about">Code, crypto, games, motorcycles</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.github.com/adzin310" target="_blank" title="First Resource">
My Github
</a>
</li>
<li>
<a href="https://www.leetcode.com" target="_blank" title="Second Resource">
Leetcode
</a>
</li>
<li>
<a href="https://www.hackerrank.com" target="_blank" title="Third resource">
Hackerrank
</a>
</li>
</ul>
</div>
</div>
<!-- ________Andrew's card END ________ -->
<!-- ________ *José's card START ________ -->
<div class="card">
<p class="name">José Torres</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/JCTorresTone" target="_blank">@JCTorresTone</a>
</p>
<p class="about">I'm still a beginner and want to learn more programming languages.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Find the solutions here">
StackOverflow
</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="Check other projects">
Github
</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="A community with a lot to learn">
DEV Community
</a>
</li>
</ul>
</div>
</div>
<!-- ________*José's card END ________ -->
<!-- ________ Vesna's card START ________ -->
<div class="card">
<p class="name">Vesna Bozic</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/munkov_krik" target="_blank">munkov_krik</a>
</p>
<p class="about">Just a IT girl.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">
Well, W3schools
</a>
</li>
<li>
<a href="https://github.com/jwasham/coding-interview-university" target="_blank" title="Second Resource">
Coding interview
</a>
</li>
<li>
<a href="https://github.com/kamranahmedse/developer-roadmap" target="_blank" title="Third resource">
Awesome Developer Roadmap
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Vesna's card END ________ -->
<!-- ________ *Yarden* Contributor card START ________ -->
<div class="card">
<p class="name">Yarden Ankonina</p>
<p class="contact">
<a href="https://www.linkedin.com/in/yarden-ankonina/" target="_blank" style="margin-right: 0.5em;"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/Yarden-Ankonina" target="_blank"><i class="fab fa-github"></i></a>
</p>
<p class="about">I am a CS student in my third year, commiting in my first open source project</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://wesbos.com/" target="_blank" title="Wes Bos">
An Amazing developer with a great podcast
</a>
</li>
<li>
<a href="https://jsroadmap.com/" target="_blank" title="Javascript road map">
Javascript road map
</a>
</li>
<li>
<a href="https://www.netlify.com/" target="_blank" title="Netlify">
A service to host you websites
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Yarden* Contributor card END ________ -->
<!-- _______ StringManolo Contributor Card ________ -->
<div class="card">
<p class="name">Manolo</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/XSStringManolo" target="_blank">@XSStringManolo</a>
</p>
<p class="about">Hi, i'm StringManolo, i'm from Spain and i love programming languages, linux and hacking</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://github.com/mattn/emmet-vim" target="_blank" title="Second Resource">
Emmet Vim (use selectors to create markup)
</a>
</li>
<li>
<a href="https://flexiple.com/javascript/10-practical-css-tricks-every-developer-should-know/" target="_blank" title="Third resource">
Practical CSS Tricks You Should Know
</a>
</li>
</ul>
</div>
</div>
<!-- ________ StringManolo card END ________ -->
<!-- ________ *Khem Singh* Contributor card START ________ -->
<div class="card">
<p class="name">Khem Singh</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">Not Active</a>
</p>
<p class="about">Hello! My name is Khem Singh. I am a student and trying to learn web-development. This is my first open source contibution.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">
Documentation
</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">
Google
</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">
YouTube
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Khem Singh* Contributor card END ________ -->
<!-- ________ Gianluca Cinà ________ -->
<div class="card">
<p class="name">Gianluca Cinà</p>
<p class="contact">
<a href="https://www.linkedin.com/in/gianluca-cinà-a345b94b" target="_blank" style="margin-right: 1em;"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/Gianlca" target="_blank" style="margin-right: 1em;"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/8Cinaski" target="_blank" style="margin-right: 1em;"><i class="fab fa-twitter"></i></a>
</p>
<p class="about">living in Palermo (Italy). Bachelor degree in communication.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://fullstackopen.com/" target="_blank" title="First Resource">
Full Stack open 2021 course
</a>
</li>
<li>
<a href="https://eloquentjavascript.net/" target="_blank" title="Second Resource">
eloquent javascript book
</a>
</li>
<li>
<a href="https://developer.mozilla.org/" target="_blank" title="Third resource">
MDN
</a>
</li>
</ul>
</div>
</div>
<!-- ________Gianluca Cinà Contributor card END ________ -->
<!-- ________ *Juan* Contributor card START ________ -->
<div class="card">
<p class="name">Juan Pablo </p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/jplarraga" target="_blank">@jplarraga</a>
</p>
<p class="about">I'm Juan! a programming passionate and business man hoping to take the business world to the next level</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.javascripttutorial.net" target="_blank" title="JS Sources">
For Javascript information
</a>
</li>
<li>
<a href="http://leveluptutorials.com/" target="_blank" title="Front End">
Front End Tutorials
</a>
</li>
<li>
<a href="https://ciberninjas.com/biblioteca-de-programacion-y-tecnologia/" target="_blank" title="Free Resources">
A great deal of free ebooks for all programing languages.
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Juan* Contributor card END ________ -->
<!-- ________ JScrips card START ________ -->
<div class="card">
<p class="name">Terrance B. || JScrips</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Codeasaurus_Rex" target="_blank">@Codeasaurus_Rex</a>
</p>
<p class="about">Hey! my name is Terrance. I'm an entry level Web Dev. I enjoy video games and good food, and learning everyday. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://twitter.com/search?q=%23BlackTechTwitter&src=hashtag_click" target="_blank" title="First Resource">
Black Tech Twitter
</a>
</li>
<li>
<a href="https://www.google.com/" target="_blank" title="Second Resource">
Google
</a>
</li>
<li>
<a href="https://discord.com/" target="_blank" title="Third resource">
Discord!
</a>
</li>
</ul>
</div>
</div>
<!-- ________JScrips card END ________ -->
<!-- ________ Javier Benavides ________ -->
<div class="card">
<p class="name">Javier Benavides</p>
<p class="contact">
<a href="https://www.linkedin.com/in/javierbm" target="_blank" style="margin-right: 1em;"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/chatojavier" target="_blank" style="margin-right: 1em;"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/chatoxavier" target="_blank" style="margin-right: 1em;"><i class="fab fa-twitter"></i></a>
<a href="https://instagram.com/chatojavier" target="_blank"><i class="fab fa-instagram"></i></a>
</p>
<p class="about">Made in Arequipa, living in Lima (Peru). Bachelor degree in advertising. Current student of MIT xPro Professional Certificate in Coding. 🏳️🌈</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://medium.com/" target="_blank" title="First Resource">
Medium publishing platform.
</a>
</li>
<li>
<a href="https://dev.to" target="_blank" title="Second Resource">
DEV Community
</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">
GeeksForGeeks
</a>
</li>
</ul>
</div>
</div>
<!-- ________Javier Benavides Contributor card END ________ -->
<!-- ________ Colby Killian ________ -->
<div class="card">
<p class="name">Colby Killian</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/colby-killian-900462192/" target="_blank">Colby Killian</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Killianbeast" target="_blank">GitHub</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/KillianBeast" target="_blank">KillianBeast</a>
</p>
<p class="about">I am a Computer Science undergrad at Texas Tech University. I am learning to become a back-end developer. I love sports and playing games with my friends. Wreck 'Em!</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://stackoverflow.com/" target="_blank" title="Second Resource">
StackOverFlow
</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">
GeeksForGeeks
</a>
</li>
</ul>
</div>
</div>
<!-- ________Colby Killian Contributor card END ________ -->
<!-- ________ Mahima's card START ________ -->
<div class="card">