forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2335 lines (2253 loc) · 94.7 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 ========= -->
<!-- ________ Rahul's card START ________ -->
<div class="card">
<p class="name">Rahul Kumar</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/i_amrahul8" target="_blank">@i_amrahul8</a>
</p>
<p class="about"> I am a technology enthusiast and love competitive programming. Along with I am pursuing my B.Tech with a specialization in Civil Engineering</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://dev.to/iamrahul/kubernetes-or-cloud-foundry-cloud-native-app-deployment-512k" target="_blank" title="First Resource">Kubernetes or Cloud Foundry</a>
</li>
<li>
<a href="https://medium.com/@iamrahul8/webdesign-process-know-this-before-beginning-845dbc48765e" target="_blank" title="Second Resource">WebDesign Process : Know this before beginning</a>
</li>
<li>
<a href="https://dev.to/iamrahul/error-404-page-not-found-5033" target="_blank" title="Third resource">Error 404 : Page not Found ?</a>
</li>
</ul>
</div>
</div>
<!-- ________Rahul's card END ________ -->
<!-- ________ Nandani's card START ________ -->
<div class="card">
<p class="name">Nandani Patel</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Nandani_1406" target="_blank">@Nandani_1406</a>
</p>
<p class="about">Developer, pursuing my BE and intrested in open source contribution</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://dribbble.com/" target="_blank" title="First Resource">Dribble</a>
</li>
<li>
<a href="https://in.pinterest.com/" target="_blank" title="Second Resource">Pinterest</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">Stack Overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nandani's card END ________ -->
<!-- ________ Aditya's card START ________ -->
<div class="card">
<p class="name">Aditya Mathur</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/Aditya25062" target="_blank">@Aditya25062</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>computers student working on improving git skills in order to contribute to open source projects :)</p>
<ul>
<li>
<a href="https://adityamathur25.github.io/Portfolio/" target="_blank" title="First Resource">This is my portfolio Currently Under Developement</a>
</li>
<li>
<a href="https://codepen.io/" target="_blank" title="Second Resource">Codepen</a>
</li>
<li>
<a href="https://web-dev-resources.com/#/" target="_blank" title="Third resource">All resources you can find here</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya's card END ___________ -->
<!-- ________ Piyush's card START ________ -->
<div class="card">
<p class="name">Piyush Chandel</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Piyush_Chandel7" target="_blank">@Piyush_Chandel7</a>
</p>
<p class="about">A Front-End Developer, currently learning git and contributing into various open-source projects</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/thedaviddias/Resources-Front-End-Beginner" target="_blank" title="First Resource">The most essential list of resources for Front-End beginners.</a>
</li>
<li>
<a href="https://github.com/bradtraversy/design-resources-for-developers" target="_blank" title="Second Resource">Curated list of design and UI resources.</a>
</li>
<li>
<a href="https://github.com/learning-zone/website-templates" target="_blank" title="Third resource">Website templates.</a>
</li>
</ul>
</div>
</div>
<!-- ________ Piyush's card END ________ -->
<!-- ________ Manmohan card START ________ -->
<div class="card">
<p class="name">Manmohan Dhal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Manmohan212" target="_blank">@Manmohan212</a>
</p>
<p class="about">I am currently in third year B.Tech in computer science. I am learning git,github
to contribute to various open souce projects and hacktober fest 2022. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://medium.freecodecamp.org/" target="_blank" title="Excellent articles every day">FreeCodeCamp Medium Publication</a>
</li>
<li>
<a href="https://codepen.io/" target="_blank" title="Great coding challenged and resources"> Codepen</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow">Stack Overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ Manmohan card END ________ -->
<!-- ________ shivam's card START ________ -->
<div class="card">
<p class="name">shivam</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/DogSk9901" target="_blank">@DogSk9901</a>
</p>
<p class="about">Engineering student working on improving git skills in order to contribute to open source projects :)</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 Resources for Developers, by Developers
</a>
</li>
<li>
<a href="https://cs50.harvard.edu/x/2022/" target="_blank" title="Second Resource">
CS50x Inroduction to Computer Science
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ shivam's card END ________ -->
<!-- ________ Snehal card START ________ -->
<div class="card">
<p class="name">Snehal Senapati</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/SenapatiSnehal" target="_blank">@SenapatiSnehal</a>
</p>
<p class="about">I am currently pursying third year B.E in Electronics and Communication.I am tech enthusiast and always have deep interest to learn new stack.I also making projects on full stack. I am learning git,github
to contribute to various open souce projects and hacktober fest.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="First Resource">A full-stack curriculum that would guide your path in your journey to web development mastery.</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=j9oBzlfex6g" target="_blank" title="Second Resource">Web Dev podcast</a>
</li>
<li>
<a href="https://web-dev-resources.com/#/" target="_blank" title="Third resource">All resources you can find here</a>
</li>
</ul>
</div>
</div>
<!-- ________Snehal card END ________ -->
<!-- ________ *Srijoy* Contributor card START ________ -->
<div class="card">
<p class="name">Srijoy Paul</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/SdDecent" target="_blank">@SdDecent</a>
</p>
<p class="about">I am currently pursuing a Bachelor of Science in Computer Engineering. I am currently studying DSA and web development. I am also excited about AI and what it has to offer in terms of solving problems in a modern and effective manner.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/EbookFoundation/free-programming-books" target="_blank" title="First Resource">Progamming Ebooks Repo</a>
</li>
<li>
<a href="https://github.com/kamranahmedse/developer-roadmap" target="_blank" title="Second Resource">Roadmaps for different techs</a>
</li>
<li>
<a href="https://devdocs.io/" target="_blank" title="Third resource">Documentation for different technologies</a>
</li>
</ul>
</div>
</div>
<!-- ________*Srijoy* Contributor card END ________ -->
<!-- ________ Sambhav card START ________ -->
<div class="card">
<p class="name">Sambhav Jha</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Sambhav63049276" target="_blank">@Sambhav63049276</a>
</p>
<p class="about">I am currently pursying third year B.E in computer science. I am learning git,github
to contribute to various open souce projects and hacktober fest.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://goodfirstissue.dev/" target="_blank" title="First Resource">Good-first-issue</a>
</li>
<li>
<a href="https://www.codewars.com" target="_blank" title="Second Resource">Codewars</a>
</li>
<li>
<a href="https://www.youtube.com/c/TheNetNinja" target="_blank" title="Third Resource">
TheNetNinja's Youtube Channel
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sambhav card END ________ -->
<!-- ________ Nakul's card START ________ -->
<div class="card">
<p class="name">Nakul Gupta</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Nakul7510" target="_blank">@Nakul7510</a>
</p>
<p class="about">
I am currently pursuing Bachelor's degree in Computer Engineering. I'm interested to work in field of Artificial Intelligence and Machine Learning and to contribute in open source.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://microsoft.github.io/ML-For-Beginners/#/" target="_blank" title="ML resources">ML for begineers</a>
</li>
<li>
<a href="https://i.am.ai/roadmap/#machine-learning-roadmap" target="_blank" title="Second Resource">Roadmap for Machine Learning</a>
</li>
<li>
<a href="https://github.com/Asabeneh?tab=repositories" target="_blank" title="Third resource">Material to learn different programming languages</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nakul's card END ________ -->
<!-- ________ Deepanshu's card START ________ -->
<div class="card">
<p class="name">Deepanshu Manocha</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/dmanocha464" target="_blank">@dmanocha464</a>
</p>
<p class="about">I am 2021 passout with 1 year of experience, currently working as a software engineer. I am learning git,github
to contribute to various open souce projects.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://goodfirstissue.dev/" target="_blank" title="First Resource">Site if you are looking for good-first-issue</a>
</li>
<li>
<a href="https://www.virustotal.com/gui/home/upload" target="_blank" title="Second Resource">Scan any suspicious link before opening</a>
</li>
<li>
<a href="https://discord.gg/scaler" target="_blank" title="Third resource">Link to join discord community of coders that learns and scales together</a>
</li>
</ul>
</div>
</div>
<!-- ________ Deepanshu's card END ________ -->
<!-- ________ Sanjog's card START ________ -->
<div class="card">
<p class="name">Sanjog Rijal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/sanjogrijal215" target="_blank">@sanjogrijal215</a>
</p>
<p class="about">
I am a Software Engineer and Full Stack Developer specializign in Web Development, Cyber Security and
Project Management
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://sanjogrizal.wordpress.com" target="_blank" title="First Resource">My Blog</a>
</li>
<li>
<a href="https://sanjogrijal.github.io/covid19" target="_blank" title="Second Resource">
Covid Web Data Table
</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="Third resource">Github</a>
</li>
</ul>
</div>
</div>
<!-- _________ Sanjog's Card End _____________-->
<!-- ________ *GUNES's Card* Contributor card START ________ -->
<div class="card">
<p class="name">Gunes</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://github.com/gunesnt" target="_blank">@gunesnt</a>
</p>
<p class="about">A Front-End developer living in Cambodia. Passionate learner, open source enthusiast</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.codewars.com" target="_blank" title="First Resource">Codewars</a>
</li>
<li>
<a href="https://github.com/publiclab" target="_blank" title="Second Resource">Public Lab</a>
</li>
<li>
<a href="https://react-styleguidist.js.org" target="_blank" title="Third resource">React Styleguidist</a>
</li>
</ul>
</div>
</div>
<!-- ________*GUNES's Card* Contributor card END ________ -->
<!-- ________ *Lionel Lapidos* Contributor card START ________ -->
<div class="card">
<p class="name">Lionel</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/donlapidos" target="_blank">@donlapidos</a>
</p>
<p class="about">
I'm ever curious. Looking to learn new things daily and make meaningful contributions to society.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://frontendmasters.com/courses/practical-algorithms/introducing-practical-guide-to-algorithms/"
target="_blank"
title="First Resource"
>
Practical Guide to Algorithms
</a>
</li>
<li>
<a
href="https://www.freecodecamp.org/news/how-to-hack-your-own-cs-degree-for-free/"
target="_blank"
title="Second Resource"
>
How to Hack Together Your Own CS Degree Online for Free
</a>
</li>
<li>
<a href="https://bowtiedraptor.substack.com/p/start-here" target="_blank" title="Third resource">
Data Science & Machine Learning 101
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Lionel Lapidos* Contributor card END ________ -->
<!-- ________ *Aishwarya N* Contributor card START ________ -->
<div class="card">
<p class="name">Aishwarya N</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/aishwarya__n64" target="_blank">@aishwarya__n64</a>
</p>
<p class="about">
Software Engineer with a passion for learning Web development and contibuting to open source projects.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://scrimba.com/dashboard#overview" target="_blank" title="First Resource">Scrimba</a>
</li>
<li>
<a
href="https://www.youtube.com/results?search_query=clever+programmer+web+development"
target="_blank"
title="Second Resource"
>
Clever Programmer
</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Third resource">MDN</a>
</li>
</ul>
</div>
</div>
<!-- ________*Aishwarya N* Contributor card END ________ -->
<!-- ________ *Ahmed Hinedy* Contributor card START ________ -->
<div class="card">
<p class="name">Ahmed Hinedy</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ahmedhinedy/" target="_blank">Ahmed Hinedy</a>
<i class="fab fa-github"></i>
<a href="https://github.com/hinedy" target="_blank">hinedy</a>
</p>
<p class="about">
A passionate frontend developer from Egypt learning about web design and looking to create immersive user
experiences.
</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 Resources for Developers, by Developers
</a>
</li>
<li>
<a href="https://cs50.harvard.edu/x/2022/" target="_blank" title="Second Resource">
CS50x Inroduction to Computer Science
</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________*Ahmed Hinedy* Contributor card END ________ -->
<!-- ________ *Ken Mwangi* Contributor card START ________ -->
<div class="card">
<p class="name">Ken Mwangi</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/ken_cipher" target="_blank">@ken_cipher</a>
<i class="fab fa-github"></i>
<a href="https://www.twitter.com/kenmwangi" target="_blank">@kenmwangi</a>
</p>
<p class="about">Full stack developer making quality software to impact society and world.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com" target="_blank" title="First Resource">ODIN PROJECT</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">STACK OVERFLOW</a>
</li>
<li>
<a href="https://www.github.com" target="_blank" title="Third resource">GITHUB</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- ________ *Typy* Contributor card START ________ -->
<div class="card">
<p class="name">Typy</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/typy-sandbox/" target="_blank">TypySandbox</a>
</p>
<p class="about">
“The time that leads to mastery is dependent on the intensity of our focus.” ― Robert Greene, Mastery
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.alistapart.com" target="“_blank”" title="“Editorials" on web development”>
Editorials on tech
</a>
</li>
<li>
<a href="https://www.womenwhocode.com" target="“_blank”" title="“Women" in Technology”>
Women who code
</a>
</li>
<li>
<a href="https://www.becomebetterprogrammer.com" target="_blank" title="“Better" programming”>
Improve the way you think about programming
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Typy* Contributor card END ________ -->
<!-- ________ *Vadym Alieksieiev* Contributor card START ________ -->
<div class="card">
<p class="name">Vadym Alieksieiev</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Vadhead" target="_blank">@Vadhead</a>
</p>
<p class="about">Good Evening, we are from Ukraine!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.callicoder.com/java-arraylist/"
target="_blank"
title="Java ArrayList Tutorial with Examples"
>
Java ArrayList Tutorial with Examples
</a>
</li>
<li>
<a href="https://www.freeformatter.com/" target="_blank" title="Youtube">
Free Online Tools For Developers
</a>
</li>
<li>
<a href="https://regex101.com/" target="_blank" title="regex101: build, test, and debug regex">
regex101: build, test, and debug regex
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Vadym Alieksieiev* Contributor card END ________ -->
<!-- ________ *Numan Zaman Dipu* Contributor card START ________ -->
<div class="card">
<p class="name">Numan Zaman Dipu</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/numanzamandipuu" target="_blank">@numanzamandipuu</a>
<i class="fab fa-reddit"></i>
<a href="https://www.reddit.com/user/numanzamandipuu" target="_blank">@numanzamandipuu</a>
</p>
<p class="about">
Greetings. I'm Dipu, an apprentice Mechanical Engineer, currently studying at
<a href="http://ruet.ac.bd/">RUET</a>
. Right now, I am learning Python and looking forward to compete in CP!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/michalsnik/aos" target="_blank" title="AOS Library">
AOS - Animate on scroll library
</a>
</li>
<li>
<a href="https://github.com/twbs/bootstrap" target="_blank" title="Bootstrap">Bootstrap v5.2</a>
</li>
<li>
<a href="https://dotnet.microsoft.com/" target="_blank" title=".NET Framework">.NET Framework</a>
</li>
</ul>
</div>
</div>
<!-- ________*Numan Zaman Dipu* Contributor card END ________ -->
<!-- ________ *ALCUNOO* Contributor card START ________ -->
<div class="card">
<p class="name">ALCUNO</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/ALCUNOO" target="_blank">ALCUNO</a>
</p>
<p class="about">
Hey I'm ALCUNO. 13 y/o male, aspiring pixel artist, Python game dev. To find out how to pronounce my name,
you can go to my Github profile.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.youtube.com/c/ClearCode/videos"
target="_blank"
title="ClearCode is an amazing channel providing amazing coding tutorials for Python and Pygame."
>
ClearCode on Youtube
</a>
</li>
<li>
<a
href="https://docs.python.org/3/"
target="_blank"
title="The official docs for Python. Amazing resource, read 'em!"
>
Python docs
</a>
</li>
<li>
<a
href="https://www.pygame.org/docs/"
target="_blank"
title="The official docs for Pygame. Amazing resource, they have everything on Pygame!"
>
Pygame docs
</a>
</li>
</ul>
</div>
</div>
<!-- ________*ALCUNOO* Contributor card END ________ -->
<!-- ________ *Nur Hamid* Contributor card START ________ -->
<div class="card">
<p class="name">Nur Hamid</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/nur-hamid/" target="_blank">Nur Hamid</a>
<i class="fab fa-github"></i>
<a href="https://github.com/nurhamidqq/" target="_blank">Nur Hamid</a>
</p>
<p class="about">Hey, I am Nur Hamid. My first contribution to github.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://pub.dev/" target="_blank" title="Dart Package">Dart Package</a>
</li>
<li>
<a href="https://youtube.com/" target="_blank" title="Youtube">Youtube</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stackoverflow">Stackoverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________*Nur Hamid* Contributor card END ________ -->
<!-- ________ *Daniel Ruiz* Contributor card START ________ -->
<div class="card">
<p class="name">Daniel Ruiz</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ruiz-daniel/" target="_blank">Daniel Ruiz</a>
<i class="fab fa-github"></i>
<a href="https://github.com/RuizDann" target="_blank">RuizDann</a>
</p>
<p class="about">
I am a Computer Science Student with a passion for Web and Software Development. I am currently finishing up
my final year and anticipated to graduate spring 2023.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://mastery.games/flexboxzombies/" target="_blank" title="First Resource">
Flexbox Zombies - Games to hone your flexbox skills
</a>
</li>
<li>
<a href="https://css-tricks.com/almanac/" target="_blank" title="Second Resource">
CSS-Tricks Almanac - Contains useful information on everything CSS
</a>
</li>
<li>
<a href="https://unsplash.com/" target="_blank" title="Third resource">
Unsplash - Free images & pictures
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Daniel Ruiz* Contributor card END ________ -->
<!-- ________ *Kaleab: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Kaleab Tadesse</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/kaleab_27" target="_blank">@kaleab_27</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/" target="_blank" title="Second Resource">MDN</a>
</li>
<li>
<a
href="https://pll.harvard.edu/course/cs50-introduction-computer-science?delta=0"
target="_blank"
title="First Resource"
>
CS50
</a>
</li>
<li>
<a href="https://www.30secondsofcode.org/" target="_blank" title="Third resource">30 seconds of code</a>
</li>
</ul>
</div>
</div>
<!-- ________*Kaleab* Contributor card END ________ -->
<!-- ________ *Basim Siddiqui* Contributor card START ________ -->
<div class="card">
<p class="name">Basim Siddiqui</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/basim-siddiqui-13055a229/" target="_blank">Basim Siddiqui</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Basim03" target="_blank">Basim Siddiqui</a>
</p>
<p class="about">
Hey I am Basim and i am very much moved by DSA and open source because kunal kushwaha got me in love with
Open Source Git hub and DSA in Java
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com" target="_blank" title="First Resource">StackOver Flow</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/web-development/" target="_blank" title="Second Resource">
Geeks for Geeks
</a>
</li>
<li>
<a href="https://leetcode.com/" target="_blank" title="Third resource">LeetCode</a>
</li>
</ul>
</div>
</div>
<!-- ________*Basim Siddiqui* Contributor card END ________ -->
<!-- ________ *Nick Bernal* Contributor card START ________ -->
<div class="card">
<p class="name">Nick Bernal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/nickjbernal" target="_blank">@nickjbernal</a>
</p>
<p class="about">Studying Full Stack and Software Engineering. Hello!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.youtube.com/playlist?list=PLGyA74h_S9No5V5TRjHc893mN7rs-VaoZ"
target="_blank"
title="First Resource"
>
React Megatutorial
</a>
</li>
<li>
<a href="https://www.abdulbari.in/" target="_blank" title="Second Resource">
Great Data Structures in C/C++ course by Abdul Bari
</a>
</li>
<li>
<a href="https://freecodecamp.com/" target="_blank" title="Third resource">Free Code Camp</a>
</li>
</ul>
</div>
</div>
<!-- ________*Nick Bernal* Contributor card END ________ -->
<!-- ________ *Kat* Contributor card START ________ -->
<div class="card">
<p class="name">Kat M</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/thekatsmeowkode" target="_blank">@thekatsmeowkode</a>
</p>
<p class="about">
Ran a small nursery business and changing careers - investigating coding/tech. Coding all day every day. Am
I addicted to it?
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com" target="_blank" title="Odin_Project">
The Odin Project - a framework for self learning
</a>
</li>
<li>
<a href="https://www.traversymedia.com/" target="_blank" title="Brad_Traversy">
Brad seems to be able to explain coding in language I understand. Lots on Youtube.
</a>
</li>
<li>
<a
href="https://www.digitalocean.com/community/books/understanding-the-dom-document-object-model-ebook"
target="_blank"
title="Tania_Rascia"
>
I've learned a lot from Tania Rascia at Digital Ocean. Great tutorials with examples.
</a>
</li>
</ul>
</div>
</div>
<!-- ________*Kat* Contributor card END ________ -->
<!-- ________ *Ayush Kukreti's card START ________ -->
<div class="card">
<p class="name">Ayush Kukreti</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ayush-kukreti-58205422a/" target="_blank">Ayush Kukreti</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ayshK24/" target="_blank">Ayush Kukreti</a>
</p>
<p class="about">
passionate about machine learning and cybersecurity and also loves to create something from programming
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com" target="_blank" title="First Resource">StackOver Flow</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/web-development/" target="_blank" title="Second Resource">
Geeks for Geeks
</a>
</li>
<li>
<a href="https://realpython.com/tutorials/web-dev/" target="_blank" title="Third resource">
Real Python
</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- ________ *aleksandarstojkovski's card START ________ -->
<div class="card">
<p class="name">Aleksandar Stojkovski</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/aleksandarstojkovski" target="_blank">aleksandarstojkovski</a>
<i class="fab fa-linkedin"></i>
<a href="https://mg.linkedin.com/in/aleksandar-stojkovski" target="_blank">Aleksandar Stojkovski</a>
</p>
<p class="about">
Passionate software engineer & open source lover.
<br />
<br />
<i>"If you need to do something twice, rather automate it"</i>
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.oreilly.com" target="_blank" title="First Resource">O'Reilly</a>
</li>
<li>
<a href="https://www.coursera.org" target="_blank" title="Second Resource">Coursera</a>
</li>