forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1099 lines (1063 loc) · 45.4 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* 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 ========= -->
<!-- ________ Artyom F Contributor card START ________ -->
<div class="card">
<p class="name">Artyom F</p>
<p class="contact">
<i class="fab fa-telegram"></i>
<a href="https://kextcache.t.me" target="_blank">@kextcache</a>
<i class="fab fa-github"></i>
<a href="https://github.com/kextcache" target="_blank">@kextcache</a>
</p>
<p class="about">I like cool stuff</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.patterns.dev/" target="_blank" title="Frontend design patterns">
Frontend design patterns
</a>
</li>
<li>
<a href="https://github.com/avelino/awesome-go" target="_blank" title="Awesome Go stuff">
Awesome Go stuff
</a>
</li>
<li>
<a href="https://solidbook.vercel.app/" target="_blank" title="Solidbook (ru)">Solidbook (ru)</a>
</li>
</ul>
</div>
</div>
<!-- ________ Artyom F Contributor card END ________ -->
<!-- ________ Reed Jones Contributor card START ________ -->
<div class="card">
<p class="name">Reed Jones</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/reedjones" target="_blank">Reed Jones</a>
</p>
<p class="about">Expert in art, music, programming, security, and magick.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://superdesigner.co/tools" target="_blank" title="First Resource">
Super Design Tools...
</a>
</li>
<li>
<a href="https://thewhale.cc/?p=posts" target="_blank" title="Second Resource">
Technology tracking for devs
</a>
</li>
<li>
<a href="https://fffuel.co/dddraw/" target="_blank" title="Third resource">
Very Nice SVG drawing tool.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Reed Jones Contributor card END ________ -->
<!-- ________ Jay card START ________ -->
<div class="card">
<p class="name">Jay Santana</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/santana-jay/" target="_blank">Jazel Santana</a>
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/JazelSantana" target="_blank">@JazelSantana</a>
<i class="fab fa-github"></i>
<a href="https://github.com/santana-jay" target="_blank">santana-jay</a>
</p>
<p class="about">Software Engineer & Cyber Security Enthusiast.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://neetcode.io/courses" target="_blank" title="First Resource">NeetCode</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Second Resource">Udemy</a>
</li>
<li>
<a href="https://frontendmasters.com/" target="_blank" title="Third resource">Frontend Masters</a>
</li>
</ul>
</div>
</div>
<!-- ________ Jay card END ________ -->
<!-- ________ Sodiq Farhan's Contributor card START ________ -->
<div class="card">
<p class="name">Farhan Sodiq</p>
<p class="contact">
<i class="fa-brands fa-x-twitter"></i>
<a href="https://www.x.com/sodiqfarhan" target="_blank">@sodiqfarhan</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/codeHokage1" target="_blank">@codeHokage1</a>
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sodiqfarhan" target="_blank">Farihan Sodiq</a>
</p>
<p class="about">
Software Engineer who is keen about learning, solving problems and making impacts. Loves basketball too.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://communitytaught.org/"
target="_blank"
title="A very good resource to learn and track web dev"
>
100Devs Progress Tracker
</a>
</li>
<li>
<a
href="https://fullstackopen.com/en/"
target="_blank"
title="Build applications and test your full stack skills"
>
Full Stack Open: Deep Dive Into Modern Web Development
</a>
</li>
<li>
<a
href="https://nodeschool.io/"
target="_blank"
title="Learn all you need to be a Node JS dev and more"
>
Nodeschool
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sodiq Farhan's Contributor card END ________ -->
<!-- ________ Aditi Kumari Contributor card START ________ -->
<div class="card">
<p class="name">Aditi Kumari</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/the-aditikumari841/" target="_blank">Aditi Kumari</a>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/the_aditikumari" target="_blank">@the_aditikumari</a>
<i class="fab fa-github"></i>
<a href="https://github.com/the-aditikumari841" target="_blank">the-aditikumari841</a>
</p>
<p class="about">
I am a CSE undergrad and an aspiring Full Stack Developer with a passion for open-source contributions.
Currently looking for interships and full-time roles.
</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://frontendmasters.com/" target="_blank" title="Second Resource">frontend-masters</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Third resource">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditi Kumari Contributor card END ________ -->
<!-- ________ 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>
<!-- ________ Nathaniel Joseph Contributor card END ________ -->
<!-- ________ Abhinav Pandey Contributor card START ________ -->
<div class="card">
<p class="name">Abhinav Pandey</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.linkedin.com/in/abhinav-pandey-oo72/" target="_blank">Linked IN</a>
<i class="fab fa-github"></i>
<a href="https://github.com/zemgeez" target="_blank">GitHub</a>
</p>
<p class="about">
Hey there I am Abhinav Pandey, Student by profile and teacher by profession. I like Art, Coding and love
Cars.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="First Resource">geeksforgeeks</a>
</li>
<li>
<a href="https://frontendmasters.com/" target="_blank" title="Second Resource">frontend-masters</a>
</li>
<li>
<a href="https://learnxinyminutes.com/" target="_blank" title="Third resource">learn x in y minutes</a>
</li>
</ul>
</div>
</div>
<!-- ________ Abhinav Pandey Contributor card END ________ -->
<!-- ________ 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 ________ -->
<!-- ________ *MarkYupari* Contributor card START ________ -->
<div class="card">
<p class="name">MarkYupari</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/YupariMark" target="_blank">markyupari</a>
<i class="fab fa-github"></i>
<a href="https://github.com/markyupari" target="_blank">markyupari</a>
<i class="fa-brands fa-linkedin"></i>
<a href="https://www.linkedin.com/in/markyupariruiz/" target="_blank">markyupari</a>
</p>
<p class="about">
I love the automation and all related to it. I also like playing tennis and watching anime. I am excited to
share my first contribution ever.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://airbnb.io/javascript/" target="_blank" title="Airbnb Java Style guide">
Airbnb Java Style guide
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=8aGhZQkoFbQ" target="_blank" title="Understanding Event Loop">
Understanding Event Loop
</a>
</li>
<li>
<a
href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool"
target="_blank"
title="Color picker tool"
>
Color picker tool
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">peterstone-e</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/peterston-e" target="_blank">peterston-e</a>
</p>
<p class="about">
This is my card. There are many like it but this one is mine. My card is my best friend. It is my life. I
must master it as I must master my life. Without me, my card is useless. Without my card I am useless. I
must open my card true. I must close faster than my enemy, who is trying to kill me. I must shoot him before
he shoots me. I will. Before God I swear this creed: my card and myself are defenders of my country, we are
the masters of my enemy, we are the saviors of my life. So be it, until there is no enemy, but peace. Amen.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://codepen.io/peterfaretra" target="_blank" title="First Resource">My code pen</a>
</li>
<li>
<a
href="https://www.udemy.com/course/100-days-of-code/?kw=100&src=sac"
target="_blank"
title="Second Resource"
>
100 days of Python course
</a>
</li>
<li>
<a href="https://pandas.pydata.org/docs/index.html" target="_blank" title="Third resource">
Pandas Python library
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Matthew card START ________ -->
<div class="card">
<p class="name">Matthew Nolan</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Mattnolan45" target="_blank">Mattnolan45</a>
</p>
<p class="about">Making a contribution to a project</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.kaggle.com/" target="_blank" title="Kaggle\">Resource 2</a>
</li>
<li>
<a href="https://www.udemy.com" target="_blank" title="Udemy">Udemy</a>
</li>
</ul>
</div>
</div>
<!-- ________ Matthew card END ________ -->
<!-- ________ Unish card START ________ -->
<div class="card">
<p class="name">Unish Rajkarnikar</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Rajkarnikar-unish" target="_blank">Rajkarnikar-unish</a>
</p>
<p class="about">
Unish rajkarnikar here aiming to learn every tech found in a job description. I am a full-stack android
developer learning Kotlin, Jetpack, Spring-boot and other cool stuffs.
</p>
<div class="resources">
<p>3 Useful Android Dev Resources</p>
<ul>
<li>
<a
href="https://whimsical.com/android-development-roadmap-2023-kotlin-RHgVzHrfbHTzQXhM5usPLm"
target="_blank"
title="Android Developer Roadmap"
>
Android Developer Roadmap
</a>
</li>
<li>
<a href="https://kotlinlang.org/docs/home.html" target="_blank" title="Second Resource">
Kotlin Language
</a>
</li>
<li>
<a href="https://spring.io/guides" target="_blank" title="Spring-boot">Spring-boot</a>
</li>
</ul>
</div>
</div>
<!-- ________ Unish card END ________ -->
<!-- ________ Akanksha card START ________ -->
<div class="card">
<p class="name">Akanksha</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com" target="_blank">https://github.com/akankshapriyaa</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">W3 Schools</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">Stack Overflow</a>
</li>
<li>
<a href="https://www.hackerrank.com/" target="_blank" title="Third resource">HackerRank</a>
</li>
</ul>
</div>
</div>
<!-- ________ Akanksha card START ________ -->
<!-- ________ Alberto card START ________ -->
<div class="card">
<p class="name">Alberto Jacome</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/betojacome" target="_blank">@betojacome</a>
<i class="fab fa-github"></i>
<a href="https://github.com/betoje" target="_blank">betoje</a>
</p>
<p class="about">Extending my Git & GitHub knowledge making a contribution to a project</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://scrimba.com/" target="_blank" title="Scrimba">Scrimba</a>
</li>
<li>
<a href="https://courses.webdevsimplified.com/" target="_blank" title="Web Dev Simplified">
Web Dev Simplified
</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3 Schools">W3 Schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ Alberto card END ________ -->
<!-- ________ Kadri card START ________ -->
<div class="card">
<p class="name">Kadri Ozcan</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/kadriozcan" target="_blank">Kadri Ozcan</a>
</p>
<p class="about">Extending my GitHub knowledge.</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.w3schools.com" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Kadri card END ________ -->
<!-- ========= Card 1 START ========= -->
<div class="card">
<p class="name">Willson bo</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Willsonbo" target="_blank">Willson bo</a>
</p>
<p class="about">I am a studrnt majoring IIM NCKU in Tainan,Taiwan</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.mropengate.com/2017/02/deep-learning-role-of-activation.html"
target="_blank"
title="First Resource"
>
Deep Learning
</a>
</li>
<li>
<a
href="https://dysonma.github.io/2021/01/27/%E6%A9%9F%E5%99%A8%E5%AD%B8%E7%BF%92-%E6%AD%A3%E8%A6%8F%E5%8C%96-Regularization/"
target="_blank"
title="Second Resource"
>
Regularization
</a>
</li>
<li>
<a href="https://ithelp.ithome.com.tw/articles/10203371" target="_blank" title="Third resource">
Regularization:reduce Overfitting
</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 1 END ========= -->
<!-- ========= Card 2 START ========= -->
<div class="card">
<p class="name">Azeez Alhameen</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/hayzedd10" target="_blank">@hayzedd10</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/hayzedd2" target="_blank">@hayzedd2</a>
</p>
<p class="about">
Hi everyone, my name is Alhameen. I am currently working with react and extending my knowledge on version
control using Github!.
</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.w3schools.com" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 2 END ========= -->
<!-- ========= Card 3 START ========= -->
<div class="card">
<p class="name">Daniel Cooper-Holmes</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/DCooperHolmes" target="_blank">DCooperHolmes</a>
<i class="fab fa-github"></i>
<a href="https://github.com/dcooper-holmes" target="_blank">dcooper-holmes</a>
</p>
<p class="about">
Hi everyone, my name is Daniel (or Dan for short). I support software by day, code by night and love to fly
✈️ when the weather permits. I am currently learning Python and extending my knowledge on version control
using Github! I am also looking to get back into Web Design and learn more about the latest frameworks that
everyone is using, so if you have any suggestions then feel free to reach out to me so we can chat 😀.
</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.w3schools.com" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 3 END ========= -->
<!-- ========= Card 4 START ========= -->
<div class="card">
<p class="name">Matheus Marques</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/mtspadilha" target="_blank">mtspadilha</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/mtspadda" target="_blank">mtspadda</a>
</p>
<p class="about">
Hello everyone Im Matheus, but everyone calls me pada(in my opinion it is stylish with double d), its a
'shotnameish' for Padilha. Im starting to dive into open-source projects so I tought this was a good start.
Im also selling a surfboard so if you a interest in a 6'66 funboard, feel free to reach me lol. Im a
full-stack developer using java and angular :)
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://youtu.be/3qBXWUpoPHo?si=W_SIUd0YNeUwdRZ6"
target="_blank"
title="Angular for Beginners Course [Full Front End Tutorial with TypeScript]"
>
Angular for Beginers
</a>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=9SGDpanrc8U"
target="_blank"
title="Amigoscode cover the basics of springboot"
>
Spring Boot Tutorial | Full Course [2023] [NEW]
</a>
</li>
<li>
<a href="https://architecturenotes.co/" target="_blank" title="Archtecture notes">Archtecture notes</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 4 END ========= -->
<!-- ========= Card 5 START ========= -->
<div class="card">
<p class="name">Ajay Boro</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/ajaybor0" target="_blank">ajaybor0</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ajaybor0" target="_blank">ajaybor0</a>
</p>
<p class="about">
Aspiring Full Stack JavaScript Developer from India with a passion for open-source contributions. Dedicated
to mastering both front-end and back-end technologies, committed to innovation and continual growth in the
field.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="First Resource">The Odin Project</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">freeCodeCamp</a>
</li>
<li>
<a href="https://www.firsttimersonly.com/" target="_blank" title="Third resource">First Timers Only</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 5 END ========= -->
<!-- ========= Card 6 START ========= -->
<div class="card">
<p class="name">Tori Tim</p>
<p class="contact">
<i class="fa-brands fa-instagram"></i>
<a href="https://www.instagram.com/pan_abc_" target="_blank">pan_abc_</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ToriTim" target="_blank">ToriTim</a>
</p>
<p class="about">
Hi! My name is Tori, and the only reason I'm here is that my university requires me to report about my
contributions to open source projects. But it is kinda fun.
</p>
<div class="resources">
<p>3 Useful Web Design Resources</p>
<ul>
<li>
<a href="https://www.behance.net" target="_blank" title="First Resource">Behance</a>
</li>
<li>
<a href="https://www.iconfinder.com" target="_blank" title="Second Resource">Iconfinder</a>
</li>
<li>
<a href="https://dribbble.com" target="_blank" title="Third resource">Dribble</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 6 END ========= -->
<!-- ========= Card 7 START ========= -->
<div class="card">
<p class="name">Vishal Farande</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/vishal_farande" target="_blank">vishal_farande</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/vishal-farande" target="_blank">vishal-farande</a>
</p>
<p class="about">I am a Developer and AI Enthusiastic</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://neetcode.io/" target="_blank" title="Third resource">NeetCode</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 7 END ========= -->
<!-- ========= Card 8 START ========= -->
<div class="card">
<p class="name">Abdi Kitesa</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/abdikitesa" target="_blank">abdikitesa-tech</a>
<i class="fab fa-github"></i>
<a href="https://github.com/abdik-tech" target="_blank">abdik-tech</a>
</p>
<p class="about">
transitioning from a 9 year career in Aviation to Software Engineering. Not easy, But absolutely worth it 😉
!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">
W3-schools - great resource for web development
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">
stackoverflow - distraction free platform to write questions and get answers
</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="Third resource">
chatGPT - The absolute Genius! Ask anything and you get an answer.
</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 8 END ========= -->
<!-- ========= Card 9 START ========= -->
<div class="card">
<p class="name">Ritika</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/ritzx21" target="_blank">ritzx21</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ritika-chatterjee-7bab94247/" target="_blank">Ritika</a>
</p>
<p class="about">Always be coding</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@freecodecamp" target="_blank" title="First Resource">
Free Code Camp
</a>
</li>
<li>
<a href="https://neetcode.io/" target="_blank" title="Second Resource">NeetCode</a>
</li>
<li>
<a href="https://www.youtube.com/@mrdbourke" target="_blank" title="Third resource">
Great to start with Machine Learning
</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 9 END ========= -->
<!-- ========= Card 10 START ========= -->
<div class="card">
<p class="name">Akua Konadu</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/EuniceOsei18" target="_blank">EuniceOsei18</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Adonai-Technologies" target="_blank">Adonai-Technologies</a>
</p>
<p class="about">
Akua, an intelligent female software engineer, combines technical expertise and creativity. Her name
reflects her unique identity, and her passion for coding shines through in her work, adding diversity and
vibrancy to the tech industry.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://communitytaught.org/" target="_blank" title="First Resource">100Devs</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">freecodecamp.org</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">w3schools</a>
</li>
</ul>
</div>
</div>
<!-- ========= Card 10 END ========= -->
<!-- =========CARD 11 START========= -->
<div class="card">
<p class="name">Felipe Magalhães</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/Fellpem__" target="_blank">Fellpem__</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Felpem" target="_blank">Felpem</a>
</p>
<p class="about">
Estou começando a aprender HTML e CSS, portanto quero aperfeiçoar meu perfil no Github. I'm starting in the
web dev with HTML and CSS, i want learn and developer many things. I want knowledge/Eu quero conhecimento.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.cursoemvideo.com/curso/html5-css3-modulo1/"
target="_blank"
title="First Steps HTML and CSS"
>
Curso em Video
</a>
</li>
<li>
<a href="https://dev.to/" target="_blank" title="DEV BLOG">Dev.to: Conheci agora, muito bom!</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="House of web">W3C: House of HTML AND CSS</a>
</li>
</ul>
</div>
</div>
<!-- ========= END ========= -->
<!-- ________ Gnana Teja Contributor card START ________ -->
<div class="card">
<p class="name">Gnana Teja</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/veluru-gnanateja-1a3a0b75/" target="_blank">Linked IN</a>
<i class="fab fa-github"></i>
<a href="https://github.com/V-Gnana-Teja/" target="_blank">GitHub</a>
</p>
<p class="about">Hey there I am Gnana Teja, I am an Engineering graduate and ilike computers and coding.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="First Resource">geeksforgeeks</a>
</li>
<li>
<a href="https://frontendmasters.com/" target="_blank" title="Second Resource">frontend-masters</a>
</li>
<li>
<a href="https://learnxinyminutes.com/" target="_blank" title="Third resource">learn x in y minutes</a>
</li>