forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2422 lines (2319 loc) · 119 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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link href="https://fonts.googleapis.com/css2?family=Domine&display=swap" rel="stylesheet" />
<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.6.3/jquery.min.js"
integrity="sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ=="
crossorigin="anonymous"
></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"
target="_blank"
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>
<!-- ________ *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 ========= -->
<!-- ________ Jasper-Claus card start ________ -->
<div class="card">
<p class="name">Jasper-Claus</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Jasper-Claus/" target="_blank">Jasper-Claus</a>
</p>
<p class="about">I am a 15 year old student from Germany.
I discovered my passion in working with computers.
In 2022 I started with web development.Since then it has become a hobby for me.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://fontawesome.com/" target="_blank" title="fontawesome">fontawesome</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="stackoverflow">stackoverflow</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Flutter and dart development">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Jasper-Claus card END ________ -->
<!-- ________ *Alain Moratalla* Contributor card START ________ -->
<div class="card">
<p class="name">Alain Moratalla</p>
<p class="contact">
<i class="fas fa-user-alt"></i>
<a href="https://alainmoratalla.com" target="_blank" rel="noopener noreferrer">alainmoratalla.com</a>
<i class="fab fa-github"></i>
<a href="https://github.com/almoratalla" target="_blank" rel="noopener noreferrer">almoratalla</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/realmoratalla/" target="_blank" rel="noopener noreferrer">realmoratalla</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/@almoratalla" target="_blank" rel="noopener noreferrer">@almoratalla</a>
</p>
<p class="about">I work as a dev in the Philippines. Let's connect! 👋</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs" rel="noopener noreferrer">MDN</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="The Odin Project" rel="noopener noreferrer">The Odin Project</a>
</li>
<li>
<a href="https://www.frontendmentor.io/" target="_blank" title="Frontend Mentor" rel="noopener noreferrer">Frontend Mentor</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *vanshik * Contributor card START ________ -->
<div class="card">
<p class="name">Vanshika rai</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/vanshik112/" target="_blank">vanshik112</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/vanshik/" target="_blank">vanshik</a>
</p>
<p class="about">I have knowledge about tech and want to start contributing to projects</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.leetcode.org/" target="_blank" title="freecodecamp">leetcode</a>
</li>
<li>
<a href="https://geeksforgeeks.com/" target="_blank" title="stackoverflow">gfg</a>
</li>
<li>
<a href="https://neetcode.com/" target="_blank" title="HTML CSS JavaScript learning">neetcode</a>
</li>
</ul>
</div>
</div>
<!-- ________ *vanshik * Contributor card END ________ -->
<!-- ________ *Fred Vuni* Contributor card START ________ -->
<div class="card">
<p class="name">Fred Vuni</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/FREDVUNI/" target="_blank">FREDVUNI</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/fred-vuni-3028a721b/" target="_blank">Fred Vuni</a>
</p>
<p class="about">I love the tech space. It's great to see what I have managed to accomplish with my skills and the people I have met, even though I'm not a people person. I have a particular fondness for open source; I'm using it as a way to break out of tutorial hell.</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://stackoverflow.com/" target="_blank" title="stackoverflow">stackoverflow</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="HTML CSS JavaScript learning">MDN Web Docs - Mozilla</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Fred Vuni* Contributor card END ________ -->
<!-- ________ *Yuvraj Katkar* Contributor card START ________ -->
<div class="card">
<p class="name">Yuvraj Katkar</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/YuvrajKatkar" target="_blank">YuvrajKatkar</a>
</p>
<p class="about">Dev starting out in open source</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=UexP3Q4PJIw" target="_blank" title="Code Eater">Code Eater Youtube Channel</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">Geek for geeks</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third Resource">Stack Overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Yuvraj Katkar* Contributor card END ________ -->
<!-- ________ *Hari Kiran* Contributor card START ________ -->
<div class="card">
<p class="name">Hari Kiran</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/hari-kiran-k/" target="_blank">Hari Kiran</a>
</p>
<p class="about">Introducing myself, a dedicated android developer fueled by a love for creating intuitive and user-centric mobile experiences. With a meticulous attention to detail and a passion for cutting-edge technology, I strive to bring ideas to life, one line of code at a time. 📱💻 #AndroidDeveloper #PassionateCreator</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/enaqx/awesome-react" target="_blank" title="Resources and tools for react">Awesome React</a>
</li>
<li>
<a href="https://reactpatterns.com/" target="_blank" title="React Patterns to master">React Patterns</a>
</li>
<li>
<a href="https://www.smashingmagazine.com/" target="_blank" title="online publication that covers web design and development">Smashing Magazine</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Hari Kiran* Contributor card END ________ -->
<!-- ________ *Kelvin Iseh* Contributor card START ________ -->
<div class="card">
<p class="name">Kelvin Iseh</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/kelvKaizen" target="_blank">kelvKaizen</a>
</p>
<p class="about">A solid developer looking to contribute to open source.</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>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">Geek for geeks</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Kelvin Iseh* Contributor card END ________ -->
<!-- ________ *Sunny Dubey* Contributor card START ________ -->
<div class="card">
<p class="name">Sunny Dubey</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/sunny__dubey" target="_blank">@sunny__dubey</a>
</p>
<p class="about">An enthusiastic and highlly motivating man!</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>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">Stack Overflow</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Sunny Dubey* Contributor card END ________ -->
<!--Contributor card START ChrisMV2007-->
<div class="card">
<p class="name">ChrisMV2007</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/ChrisMV2007" target="_blank">ChrisMV2007</a>
</p>
<p class="about">I'm a high schooler looking to get started with open source code.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.tutorialspoint.com/python_technologies_tutorials.htm" target="_blank" title="First Recourse">Tutorials Point</a>
</li>
<li>
<a href="https://stackoverflow.com/" title="Second Recourse">Stack Overflow</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=I6ypD7qv3Z8" target="_blank" title="Third Recourse">Benawad Fullstack Tutorial</a>
</li>
</ul>
</div>
</div>
<!-- Contributor card END ChrisMV2007-->
<!-- ________ *Ahmed Contributor card START ________ -->
<div class="card">
<p class="name">Oladapo Ahmed</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/Dr_Devex/" target="_blank">@Dr_Devex</a>
<i class="fab fa-facebook"></i>
<a href="https://www.facebook.com/DrDevex" target="_blank">facebook</a>
<i class="fab fa-github"></i>
<a href="http://github.com/DrDevex" target="_blank">Projects</a>
<i class="fab fa-hashnode"></i>
<a href="https://drdevex.hashnode.dev" target="_blank">Blog</a>
<i class="fab fa-linkedin"></i>
<a href="http://linkedin.com/in/drdevex" target="_blank">Linkedin</a>
</p>
<p class="about">Software Engineering Student | Learning and Exploring AI and Machine Learning</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://mega.nz/folder/p9kUGCgZ" target="_blank" title="100 days web-development bootcamp course by acrademind file download">100 Days of Web Development Bootcamp <i>Decryption Key: <strong>0Itnvt6BkHWLaVeXERFYQg</strong></i></a>
</li>
<li>
<a href="https://mega.nz/folder/3WhSkBjJ#YSDBnDegckd9-xSQ04W0qA/folder/DWpi0DBS" target="_blank" title="Angela Yu web dev full course file download">Angela Yu Full Web Dev Course</a>
</li>
<li>
<a href="https://mega.nz/#!RZMSFAZa!bfshe8R6c_QeYNvCgo7cZ0SPxLk2YFM5z-UEDrK6FpQ" target="_blank" title="Coding Interview prep into big tech file download">Cracking Coding Interview : Data Structure & Algorithm FAANG <i>Password: <strong>XDJ</strong></i></a>
</li>
</ul>
</div>
</div>
<!-- ________ Ahmed Contributor card END ________ -->
<!-- ________ lastdeveloper contribution card START ________ -->
<div class="card">
<p class="name">Last Developer</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/mohit_lastdev" target="_blank">mohit-lastdev</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Resources</p>
<ul>
<li>
<a href="https://www.digitalocean.com/community/tutorial_series/how-to-code-in-javascript" target="_blank" title="First Resource">How to code in js</a>
</li>
<li>
<a href="https://twitter.com/" target="_blank" title="Second Resource">Twitter - to connect with people</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">Stackoverflow - to find solution of errors </a>
</li>
</ul>
</div>
</div>
<!-- ________ lastdeveloper contribution card END ________ -->
<!-- ________ Shafin Contributor card START ________ -->
<div class="card">
<p class="name">Shafin</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ShafinShaikh25" target="_blank">shafinshaikh25</a>
</p>
<p class="about">Curious and ambitious web3 and software dev</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=UexP3Q4PJIw" target="_blank" title="Code Eater">Code Eater Youtube Channel</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Free Code Camp">Freecodecamp</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow">Great Dev Community</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shafin's Contributor card END ________ -->
<div class="card">
<p class="name">Pedro Botolli</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/pedro-botolli/" target="_blank">pedro-botolli</a>
<i class="fab fa-github"></i>
<a href="https://github.com/pedrobotolli" target="_blank">pedrobotolli</a>
</p>
<p class="about">Hello! I work as a RPA Developer and I'm currently learning javascript.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.digitalocean.com/community/tutorial_series/how-to-code-in-javascript" target="_blank" title="DigitalOcean How to Code in Javascript">DigitalOcean How to Code in Javascript</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=Oe421EPjeBE" target="_blank" title="Node.js and Express.js - Full Course">Node.js and Express.js - Full Course</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=8aGhZQkoFbQ" target="_blank" title="Javascript Event Loop">Understand Javascript Event Loop</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Ckontomitros Contributor card START ________ -->
<div class="card">
<p class="name">Christos</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/CKontomitros" target="_blank">@CKontomitros</a>
</p>
<p class="about">Java back end developer with a little bit of devops</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.rust-lang.org/learn" target="_blank" title="Rust">A place to learn rust</a>
</li>
<li>
<a href="https://twitter.com/" target="_blank" title="Twitter">Twitter a social platform to connect with the dev community </a>
</li>
<li>
<a href="https://hashnode.com/" target="_blank" title="HashNode">Blogging community for developers</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ckontomitros Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Lion King</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/topmsdreamer" target="_blank">Github</a>
</p>
<p class="about">I’m looking for high skilled developers.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="I recommend this site for developers as perfect documents.">W3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="I recomment this site for full resource!">FreeCodeCamp</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="I recommend this site for perfect answers.">StackOverFlow</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Saloni Contributor card START ________ -->
<div class="card">
<p class="name">Saloni</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ssalonirajput" target="_blank">ssalonirajput</a>
</p>
<p class="about">I like Full-Stack and Blockchain Devlopment</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://syntax.fm/" target="_blank" title="Syntax.fm Podcast">Resource 1</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN online resource">Resource 2</a>
</li>
<li>
<a href="http://www.freecodecamp.org/" target="_blank" title="Freecodecamp website">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ Saloni's Contributor card END ________ -->
<!-- ________ ChSatyaSavith Contributor card START ________ -->
<div class="card">
<p class="name">Ch Satya Savith</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ch-satya-savith-99092423b" target="_blank">Ch Satya Savith</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ChSatyaSavith" target="_blank">Ch Satya Savith</a>
</p>
<p class="about">I like to code when i have nothing to do, so i end up coding for a long time</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Full Stack Development">Full Stack Development</a>
</li>
<li>
<a href="https://devdocs.io/" target="_blank" title="Web Documentation">Quick access to documentation for a wide range of programming languages</a>
</li>
<li>
<a href="https://css-tricks.com/" target="_blank" title="CSS">A website dedicated to CSS with tutorials</a>
</li>
</ul>
</div>
</div>
<!-- ________ ChSatyaSavith Contributor card END ________ -->
<!-- ________ RensHinke card START ________ -->
<div class="card">
<p class="name">Rens Hinke</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/RensHinke" target="_blank">GitHub Account</a>
</p>
<p class="about">Hi there, I like to play tennis and I like programming.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Resource for learning how to code">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Docs on everything Web development">MDN Web Docs</a>
</li>
<li>
<a href="https://youtu.be/y3UH2gAhwPI" target="_blank" title="YT video for learning HTML and CSS">HTML and CSS Tutorial for Beginners</a>
</li>
</ul>
</div>
</div>
<!-- ________ RensHinke card END ________ -->
<!-- ________ *Lazerx2reem* Contributor card START ________ -->
<div class="card">
<p class="name">Arsh Gupta</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/arsh_not_found/" target="_blank">arsh_not_found</a>
</p>
<p class="about">Hey guys! i like reading and sketching and trying to be the best version of myself</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtu.be/dQw4w9WgXcQ" target="_blank" title="Good video regarding learning">Learning to Code</a>
</li>
<li>
<a href="https://www.codechef.com/" target="_blank" title="Good Website to learn">Code Chef</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Also good">Free Code Camp</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Lazerx2reem* Contributor card END ________ -->
<!-- ________ DC Contributor card START ________ -->
<div class="card">
<p class="name">Daniel C.</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/danielcharbel" target="_blank">DC</a>
</p>
<p class="about">Just a developer testing Github and VS Code Integration</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://leetcode.com/" target="_blank" title="LeetCode">Leet Code</a>
</li>
<li>
<a href="https://www.hackerrank.com/" target="_blank" title="HackerRank">Hacker Rank</a>
</li>
<li>
<a href="https://www.codingame.com/" target="_blank" title="CodinGame">CodinGame</a>
</li>
</ul>
</div>
</div>
<!-- ________ DC Contributor card END ________ -->
<!-- ________ PaoloJr90 card START ________ -->
<div class="card">
<p class="name">PJ Angeloni</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/pjangeloni/" target="_blank">Paolo Jr A.</a>
<i class="fab fa-github"></i>
<a href="https://github.com/PaoloJr90" target="_blank">PaoloJr90</a>
</p>
<p class="about">Humble newcomer to programming and loving it ;)</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="freeCodeCamp">freeCodeCamp</a>
</li>
<li>
<a href="https://www.edx.org/" target="_blank" title="edX">edX</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="dev.to">dev.to</a>
</li>
</ul>
</div>
</div>
<!-- ________ PaoloJr90 card END ________ -->
<!-- ________ JermyDeer card START ________ -->
<div class="card">
<p class="name">Jeremy</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/JermyDeer" target="_blank">github.com/JermyDeer</a>
</p>
<p class="about">Canadian learning to code.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://codigo.ca/tutorials/how-to-get-into-coding" target="_blank" title="An article on just getting started.">How to Get Into Coding</a>
</li>
<li>
<a href="https://teamtreehouse.com/" target="_blank" title="A learning platform with helpful community.">teamtreehouse</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="Low-cost tutoring with only a small chance of Skynet.">ChatGPT</a>
</li>
</ul>
</div>
</div>
<!-- ________ JermyDeer card END ________ -->
<!-- ________ Mohd Faisal Aftab card START ________ -->
<div class="card">
<p class="name">Mohd Faisal Aftab</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/faisal0110" target="_blank">faisal0110</a>
</p>
<p class="about">I am someone who like to know what is happening in the world what is the reason behind it. I like to follow world news as well as ehat is happening in business world technology wise. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://cs50.harvard.edu/x/2023/" target="_blank" title="A beginner course on programming">CS50x</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/web-development/" target="_blank" title="Web development introduction">GeeksforGeeks</a>
</li>
<li>
<a href="https://www.w3schools.com/whatis/" target="_blank" title="Quick remembering">W3schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mohd Faisal Aftab card END ________ -->
<!-- ________ JjJjJose Contributor card END ________ -->
<div class="card">
<p class="name">jose</p>
<p class="contact">
<i class="JjJjJose github"></i>
<a href="https://github.com/JjJjJose" target="_blank">github :D</a>
</p>
<p class="about">im from brazil and i really enjoy programming and drawing :D<p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/tags/default.asp" target="_blank" title="First Resource">literally a programming dictionary</a>
</li>
<li>
<a href="https://openai.com/blog/chatgpt" target="_blank" title="Second Resource">use it! it wont steal your job or anything like that</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=wB8AArJG6BE" target="_blank" title="Third resource">jazz is literally the most powerful music in mankind</a>
</li>
</ul>
</div>
</div>
<!-- ________ JjJjJose Contributor card END ________ -->
<!-- _________MANISH Contributor card Start ________ -->
<div class="card">
<p class="name">Manish</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/manish0kuniyal" target="_blank">manish0kuniyal</a>
</p>
<p class="about">Hello there! I am really Interested in web technologies and machine learning 👨💻</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.tutorialsteacher.com/typescript" target="_blank" title="typescript">Learn Typescript</a>
</li>
<li>
<a href="https://www.fullstack.cafe/blog/mern-stack-interview-questions" target="_blank" title="MERN Interview Questions">MERN Interview Prep</a>
</li>
<li>
<a href="https://buildmedia.readthedocs.org/media/pdf/django/2.2.x/django.pdf" target="_blank" title="Django">DJANGO Guide pdf</a>
</li>
</ul>
</div>
</div>
<!-- _______ MANISH Contributor card END ________ -->
<!-- ________ Vincent card START ________ -->
<div class="card">
<p class="name">Vincent Williams</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/vincentw3909" target="_blank">@vincentw3909</a>
</p>
<p class="about">Hi everyone! I'm studying to be a Front End Web Developer! It's not that easy but not that hard. 😂</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/" target="_blank" title="First Resource">Udemy</a>
</li>
<li>
<a href="https://learningwebdesign.com/" target="_blank" title="Second Resource">Learning Web Design (Good beginners book)</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Vincent card END ________ -->
<!-- ________ Bronson H card START ________ -->
<div class="card">
<p class="name">Bronson H</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/bronson-h" target="_blank">Bronson</a>
</p>
<p class="about">Hello! I'm new to GitHub and am practicing</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.leetcode.com" target="_blank" title="First Resource">Leet Code</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Second Resource">w3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Shailendra card START ________ -->
<div class="card">
<p class="name">Shailendra Kumar</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Shailen20351388" target="_blank">Shailendra</a>
</p>
<p class="about">Hello guys ! happy coding everyone 🙂 </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">Free Code Camp</a>
</li>
<li>
<a href="https://www.javatpoint.com/" target="_blank" title="Second Resource">Javatpoint</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">GeeksforGeeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shailendra card END ________ -->
<!-- ________ *Adrew Kirts Contributor card START ________ -->
<div class="card">
<p class="name">Adrew Kirts</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Adrew-Kirts" target="_blank">Adrew Kirts</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/sindresorhus/awesome" target="_blank" title="Awesome list for devs">Awesome</a>
</li>
<li>
<a href="https://github.com/kamranahmedse/developer-roadmap" target="_blank" title="Roadmap to what kind of dev you want to become">Dev Roadmap</a>
</li>
<li>
<a href="https://medium.com/@tu7a1k23/the-difference-between-ssl-https-protocol-and-ssh-protocol-c06689180bac" target="_blank" title="Difference SSH/HTTPS">Difference between SSH and HTTPS</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Adrew Kirts Contributor card END ________ -->
<!--- Minku Card start --->
<div class="card">
<p class="name">Minku Bhai</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/mayhim182" target="_blank">GitHub Account</a>
</p>
<p class="about">I work as Senior Software Engineer at CG</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">Free Code
Camp</a>
</li>
<li>
<a href="https://howkteam.vn/" target="_blank" title="Second Resource">Howkteam</a>
</li>
<li>
<a href="https://viblo.asia" target="_blank" title="Third resource">viblo</a>
</li>
</ul>
</div>
</div>
<!--- Minku Card end --->
<!-- ________ Andy card START ________ -->
<div class="card">
<p class="name">Andrew Grant</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/AndrewJBGrant" target="_blank">AndrewJBGrant</a>
</p>
<p class="about">Hello 👋, I am trying to find my way into open source contributions and this is a great start!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.joshwcomeau.com/" target="_blank" title="An incredible and inspiring front-end resource">Josh Comeau's blog</a>
</li>
<li>
<a href="https://www.apollographql.com/tutorials/" target="_blank" title="A very well made and engaging guide for learning GraphQl">GraphQl tutorials(Apollo)</a>
</li>
<li>
<a href="https://boringrails.com/" target="_blank" title="Boring Rails: Skip the bulls**t and ship fast">Boring Rails 🤟</a>
</li>
</ul>
</div>
</div>
<!-- ________ Andy card END ________ -->
<!-- ________ Shashank Contributor card START ________ -->
<div class="card">
<p class="name">Shashank</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Shashan71922016" target="_blank">Shashank</a>
</p>
<p class="about">Yo! Shashank here, great to see you all! Happy Coding;-D</p>
<div class="resources">
<p>2 Useful Dev Resources</p>
<ul>
<li>
<a href="www.leetcode.com" target="_blank" title="First Resource">LeetCode</a>
</li>
<li>
<a href="https://practice.geeksforgeeks.org" target="_blank" title="Second Resource">GFG</a>
</li>
<li>
<a href="https://www.interviewbit.com/practice/" target="_blank" title="Third Resource">Interview Bit</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shashank card END ________ -->
<!-- ________ Tan card START ________ -->
<div class="card">
<p class="name">Tan Nguyen</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/TanNguyen120" target="_blank">GitHub Account</a>
</p>
<p class="about">Im a freshly graduated CS student in VietNam.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">Free Code
Camp</a>
</li>
<li>
<a href="https://howkteam.vn/" target="_blank" title="Second Resource">Howkteam</a>
</li>
<li>
<a href="https://viblo.asia" target="_blank" title="Third resource">viblo</a>
</li>
</ul>
</div>
</div>
<!-- ________ Tan card END ________ -->
<!-- ________ Owen card START ________ -->
<div class="card">
<p class="name">Owen Lee</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/owenrogers545" target="_blank">@owenrogers545</a>
</p>
<p class="about">"Hi there! I'm Owen Lee, and I'm thrilled to introduce myself as a React developer. I have a genuine passion for creating exceptional user experiences and building intuitive interfaces that leave a lasting impression. With React as my go-to framework, I have honed my skills in crafting dynamic and responsive web applications.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://grid.malven.co/" target="_blank" title="First Resource">Css grid</a>
</li>
<li>
<a href="https://css-tricks.com/snippets/css/media-queries-for-standard-devices/" target="_blank" title="Second Resource">Media Queries tips</a>
</li>
<li>
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/" target="_blank" title="Third resource">Css Flexbox</a>
</li>
</ul>
</div>
</div>
<!-- ________ Owen card END ________ -->
<!-- ________ Tolga card START ________ -->
<div class="card">
<p class="name">Tolga Özbek</p>
<p class="contact">