forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3403 lines (3270 loc) · 148 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/style.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>Contribute To This Project</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode">
<div class="toggle-box">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
</div>
<!-- / Night Mode Creation -->
</div>
</div>
<div class="row">
<div class="column-double">
<div class="column-left">
<h1>CONTRIBUTE TO THIS PROJECT</h1>
<h2>A project for first-time contributions</h2>
<p>
This is a tutorial to help first-time contributors participate in a simple and easy project. Get more
comfortable using GitHub and make your first open source contribution. It's quick and easy.
</p>
<a
class="button"
href="https://github.com/Syknapse/Contribute-To-This-Project/blob/master/README.md"
title="Go to project README - A step by step tutorial"
>
Learn how to contribute
<i class="fas fa-long-arrow-alt-right"></i>
</a>
</div>
</div>
<div class="column">
<div class="column-right">
<div class="twitter-button">
<a
href="https://twitter.com/share?ref_src=twsrc%5Etfw"
class="twitter-share-button"
data-size="large"
data-text="Contribute To This Project. An easy Git and GitHub project for first-time contributors, with a full tutorial."
data-url="https://github.com/Syknapse/Contribute-To-This-Project"
data-via="Syknapse"
data-hashtags="100DaysOfCode"
data-show-count="false"
title="Tweet this project"
>
Tweet
</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<p>Contributions so far...</p>
<div class="animated" id="contributions-number">0</div>
</div>
</div>
</div>
<div class="searchContainer">
<input id="searchbar" type="search" name="search" placeholder="Search for your card here!" />
</div>
<div class="grid">
<!-- ================================================ -->
<!-- ================== TEMPLATE ================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Your name</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/" target="_blank">Your handle</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ *END TEMPLATE* Contributor card END ________ -->
<!-- COPY everything ABOVE this, from contributor card start to end along with the "START" and "END" comment lines -->
<!-- ============== ^^^^ TEMPLATE ^^^^ ============== -->
<!-- ================================================ -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- Keep one line of space above and below your card -->
<!-- ========= Paste YOUR CARD directly BELOW this line ========= -->
<!-- ________ *lertsoft* Contributor card START ________ -->
<div class="card">
<p class="name">Ronny Coste</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/costeronny" target="_blank">@costeronny</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/lertsoft" target="_blank">lertsoft</a>
<i class="fa fa-home"></i>
<a href="https://ronnycoste.com" target="_blank">@ronnycoste</a>
</p>
<p class="about">Hello! I am Ronny Coste a newly grad Software Engineer and Web-Developer. I'm adding things that helped me and I hope these help some of you too.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://web.dev/learn/" target="_blank" title="First Resource">Web dev guides</a>
</li>
<li>
<a href="https://rapidapi.com/hub" target="_blank" title="Second Resource">Free API's for your project</a>
</li>
<li>
<a href="https://www.sessions.edu/color-calculator/" target="_blank" title="Third resource">Color calculator for color cohesion</a>
</li>
</ul>
</div>
</div>
<!-- ________ *lertsoft* Contributor card END ________ -->
<!-- ________ *Chris M card START ________ -->
<div class="card">
<p class="name">Chris M</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Aeon_Nero" target="_blank">@Aeon_Nero</a>
</p>
<p class="about">Programmer - Currently in College learning Application Development</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.linkedin.com/learning/" target="_blank" title="First Resource">LinkedIn Learning </a><small> - a great resource to learn new and interesting concepts</small>
</li>
<li>
<a href="https://realpython.com/" target="_blank" title="Second Resource">Real Python</a><small> - anything related to python. Has great projects that may be useful for a portfolio</small>
</li>
<li>
<a href="https://picoctf.org/" target="_blank" title="Third resource">picoCTF</a><small> - picoCTF is a free computer security education program with original content built on a capture-the-flag framework created by security and privacy experts at Carnegie Mellon University.</small>
</li>
</ul>
</div>
</div>
<!-- ________ Chris M card END ________ -->
<!-- ________ Ray Rae card START ________ -->
<div class="card">
<p class="name">Ray Rae</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/vibeyray" target="_blank">@vibeyray</a>
</p>
<p class="about">16 Yro Programmer/Author/Gamer</p>
<p class="about">"every programmer is an author" - someguy somewhere</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://ray.so" target="_blank" title="Ray.so">Ray.so</a>
<info id="information">- Take beautiful screenshots of your code</info>
</li>
<li>
<a href="https://tetr.io" target="_blank" title="Tetr.io">Tetr.io</a>
<info id="information">
- I know y'all be getting stressed when your code doesn't work, so here, play some tetris to relax,
maybe you will come back with a fresh mind
</info>
</li>
<li>
<a href="https://nextjs.org/learn" target="_blank" title="Nextjs.org">Nextjs.org</a>
<info id="information">- Really good tutorial for react basics and next.js</info>
</li>
</ul>
</div>
</div>
<!-- ________ Ray Rae card END ________ -->
<!-- ________ Carthypoo card START ________ -->
<div class="card">
<p class="name">Carthypoo</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/CarthyTTV" target="_blank">@CarthyTTV</a>
</p>
<p class="about">Sophmore High School Student interested in everything that has to do with modern technology! Working hard to learn more about web development and cloud computing!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://microsoft.github.io/Web-Dev-For-Beginners/#/" target="_blank" title="First Resource">Microsoft's Web development Lessons</a>
</li>
<li>
<a href="https://cloud.google.com/training?hl=en" target="_blank" title="Second Resource">Google Cloud Training</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Carthypoo card END ________ -->
<!-- ________ Anton card START ________ -->
<div class="card">
<p class="name">Anton Sixtenson</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/anton-sixtenson/" target="_blank">Anton's Linkedin</a>
</p>
<p class="about">Find the intersection between neuroscience and computer science fascinating.</p>
<div class="resources">
<p>Three things I'd recommend you to check out</p>
<ul>
<li>
<a href="https://www.youtube.com/c/3blue1brown" target="_blank" title="Youtube channel for math">3Blue1Brown</a>
</li>
<li>
<a href="https://www.codewars.com/" target="_blank" title="Coding challenges">codewars</a>
</li>
<li>
<a href="https://tryhackme.com/" target="_blank" title="Interactive hacking courses">TryHackMe</a>
</li>
</ul>
</div>
</div>
<!-- ________ Anton card END ________ -->
<!-- ________ nilocwob card START ________ -->
<div class="card">
<p class="name">nilocwob</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/colindurr" target="_blank">@colindurr</a>
<i class="fab fa-github"></i>
<a href="https://github.com/nilocwob" target="_blank">@nilocwob</a>
</p>
<p class="about">CS Freshman and hobbyist game coder, I also am a huge fan of the Chicago Cubs, dark beers, and dancing the Charleston, but what do I know</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://unity.com/" target="_blank" title="First Resource">Unity Engine</a>
</li>
<li>
<a href="https://www.djangoproject.com/" target="_blank" title="Second Resource">Django</a>
</li>
<li>
<a href="https://www.aseprite.org/" target="_blank" title="Third resource">Asperite - For Pixel Graphics</a>
</li>
</ul>
</div>
</div>
<!-- ________ nilocwob card END ________ -->
<!-- ________ Lord-x7 card START ________ -->
<div class="card">
<p class="name">Lord-x7</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/Parihar__07" target="_blank">@Parihar07</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/harash-parihar-874785225" target="_blank">@Parihar07</a>
<i class="fab fa-discord"></i>
<a href="https://discord.gg/discord.app/users/Lordx7#0394" target="_blank">@Parihar07</a>
</p>
<p class="about">I'm a student from India .Currently focusing On Data Structures and Algorithms,Linux and Python develeopment</p>
<div class="resources">
<p>3 Useful Resources:
</p>
<ul>
<li>
<a href="www.linkedin.com" target="_blank" title="First Resource">Linkedin</a>
</li>
<li>
<a href="www.neuralnine.com/books" target="_blank" title="Second Resource">Book to learn Python</a>
</li>
<li>
<a href="www.geeksforgeeks.com=" target="_blank" title="Third resource">Resource for Data Structures and Algorithms</a>
</li>
</ul>
</div>
</div>
<!-- ________ Lord-x7 card END ________ -->
<!-- ________ amyyalex card START ________ -->
<div class="card">
<p class="name">amyyalex</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/AlexStephanie10" target="_blank">@AlexStephanie10</a>
<i class="fab fa-github"></i>
<a href="https://github.com/amyyalex" target="_blank">@amyyalex</a>
</p>
<p class="about">A Software Engineering graduate, Web developer and OpenSource contributor. I love good music, good food and generally being happy.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/" target="_blank" title="First Resource">Road Map</a>
</li>
<li>
<a href="https://codepen.io/challenges" target="_blank" title="Second Resource">Codepen</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Third resource">The Odin Project</a>
</li>
</ul>
</div>
</div>
<!-- ________ amyyalex card END ________ -->
<!-- ________ jescalada's card START ___________ -->
<div class="card">
<p class="name">jescalada</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/jescalada" target="_blank">Github</a>
<a href="https://project-silent-willow.netlify.app" target="_blank">Website</a>
</p>
<p class="about">
I'm Juan, an indie game dev. I'm currently working on Tokyo Tycoon, a real estate game where you can romance cute girls.
The game will be finished by June 2023!
</p>
<div class="resources">
<p>There are three major software tools supporting me in this quest:
<br>Unity is the main game engine I'm using. It makes game development extremely easy, and allows scripting using C#.
<br>NaniNovel is a Visual Novel engine that runs on top of Unity. It has its own scripting language and provides many features for VN development.
<br>PDF Drive is my source for free software-related books. If possible, please support the authors and buy the books on Amazon!</p>
<ul>
<li>
<a href="https://naninovel.com/" target="_blank" title="Naninovel VN Engine">NaniNovel</a>
</li>
<li>
<a href="unity.com/" target="_blank" title="Unity Game Engine">Unity</a>
</li>
<li>
<a href="https://www.pdfdrive.com/" target="_blank" title="PDF Drive">PDF Drive</a>
</li>
</ul>
</div>
</div>
<!-- ________ jescalada's card END ___________ -->
<!-- ________ *grixxxx* Contributor card START ________ -->
<div class="card">
<p class="name">grixxxx</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/grixxxx" target="_blank">grixxxx</a>
<i class="fab fa-telegram"></i>
<a href="https://t.me/grixonly" target="_blank">@grixxxx</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/delmer-john-ballesteros-b8b683252/" target="_blank">Delmer John Ballesteros</a>
</p>
<p class="about">Front-End Developer | Student</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://frontendmasters.com/course" target="_blank" title="First Resource">frontend Developer Roadmap</a>
</li>
<li>
<a href="https://frontendmasters.com/courses/#free" target="_blank" title="Second Resource">FrontendMasters</a>
</li>
<li>
<a href="https://scrimba.com" target="_blank" title="Third resource">Scrimba</a>
</li>
</ul>
</div>
</div>
<!-- ________ *grixxxx* Contributor card END ________ -->
<!-- ________ *Neobit* Contributor card START ________ -->
<div class="card">
<p class="name">Neobit</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/neobit" target="_blank">Rafael Gomes</a>
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/neobitdev" target="_blank">neobitdev</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/neobit" target="_blank">neobit</a>
</p>
<p class="about">Game Developer, Blockchain enthusiast and Fullstack software engineer. Just a crazy guy doing edgy things around the internet.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/frontend" target="_blank" title="Roadmap">Roadmap to be a Frontend Developer</a>
</li>
<li>
<a href="https://www.construct.net/en" target="_blank" title="Construct 3">Construct 3 - A Simple HTML5 Game Engine</a>
</li>
<li>
<a href="https://convertio.co/pt/png-webp/" target="_blank" title="PNGtoWEBP">Convert PNG to WEBP - Optmizing your webpage content</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Neobit* Contributor card END ________ -->
<!-- ________ *Kristy* Contributor card START ________ -->
<div class="card">
<p class="name">Kristy A.</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/gitKristyLove" target="_blank">gitKristyLove</a>
</p>
<p class="about">Software Engineering student interested in Quality Engineering. To all the beginners, please dont give up. It's hard but we can totally do this.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://testautomationu.applitools.com/" target="_blank" title="Test Automation Univeristy">TAU</a>
</li>
<li>
<a href="https://trello.com/templates/engineering/software-engineering-career-design-QlbIQ0FR" target="_blank" title="Trello software engineer career board">Trello</a>
</li>
<li>
<a href="https://the-internet.herokuapp.com/" target="_blank" title="practice test automation">the-internet</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Kristy* Contributor card END ________ -->
<!-- ________ Eugene card START ________ -->
<div class="card">
<p class="name">Eugene Crabs</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/crabs_ke" target="_blank">@crabs_ke</a>
</p>
<p class="about">An obessed Software Developer #DareToDream</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://animista.net" target="_blank" title="Animate in css">Animation</a>
</li>
<li>
<a href="https://denigma.app" target="_blank" title="Convert code to english">Code explanation</a>
</li>
<li>
<a href="https://undraw.co/illustrations" target="_blank" title="Illustrations for Design">UnDraw</a>
</li>
</ul>
</div>
</div>
<!-- ________ Eugene card END ________ -->
<!-- ________ dw2rl card START ________ -->
<div class="card">
<p class="name">Umidjon</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/umidjon_j" target="_blank">@umidjon_j</a>
</p>
<p class="about">Python Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://codewithmosh.com/" target="_blank" title="Online Courses">CodeWithMosh</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Online Courses">Udemy</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Online Courses">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ dw2rl card END ________ -->
<!-- ________ *bingosz* Contributor card START ________ -->
<div class="card">
<p class="name">bingosz</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/grekuu" target="_blank">grekuu</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/DipeshMalvia" target="_blank" title="Youtube Channel">Dipesh Malvia</a>
</li>
<li>
<a href="https://www.youtube.com/c/WebDevSimplified" target="_blank" title="Youtube Channel">Web Dev Simplified</a>
</li>
<li>
<a href="https://www.youtube.com/c/Freecodecamp" target="_blank" title="Youtube Channel">freeCodeCamp.org</a>
</li>
</ul>
</div>
</div>
<!-- ________ *bingosz* Contributor card END ________ -->
<!-- ________ Tonyruizo card START ________ -->
<div class="card">
<p class="name">Tony</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/tonyruizo" target="_blank">@tonyruizo</a>
</p>
<p class="about">A Passionate Front End Web Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://m2.material.io/resources/color/#!/?view.left=0&view.right=0&primary.color=512DA8"
target="_blank" title="Create color">Color Tool</a>
</li>
<li>
<a href="https://www.ninjaunits.com/converters/pixels/pixels-rem/" target="_blank"
title="Convert Pixel to Rem">Pixel to Rem</a>
</li>
<li>
<a href="https://undraw.co/illustrations" target="_blank" title="Illustrations for Design">UnDraw</a>
</li>
</ul>
</div>
</div>
<!-- ________ tonyruizo card END ________ -->
<!-- ________ Mamadou's card START ________ -->
<div class="card">
<p class="name">Mamadou Aly sy</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/MamadouAlySy" target="_blank">@MamadouAlySy</a>
</p>
<p class="about">I love making music instruments, programming and gamming</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/Freecodecamp" target="_blank" title="Youtube channel with multiple courses">
FreeCodeCamp
</a>
</li>
<li>
<a href="https://scrimba.com/" target="_blank" title="A learning portal with lots of courses.">
Scrimba
</a>
</li>
<li>
<a href="https://open-bootcamp.com/" target="_blank" title="bootcamp in spanish with multiple courses and an incredible discord community">
open-bootcamp
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mamadou's card END ________ -->
<!-- ________ Marie Mueller card START ________ -->
<div class="card">
<p class="name">Marie Mueller</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/mariemueller-codes" target="_blank">mariemueller-codes</a>
</p>
<p class="about">Technology Senior Analyst | Beginner Mindset | Traveller | Curious | Learner</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow">Stack Overflow</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Youtube">Youtube</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="GitHub">GitHub</a>
</li>
</ul>
</div>
</div>
<!-- ________ Marie Mueller card END ________ -->
<!-- ________ Priyankar Pal card START ________ -->
<div class="card">
<p class="name">Priyankar Pal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/priyankarpal" target="_blank">@priyankarpal</a>
</p>
<p class="about">Hey! I am Priyankar Pal. Currently I am learning Full-Stack Development and also familiar with
C, C++, JAVA and Python </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.cprogramming.com/" target="_blank" title="First Resource">Learn C and C++ Programming
</a>
</li>
<li>
<a href="https://learngitbranching.js.org/" target="_blank" title="Second Resource">Learn Git
Branching</a>
</li>
<li>
<a href="https://www.hackerrank.com/" target="_blank" title="Third resource">Hackerrank</a>
</li>
</ul>
</div>
</div>
<!-- ________ Priyankar Pal card END ________ -->
<!-- ________ Alberto card START ________ -->
<div class="card">
<p class="name">Alberto</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/bolloh" target="_blank">@Bolloh</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/ValkoinenKissa" target="_blank">@ValkoinenKissa</a>
</p>
<p class="about">Hello World! I'm learning to coding in HTML and CSS.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.sublimetext.com/" target="_blank" title="Powerfull and lighter text editor">SublimeText</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Educational website for learning coding online">W3 Schools</a>
</li>
<li>
<a href="https://codepen.io/" target="_blank" title=" online community for testing and showcasing user-created HTML, CSS and JavaScript">CodePen</a>
</li>
</ul>
</div>
</div>
<!-- ________ Alberto card END ________ -->
<!-- ________ *walindi* Contributor card START ________ -->
<div class="card">
<p class="name">Walindi</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/walindi_b" target="_blank">@walindi_b</a>
</p>
<p class="about">I'm a software engineer and IT enthusiast</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Programming">Enhance your programming skills</a>
</li>
<li>
<a href="https://www.tutorialrepublic.com/" target="_blank" title="website development">Learn how to make a website</a>
</li>
<li>
<a href="https://www.linux.com/training-tutorials/complete-beginners-guide-linux/" target="_blank" title="Linux">Beginner guide to linux</a>
</li>
</ul>
</div>
</div>
<!-- ________ *walindi* Contributor card END ________ -->
<!-- ________ *scriptscrypt Contributor card START ________ -->
<div class="card">
<p class="name">scriptscrypt</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/scriptscrypt" target="_blank">@scriptscrypt</a>
</p>
<p class="about">I'm a passionate development fanatic</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Roadmaps">Roadmaps for any develeopment</a>
</li>
<li>
<a href="https://blog.logrocket.com/" target="_blank" title="Blogs">Log rocket blogs</a>
</li>
<li>
<a href="https://www.youtube.com/c/JavaScriptMastery" target="_blank" title="Youtube">Ytchannel - JavaScriptMastery </a>
</li>
</ul>
</div>
</div>
<!-- ________ scriptscrypt Contributor card END ________ -->
<!-- ________ *InnaOnosovska* Contributor card START ________ -->
<div class="card">
<p class="name">InnaOnosovska</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/InnaOnosovska" target="_blank">InnaOnosovska</a>
</p>
<p class="about">Hello World! Hello everyone!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.atlassian.com/git/tutorials/using-branches/git-checkout#:~:text=New%20Branches&text=The%20git%20branch%20command%20can,to%20switch%20to%20that%20branch." target="_blank" title="Git command tutorial">Tower</a>
</li>
<li>
<a href="https://www.youtube.com/c/ArtsiomRusauQALife" target="_blank" title="QA manual tutorials">Artsiom Rusau QA Life</a>
</li>
<li>
<a href="https://www.youtube.com/c/%D0%9B%D1%91%D1%88%D0%B0%D0%9C%D0%B0%D1%80%D1%88%D0%B0%D0%BB" target="_blank" title="Java for beginners tuto">Лёша Маршал</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Innen02Innen* Contributor card END ________ -->
<!-- ________ *Jeevan Naik* Contributor card START ________ -->
<div class="card">
<p class="name">Jeevan Naik</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/JeevanNaikOP" target="_blank">@JeevanNaikOP</a>
</p>
<p class="about">I'm an Application developer from India. Always in search of something new to learn.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/learn/" target="_blank" title="First Resource">Freecodecamp:- Learn to code freely, Interactively.</a>
</li>
<li>
<a href="https://www.w3schools.com/#" target="_blank" title="Second Resource">W3Schools:- Find documents and tutorials easily.</a>
</li>
<li>
<a href="https://www.tutorialspoint.com/index.htm" target="_blank" title="Third resource">TutorialsPoint:- Learn everything.</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Jeevan Naik* Contributor card END ________ -->
<!-- ________ Alina's card START _____ -->
<div class="card">
<p class="name">Alina QA</p>
<p class="contact">
<i class="fa-brands fa-instagram"></i>
<a href="https://instagram.com/qa_ambassador" target="_blank">@qa_ambassador</a>
</p>
<p class="about">Hello! My name is Alina. Greetings from Ukraine.
In my page you can follow my way from lawyer to QA</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://linkedin.com/" target="_blank" title="First Resource">LinkedIn</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="Second Resource">GitHub</a>
</li>
<li>
<a href="https://twitter.com/" target="_blank" title="Third resource">Twitter</a>
</li>
</ul>
</div>
</div>
<!-- ________ Alina's card END _____ -->
<!-- ________ *Nicole* Contributor card START ________ -->
<div class="card">
<p class="name">Nicole Dicochea</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/nicoledicochea" target="_blank">nicoledicochea</a>
</p>
<p class="about">Greetings from San Francisco! I'm a Full-Stack Developer looking to further my contribution to Open Source projects.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://leonnoel.com/100devs/" target="_blank" title="First Resource">100Devs</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">freeCodeCamp</a>
</li>
<li>
<a href="https://www.codewars.com/" target="_blank" title="Third resource">Codewars</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Nicole* Contributor card END ________ -->
<!-- ________ New Panuwat card START _____ -->
<div class="card">
<p class="name">New Panuwat</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/nilpanuwat" target="_blank">@nilpanuwat</a>
</p>
<p class="about">Hii! I am New Panuwat., a Software Engineer from Bangkok</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://refactoring.guru/" target="_blank" title="Refactor Guru">Refactor Guru</a>
</li>
<li>
<a href="https://www.packt.com/" target="_blank" title="Packt">Packt</a>
</li>
<li>
<a href="https://github.com/enaqx/awesome-react" target="_blank" title="Awesome React">Awesome React</a>
</li>
</ul>
</div>
</div>
<!-- ________ New Panuwat Contributor card END _____ -->
<!-- ________ *Shivang* Contributor card START ________ -->
<div class="card">
<p class="name">Shivang</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/shivang16" target="_blank">@shivang16</a>
</p>
<p class="about">I'm an Application Developer at Oracle. I love problem solving.
I'm looking forward to contribute to open source community.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="First Resource">This is the doc for development. I totally love it. </a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Second Resource">My first goto place for any References (absolute beginner friendly)</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">StackOverflow, you might have visited here atleast once if you've been doing development.</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Shivang* Contributor card END ________ -->
<!-- RahulRazj's Contributor card START -->
<div class="card">
<p class="name">RahulRazj</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/RahulRazj" target="_blank">@RahulRazj</a>
</p>
<p class="about">I am currently a Node.Js Backend developer. I am also interested in frontend and react.js and plan to learn react as well.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools Online Web Tutorials">W3Schools</a>
</li>
<li>
<a href="https://nodeschool.io/#workshoppers" target="_blank" title="Node School">Node School</a>
</li>
<li>
<a href="https://nodejs.org/en/docs/guides/debugging-getting-started/" target="_blank" title="Node JS Official Documentation">Node JS Documentation</a>
</li>
</ul>
</div>
</div>
<!-- RahulRazj's Contributor card END -->
<!-- ________ Archishman Dash card START ________ -->
<div class="card">
<p class="name">Archishman Dash</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/aholic_archie" target="_blank">@aholic_archie</a>
</p>
<p class="about">Hi, I am an Electrical Engineer. I am interested in programming the computer with python to solve mathematical problems involving numbers</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/aholic-archie/Project-Python-ate-the-Plus-Sign" target="_blank" title="Project-Python-ate-the-Plus-Sign">Github Repositories</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=8DvywoWv6fI&t=22977s" target="_blank" title="Python for Everybody">Freecodecamp & Charles Russell Severance on Youtube </a>
</li>
<li>
<a href="https://www.youtube.com/c/numberphile" target="_blank" title="Numberphile">Youtube Channel Numberphile</a>
</li>
</ul>
</div>
</div>
<!-- ________ Archishman Dash card END ________ -->
<!-- ________ JAGDF's Contributor card START ________ -->
<div class="card">
<p class="name">JAGDF</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/jagdf" target="_blank">@JAGDF</a>
</p>
<p class="about">about you
Hello! I am JAGDF, a 14-year-old student who shows interest in programming and computer engineering.
I love everything chocolate, I like to play video games, and I am currently learning Python, HTML and CSS.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://replit.com/~" target="_blank" title="Replit">Replit</a>
</li>
<li>
<a href="https://pypi.org/project/python-dev-tools/" target="_blank" title="PyPI Dev Tool">PyPI Dev Tool</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Glossary/HTML5" target="_blank" title="A Guide to HTML5 article">A Guide to HTML5 article</a>
</li>
>
Have a good day y'all
</ul>
</div>
</div>
<!-- ________ JAGDF's Contributor card END ________ -->
<!-- ________ kdipto1 Contributor card START ________ -->
<div class="card">
<p class="name">Dipto</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Kdipto2" target="_blank">Dipto</a>
</p>
<p class="about">MERN Stack Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://javascript.info/" target="_blank" title="First Resource">Javascript Info</a>
</li>
<li>
<a href="https://coolbackgrounds.io/" target="_blank" title="Second Resource">Cool Backgrounds</a>
</li>
<li>
<a href="https://uihut.com/" target="_blank" title="Third resource">UI HUT</a>
</li>
</ul>
</div>
</div>
<!-- ________ kdipto1 Contributor card END ________ -->
<!-- ________ ELDADBRHANO's Contributor card start ________ -->
<div class="card">
<p class="name">Eldad Brhano</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/ELDADBRHANO" target="_blank">@ELDADBRHANO</a>
</p>
<p class="about">My name is Eldad Brhano. I`m 23 years old, currently residing in Israel.
I love basketball, and to build things on web!
that's my first contribution, more to come.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="First Resource">Stack OverFlow</a>
</li>
<li>
<a href="https://leetcode.com/" target="_blank" title="Second Resource">Leetcode</a>
</li>
<li>
<a href="https://www.hackerrank.com/auth/login" target="_blank" title="Third resource">hacker rank</a>
</li>
</ul>
</div>
</div>
<!-- ________ ELDADBRHANO's Contributor card END ________ -->