forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
3091 lines (2981 loc) · 142 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" id="contributions">
<!-- ================================================ -->
<!-- ================== 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>
<i class="fab fa-github"></i>
<a href="https://www.github.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 ========= -->
<!-- ________ Mbitu Contributor carD START _________ -->
<div class="card">
<p class="name">Mbitu James</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/mbituke?t=Muk5dtcI0b2EsgyPGu424A&s=09" target="_blank">Twitter</a>
<i class="fab fa-github"></i>
<a href="https://github.com/mbitujames" target="_blank">github</a>
<i class="fab fa-instagram"></i>
<a href="https://instagram.com/_mbitu_?igshid=ZDdkNTZiNTM=" target="_blank">Instagram</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/mbitu-james-136b9519b" target="_blank">LinkedIn</a>
</p>
<p class="about"><p>
<h3> Hi there, I'm Mbitu james </h3><br>
<h4>A passionate Software Engineer from Kenya</h4>
</p>
<p>Passionate about creating pixel-perfect, user-friendly interfaces that bring ideas to life. I specialize in turning complex concepts into elegant, responsive web applications.</p>
<p>Proficient in HTML, CSS, JavaScript, and popular frameworks like React. Always staying up-to-date with the latest front-end technologies and best practices.</p></p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://spline.design/ai" target="_blank" title="First Resource">Spline.design</a>
</li>
<li>
<a href="https://www.useflytrap.com/" target="_blank" title="Second Resource">Flytrap</a>
</li>
<li>
<a href="https://poe.com/login" target="_blank" title="Third resource">Poe</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mbitu Contributor carD START _________ -->
<!-- ________ Eray Sahin Contributor card START ________ -->
<div class="card">
<p class="name">Eray Sahin</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/eraysahin06/" target="_blank">Linkedin</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/eraysahin06" target="_blank">GitHub</a>
</p>
<p class="about">I'm a full-stack developer currently collaborating with two startup organizations.</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.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</ul>
</div>
</div>
<!-- ________ Eray Sahin Contributor card END ________ -->
<!-- ________ Emanuel Enriquez Contributor card START ________ -->
<div class="card">
<p class="name">Emanuel Enriquez</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/emaenriquez/" target="_blank">LinkedIN</a>
<i class="fab fa-github"></i>
<a href="https://github.com/emaenriquez" target="_blank">GitHub</a>
</p>
<p class="about">Desarrollador de Software - Aprendiendo Python</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="chat openai">Chat GPT</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Emanuel Enriquez Contributor card END ________ -->
<!-- ________ SOHAM Contributor card START ________ -->
<div class="card">
<p class="name">Soham Roy</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Jamestor007"target="_blank">NOTON</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Soham-0047" target="_blank">SOHAM</a>
</p>
<p class="about">Passionate web developer and content creator</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://dev.to" target="_blank" title="Second Resource">DEV</a>
</li>
<li>
<a href="https://devdocs.io" target="_blank" title="Third resource">Devdocs</a>
</li>
</ul>
</div>
</div>
<!-- ________ SOHAM Contributor card END ________ -->
<!-- ________ Devesh Shukla Contributor card START ________ -->
<div class="card">
<p class="name">Devesh Shukla</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/imdeveshshukla/" target="_blank">Devesh</a>
<i class="fab fa-github"></i>
<a href="https://github.com/imdeveshshukla" target="_blank">imdeveshshukla</a>
</p>
<p class="about">I am a student of First year of MCA. My ambition is to become a full-stack web developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank" title="CSS Resource">CSS Resource</a>
</li>
<li>
<a href="https://css-tricks.com/snippets/css/a-guide-to-flexbox/" target="_blank" title="css-tricks">
CSS FlexBox Tricks
</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Dm tool">GeeksForGeeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ Devesh Shukla Contributor card END ________ -->
<!-- ________ Richu Sony Contributor card START ________ -->
<div class="card">
<p class="name">Richu Sony</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/richu-sony/" target="_blank">LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/richusony/" target="_blank">GitHub</a>
</p>
<p class="about">👋 Hello, I'm Richu Sony! 🚀 Full-Stack Web Developer | JavaScript Enthusiast</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="GeeksforGeeks">GeeksforGeeks</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Docs">MDN Docs</a>
</li>
<li>
<a href="https://www.npmjs.com/" target="_blank" title="npmjs">npmjs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Richu Sony Contributor card END ________ -->
<!-- ________ Angel Darco Contributor card START ________ -->
<div class="card">
<p class="name">Angel Darco</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/AngelDarco" target="_blank">@AngelDarco </a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/angeldarco/" target="_blank">@angeldarco </a>
</p>
<p class="about">Hi, Angel here, I am a very experimented front-end developer, just seeking for a new challenge.</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">MDN</a>
</li>
<li>
<a href="https://you.com/" target="_blank" title="Second Resource">You.com</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="Third resource">ChatGPT</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Charvi Contributor card START ________ -->
<div class="card">
<p class="name">Charvi</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/charviupreti/" target="_blank">LinkedIN</a>
<i class="fab fa-github"></i>
<a href="https://github.com/charviupreti" target="_blank">GitHub</a>
</p>
<p class="about">Coding enthusiast - currently exploring open source.</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.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Charvi Contributor card END ________ -->
<!-- ________ Sudhanshu Tripathi Contributor card START ________ -->
<div class="card">
<p class="name">Sudhanshu Tripathi</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sudhanshu-tripathi77/" target="_blank">LinkedIN</a>
<i class="fab fa-github"></i>
<a href="https://github.com/sudhanshu-77" target="_blank">Github</a>
</p>
<p class="about">Hi! My name is Sudhanshu I am Full-Stack enthusiast and Exploring Opensource.</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.geeksforgeeks.org/" target="_blank" title="Second Resource">GeeksforGeeks</a>
</li>
<li>
<a href="https://chat.openai.com" target="_blank" title="Third resource">ChatGPT</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sudhanshu Tripathi Contributor card END ________ -->
<!-- ________ Paul Webo Contributor card START ________ -->
<div class="card">
<p class="name">Paul Webo</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/paul-webo-910886248/" target="_blank">Paul</a>
<i class="fab fa-github"></i>
<a href="https://github.com/xi9d" target="_blank">Xi9d</a>
<i class="fab fa-youtube"></i>
<a href="https://www.youtube.com/@foxbash" target="_blank">Foxbash</a>
</p>
<p class="about">
Hi 😊 am Paul Webo, am a kenyan based programmer who loves to code. Am pretty good in JAVA🍵 and its frameworks and created some projects. Now am shifting to the side or python and a little in quantum computing. I believe in science and that it grows. For me
languages are just ways i express that. I have a youtube channel so maybe you could check that out
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://mega.nz/folder/xVBinJoC#IQ0QzdSLL-lb7VVTY7XbSQ" target="_blank" title="First Resource">All code with mosh videos</a>
</li>
<li>
<a href="https://nevonprojects.com/project-ideas/software-project-ideas/" target="_blank" title="Second Resource">Project ideas for anyone to try</a>
</li>
<li>
<a href="https://mega.nz/folder/DtARzS5I#D5it7IBEfT9vSJktGAs3aw" target="_blank" title="Third resource">Thank me later 🕸️</a>
</li>
</ul>
</div>
</div>
<!-- ________ Paul Webo Contribution🚀 ________ -->
<!-- ========= k8pai's contribution ========= -->
<div class="card">
<p class="name">Sudarsan K Pai</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/k8pai" target="_blank">@k8pai</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/k8pai" target="_blank">k8pai</a>
<i class="fab fa-linkedin"></i>
<a href="https://linkedin.com/in/k8pai" target="_blank">k8pai</a>
</p>
<p class="about">Full stack developer with a knack for CLI projects, extensions, and web apps, constantly push</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://liveblocks.io" target="_blank" title="First Resource">liveblocks.io</a>
</li>
<li>
<a href="https://github.com/k8pai/nextauth-cli" target="_blank" title="Second Resource">nextauth-cli</a>
</li>
<li>
<a href="https://tailwind-inputs.vercel.app" target="_blank" title="Third resource">tailwind-inputs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya Gaikwad Contributor card START ________ -->
<div class="card">
<p class="name">Aditya Gaikwad</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/aditya--gaikwad" target="_blank">aditya--gaikwad </a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/dev_adityag" target="_blank">dev_adityag</a>
<i class="fab fa-github"></i>
<a href="https://github.com/aaadityag" target="_blank">aaadityag</a>
</p>
<p class="about">A Fullstack enthusiast with the interest of open source contributions...</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.sololearn.com/profile" target="_blank" title="First Resource"> Sololearn(Website) </a>
</li>
<li>
<a href="https://wildlearner.com/" target="_blank" title="Second Resource"> Wildlearner(Website) </a>
</li>
<li>
<a href="https://coddy.tech/" target="_blank" title="Third resource"> Coddy(Website) </a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya Gaikwad Contributor card START ________ -->
<!-- ________ Bindu Sri Contributor card START ________ -->
<div class="card">
<p class="name">Bindu Sri</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/BinduSr50133873" target="_blank">Bindu Sri</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Bindusrinaik04" target="_blank">Bindusrinaik04</a>
</p>
<p class="about">A Tech Enthusiast with the interest in Programming,open source contribution...</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="First Resource">freecodecamp.org</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">GeeksforGeeks</a>
</li>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Third resource">roadmap.sh</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nathaniel Joseph Contributor card START ________ -->
<div class="card">
<p class="name">Nathaniel Joseph</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/nathaniel-joseph-8b172a291/" target="_blank">Nathaniel Joseph</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/nathanCodes05" target="_blank">@nathanCodes05</a>
<i class="fab fa-github"></i>
<a href="https://github.com/joeCodes05" target="_blank">joeCodes05</a>
</p>
<p class="about">Fullstack developer with 3years of experience. Based in Nigeria, available for remote and freelance jobs</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://udemy.com/" target="_blank" title="Second Resource">Udemy(Some courses are free)</a>
</li>
<li>
<a href="https://coursera.org/" target="_blank" title="Third resource">coursera</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya Gaikwad Contributor card START ________ -->
<div class="card">
<p class="name">Aditya Gaikwad</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/aditya--gaikwad" target="_blank">aditya--gaikwad</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/dev_adityag" target="_blank">dev_adityag</a>
<i class="fab fa-github"></i>
<a href="https://github.com/aaadityag" target="_blank">aaadityag</a>
</p>
<p class="about">A Fullstack enthusiast with the interest of open source contributions...</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.sololearn.com/profile" target="_blank" title="First Resource"> Sololearn(Website) </a>
</li>
<li>
<a href="https://wildlearner.com/" target="_blank" title="Second Resource">Wildlearner(Website)</a>
</li>
<li>
<a href="https://coddy.tech/" target="_blank" title="Third resource">Coddy(Website)</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya Gaikwad Contributor card START ________ -->
<!-- ________ Sumith Sai card START ________ -->
<div class="card">
<p class="name">Sumith Sai Koraboina</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sumith-sai-6b350121b/" target="_blank">@Koraboina Sumith Sai</a>
<i class="fab fa-github"></i>
<a href="https://github.com/SUMITHSAI" target="_blank">@SUMITHSAI</a>
<i class="fab fa-instagram"></i>
<a href="https://instagram.com/sumithsai004?igshid=NzZlODBkYWE4Ng==" target="_blank">@sumithsai004</a>
</p>
<p class="about">
Hello! I am Sumith Sai Koraboina, a driven and enthusiastic Web Developer and Cloud Architect. Pursuing a Bachelor's Degree in Computer Science and Engineering, I'm passionate about innovation and problem-solving. With a strong foundation in various programming
languages and a track record of successful projects, I'm very eager to leverage my skills in a real-world setting and contribute to the success of an industry-leading organization.
</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.geeksforgeeks.org/" target="_blank" title="GeeksforGeeks">GeeksforGeeks</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Jenkins">W3Schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sumith Sai Contributor card END ________ -->
<!-- ________ Vrund Raval Contributor card START ________ -->
<div class="card">
<p class="name">Vrund Raval</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/VrundRaval24" target="_blank">Twitter</a>
<i class="fab fa-github"></i>
<a href="https://github.com/vrundraval24" target="_blank">GitHub</a>
</p>
<p class="about">Hello, I am Vrund Raval. And I am CS student.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="ChatGPT">ChatGPT</a>
</li>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Codecademy">Codecademy</a>
</li>
<li>
<a href="http://neetcode.io" target="_blank" title="neetcode">Neet Code</a>
</li>
</ul>
</div>
</div>
<!-- ________ Vrund Raval Contributor card END ________ -->
<!-- ________ prasun dandapat card start ________ -->
<div class="card">
<p class="name">Prasun Dandapat</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/prasun-dandapat-6909a1184/" target="_blank">LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/5Prasun" target="_blank">GitHub</a>
</p>
<p class="about">Passionate Programmer open to explore</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/" target="_blank" title="RoadMap">RoadMap</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.codecademy.com/learn/paths/web-development" target="_blank" title="codeacademy"> codeacademy </a>
</li>
</ul>
</div>
</div>
<!-- ________ prasun dandapat card end ________ -->
<!-- ________ Sanyam Jain's card START ________ -->
<div class="card">
<p class="name">Sanyam Jain</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/IasSanyamJain" target="_blank">@IasSanyamJain</a>
</p>
<p class="about">I am a 3rd year student of B. Tech .</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://medium.com" target="_blank" title="Second Resource">Medium</a>
</li>
<li>
<a href="https://replit.com" target="_blank" title="Third resource">Replit</a>
</li>
</ul>
</div>
</div>
<!-- ________Sanyam Jain's card END ________ -->
<!-- ________ Amit VAghela card START ________ -->
<div class="card">
<p class="name">Amit Vaghela</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/AmitVaghela777" target="_blank">DhruvKadam17</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Amitkumar-Vaghela" target="_blank">DHRUVKADAM22</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/amit-vaghela-460634266/" target="_blank">LinkedIn</a>
</p>
<p class="about">I am currently doing backend Web development with Django also working on building REST APIs.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Roadmap">Roadmap</a>
</li>
<li>
<a href="https://www.showwcase.com/" target="_blank" title="showwcase">showwcase</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="Dev.to">Dev.to</a>
</li>
</ul>
</div>
</div>
<!-- ________ Amit Vaghela Card END ________ -->
<!-- ________ Abdulmateen Shamsi card START ________ -->
<div class="card">
<p class="name">Abdulmateen Shamsi</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://github.com/mateenshamsi" target="_blank">@Abdulmateen Shamsi</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/mateenshamsi" target="_blank">@Abdulmateen Shamsi</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/abdulmateen-shamsi-833116223" target="_blank">@Abdulmateen Shamsi</a>
</p>
<p class="about">I am currently doing fullstack development</p>
<div class="resources">
<p>3 Useful Web designing and fullstack development</p>
<ul>
<li>
<a href="https://www.youtube.com/@CodeWithHarry" target="_blank" title="CodeWithHarry"> Codewithharry Channel </a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PLu71SKxNbfoDqgPchmvIsL4hTnJIrtige" target="_blank" title="ReactJS"> ReactJS </a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PLfqMhTWNBTe3H6c9OGXb5_6wcc1Mca52n" target="_blank" title="Apna College"> Apna College Web Course </a>
</li>
</ul>
</div>
</div>
<!-- ________ Abdulmateen Shamsi Card END ________ -->
<!-- ________ cheezad card START ________ -->
<div class="card">
<p class="name">cheezad</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/cheezad0409" target="_blank">@cheezad0409</a>
<i class="fab fa-github"></i>
<a href="https://github.com/cheezad" target="_blank">@cheezad</a>
</p>
<p class="about">I am a rookie programmer who loves to go to the gym</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://neetcode.io/courses/full-stack-dev/0" target="_blank" title="Neetcode">Neetcode</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="ChatGPT">ChatGPT</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=B-ytMSuwbf8" target="_blank" title="WebDesignYoutube"> WebDesignYoutube </a>
</li>
</ul>
</div>
</div>
<!-- ________ cheezad card END ________ -->
<!-- ________ Debmalya card START ________ -->
<div class="card">
<p class="name">Debmalya Sadhukhan</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/debmalooo" target="_blank">@Debmalya Sadhukhan</a>
<i class="fab fa-github"></i>
<a href="https://github.com/deBmalooo" target="_blank">@deBmalooo</a>
</p>
<p class="about">Hi, my name is Debmalya.I am an aspiring web developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=61ppyY5rUB0&list=PLfqMhTWNBTe3H6c9OGXb5_6wcc1Mca52n&index=5" target="_blank" title="crash course!!"> Web dev crash course </a>
</li>
<li>
<a href="https://www.youtube.com/@AnshMehraa" target="_blank" title="Designing">UI/UX designing</a>
</li>
<li>
<a href="https://youtu.be/sscX432bMZo?si=tMe34OvLD0ilhQZU" target="_blank" title="Third resource"> JavaScript </a>
</li>
</ul>
</div>
</div>
<!-- ________ Debmalya Contributor card END ________ -->
<!-- ________ Vinay Adatiya card START ________ -->
<div class="card">
<p class="name">Vinay Adatiya</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Vinay_Adatiya" target="_blank">@Vinay_Adatiya</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Vinay94278" target="_blank">@Vinay94278</a>
<i class="fab fa-linkedin"></i>
<a href="www.linkedin.com/in/vinay-adatiya" target="_blank">@VinayAdatiya</a>
</p>
<p class="about">I am currently doing flutter devlopment and UI/UX designing.</p>
<div class="resources">
<p>3 Useful Designing and Flutter Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@wscubetech" target="_blank" title="Flutter">Flutter Playlist</a>
</li>
<li>
<a href="https://www.youtube.com/@AnshMehraa" target="_blank" title="UI/UX">UI/UX Design</a>
</li>
<li>
<a href="https://www.youtube.com/@createdbykoko" target="_blank" title="Flutter Projects"> Flutter Projects </a>
</li>
</ul>
</div>
</div>
<!-- ________ Vinay Adatiya Card END ________ -->
<!-- ________ Moksh-10 card START ________ -->
<div class="card">
<p class="name">Moksh Agrawal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/agmoksh10" target="_blank">@agmoksh10</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Moksh-10" target="_blank">@Moksh-10</a>
</p>
<p class="about">I am a college student learning blockchain , devops and machine learning</p>
<div class="resources">
<p>3 Useful Blockchain , devops and java with dsa Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/playlist?list=PLgPmWS2dQHW-BRQCQCNYgmHUfCN115pn0" target="_blank" title="Blockchain"> Blockchain Playlist </a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PL9gnSGHSqcnoqBXdMwUTRod4Gi3eac2Ak" target="_blank" title="Devops"> Devops Playlist </a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PL9gnSGHSqcnr_DxHsP7AW9ftq0AtAyYqJ" target="_blank" title="Java-DSA"> Java-DSA playlist </a>
</li>
</ul>
</div>
</div>
<!-- ________ Moksh-10 card END ________ -->
<!-- ________ dipayan23 card START ________ -->
<div class="card">
<p class="name">Bdipayan23 card</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/dipayan-sarkar-3bb516256/" target="_blank">LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/dipayan23" target="_blank">GitHub</a>
</p>
<p class="about">Hello I am dipayan sarkar a open source contributer, college student and a flutter developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="ChatGPT">ChatGPT</a>
</li>
<li>
<a
href="https://practice.geeksforgeeks.org/courses?source=google&medium=cpc&device=c&keyword=geeksforgeeks&matchtype=b&campaignid=20039445781&adgroup=147845288105&gad=1&gclid=Cj0KCQjw7JOpBhCfARIsAL3bobcNm9bU-z9CPFuldWGNAg2YXnULYz7RKU-O7a_i2V4XcWKaUmWIlmkaAnT4EALw_wcB"
target="_blank"
title="Codecademy"
>
GeeksForGeeks
</a>
</li>
<li>
<a href="https://www.w3schools.com/https://www.w3schools.com/" target="_blank" title="neetcode"> w3schools </a>
</li>
</ul>
</div>
</div>
<!-- ________ dipayan23 Contributor card END ________ -->
<!-- ________ ritam's card START ________ -->
<div class="card">
<p class="name">ritam's card</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ritam-pal-b38664253" target="_blank">LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Ritam-007" target="_blank">GitHub</a>
</p>
<p class="about">Hi this is Ritam Pal, Frontend developer and MERN Stack enthusiactic.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://tailblocks.cc/" target="_blank" title="tailblocks">Tailblocks</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN">mdn</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stackoverflow">StackOverFlow</a>
</li>
</ul>
</div>
</div>
<!-- ________ ritam's Contribution card END ________ -->
<!-- ________ ayushrakesh card START ________ -->
<div class="card">
<p class="name">ayushrakesh card</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ayush-rakesh-005b55228/" target="_blank">LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ayushrakesh" target="_blank">GitHub</a>
</p>
<p class="about">I am Ayush Rakesh , currently a 3rd year IT student. I am a Tech enthusiast specially in DevOps field , always interested in learning new things.</p>
<div class="resources">
<p>3 Useful DevOps Resources</p>
<ul>
<li>
<a href="https://docs.docker.com/" target="_blank" title="Docker">Docker</a>
</li>
<li>
<a href="https://kubernetes.io/docs/concepts/" target="_blank" title="Kubernetes">Kubernetes</a>
</li>
<li>
<a href="https://www.jenkins.io/doc/" target="_blank" title="Jenkins">Jenkins</a>
</li>
</ul>
</div>
</div>
<!-- ________ ayushrakesh Contributor card END ________ -->
<!-- ________ Panchal Priyank Card Start ________ -->
<div class="card">
<p class="name">Priyank Panchal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Priyank74878" target="_blank">Priyank74878</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Priyank911" target="_blank">Priyank911</a>
</p>
<p class="about">I am currently Doing App Development using Kotlin and XmL.</p>
<div class="resources">
<p>Useful Android Resources</p>
<ul>
<li>
<a href="https://developer.android.com/studio" target="_blank" title="Roadmap">Android Tools</a>
</li>
<li>
<a href="https://developer.android.com/studio/install" target="_blank" title="showwcase"> Android Installation </a>
</li>
<li>
<a href="https://developer.android.com/studio/projects/android-library" target="_blank" title="Dev.to"> Android Library </a>
</li>
</ul>
</div>
</div>
<!-- ________ Panchal Priyank card END ________ -->
<!-- ________ Smit Patel card START ________ -->
<div class="card">
<p class="name">Smit Patel</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/SmitPatel" target="_blank">smit09802</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/smit2749" target="_blank">SmitPatel</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/SmitPatel-/" target="_blank">LinkedIn</a>
</p>
<p class="about">I am currently doing backend Web development with Django also working on building REST APIs.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Roadmap">Roadmap</a>
</li>
<li>
<a href="https://www.showwcase.com/" target="_blank" title="showwcase">showwcase</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="Dev.to">Dev.to</a>
</li>
</ul>
</div>
</div>
<!-- ________ Smit Patel Card END ________ -->
<!-- ________ Dhruv Kadam card START ________ -->
<div class="card">
<p class="name">Dhruv Kadam</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/DhruvKadam17" target="_blank">DhruvKadam17</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/DHRUVKADAM22" target="_blank">DHRUVKADAM22</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/dhruv-kadam-/" target="_blank">LinkedIn</a>
</p>
<p class="about">I am currently doing backend Web development with Django also working on building REST APIs.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Roadmap">Roadmap</a>
</li>
<li>
<a href="https://www.showwcase.com/" target="_blank" title="showwcase">showwcase</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="Dev.to">Dev.to</a>
</li>
</ul>
</div>
</div>
<!-- ________ Dhruv Kadam Card END ________ -->
<!-- ________ Saffi's card START ________ -->
<div class="card">
<p class="name">SK SAFFI ULLA</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sk-saffiulla-144077195/" target="_blank">Sk Saffiulla</a>
<i class="fab fa-github"></i>
<a href="https://github.com/saffi-786" target="_blank">saffi-786</a>
</p>
<p class="about">Hi! I am Saffi and I am currently an undergraduate at NIT Rourkela. I am an aspiring front-end developer trying to build eye-catching responsive websites.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>