forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3188 lines (3088 loc) · 131 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/v6.4.2/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-x-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: MAKE A COPY* 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 ========= -->
<!-- ________ *KhrystianClark* Contributor card START ________ -->
<div class="card">
<p class="name">Khrystian Clark</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/khrystianc" target="_blank">KhrystianC</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/khrystianc" target="_blank">KhrystianC</a>
</p>
<p class="about">Military veteran. Work at Intel. Aspire to further my career at Intel</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com" target="_blank" title="Udemy">Udemy</a>
</li>
<li>
<a href="https://www.codecademy.com" target="_blank" title="CodeAcademy">Code Academy</a>
</li>
<li>
<a href="https://www.programmingthrowdown.com" target="_blank" title="TDPodcast">Programming Throwdown Podcast</a>
</li>
</ul>
</div>
</div>
<!-- ________ *KhrystianClark* Contributor card END ________ -->
<!-- ________ *bushand's Contributor card START ________ -->
<div class="card">
<p class="name">Andrew Bush</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/bushand1990" target="_blank">bushand1990</a>
</p>
<p class="about">I'm an aspiring developer with an interest to learn more about open source!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Resource Blog">StackOverflow</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="AI Resource">ChatGPT</a>
</li>
<li>
<a href="https://leetcode.com/" target="_blank" title="Programming Resource">LeetCode</a>
</li>
</ul>
</div>
</div>
<!-- ________ *bushand's Contributor card END ________ -->
<!-- ________ *kenziebourn's Contributor card START ________ -->
<div class="card">
<p class="name">McKenzie Bourn</p>
<p class="contact">
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/mckenzie-bourn/" target="_blank">McKenzie Bourn</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com" target="_blank">kenziebourn</a>
</p>
<p class="about">I'm currently a senior at Oregon State University and aspiring software developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://tailwindcss.com/" target="_blank" title="A powerful CSS framework that eliminates the need for separate CSS files.">Tailwind CSS</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="A free and extensive resource providing tutorials and exercises for a wide range of programming languages.">W3Schools</a>
</li>
<li>
<a href="https://leetcode.com/" target="_blank" title="First Resource">LeetCode</a>
</li>
<li>
<a href="https://www.statlearning.com/" target="_blank" title="Second Resource">An Introduction to Statisical Learning</a>
</li>
<li>
<a href="https://huggingface.co/" target="_blank" title="Third resource">HuggingFace</a>
</li>
</ul>
</div>
</div>
<!-- ________ *kenziebourn's Contributor card END ________ -->
<!-- Start of Todd-C-Goldfarb's Contribution Card -->
<div class="card">
<p class="name">Todd Goldfarb</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/Todd-C-Goldfarb" target="_blank">Todd-C-Goldfarb</a>
</p>
<p class="about">Machine learning engineer, with experience in natural language processing, image generation, audio repair, and data pipelines/processing.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://leetcode.com/" target="_blank" title="First Resource">LeetCode</a>
</li>
<li>
<a href="https://www.statlearning.com/" target="_blank" title="Second Resource">An Introduction to Statisical Learning</a>
</li>
<li>
<a href="https://huggingface.co/" target="_blank" title="Third resource">HuggingFace</a>
</li>
<li>
<a href="https://tailwindcss.com/" target="_blank" title="A powerful CSS framework that eliminates the need for separate CSS files.">Tailwind CSS</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="A free and extensive resource providing tutorials and exercises for a wide range of programming languages.">W3Schools</a>
</li>
</ul>
</div>
</div>
<!-- End of Todd-C-Goldfarb's Contribution Card -->
<!-- ________ Gumaan Mahar's card START ________ -->
<div class="card">
<p class="name">Gumaan Mahar</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Gumaan-Mahar" target="_blank">Gumaan Mahar</a>
</p>
<p class="about">Hi, I am a passionate Software Developer, Freelancer, and an avid reader.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://codeburst.io/number-one-piece-of-advice-for-new-developers-ddd08abc8bfa" target="_blank" title="First Resource">New Developer? You should have learned Git yesterday.</a>
</li>
<li>
<a href="https://gumaanmahar.vercel.app/blog/the-basics-of-flutter-testing-a-simplified-guide" target="_blank" title="Second Resource">The basics of testing with Flutter</a>
</li>
<li>
<a href="https://codewithandrea.com/articles/flutter-state-management-riverpod/" target="_blank" title="Third resource">Flutter Riverpod: The Ultimate Guide</a>
</li>
</ul>
</div>
</div>
<!-- ________ Gumaan Mahar's card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Natasha Ringane</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/__snow.flakee/" target="_blank">@__snow.flakee</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/natasha-snow" target="_blank">natasha-snow</a>
</p>
<p class="about">I am an aspiring front-end developer, hoping to be a full-stack
engineer someday.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Learn" target="_blank" title="MDN">MDN</a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title="StackOverflow">StackOverflow</a>
</li>
<li>
<a href="https://freecodecamp.org" target="_blank" title="FreeCodeCamp">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card END ________ -->
<!-- ________ Steve Xero card START ________ -->
<div class="card">
<p class="name">Steve Xero</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/steve_xero" target="_blank">steve_xero</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/stevexero" target="_blank">Steve Xero</a>
</p>
<p class="about">Hey, I'm Steve! I am currently pursuing my BS in CS and deep diving into making the web accessible for everyone!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://frontendmentor.io" target="_blank" title="Frontend Mentor">Frontend Mentor</a>
</li>
<li>
<a href="https://freecodecamp.org" target="_blank" title="Free Code Camp">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="The Odin Project">The Odin Project</a>
</li>
</ul>
</div>
</div>
<!-- ________ Steve Xero card END ________ -->
<!-- ________ stjepanDeveloperr card START ________ -->
<div class="card">
<p class="name">stjepanDeveloper</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/stjepanDeveloper" target="_blank">stjepanDeveloper</a>
</p>
<p class="about">Just your average McDonalds hacker :D</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://medium.com/@satyamv57/20-javascript-tips-and-tricks-you-can-use-right-now-e698880db0f1" target="_blank" title="Javascript-tips-tricks">Useful Javascript tips</a>
</li>
<li>
<a href="https://www.lambdatest.com/blog/advanced-css-tricks-and-techniques/" target="_blank" title="css-tips-tricks">Advanced CSS techniques</a>
</li>
<li>
<a href="https://youtu.be/Mus_vwhTCq0" target="_blank" title="javascript-tips">Javascript Pro Tips</a>
</li>
</ul>
</div>
</div>
<!-- ________ stjepanDeveloper card END ________ -->
<!-- ________ Abhishek card START ________ -->
<div class="card">
<p class="name">Abhishek Rajput</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/imexclusiveabhi" target="_blank">abhishek</a>
<i class="fab fa-github"></i>
<a href="https://github.com/exclusiveabhi" target="_blank">abhishek</a>
</p>
<p class="about">Hi! I'm Abhishek currently pursuing B.Tech ay MIT.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@javascriptmastery" target="_blank" title="JavaScript Mastery">
JavaScript Mastery
</a>
</li>
<li>
<a href="https://www.npmjs.com/package/abhishek-r-n" target="_blank" title="NodeJS">
NodeJs- My custom Package in NPM
</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="ReactJs">
ReactJs
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Abhishek card END ________ -->
<!-- ________ *Aravinth Card START* ________ -->
<div class="card">
<p class="name">Aravinth</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/theAravinthM" target="_blank">@theAravinthM</a>
</p>
<p class="about">Hi there👋, I am Aravinth, a Software Engineer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://docs.github.com/en" target="_blank" title="GitHub Docs">GitHub Docs</a>
</li>
<li>
<a href="https://github.com/Developer-Y/cs-video-courses" target="_blank" title="Repo of CS Video Courses">Repo of CS Video Courses</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="YouTube">YouTube</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Aravinth Card END* ________ -->
<!-- ________ Emad card START ________ -->
<div class="card">
<p class="name">Emad Alriyashi</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/Emad_Alriyashi" target="_blank">Emad_Alriyashi</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Dev-Emad-777" target="_blank">Dev-Emad-777</a>
</p>
<p class="about">A Talented Fullstack Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="google.com" target="_blank" title="Third resource">Google</a>
</li>
<li>
<a href="youtube.com" target="_blank" title="Second Resource">Youtube</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="First Resource">The Odin Project
<strong>TOP</strong></a>
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Emad card END ________ -->
<!-- ________ Hank card START ________ -->
<div class="card">
<p class="name">Hank Chinaski</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com" target="_blank">@HenryChinask1</a>
</p>
<p class="about">!Beep Boop! I want to learn how to contribute to stuff.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://automatetheboringstuff.com/" target="_blank" title="My first python book">
Al Sweigart's Automate the Boring Stuff with Python
</a>
</li>
<li>
<a
href="https://learn.microsoft.com/en-us/dotnet/csharp/"
target="_blank"
title="Learned some C# skills here"
>
Microsoft Learn modules
</a>
</li>
<li>
<a
href="https://www.reddit.com/r/learnpython/"
target="_blank"
title="A good place to ask newbie questions and lurk for tips."
>
r/learnpython subreddit
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Hank card END ________ -->
<!-- Emma's card START -->
<div class="card">
<p class="name">Emma</p>
<p class="contact">
<i class="fa-brands fa-square-instagram"></i>
<a href="https://www.instagram.com/yuunesoberi" target="_blank">yuunesoberi</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Emmakasaki" target="_blank">Emmakasaki</a>
</p>
<p class="about">Hello, my name is Emma and I am a queer programmer!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://replit.com/"
target="_blank"
title="Website that lets you code in a cloud environment and helps you learn to code"
>
Repl.it
</a>
</li>
<li>
<a
href="https://www.youtube.com/@BroCodez"
target="_blank"
title="Youtube channel that has lots of videos of coding lessons"
>
Bro Code on Youtube
</a>
</li>
<li>
<a
href="https://developer.mozilla.org/en-US/docs/Web/JavaScript"
target="_blank"
title="The Documentation for the JavaScript programming language"
>
JavaScript Documentation
</a>
</li>
</ul>
</div>
</div>
<!-- Emma's card END -->
<!-- GMP Sankalpa's card START -->
<div class="card">
<p class="name">Sankalpa</p>
<p class="contact">
<i class="fa-brands fa-square-instagram"></i>
<a href="https://www.instagram.com/malitha_p_sankalpa" target="_blank">Malitha P Sankalpa</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/gmpsankalpa" target="_blank">GMP Sankalpa</a>
</p>
<p class="about">Hello, my name is GMP Sankalpa and I am a Passionate Developer!👋</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://github.com/gmpsankalpa/gpa-calculator"
target="_blank"
title="A simple GUI application in Python for calculating and exporting GPA reports."
>
GPA Calculator
</a>
</li>
<li>
<a
href="https://github.com/gmpsankalpa/qr-code-generator"
target="_blank"
title="A simple web application for generating QR codes from text input."
>
QR Code Generator
</a>
</li>
<li>
<a
href="https://github.com/gmpsankalpa/Password-Generator"
target="_blank"
title="Generate strong and secure passwords with custom options using this simple web-based tool."
>
Secure & Strong Password Generator
</a>
</li>
</ul>
</div>
</div>
<!-- GMP Sankalpa's card END -->
<!-- ________ Javi's card START ________ -->
<div class="card">
<p class="name">Javi</p>
<p class="contact">
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/jcuencagento" target="_blank">Javier Cuenca</a>
<i class="fab fa-github"></i>
<a href="https://github.com/jcuencagento" target="_blank">JCuencaGento</a>
</p>
<p class="about">Hi there 🤘, I'm Javi... telecom engineer and full-stack developer📡</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://donkey-code.vercel.app/" target="_blank" title="Third resource">
Donkey Code type test
</a>
</li>
<li>
<a href="https://vercel.com/docs" target="_blank" title="Second Resource">Vercel documentation</a>
</li>
<li>
<a href="https://tailwindcss.com/docs/installation" target="_blank" title="First Resource">
Tailwind documentation
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Javi's card END ________ -->
<!-- Beatriz's card Start -->
<div class="card">
<p class="name">Beatriz Guerrero</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/beatrizguerrero24/" target="_blank">Beatriz Guerrero</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Beatriz-G" target="_blank">Beatriz-G</a>
</p>
<p class="about">
My name is Beatriz and I am a Front End Web developer! I love to code because there are endless
possibilities to what you can create and learn. I'm currenlty learning back end development and hope to be a
full stack developer soon!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow">Stack Overflow</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="freeCodeCamp">freeCodeCamp</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Mozilla Developer Network">
Mozilla Developer Network
</a>
</li>
</ul>
</div>
</div>
<!-- Beatriz's card END -->
<!-- Amanuel's card START -->
<div class="card">
<p class="name">Amanuel</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/tezblo" target="_blank">@tezblo</a>
<i class="fab fa-github"></i>
<a href="https://github.com/lily2t" target="_blank">lily2t</a>
</p>
<p class="about">
Tech enthusiast 🖥️ | Language lover 📚 | AI enthusiast 🤖 | Lifelong learner 🌱 | Always exploring new ideas
💡 | Passionate about innovation and creativity 🚀 | Let's connect and share insights and kindness! #Tech
#AI #Innovation
</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 Web Docs</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Second Resource">The Odin Project.</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">W3Schools</a>
</li>
</ul>
</div>
</div>
<!-- Amanuel's card END -->
<!-- ________ *TEMPLATE: MAKE A COPY* Florian's card START ________ -->
<div class="card">
<p class="name">Florian</p>
<p class="contact">
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/florian-sicilia-dev" target="_blank">Florian Sicilia</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Florian-2" target="_blank">Florian-2</a>
</p>
<p class="about">Hey 👋, my name is Florian, and I'm a French front-end developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://dyma.fr/" target="_blank" title="First Resource">Dyma (in French)</a>
</li>
<li>
<a href="https://www.patterns.dev/" target="_blank" title="Second Resource">
Pattern JavaScript / Framework
</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Third resource">MDN</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE: MAKE A COPY* Florian's card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Eman's card START ________ -->
<div class="card">
<p class="name">Eman</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/eman-osama-saad" target="_blank">Eman Osama</a>
<i class="fab fa-github"></i>
<a href="https://github.com/EmanOss" target="_blank">EmanOss</a>
</p>
<p class="about">
Assalamu alaikum! I'm Eman, an aspiring web developer, I just got into open-source contributions!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://web.dev/learn" target="_blank" title="First Resource">web.dev</a>
</li>
<li>
<a href="https://www.youtube.com/@ZeroToMastery" target="_blank" title="Second Resource">
ZeroToMastery on Youtube
</a>
</li>
<li>
<a href="https://www.youtube.com/@amigoscode" target="_blank" title="Third resource">
Amigoscode on Youtube
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Rinkal's card START ________ -->
<div class="card">
<p class="name">Rinkal Mistry</p>
<p class="contact">
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/rinkal-mistry-089483196/" target="_blank">rinkal-mistry-089483196</a>
<i class="fab fa-github"></i>
<a href="https://github.com/RInkal25" target="_blank">RInkal25</a>
</p>
<p class="about">
Hi there, I'm Rinkal Mistry. I'm passionate about crafting full-stack applications using JavaScript. As a
software engineering enthusiast, I'm always eager to dive into new projects and explore the endless
possibilities of technology.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.udemy.com/share/1013gG3@n05Ae98jEdCz1pxunoP6OGfWdvOSfxm4aYQSV8ceIa7kxe4sTpKJy2o_LoNKnpK6GA==/"
target="_blank"
title="Udemy"
>
Udemy Web Development Bootcamp
</a>
</li>
<li>
<a href="https://www.w3schools.com/whatis" target="_blank" title="Website">W3Schools</a>
</li>
<li>
<a href="https://www.youtube.com/@javascriptmastery" target="_blank" title="YouTube">YouTube Channel</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE: MAKE A COPY* Rinkal's card END ________ -->
<!-- ________ *TEMPLATE: DevDec-card START ________ -->
<div class="card">
<p class="name">DevDec</p>
<p class="contact">
<i class="fa-brands fa-instagram"></i>
<a href="https://www.instagram.com/mxlfylxrd/" target="_blank">MxlfyLxrd</a>
<i class="fab fa-github"></i>
<a href="https://github.com/DevDecfalter" target="_blank">DevDecfalter</a>
</p>
<p class="about">
Hello, my name is Brian, and I'm a beginner in the world of programming. I'm currently studying Front-End
development.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://caniuse.com/" target="_blank" title="First Resource">https://caniuse.com/</a>
</li>
<li>
<a href="https://frontendmasters.com/" target="_blank" title="Second Resource">
https://frontendmasters.com/
</a>
</li>
<li>
<a href="https://codepen.io/" target="_blank" title="Third resource">https://codepen.io/</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE: DevDec-card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Adarsh's card START ________ -->
<div class="card">
<p class="name">Adarsh Sahu</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/easyadarsh93" target="_blank">easyadarsh93</a>
<i class="fab fa-github"></i>
<a href="https://github.com/yaarAdarsh" target="_blank">yaarAdarsh/GitHub</a>
</p>
<p class="about">
Hello! myself Adarsh , a Tech enthusiast, a Web Developer, a Software Developer, and also an Athlete.
<br />
Great command in C, C++ , Python.
<br />
Good knowledge of DSA & problem solving Algorithms,
<br />
Passionate Web Developer, great command on Frontend Development, JavaScript, React JS, node JS.
<br />
Quick learner, good listener, team player, technical guy.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Youtube">Youtube</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Udemy">Udemy (Angela Yu)</a>
</li>
<li>
<a href="https://www.coursera.org/" target="_blank" title="Coursera">Coursera</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE: MAKE A COPY* Adarsh's card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Aileen</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/pss_aileen" target="_blank">pss_aileen</a>
<i class="fab fa-github"></i>
<a href="https://github.com/pss-aileen" target="_blank">pss-aileen</a>
</p>
<p class="about">Hi! I'm Aileen and studying programming as a hobby.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@javascriptmastery" target="_blank" title="JavaScript Mastery">
JavaScript Mastery
</a>
</li>
<li>
<a href="https://threejs-journey.com/" target="_blank" title="Three.js Journey">
Three.js Journey — Learn WebGL with Three.js
</a>
</li>
<li>
<a href="https://www.udemy.com/user/jin-tuo-hai/" target="_blank" title="Shin Code">
Shin Code (Udemy)
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card END ________ -->
<!-- ________ RhythmusByte's Contributor card START ________ -->
<div class="card">
<p class="name">Akhil Mahesh</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/RhythmusByte" target="_blank">RhythmusByte</a>
<i class="fa-solid fa-link"></i>
<a href="https://rhythmusbytelinks.netlify.app" target="_blank">My Socials</a>
</p>
<p class="about">
I'm Akhil hailing from Kerala, I'm an aspiring software developer with a keen interest in AI and emerging
technologies. Learning & Coding using an android smartphone.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://uiverse.io" target="_blank" title="First Resource">
uiverse (Open-Source UI elements)
</a>
</li>
<li>
<a href="https://quickref.me/" target="_blank" title="Second Resource">
QuickRef (Cheatsheets and Quick References)
</a>
</li>
<li>
<a href="https://dly.to/cdweR1c0xja" target="_blank" title="Third resource">
daily.dev - Where developers grow together
</a>
</li>
</ul>
</div>
</div>
<!-- ________ RhythmusByte's Contributor card END ________ -->
<!-- ________ ECO.AKRAM'S Contributor card START ________ -->
<div class="card">
<p class="name">Akram</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/eco-akram" target="_blank">@eco.akram</a>
</p>
<p class="about">
Hey, I'm an aspiring IT student from Lithuania, pretty exited to make my first contribution.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://freecodecamp.org" target="_blank" title="First Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Second Resource">W3schools</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Third resource">MDN</a>
</li>
</ul>
</div>
</div>
<!-- ________ ECO.AKRAM'S Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">macnult</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/macnult" target="_blank">macnult</a>
</p>
<p class="about">Having fun forcing sand to do math.</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 Web Docs</a>
</li>
<li>
<a href="https://javascript.info/" target="_blank" title="Second Resource">javascript.info</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Third resource">YouTube University</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card END ________ -->
<!-- ________ *Merged Contributor Card START ________ -->
<div class="card">
<p class="name">Mohit Kumhar</p>
<p class="contact">
<i class="fa-brands fa-linkedin"></i>
<a href="www.linkedin.com/in/mohitkumhar" target="_blank">mohitkumhar |</a>
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/Mohit57787327" target="_blank">Mohit57787327 |</a>
<i class="fab fa-github"></i>
<a href="https://github.com/mohitkumhar/" target="_blank">mohitkumhar |</a>
</p>
<p class="about">
Hello! I'm Mohit, Working on my software journey in Python, I always seek opportunities to learn from others
and connect with them to increase my knowledge. I contribute to meaningful projects for better development
and skill enhancement. Thanks!!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.mohits.live/" target="_blank" title="Portfolio Site">Portfolio</a>
</li>
<li>
<a href="https://leetcode.com/mohitkumhar/" target="_blank" title="LeetCode">LeetCode</a>
</li>
<li>
<a href="https://stackoverflow.com/users/22356582/mohit-kumhar" target="_blank" title="Stack Overflow">
StackOverflow
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Merged Contributor Card END ________ -->
<!-- ________ *Diogo's contribution START ________ -->
<div class="card">
<p class="name">Diogo Dotto</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Diogo-Dotto" target="_blank">Diogo-Dotto</a>
</p>
<p class="about">On a journey to become a developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/" target="_blank" title="First Resource">
Github, the social media for DEVS
</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Second Resource">Udemy for learn</a>
</li>