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
8760 lines (8502 loc) · 337 KB
/
Copy pathindex.html
File metadata and controls
8760 lines (8502 loc) · 337 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 ⬇⬇ ========== -->
<!-- ________ Serhii Murashko's card START ________ -->
<div class="card">
<p class="name">Serhii Murashko</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/simplesquirrel/" target="_blank">simplesquirrel</a>
</p>
<p class="about">Future Automation QA Engineer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="youtube.com/" target="_blank" title="First Resource">
1000 and 1 course for you
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">
Only one who is going to listen to your problems
</a>
</li>
<li>
<a href="https://learngitbranching.js.org" target="_blank" title="Third resource">
Learn git by playing game
</a>
</li>
</ul>
</div>
</div>
<!-- ________Serhii Murashko's card END ________ -->
<!-- ________ MSzp'S card START ________ -->
<div class="card">
<p class="name">MSzp</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/mszak10" target="_blank">@mszak10</a>
</p>
<p class="about">
Hey! Looking to create online presence on the web, this project seems like a great start!
I'm currently in IT Technical College and I'm looking to become a Data Scientist or Machine Learning Specialist:)
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/Fireship" target="_blank" title="Fireship">
Fireship - Absolute legend! Throughly entertaining channel! 🔥🔥🔥
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UC8butISFwT-Wl7EV0hUK0BQ" target="_blank" title="freeCodeCamp">
freeCodeCamp - If you want to learn something while doing great project - this is the way to go! Fantastic resource! 🔥🔥
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools">
w3schools - Great begginer friendly tutorials on web-development! 🔥
</a>
</li>
</ul>
</div>
</div>
<!-- ________ MSzp'S card END ________ -->
<!-- ________ Fredonautilus' card START ________ -->
<div class="card">
<p class="name">Fredonautilus</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ExcaliburUFool" target="_blank">@ExcaliburUFool</a>
</p>
<p class="about">I love playing videogames and watching anime but I lack the motivation for both most of the time!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Really good website for looking up HTML and CSS.">
w3schools
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Well, it's stackoverflow, everything you would want to ask probably was already asked.">
stackoverflow
</a>
</li>
<li>
<a href="https://code.visualstudio.com/" target="_blank" title="Probably THE code editor that most people use. Free and tons of plugins.">
Visual Studio Code
</a>
</li>
</ul>
</div>
</div>
<!-- ________Fredonautilus' card END ________ -->
<!-- ________ MatZ-Dev card START ________ -->
<div class="card">
<p class="name">Matjaz Zorn</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/MatZ-Dev" target="_blank" style="margin-right: 1em;">@MatZ-Dev</a>
</p>
<p class="about"t>I am programmer trying to improve every day</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.tutorialspoint.com/tutorialslibrary.htm" target="_blank" title="First Resource">
Tutorials Point
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">
Free Code Camp
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">
W3 Schools
</a>
</li>
</ul>
</div>
</div>
<!-- ________ MatZ-Dev card END ________ -->
<!-- ________ Ziv Kaplan's card START ________ -->
<div class="card">
<p class="name">Ziv Kaplan</p>
<p class="contact">
<a href="https://github.com/zivkaplan" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.facebook.com/zivkap" target="_blank">
<i class="fab fa-facebook"></i>
</a>
<a href="https://twitter.com/ZivKaplan" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.linkedin.com/in/ziv-kaplan-947028207/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</p>
<p class="about">Programmer and Classical Percussion Player and Teacher</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="The Odin Project">
The Odin Project
</a>
</li>
<li>
<a href="https://www.youtube.com/c/JacobSorber" target="_blank" title="Jacob Sorber Youtube Channel">
Jacob Sorber Youtube Channel
</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN">
MDN
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ziv Kaplan's 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 ________ -->
<!-- ________ Chao's card START ________ -->
<div class="card">
<p class="name">Chao fan</p>
<p class="contact">
<a href="https://github.com/crppckyz" target="_blank"><i class="fab fa-github"></i></a>
</p>
<p class="about">Hi everyone! I am Chao and I am from China. Very happy to make my first contribution here! Hope to be a web-developer in the very near future!
</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://teachyourselfcs.com/" target="_blank" title="teachYourselfCS">
teachYourselfCS
</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN">
MDN Web Docs
</a>
</li>
</ul>
</div>
</div>
<!-- ________Chao's card END ________ -->
<!-- ________dilshankarunarathne card START ________ -->
<div class="card">
<p class="name">Dilshan M. Karunarathne</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/dilshankarunarathne" target="_blank">dilshankarunarathne</a>
<i class="fab fa-linkedin"></i>
<a href="https://linkedin.com/in/dilshan-karunarathne-836789225" target="_blank">Dilshan Karunarathne</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/DilshanKarunar8" target="_blank">@DilshanKarunar8</a>
</p>
<p class="about">Computer Science undergraduate, Self-taught programmer, Ful-stack Dev & blogger</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="http://index-of.es/" target="_blank" title="Downloadable collection of video courses for all computer science related topics">
Collection of valuable resources
</a>
</li>
<li>
<a href="https://introcs.cs.princeton.edu/java/home/" target="_blank" title="This booksite contains tens of thousands of files, fully coordinated with our textbook and also useful as a standalone resource about computer science.">
Princeton - intro to CS
</a>
</li>
<li>
<a href="https://github.com/Developer-Y/cs-video-courses" target="_blank" title="A large collection of video courses for all computer science related topics">
Learn Computer Science with these video courses
</a>
</li>
</ul>
</div>
</div>
<!-- ________dilshankarunarathne card END ________ -->
<!-- ________ *Padma card START ________ -->
<div class="card">
<p class="name">Padma</p>
<p class="contact">
<a href="https://github.com/gv68682" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="www.linkedin.com/in/padma-v-3a248a17b" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</p>
<p class="about">Developers can do magic, excited to be part of this amazing creaters world!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/public-apis/public-apis#environment" target="_blank" title="First Resource">
Public APIs to Create New Apps
</a>
</li>
<li>
<a href="https://mui.com/" target="_blank" title="Second Resource">
The React UI Library
</a>
</li>
<li>
<a href="https://pythontutor.com/javascript.html#mode=edit" target="_blank" title="Third resource">
Visualize JavaScript Code Execution
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Padma card END ________ -->
<!-- ________ *Avin's* card START ________ -->
<div class="card">
<p class="name">Avin Joseph</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/avinjoseph" target="_blank">avinjoseph</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/avin-joseph-849398168" target="_blank">avin-joseph-849398168</a>
</p>
<p class="about">
I am Avin Joseph. I am a full stack developer at Experion Technologies.
I am also interested in ML,DL and Data Science.
I am also interested in open source contributions.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="First Resource">
GeeksforGeeks
</a>
</li>
<li>
<a href="https://www.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>
<!-- ________*Avin's* card END ________ -->
<!-- ________ *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