forked from barbareshet/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
10433 lines (10123 loc) · 403 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 -->
<!-- make sure there is one line of space above and below your card -->
<!-- ========== ⬇⬇ Paste YOUR CARD directly BELOW this line ⬇⬇ ========== -->
<!-- ________ drew-k card START ________ -->
<div class="card">
<p class="name">drew-k</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/drew-k" target="_blank">drew-k</a>
</p>
<p class="about">CS undergrad learning how to contribute to open source projects. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/JacobSorber" target="_blank" title="Jacob Sorber">
Jacob Sorber YT
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">
W3Schools
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp.org">
freeCodeCamp.org
</a>
</li>
</ul>
</div>
</div>
<!-- ________ drew-k card END ________ -->
<!-- Dimitri Tsikaridze Contributor card START -->
<div class="card">
<p class="name">Dimitri Tsikaridze</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/DimitriTsikaridze" target="_blank">GitHub</a>
<i class="fab fa-facebook"></i>
<a href="https://www.facebook.com/TsikaridzeDimitri" target="_blank">FaceBook</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/dimitri-tsikaridze/" target="_blank">LinkedIn</a>
</p>
<p class="about">I like Opeth, web dev, cats and playing guitar.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/Fireship" target="_blank" title="First Resource">
Fireship
</a>
</li>
<li>
<a href="https://www.youtube.com/c/TraversyMedia" target="_blank" title="Third resource">
Traversy Media
</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Second Resource">
MDN Web Docs
</a>
</li>
</ul>
</div>
</div>
<!-- Dimitri Tsikaridze Contributor card END -->
<!-- ________ clod44 Contributor card START ________ -->
<div class="card">
<p class="name">clod44</p>
<p class="contact">
<i class="fab fa-pinterest"></i>
<a href="https://www.pinterest.com/nitrogen6/_saved/" target="_blank">@nitrogen6</a>
</p>
<p class="about">i love cats and coding alot.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/TheCodingTrain" target="_blank" title="coding train youtube url">
Coding Train
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools site">
W3schools
</a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title="stackoverflow site">
Stackoverflow
</a>
</li>
</ul>
</div>
</div>
<!-- ________clod44 Contributor card END ________ -->
<!-- ________ Shawkat's card START ________ -->
<div class="card">
<p class="name">Youssef Shawkat</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/youssefshawkat" target="_blank">youssefshawkat</a>
</p>
<p class="about">This is just the beginning;</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">
W3schools
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCSNkfKl4cU-55Nm-ovsvOHQ" target="_blank" title="Elzero Web School">
Elzero Web School
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Free Code Camp">
Free Code Camp
</a>
</li>
</ul>
</div>
</div>
<!-- ________Shawkat's card END ________ -->
<!-- ________ Joel's card START ________ -->
<div class="card">
<p class="name">Joel</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">Your handle</a>
</p>
<p class="about">Hi Random Stranger, I'm a new techie with about 1 year dev experience in Java/Spring based microservices development. Feel free to DM me on my twitter in case you've got a job :). Have a great day.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.baeldung.com" target="_blank" title="Baeldung">
Baeldung
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow">
StackOverflow
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools">
w3Schools
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Joel's card END ________ -->
<!-- ________ Vangelis Kontogiannis card START ________ -->
<div class="card">
<p class="name">Vangelis Kontogiannis</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">@Vangelis_Kont</a>
</p>
<p class="about">Currently, I love learning about operating systems and database systems</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="This is a link to a very cool youtube channel">
https://www.youtube.com/c/Fireship
</a>
</li>
<li>
<a href="#" target="_blank" title="This link contains all the programming knowledge of the world XD">
https://www.youtube.com/c/Freecodecamp
</a>
</li>
<li>
<a href="#" target="_blank" title="This last link happens to be the one that I use the most">
https://en.cppreference.com/w/
</a>
</li>
</ul>
</div>
</div>
<!-- ________Vangelis Kontogiannis card END ________ -->
<!-- ________ Spanakis card START ________ -->
<div class="card">
<p class="name">Panagiotis Spanakis</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/panos-span" target="_blank">@panos-span</a>
</p>
<p class="about">University student at AUEB, interested in Data Science and Software Engineering</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools">
w3schools
</a>
</li>
<li>
<a href="https://getbootstrap.com/docs/5.1/getting-started/introduction/" target="_blank" title="Bootstrap">
Bootstrap tutorial
</a>
</li>
<li>
<a href="https://javascript.info/" target="_blank" title="Javascript Tutorial">
Javascript Info
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Spanakis card END ________ -->
<!-- ________ MCUxDaredevil's card START ________ -->
<div class="card">
<p class="name">MCUxDaredevil</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="www.github.com/MCUxDaredevil" target="_blank">MCUxDaredevil</a>
</p>
<p class="about">I'm an avid programmer and robotics enthusiast. I'm eager to contribute to open-source projects and learn more about web development.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools">
W3 Schools - Language Reference
</a>
</li>
<li>
<a href="https://devdocs.io/" target="_blank" title="devdocs.io">
DevDocs - Universal Language Documentation
</a>
</li>
<li>
<a href="https://www.hackerrank.com/" target="_blank" title="hackerrank">
Hackerrank - Practice Coding Skills
</a>
</li>
</ul>
</div>
</div>
<!-- ________ MCUxDaredevil's card END ________ -->
<!-- ________ Ubisse's card START ________ -->
<div class="card">
<p class="name">Jay Ubisse</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Jay_Ubisse" target="_blank">@Jay_Ubisse</a>
</p>
<p class="about">Saluton, Mondo!<br>
I'm a full stack software developer, focusing on the development of web and desktop applications.<br>
I'm also a developer and analyst of electronic systems, focusing on microcontroller programming and automation in general.<br><br>
Visit my repo: https://github.com/Jay-Ubisse</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3schools site">
W3Schools
</a>
</li>
<li>
<a href="https://developer.mozilla.org" target="_blank" title="MDN Web Docs site">
MDN Web Docs
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow site">
Stack Overflow
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ubisse's card END ________ -->
<!-- ________ *Deivid Rocha card START ________ -->
<div class="card">
<p class="name">Deivid Rocha</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="#https://www.linkedin.com/in/deivid-rocha-17b9b5146/" target="_blank">Deivid Rocha Linkedin</a>
<i class="fab fa-github"></i>
<a href="#https://github.com/deividsrocha" target="_blank">Github</a>
<i class="fab fa-instagram"></i>
<a href="#https://www.instagram.com/metas.ae/" target="_blank">@metas.ae</a>
</p>
<p class="about">Programmer, 3D Designer and Game Developer, Currently working making Augmented Reality effects for Meta inc. Also in a project with java for web AR. Tech-Art lover and crypto enjoyer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.reddit.com/r/learnjava" target="_blank" title="Learn Java with Reddit">
Learn Java with Reddit
</a>
</li>
<li>
<a href="#https://www.coursera.org/" target="_blank" title="Learn Coursera coding">
Coursera coding
</a>
</li>
<li>
<a href="#https://www.blender.org/download/" target="_blank" title="Blender for devs">
Blender for devs
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Deivid Rocha card END ________ -->
<!-- ________ Christian's card START ________ -->
<div class="card">
<p class="name">Enyia Christian</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ChristianoEnyia?t=NhgLZOdQUPyknOvWpvg&s=09" target="_blank">@ChristianoEnyia</a>
</p>
<p class="about">Hey! I am an undergraduate and a frontend web developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#https://www.w3schools.com/html/" target="_blank" title="W3Schools">
W3Schools
</a>
</li>
<li>
<a href="#https://www.freecodecamp.org/" target="_blank" title="freeCodeCamp">
freeCodeCamp
</a>
</li>
<li>
<a href="#https://www.educative.io/explore/early-access" target="_blank" title="Educative">
Educative
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Christian's card END ________ -->
<!-- ________ *Gregory-Boyd card START ________ -->
<div class="card">
<p class="name">Gregory Boyd</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/gregory-boyd-429a56207/" target="_blank">Gregory Boyd Linkedin Profile</a>
</p>
<p class="about">Recently retired and wanting to brush up my coding and Git skills!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.linkedin.com/learning/" target="_blank" title="Linkedin Learning Video Courses">
LinkedIN Learning
</a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title="Stackoverflow">
Stackoverflow
</a>
</li>
<li>
<a href="https://www.youtube.com/c/SeanAllen" target="_blank" title="Sean Allen Youtube Channel">
Sean Allen Swift Youtube Channel
</a>
</li>
</ul>
</div>
</div>
<!-- ________Gregory Boyd Contributor card END ________ -->
<!-- ________ Nicolas' card START ________ -->
<div class="card">
<p class="name">Nicolas</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/nicolasrossato/?hl=fr" target="_blank">@nicolasrossato</a>
</p>
<p class="about">I like to run, listen to music, play music, code, take a nap</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3School">
W3School
</a>
</li>
<li>
<a href="https://www.baeldung.com/" target="_blank" title="Baeldung">
Baeldung
</a>
</li>
<li>
<a href="https://www.tutorialspoint.com/index.htm" target="_blank" title="Tutorialspoint">
Tutorialspoint
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nicolas card END ________ -->
<!-- ________ *kimson's card START ________ -->
<div class="card">
<p class="name">kimson</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com" target="_blank">@devkimson</a>
</p>
<p class="about">Hello! I am a prospective developer studying to become a backend developer :)</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://programmers.co.kr/" target="_blank" title="Programmers">
Programmers
</a>
</li>
<li>
<a href="https://www.djangoproject.com/" target="_blank" title="Django">
Django
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stackoverflow">
Stackoverflow
</a>
</li>
</ul>
</div>
</div>
<!-- ________*kimson's card END ________ -->
<!-- ________ *Martha's card START ________ -->
<div class="card">
<p class="name">Martha</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/marthacoding" target="_blank">@marthacoding</a>
</p>
<p class="about">Hello! I'm a full stack developer in training</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://nodejs.org/en/" target="_blank" title="NodeJS">
NodeJS
</a>
</li>
<li>
<a href="https://expressjs.com/" target="_blank" title="ExpressJS">
ExpressJS
</a>
</li>
<li>
<a href="https://firebase.google.com/" target="_blank" title="Firebase">
Firebase
</a>
</li>
</ul>
</div>
</div>
<!-- ________Martha's card END ________ -->
<!-- ________TEMITOPE'S CARD START ________ -->
<div class="card">
<p class="name">Temitope</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Ag_Tope" target="_blank">ag_tope</a>
<i class="fab fa-github"></i>
<a href="https://github.com/TemitopeAgbaje" target="_blank">TemitopeAgbaje</a>
</p>
<p class="about">
Heyy!! You can call me Tope. I am trying to be a better developer. I recently started coding and I want to
do so much more. Super excited.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://freecodecamp.org" target="_blank" title="First Resource">
Freecodecamp
</a>
</li>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Second Resource">
Codeacademy
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">
Stackoverflow
</a>
</li>
</ul>
</div>
</div>
<!-- ________TEMITOPE'S END ________ -->
<!-- ________ Dex's card START ________ -->
<div class="card">
<p class="name">Dex</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/DexTheDev_" target="_blank">@DexTheDev_</a>
</p>
<p class="about">I love sushi and video games. My cat is black. Coding makes me feel like a genius.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://fonts.google.com/" target="_blank" title="Google Fonts">
Google Fonts
</a>
</li>
<li>
<a href="https://coolors.co/" target="_blank" title="A palette generator">
Coolors - A Palette Generator
</a>
</li>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Raodmap">
Roadmap - A guide for web development careers
</a>
</li>
</ul>
</div>
</div>
<!-- ________Dex's card END ________ -->
<!-- ________ Shiva's card START ________ -->
<div class="card">
<p class="name">Shiva Prakash Pendem</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/psprises" target="_blank">@psprises</a>
<i class="fab fa-linkedin"></i>
<a href="https://linkedin.com/in/psprises" target="_blank">@psprises</a>
</p>
<p class="about">
Hello World! I'm Shiva. I have recently finished my masters in Computer Science and I'm obsessively interested in Web Development.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">
W3 Schools
</a> - learn anything web development related
</li>
<li>
<a href="https://app.haikei.app/" target="_blank" title="Second Resource">
haikei
</a> - random shapes and gradients generator
</li>
<li>
<a href="https://jsfiddle.net/" target="_blank" title="Third resource">
JSFiddle
</a> - online JavaScript editor
</li>
</ul>
</div>
</div>
<!-- ________ Shiva's card END ________ -->
<!-- ________ Wangari's card START ________ -->
<div class="card">
<p class="name">Susan Wangari</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Susan-Wangari" target="_blank">Susan-Wangari</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/coder_muchacha" target="_blank">@coder_muchacha</a>
</p>
<p class="about">
Iam a Software Developer working with JavaScript and Currently learning NodeJS. When free I love doing crochet. I am also a student.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://javascript30.com/" target="_blank" title="30daysofjavascript">
30 Days of JavaScript
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="freeCodeCamp">
freeCodeCamp
</a>
</li>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="I love using this resource to learn JavaScript">
Code Academy
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Wangari's card END ________ -->
<!-- ________ Devons card START ________ -->
<div class="card">
<p class="name">Devon Pinkston</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<!-- <a href="www.twitter.com" target="_blank">Your handle</a> -->
</p>
<p class="about">My name is Devon Pinkston, and I am a beginner "Web Developer" in central America.
I am interested in code work for phone applications and machines. I want to find a community of
like-minded individuals that I can contribute to technology with. My top 5 core values are 1)Trust/Truth
2)Health 3)Logic/Intelligence 4)Creativity 5)Emotional Intelligence
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://codepen.io" target="_blank" title="Code Translator">
Code Translator
</a>
</li>
<li>
<a href="https://developer.mozilla.org" target="_blank" title="Code Dictionary">
Coding Dictionary
</a>
</li>
<li>
<a href="https://Udemy.com" target="_blank" title="Online Learning">
Online Classes
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Devons card END ________ -->
<!-- ________ Vignesh's card START ________ -->
<div class="card">
<p class="name">Vignesh L R</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/vigneshlr/" target="_blank">Vigneshlr</a>
</p>
<p class="about">
A Passionate developer working on Java, Spring-boot and related technologies and have decent knowledge of
React.
<br />
I am always fascinated by technology and would always love to learn and explore more.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://dev.to" target="_blank" title="Developer Community and resources">
Developer Community and resources
</a>
</li>
<li>
<a
href="https://www.baeldung.com"
target="_blank"
title="Baeldung - Blogs and Tutorials on Java and Spring"
>
Baeldung - Blogs and Tutorials on Java and Spring
</a>
</li>
<li>
<a
href="https://medium.com/javarevisited"
target="_blank"
title="Java Revisited - Medium | Blogs and Articles related to Java"
>
Java Revisited - Medium | Blogs and Articles related to Java
</a>
</li>
</ul>
</div>
</div>
<!-- ________Vignesh's card END ________ -->
<!-- ________ *Elias* Contributor card START ________ -->
<div class="card">
<p class="name">Elias Shemsu</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com" target="_blank">Mobile App Developer</a>
</p>
<p class="about">Game dev, Native Android apps, Flutter apps</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://docs.unity.com/" target="_blank" title="First Resource">
Unity documentation
</a>
</li>
<li>
<a href="https://developer.android.com/docs" target="_blank" title="Second Resource">
Android Documentation
</a>
</li>
<li>
<a href="https://docs.flutter.dev/" target="_blank" title="Third resource">
Flutter Documentation
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Elias* Contributor card END ________ -->
<!-- ________ *Argha's card START ________ -->
<div class="card">
<p class="name">Argha Nath</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/" target="_blank">ARGHANath2000</a>
</p>
<p class="about">
Hello, my name is Argha Nath. I am a passionate developer who has been loving the technology industry for
the last 7-8yrs now. I am currently a backend developer. Currently learning about Odoo13 and Machine
Learning.
</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.youtube.com/playlist?list=PLeo1K3hjS3uvCeTYTeyfe0-rN5r8zn9rw"
target="_blank"
title="Second Resource"
>
Machine Learning playlist
</a>
</li>
<li>
<a href="https://www.pexels.com/" target="_blank" title="Third resource">
Stock Images
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Argha's card END ________ -->
<!-- ________ *confused-Techie's card START ________ -->
<div class="card">
<p class="name">confused-Techie</p>
<p class="contact">
<a href="https://github.com/confused-Techie" target="_blank" style="margin-right: 1em;"><i class="fab fa-github"></i></a>
<a href="https://stackoverflow.com/users/12707685/confused-techie" target="_blank" style="margin-right: 1em;"><i class="fab fa-stack-overflow"></i></a>
</p>
<p class="about">Hello all, I'm confused-Techie with a passion for the self-hosted community! I work mainly with JavaScript, loving frameworks like NPM, NodeJS, React, and Next. But try to learn a new language with every project I work on, from Golang, to C#.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions" target="_blank" title="Arrow Function Expressions">
Arrow Function Expressions from MDN Web Docs
</a>
</li>
<li>
<a href="https://www.codacy.com/" target="_blank" title="Codacy.com">
Codacy.com for automated code review.
</a>
</li>
<li>
<a href="https://github.com/sindresorhus/awesome#front-end-development" target="_blank" title="Awesome List">
Awesome List from @sindresorhus for Front End Development.
</a>
</li>
</ul>
</div>
</div>
<!-- ________*confused-Techie's card END ________ -->
<!-- ________ Chinaemerem's card START ________ -->
<div class="card">
<p class="name">Chinaemerem Agomoh</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/femto_ace" target="_blank">@femto_ace</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/agomohchinaemereme/" target="_blank">agomohchinaemereme</a>
</p>
<p class="about">
Hi, I'm Chinaemerem, a full-stack developer from Nigeria who loves the MERN stack and material-UI
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://v4.mui.com" target="_blank" title="material-UI's documentation">
material-UI's documentation
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn" target="_blank" title="freeCodeCamp">
freeCodeCamp
</a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title=" StackOverflow">
StackOverflow
</a>
</li>
</ul>
</div>
</div>
<!-- ________Chinaemerem's card END ________ -->
<!-- ________ Vorthkor's card START ________ -->
<div class="card">
<p class="name">Vorthkor</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="www.twitter.com/devorthkor" target="_blank">@devorthkor</a>
<i class="fab fa-github"></i>
<a href="https://github.com/vorthkor" target="_blank">@vorthkor</a>
</p>
<p class="about">Salve earthlings, I'm Victor and I'm willing to learn how to - and - contribute on open source projects and learning a lot of things in this coding world. Valeu galera!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://lab.github.com/" target="_blank" title="First Resource">
Learning Lab
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/" target="_blank" title="Second Resource">
freeCodeCamp
</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PLlBnICoI-g-d-J57QIz6Tx5xtUDGQdBFB" target="_blank" title="Third resource">
PT-BT Flutter Course
</a>
</li>
</ul>
</div>
</div>
<!-- ________Vorthkor's card END ________ -->
<!-- ________ Domenico's card START ________ -->
<div class="card">
<p class="name">Domenico</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/MimmoTravels" target="_blank">@MimmoTravels</a>
</p>
<p class="about">
Hello! My name is Domenico and I am from Italy. I am developing since October 2020 and I am loving it. I am
currently looking for a position as a front end Dev heading towards a career change!I have applied for some
jobs and I am excited to take on new challenges.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.udemy.com/course/react-the-complete-guide-incl-redux/"
target="_blank"
title="First Resource"