forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
3054 lines (2940 loc) · 132 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link href="https://fonts.googleapis.com/css2?family=Domine&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>Contribute To This Project</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode">
<div class="toggle-box">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js" integrity="sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ==" crossorigin="anonymous"></script>
</div>
<!-- / Night Mode Creation -->
</div>
</div>
<div class="row">
<div class="column-double">
<div class="column-left">
<h1>CONTRIBUTE TO THIS PROJECT</h1>
<h2>A project for first-time contributions</h2>
<p>
This is a tutorial to help first-time contributors participate in a simple and easy project. Get more
comfortable using GitHub and make your first open source contribution. It's quick and easy.
</p>
<a
class="button"
href="https://github.com/Syknapse/Contribute-To-This-Project/blob/master/README.md"
target="_blank"
title="Go to project README - A step by step tutorial"
>
Learn how to contribute
<i class="fas fa-long-arrow-alt-right"></i>
</a>
</div>
</div>
<div class="column">
<div class="column-right">
<div class="twitter-button">
<a
href="https://twitter.com/share?ref_src=twsrc%5Etfw"
class="twitter-share-button"
data-size="large"
data-text="Contribute To This Project. An easy Git and GitHub project for first-time contributors, with a full tutorial."
data-url="https://github.com/Syknapse/Contribute-To-This-Project"
data-via="Syknapse"
data-hashtags="100DaysOfCode"
data-show-count="false"
title="Tweet this project"
>
Tweet
</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<p>Contributions so far...</p>
<div class="animated" id="contributions-number">0</div>
</div>
</div>
</div>
<div class="searchContainer">
<input id="searchbar" type="search" name="search" placeholder="Search for your card here!" />
</div>
<div class="grid">
<!-- ================================================ -->
<!-- ================== TEMPLATE ================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Your name</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/" target="_blank">Your handle</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- COPY everything ABOVE this, from contributor card start to end along with the "START" and "END" comment lines -->
<!-- ============== ^^^^ TEMPLATE ^^^^ ============== -->
<!-- ================================================ -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- Keep one line of space above and below your card -->
<!-- ========= Paste YOUR CARD directly BELOW this line ========= -->
<!-- ________ *Chao NEil* card START ________ -->
<div class="card">
<p class="name">Chao Neil Borgohain</p>
<p class="contact">
<i class="fab fa-brands fa-github-alt"></i>
<a href="https://github.com/ChaoNEil" target="_blank">ChaoNEil</a>
<br>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/NBorgan" target="_blank">@NBorgan</a>
</p>
<p class="about">Hi, I am Chao NEil, I graduated with an Arts degree but now I am drawn to the world of CS because of money and my interest.</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.theodinproject.com/" target="_blank" title="Second Resource">The Odin Project</a>
</li>
<li>
<a href="https://www.youtube.com/@bawad" target="_blank" title="Third resource">YouTube(@benAwad)</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Chao NEil* card END ________ -->
<!-- ________ Arnab's card START ________ -->
<div class="card">
<p class="name">Arnab Pal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ArnabPal2018" target="_blank">@ArnabPal2018</a>
<br>
<i class="fab fa-github"></i>
<a href="https://github.com/arnab9593" target="_blank">arnab9593</a>
</p>
<p class="about">A passionate full stack web developer from India. I’m an inquisitive and highly motivated Full Stack web developer with specialization in MERN stack, worked through 1000+ hours of bootcamp structure learning. I have the relevant hands-on experience in building websites from scratch using HTML 5, CSS 3 JavaScript, React.Js , Node.Js, Express, MongoDB tech stack and also have the ability to learn and collaborate in rapidly changing environments and compositions. Also I possess experience of 18 months in the area of Oracle Fusion Middleware technology. I'm looking forward to pursue a career in a challenging environment to hone the industry skills.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/typescript-cheatsheets/react" target="_blank" title="GitHub">TypeScript Cheatsheeet</a>
</li>
<li>
<a href="https://github.com/donnemartin/system-design-primer" target="_blank" title="GitHub">System Design</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="FreeCodeCamp">Fundamentals of Coding</a>
</li>
</ul>
</div>
</div>
<!-- ________ Arnab's card END ________ -->
<!-- ________ Marek card START ________ -->
<div class="card">
<p class="name">Marek Korendał</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/korenda11" target="_blank">@korendal11</a>
</p>
<p class="about">I am an engineer of renewable energy sources. I know what masochism is because I have been an Ac Milan fan for the last 12 years. I love football, technology and cooking.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/auth/login" target="_blank" title="Chat with artificial intelligence">CHAT GPT</a>
</li>
<li>
<a href="https://www.eggradients.com/" target="_blank" title="Page with gradients">Eggradients</a>
</li>
<li>
<a href="https://getemoji.com/" target="_blank" title="Site with emoji">Get Emoji</a>
</li>
</ul>
</div>
</div>
<!-- ________ Marek card END ________ -->
<!-- ________ *Jainul* card START ________ -->
<div class="card">
<p class="name">Jainul </p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/xyz" target="_blank">Zain</a>
<br>
<i class="fab fa-github"></i>
<a href="https://github.com/Jain101" target="_blank">Jain101</a>
</p>
<p class="about">This is Jainul 2nd year IT student and a newbie web developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/" target="_blank" title="First Resource">Github</a>
</li>
<li>
<a href="https://www.freecodecamp.com/" target="_blank" title="Second Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.developer.mozilla.org/" target="_blank" title="Third resource">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Jainul* card END ________ -->
<!-- ________ Mal Rad card START ________ -->
<div class="card">
<p class="name">Malini Radha</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://malinikrish.com/" target="_blank">Let us Simplify!</a>
</p>
<p class="about">Technologist</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">A developers helper to solve questions, issues and troubleshooting issues in general</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn" target="_blank" title="First Resource">Free Code Camp, just recently tried this and tutorials are easy to learn with</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Second Resource">Another free resource, if you prefer non-video format of learning</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mal Rad card END ________ -->
<!-- ________ Ahor Isaac card START ________ -->
<div class="card">
<p class="name">Ahor Isaac</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/AhorIsaac_" target="_blank">@AhorIsaac</a>
</p>
<p class="about">I'm a solution. I find solutions, and I bring solutions.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.cssscript.com/" target="_blank" title="CSSScript">CSSScript</a>
</li>
<li>
<a href="https://www.studentstutorial.com/" target="_blank" title="StudentsTutorial">StudentsTutorial</a>
</li>
<li>
<a href="https://cssgradient.io/" target="_blank" title="CSS Gradient">CSS Gradient</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ahor Isaac card END ________ -->
<!-- ________ *Aprajita* card START ________ -->
<div class="card">
<p class="name">Aprajita </p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/CallbackTerror" target="_blank">Callback terror</a>
<br>
<i class="fab fa-github"></i>
<a href="https://github.com/Aprajita479" target="_blank">Aprajita479</a>
</p>
<p class="about">This is Aprajita final year CS student and Tech enthusiast, currently wokring on full-stack
web-development</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://nodeschool.io/" target="_blank" title="First Resource">nodeschool</a>
</li>
<li>
<a href="https://www.pdfdrive.com/" target="_blank" title="Second Resource">pdfdrive</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">geeksforgeeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Aprajita* card END ________ -->
<!-- ________ Olexiy card START ________ -->
<div class="card">
<p class="name">Olexiy Melnychuk</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/alexxuzzz" target="_blank">@alexxuzzz</a>
</p>
<p class="about">A beginner in Front-End Develpment. React enjoyer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.linkedin.com/in/alexmelnych/" target="_blank" title="LinkedIn">My LinkedIn profile</a>
</li>
<li>
<a href="https://github.com/alexxuss1996" target="_blank" title="Github Profile">My Github profile</a>
</li>
<li>
<a href="https://alexxuss-github-finder.netlify.app/" target="_blank" title="Github Finder">One of my pet projects</a>
</li>
</ul>
</div>
</div>
<!-- ________ Olexiy card END ________ -->
<!-- ________ *Ahtesham* Contributor card START ________ -->
<div class="card">
<p class="name">M Ahtesham</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/_ahteshamm" target="_blank">_ahteshamm</a>
</p>
<p class="about">This is Ahtesham final year CS student and Tech enthusiast, currently wokring on full-stack web-development</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://nodeschool.io/" target="_blank" title="First Resource">nodeschool</a>
</li>
<li>
<a href="https://www.pdfdrive.com/" target="_blank" title="Second Resource">pdfdrive</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">geeksforgeeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Ahtesham* Contributor card END ________ -->
<!-- *Pratik Mali* Contributor card starts here -->
<div class="card">
<p class="name">Pratik Mali</p>
<p class="contact">
<a href="https://twitter.com/IPratikMali" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/pratik-mali-6a16251a0/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/IPratikMali" target="_blank"><i class="fab fa-github"></i></a>
</p>
<p class="about">I know how to build full-fledged things.
Currently I am into App-Dev (Flutter).
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freepik.com/search?format=search&query=movies" target="_blank" title="First Resource">Freepik</a>
</li>
<li>
<a href="https://pub.dev/" target="_blank" title="Second Resource">Dart Packages</a>
</li>
<li>
<a href="https://neetcode.io/practice" target="_blank" title="Third resource">Neetcode</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Pratik Mali* Contributor card END ________ -->
<!-- ________ *Derryck Contributor card START* ________ -->
<div class="card">
<p class="name">Derryck</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/code_with_Mi" target="_blank">Derryc@code_with_Mi</a>
</p>
<p class="about">Hey, Am a Front-End engineer looking forward to add more contributions to open source projects. 🤠</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://johnsmilga.com/" target="_blank" title="First Resource">John Smilga</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="Second Resource">Github</a>
</li>
<li>
<a href="https://chat.openai.com/chat" target="_blank" title="Third resource">ChatGPT</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Derryck Contributor card END* ________ -->
<!-- ________ Sam card START ________ -->
<div class="card">
<p class="name">Sam Cutter</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/sam-cutter" target="_blank">sam-cutter</a>
</p>
<p class="about">I enjoy coding in languages such as Python, TypeScript, and Rust. I am looking for open source projects to contribute to, and this seems like a great starting point. I plan to create a full-stack app which connects developers to open source projects.</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.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>
<!-- ________ Sam card END ________ -->
<!-- ________ Stelios Acharidis card START ________ -->
<div class="card">
<p class="name">Stelios Achtaridis</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/_axtaridis/" target="_blank">_axtaridis</a>
</p>
<p class="about">I'm studying computer science at Aristotle University of Thessaloniki.I love coding and playing music.</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://stackoverflow.com/" target="_blank" title="Second Resource">stackoverflow</a>
</li>
<li>
<a href="https://leetcode.com/problemset/all/" target="_blank" title="Third resource">LeetCode</a>
</li>
</ul>
</div>
</div>
<!-- ________ Stelios Achtaridis card END ________ -->
<!-- Grischa card START ________ -->
<div class="card">
<p class="name">Grischa Schmidt</p>
<p class="contact">
<a href="https://github.com/GrischaSchmidt" target="_blank" style="margin-right: 5px;">
<i class="fab fa-github"></i>
</a>
</p>
<p class="about">Recently passionized by Fullstack Develoment creating stuff by any means necessary.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="First Resource">ChatGPT</a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title="Second Resource">Stack Overflow</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Third resource">Mozilla Developer Network</a>
</li>
</ul>
</div>
</div>
<!-- ________ Grischa card END ________ -->
<!-- ________ *Ese Odiase* Contributor card START ________ -->
<div class="card">
<p class="name">Ese Odiase</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/webappnfts" target="_blank">@WebAppNFTs</a>
</p>
<p class="about">I am a front-end developer and I specialize in creating lightweight web themes and template placed on NFT market place.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com" target="_blank" title="First Resource">W3Schools</a>
</li>
<li>
<a href="https://www.leetcode.com" target="_blank" title="Second Resource">LeetCode</a>
</li>
<li>
<a href="https://www.stackblitz.com" target="_blank" title="Third resource">StackBlitz</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Ese Odiase* Contributor card END ________ -->
<!-- ________ Saurabh Singh card START ________ -->
<div class="card">
<p class="name">Saurabh Singh</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/saurabh57/" target="_blank">Saurabh Singh</a>
</p>
<p class="about">I am an experienced Software Developmer looking for opportunities to contribute in open source projects.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.baeldung.com/" target="_blank" title="First Resource">Guides to learn various Java based technologies. </a>
</li>
<li>
<a href="https://vladmihalcea.com/" target="_blank" title="Second Resource">Articles related to ORM, JPA and Hibernate.</a>
</li>
<li>
<a href="https://microservices.io/" target="_blank" title="Third resource">Microservice Patterns.</a>
</li>
</ul>
</div>
</div>
<!-- ________ Saurabh Singh card END ________ -->
<!-- ________ Vivek Yadav card STARTS________ -->
<div class="card">
<p class="name">Vivek Yadav</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/vivekydvtwt" target="_blank">vivekydvtwt</a>
</p>
<p class="about">A passionate web devloper and technology enthusiast.</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://www.freecodecamp.org/" target="_blank" title="Second Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://leetcode.com/problemset/all/" target="_blank" title="Third resource">LeetCode</a>
</li>
</ul>
</div>
</div>
<!-- ________ Vivek Yadav card END ________ -->
<!-- ________ *Oladimeji's card starts here ________ -->
<div class="card">
<p class="name">Momoh Oladimeji</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/momoh_oladimeji" target="_blank">@Momoh_Oladimeji</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/oladee" target="_blank">@Oladee</a>
</p>
<p class="about">Full stack developer enthusiast, i have passion for the different technologies involved in both front-end and backend web development, open to learn and building seamless, interactive web pages and web-apps</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap" target="_blank" title="First Resource">CSS Flexwrap</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/empty-cells" target="_blank" title="Second Resource">Web Css Empty cells</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" title="Third resource">MDN Javascript</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Oladimeji's card ends here ________ -->
<!-- Maria Varati card START -->
<div class="card">
<p class="name">Maria Varati</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/mariavarati" target="_blank">mariavarati</a>
</p>
<p class="about">I am studying computer science in Aristotle University of Thessaloniki.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/css/" target="_blank" title="CSS examples">w3schools</a>
</li>
<li>
<a href="https://www.codecademy.com/learn/learn-c-plus-plus" target="_blank" title="Learn C++">codeacademy</a>
</li>
<li>
<a href="https://www.learnpython.org/" target="_blank" title="Learn Python">learnpython</a>
</li>
</ul>
</div>
</div>
<!-- Maria Varati card END -->
<!-- Prashant Sahu Card start -->
<div class="card">
<p class="name">Prashant</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/SavarkarforLife" target="_blank">My Twitter Handle</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.incredibleindia.org/content/incredible-india-v2/en/events/dekho-apna-desh.html" target="_blank" title="First Resource">
Dekho Apna Desh</a>
</li>
<li>
<a href="https://app.pictory.ai/storyboard/articletovideo" target="_blank" title="Pictory AI">Pictory Ai Tool: Text to Video</a>
</li>
<li>
<a href="https://runwayml.com/" target="_blank" title="Runway AI">Runway AI</a>
</li>
</ul>
</div>
</div>
<!-- Prashant Sahu Card end -->
<!-- ________ * Atul Tiwaree's Contribution card START ________ -->
<div class="card">
<p class="name">Atul Tiwaree</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/atultiwaree" target="_blank">github</a>
</p>
<p class="about">Hi! I'm just a beginner developer</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://codewars.com/" target="_blank" title="Second Resource">CodeWars</a>
</li>
<li>
<a href="https://overiq.com" target="_blank" title="Third resource">OverIQ</a>
</li>
</ul>
</div>
</div>
<!-- ________ Atul Tiwaree's Contribution card END ________ -->
<!-- ________ *Dhruvin's card starts here ________ -->
<div class="card">
<p class="name">Dhruvin Vekariya</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://dhruvinvekariya.netlify.app" target="_blank">twitter</a>
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/dhruvinj_dj" target="_blank">twitter</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/djv03" target="_blank">github</a>
</p>
<p class="about">
full stack devloper, open-source enthusiast, speaker. lets build something together awesome. drop me message to get on call or coffee or twitter.
</p>
<div class="resources">
<p>2 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.reactjs.org" target="_blank" title="First Resource">react</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="go to place for quick solutionan and overview">W3Schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Dhruvin's card END ________ -->
<!-- ________ *Aaditya-Rana* Contributor card START ________ -->
<div class="card">
<p class="name">Aaditya Rana</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/aadityarana_" target="_blank">Aaditya Rana</a> |
<i class="fab fa-github"></i>
<a href="https://github.com/aaditya-rana" target="_blank">Aaditya Rana</a>
</p>
<p class="about">Hello, I am Aaditya Rana. I have Passion for technology and software development. Eager to learn and grow as a tech professional, leveraging my analytical skills and teamwork abilities.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Blog for CS students">Geeks For Geeks</a>
</li>
<li>
<a href="https://leetcode.com/" target="_blank" title="world's leading online programming">Leetcode</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="online web tutorials">w3schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Aaditya-Rana* Contributor card END ________ -->
<!-- ________ *Superior card START ________ -->
<div class="card">
<p class="name">Samson Aderonmu</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/samsonaderonmu" target="_blank">Samson Aderpnmu</a>
</p>
<p class="about">As a passionate frontend developer, I am dedicated to creating stunning web applications that are both aesthetically pleasing and user-friendly. I have always been fascinated by the way technology works, and this interest has led me to pursue a career in software development.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://medium.com/@superiorsam/object-oriented-fundamentals-64d28393feb" target="_blank" title="First Resource">Object Oriented Fundamentals</a>
</li>
<li>
<a href="https://medium.com/@superiorsam/semantic-html-and-its-benefits-9c3b9ceb32a3" target="_blank" title="Second Resource">Semantic HTML and its Benefits</a>
</li>
<li>
<a href="https://medium.com/@superiorsam/unlock-react-fundamentals-and-take-your-web-development-to-the-next-level-9ba6f8b0171d" target="_blank" title="Third resource">Unlock React Fundamentals and Take Your Web Development to the Next Level!</a>
</li>
</ul>
</div>
</div>
<!-- ________ Superior card END ________ -->
<!-- ________ areepp card START ________ -->
<div class="card">
<p class="name">areepp</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/elonmusk" target="_blank">@elonmusk</a>
<i class="fab fa-github"></i>
<a href="https://github.com/areepp" target="_blank">@areepp</a>
</p>
<p class="about">Full Stack Developer goes brrrr</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="The Odin Project, free web dev curriculum">The Odin Project</a>
</li>
<li>
<a href="https://fullstackopen.com/en/" target="_blank" title="Full Stack Open, full stack curriculum">Full Stack Open</a>
</li>
<li>
<a href="https://www.reddit.com/r/webdev/" target="_blank" title="r/webdev subreddit">r/webdev subreddit</a>
</li>
</ul>
</div>
</div>
<!-- ________ areepp card END ________ -->
<!--______________________Richard Callaby's Card Start_______________-->
<div class="card">
<p class="name">Richard Callaby</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/RichardCallaby" target="_blank">Richard Callaby</a>
</p>
<p class="about">Just a curious security researcher who also writes code and teaches on various platforms such as youtube and Udemy</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://en.wikibooks.org/wiki/JavaScript/Introduction" target="_blank" title="Wikibooks JavaScript Course">Wikibooks JavaScript Course</a>
</li>
<li>
<a href="https://eloquentjavascript.net/" target="_blank" title="Eloquent JavaScript">Eloquent JavaScript</a>
</li>
<li>
<a href="https://refactoring.guru/design-patterns" target="_blank" title="Refactoring Guru">Refactoring Guru</a>
</li>
</ul>
</div>
</div>
<!--__________________________Richard Callaby's Card End_______________________-->
<!-- ________ *Rakshaa* Contributor card START ________ -->
<div class="card">
<p class="name">Rakshaa</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/rakshaa-01/" target="_blank">rakshaa-01</a>
</p>
<p class="about">A newbie to development, constantly exploring what the world has to offer!</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://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow">Stack Overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Rakshaa* Contributor card END ________ -->
<!-- ________ *Peculiar card START ________ -->
<div class="card">
<p class="name">Peculiar Richard</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/peculiarichard" target="_blank">@peculiarichard</a>
<i class="fab fa-github"></i>
<a href="https://github.com/peculiarrichard" target="_blank">@peculiarrichard</a>
</p>
<p class="about">I am a Frontend and Solidity Developer who loves to build beautiful user interfaces and decentralized applications for the internet.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://cryptozombies.io/" target="_blank" title="A platform to learn how to code decentralized DApps by building games">CryptoZombies</a>
</li>
<li>
<a href="https://github.com/geuis/helium-css" target="_blank" title="A Javascript tool to check and discover unused CSS">Helium</a>
</li>
<li>
<a href="hhttps://www.youtube.com/@WesBos" target="_blank" title="A YouTube channel for HTML, CSS, JavaScript, and WordPress web development tutorials!">Web BOS</a>
</li>
</ul>
</div>
</div>
<!-- ________ Peculiar card END ________ -->
<!-- ________ jlpm-mex card START ________ -->
<div class="card">
<p class="name">jlpm</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Jose_Pino1" target="_blank">@Jose_Pino1</a>
<i class="fab fa-github"></i>
<a href="https://github.com/jlpm-mex" target="_blank">@jlpm-mex</a>
</p>
<p class="about"> I love to automate tasks, or make things easier, skills in java, and MERN </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="A very useful resource to learn while you code"> CodeAcademy </a>
</li>
<li>
<a href="https://www.hackerrank.com/auth/login 2" target="_blank" title="A good place to practice and learn"> HackerRank</a>
</li>
<li>
<a href="https://leetcode.com/problemset/all/" target="_blank" title="A good place to practice and learn"> LeetCode</a>
</li>
</ul>
</div>
</div>
<!-- ________ jlpm-mex card END ________ -->
<!-- ________ Chinatu Lucia Eke card START ________ -->
<div class="card">
<p class="name">Chinatu Lucia Eke</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/ChinatuLucia" target="_blank">@ChinatuLucia</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ChinatuL" target="_blank">@ChinatuL</a>
</p>
<p class="about">Hello, I am Chinatu Lucia Eke. A frontend developer based in Nigeria. I just recently started contributing to Open Source projects and I'm loving it. Looking forward to contributing to more projects here! </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://frontendmasters.com/" target="_blank" title="A great resource for developers containing courses for different languages">Frontend Masters</a>
</li>
<li>
<a href="https://www.w3schools.com/accessibility/index.php" target="_blank" title="Learn Web Accessibility">Web Accessibility</a>
</li>
<li>
<a href="https://www.codewars.com" target="_blank" title="Improve your problem solving skills by practicing with algorithms in your favourite language">Codewars</a>
</li>
</ul>
</div>
</div>
<!-- ________ Chinatu Lucia Eke card END ________ -->
<!-- ________ Krishnansh Agarwal card START ________ -->
<div class="card">
<p class="name">Krishnansh Agarwal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/krishnanshdev" target="_blank">@krishnanshdev</a>
<i class="fab fa-github"></i>
<a href="https://github.com/krishnanshagarwal112" target="_blank">@krishnanshagarwal112</a>
</p>
<p class="about">Learned front-end, now learning back-end,I love football and anime ! you should definitely give <b>One Piece</b> a watch! I am a fan of Chelsea footbal club 💙</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="The Odin Project">The Odin Project (Fullstack)</a>
</li>
<li>
<a href="https://boot.dev/tracks/backend" target="_blank" title="Boot.dev">Boot.dev (backend)</a>
</li>
<li>
<a href="https://www.youtube.com/@Fireship" target="_blank" title="Fireship">Fireship (Youtbe channel with great content)</a>
</li>
</ul>
</div>
</div>
<!-- ________ Krishnansh Agarwal card END ________ -->
<!-- ________ Nicholas Njoki card START ________ -->
<div class="card">
<p class="name">Nicholas Njoki</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/heynickn" target="_blank">@heynickn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/alsonick" target="_blank">@alsonick</a>
</p>
<p class="about">Hey! I am Full-Stack developer from the UK 🇬🇧 who loves ❤️ open source. I love traveling and watching anime, you should definitely give <b>One Piece</b> a watch! I also hate coffee. 🙃</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://gist.github.com/bradtraversy/c831baaad44343cc945e76c2e30927b3" target="_blank" title="MySQL Cheat Sheet">MySQL Cheat Sheet</a>
</li>
<li>
<a href="https://www.shadergradient.co/" target="_blank" title="Shader Gradient">Shader Gradient</a>
</li>
<li>
<a href="https://undraw.co/illustrations" target="_blank" title="unDraw">unDraw</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nicholas Njoki card END ________ -->
<!-- ________ myheadexplodez card START ________ -->
<div class="card">
<p class="name">myheadexplodez</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/rolandpurdea" target="_blank">@rolandpurdea</a>
<i class="fab fa-github"></i>
<a href="https://github.com/myheadexplodez" target="_blank">@myheadexplodez</a>
</p>
<p class="about">Originally Network Admin,now learning Front-End dev.I hate to hurry.I love details.Pretty much
into CSS.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank"
title="The Ultimate Crash Course if you want to catch up quickly.">freeCodeCamp</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank"
title="Udemy to understand some concepts and be able to jump off">Udemy</a>
</li>
<li>
<a href="https://chat.openai.com/chat/" target="_blank"
title="I believe I need'nt to say anything.">ChatGPT3</a>
</li>
</ul>
</div>
</div>
<!-- ________ myheadexplodez card END ________ -->
<!-- ________ Sowmya's card START ________ -->
<div class="card">
<p class="name">SOWMYA.R</p>
<p class="contact">
<i class="fab fa-github"> </i>
<a href="https://github.com/Sowmya-Ramesh-7" target="_blank">Your handle</a>
</p>
<p class="about"> A Logical thinker with a lot of curiosity and creativity.I am an MCA student andB.Sc Computer Science,Homescience,Psychology graduate . </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>