forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2893 lines (2797 loc) · 118 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 ========= -->
<!-- ________ Harsh card START ________ -->
<div class="card">
<p class="name">Harshvardhan Rana</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/harshvardhan-rana-83b779208/" target="_blank">
Harshvardhan Rana (My LinkedIn)
</a>
<i class="fab fa-github"></i>
<a href="https://github.com/HarshRanaOC" target="_blank">HarshRanaOC (My Github)</a>
</p>
<p class="about">Eat Sleep Code Repeat</p>
<div class="resources">
<p>Useful Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/css/" target="_blank" title="First Resource">
W3schools- Everyday Problems
</a>
</li>
<li>
<a href="https://openai.com/" target="_blank" title="Second Resource">OpenAi</a>
</li>
<li>
<a href="https://learn.microsoft.com/en-us/dotnet/csharp/" target="_blank" title="Third Resource">
C# Documentation- Hard Way
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Harsh card END ________ -->
<!-- ________ Kranya card START ________ -->
<div class="card">
<p class="name">Kranya Provo</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/KranyaProvo" target="_blank">KranyaProvo</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/kkadapa" target="_blank">kkadapa</a>
</p>
<p class="about">
A senior software engineer with software architect exposure and AWS or Azure cloud certifications and
experience is a highly experienced and skilled professional in the field of software development and cloud
computing. This individual typically has many years of experience in software engineering, which includes
designing, developing, and maintaining complex software systems.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://css-tricks.com/"
target="_blank"
title="CSS-Tricks is an excellent resource for web designers and developers looking to dive deep into CSS and front-end development. It offers in-depth articles, tutorials, and solutions for advanced web design and layout techniques."
>
CSS-Tricks
</a>
</li>
<li>
<a
href="https://www.smashingmagazine.com/"
target="_blank"
title="Smashing Magazine provides high-quality articles, books, and resources on various web development topics. It covers advanced web design, performance optimization, and development best practices."
>
Smashing Magazine
</a>
</li>
<li>
<a
href="https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg"
target="_blank"
title="The Net Ninja offers video tutorials on advanced web development topics, including modern JavaScript frameworks like React, Vue, and Node.js. The channel provides in-depth, hands-on learning experiences for more advanced developers."
>
The Net Ninja
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Kranya card END ________ -->
<!-- ________ Kuba card START ________ -->
<div class="card">
<p class="name">Kuba</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/popunusog" target="_blank">popunusog</a>
</p>
<p class="about">eat sleep code repeat</p>
<div class="resources">
<p>Useful Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/css/" target="_blank" title="First Resource">
W3schools- Everyday problems
</a>
</li>
<li>
<a href="https://openai.com/" target="_blank" title="Second Resource">OpenAi- Easy way</a>
</li>
<li>
<a href="https://learn.microsoft.com/en-us/dotnet/csharp/" target="_blank" title="Third Resource">
C# documentation- Hard way
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Kuba card END ________ -->
<!-- ________ Casmir's card START ________ -->
<div class="card">
<p class="name">Casmir Onyeka</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/Diagnostic_Cas" target="_blank">Diagnostic_Cas</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Casmir293" target="_blank">Casmir293</a>
</p>
<p class="about">
Hi! I'm Casmir. I'm a passionate Frontend Web Developer with a knack for crafting captivating web
experiences. 💻 Proficient in Vue, Pinia, Bootstrap, and more. 🚀
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://w3schools.com" target="_blank" title="First Resource">w3schools</a>
</li>
<li>
<a href="https://www.youtube.com/@DaveGrayTeachesCode" target="_blank" title="Second Resource">
Dave Gray's youTube channel
</a>
</li>
<li>
<a
href="https://twitter.com/hashtag/100DaysOfCode?src=hashtag_click&f=live"
target="_blank"
title="Third resource"
>
#100DaysOfCode Challenge
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Casmir's card END ________ -->
<!-- ________ monsor3s card START ________ -->
<div class="card">
<p class="name">Marlon Monsores</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/monsoresdev" target="_blank">monsoresdev</a>
<i class="fab fa-github"></i>
<a href="https://github.com/monsor3s" target="_blank">monsor3s</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/marlon-monsores-380408b2/" target="_blank">Marlon Monsores</a>
</p>
<p class="about">
i'm a react front-end developer who is constantly evolving and fascinated by solving problems.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Mozilla Developer">
Mozilla Developer
</a>
</li>
<li>
<a href="https://css-tricks.com/" target="_blank" title="Css tricks">CSS Tricks</a>
</li>
<li>
<a href="https://react.dev/" target="_blank" title="React Documentation">React</a>
</li>
</ul>
</div>
</div>
<!-- ________ monsor3s card END ________ -->
<!-- ________ Nicolas card START ________ -->
<div class="card">
<p class="name">Nicolas</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/nicolas-escaroz-771989288" target="_blank">My LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/NicoEscaroz" target="_blank">My GitHub</a>
</p>
<p class="about">
I'm a software engineer from Mexico. I like learning new skills related to the topics I like. I love living.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://leetcode.com/problemset/all/" target="_blank" title="First Resource">Leetcode</a>
</li>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Second Resource">Developer Roadmaps</a>
</li>
<li>
<a href="https://github.com/pittcsc/Summer2024-Internships" target="_blank" title="Third resource">
Summer2024-Internships
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nicolas card END ________ -->
<!-- ________ CARSON-card START ________ -->
<div class="card">
<p class="name">Carson</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/carsontham" target="_blank">carsontham</a>
</p>
<p class="about">Currently learning Git</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://vim.rtorr.com/" target="_blank" title="First Resource">Simple VIM Cheatsheet</a>
</li>
<li>
<a
href="https://developer.apple.com/documentation/uikit/view_controllers/displaying_and_managing_views_with_a_view_controller"
target="_blank"
title="Second Resource"
>
UI Views for iOS Development
</a>
</li>
<li>
<a
href="https://www.redhat.com/en/topics/api/what-are-application-programming-interfaces"
target="_blank"
title="Third resource"
>
What is API?
</a>
</li>
</ul>
</div>
</div>
<!-- ________ CARSON-card END ________ -->
<!-- ________ AbhishekMan card START ________ -->
<div class="card">
<p class="name">Abhishek Manral</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/abhishek-manral-09ba75235/" target="_blank">My LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/AbhishekManra" target="_blank">My Github</a>
</p>
<p class="about">I am college student , and i learnt react last week.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/" target="_blank" title="First Resource">MDN docs</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">FreecodeCamp</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">StackOverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ AbhishekMan card END ________ -->
<!-- ___ Ashutosh Contributor card START ___ -->
<div class="card">
<p class="name">Ashutosh Singh Yadav</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ashutosh-singh-yadav-863385239/" target="_blank">Durgesh's LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ashu9335" target="_blank">Durgesh's GitHub</a>
</p>
<p class="about">Full Stack Web Developer, Open Source Contributor & Mentor</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">W3school</a>
</li>
<li>
<a href="https://fullstackopen.com/en/" target="_blank" title="Second Resource">Fullstackopen</a>
</li>
<li>
<a href="https://openclassrooms.com/en/" target="_blank" title="Third resource">openclassrooms</a>
</li>
</ul>
</div>
</div>
<!-- ___ Ashutosh Contributor card END ___ -->
<!-- ________ Mohit card START ________ -->
<div class="card">
<p class="name">mohit</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/MohitHire" target="_blank">MohitHire</a>
</p>
<p class="about">Currently Learning web development</p>
<div class="resources">
<p>Useful Resources</p>
<ul>
<li>
<a
href="https://www.mygreatlearning.com/web-development/free-courses"
target="_blank"
title="First Resource"
>
web-development
</a>
</li>
<li>
<a href="https://www.codecademy.com/learn/learn-css" target="_blank" title="Second Resource">CSS</a>
</li>
<li>
<a href="https://www.udemy.com/course/react-tutorial/" target="_blank" title="Third Resource">
react_tutorial
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mohit card END ________ -->
<!-- ________ Varad card START ________ -->
<div class="card">
<p class="name">Varad Kulkarni</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/KulVarad172004" target="_blank">KulVarad172004</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/varad-kulkarni172" target="_blank">Varad Kulkarni</a>
</p>
<p class="about">About Me</p>
<div class="resources">
<p>My 3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://react.dev/" target="_blank" title="React documentation">React</a>
</li>
<li>
<a href="https://git-scm.com/doc" target="_blank" title="Git Documentation">Getting started with Git</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">
Master your basic Web Dev skills
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Varad card END ________ -->
<!-- ________ mfouladi card START ________ -->
<div class="card">
<p class="name">Mohammad fouladi</p>
<p class="contact">
<i class="fa fa-envelope" aria-hidden="true"></i>
<a href="mailto:[email protected]" target="_blank">Email</a>
<i class="fab fa-github"></i>
<a href="https://github.com/mfouladi94" target="_blank">mfouladi94</a>
</p>
<p class="about">i'm a software engineer and developer of python and golang , call me if need any help :)</p>
<div class="resources">
<p>3 Useful Dev Resources for beginners</p>
<ul>
<li>
<a href="https://mfouladi.ir/" target="_blank" title="First Resource">https://mfouladi.ir/</a>
</li>
<li>
<a href="https://go.dev" target="_blank" title="Second Resource">https://go.dev</a>
</li>
<li>
<a href="https://code.org" target="_blank" title="Third resource">https://code.org</a>
</li>
</ul>
</div>
</div>
<!-- ________ mfouladi card END ________ -->
<!-- ________ aman card START ________ -->
<div class="card">
<p class="name">aman</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/paman6415" target="_blank">paman</a>
</p>
<p class="about">Currently Learning React, love to do Competitive Coding</p>
<div class="resources">
<p>Useful Resources for Competitive Coding</p>
<ul>
<li>
<a href="https://clist.by/" target="_blank" title="First Resource">Coding Contest Reminder</a>
</li>
<li>
<a href="https://ide.usaco.guide/" target="_blank" title="Second Resource">
Online Compiler to learn Large set of test cases
</a>
</li>
<li>
<a href="https://codeforces.com/blog/entry/57282" target="_blank" title="Third resource">
All the good tutorials found for Competitive Programming
</a>
</li>
</ul>
</div>
</div>
<!-- ________ aman card END ________ -->
<!-- ________ Sarah card START ________ -->
<div class="card">
<p class="name">Sarah</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sarah-brodie-b4360a24a/" target="_blank">Sarah's LinkedIn</a>
<i class="fab fa-github"></i>
<a href="https://github.com/SARAH6325" target="_blank">Sarah's github</a>
</p>
<p class="about">Building the future one line at a time</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com" target="_blank" title="First Resource">StackOverflow</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Second Resource">W3school</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="Third resource">ChatGPT</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sarah card END ________ -->
<!-- ________ *Abhay Patil* Contributor card START ________ -->
<div class="card">
<p class="name">Abhay Patil</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.linkedin.com/in/abhay-patil-985903210/" target="_blank">Abhay Patil</a>
<i class="fab fa-github"></i>
<a href="https://github.com/abhayp2204" target="_blank">abhayp2204</a>
</p>
<p class="about">
As a motivated developer, I have years of experience in web development using React. I am passionate about
cybersecuirty and am actively learning and acquiring new skills!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.geeksforgeeks.org/company-preparation/"
target="_blank"
title="Company Preparation"
>
Geeks for Geeks - Prepare for coding interviews
</a>
</li>
<li>
<a href="https://leetcode.com/problemset/all/" target="_blank" title="Leetcode">
Leetcode - Practice Data Structures and Algorithms
</a>
</li>
<li>
<a href="https://www.coursera.org/" target="_blank" title="Coursera">
Coursera - Learn new skills and technologies
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Abhay Patil* Contributor card END ________ -->
<!-- ________ Aditya card START ________ -->
<div class="card">
<p class="name">Aditya Goyal</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/__.adityagoyal/" target="_blank">__.adityagoyal</a>
<i class="fab fa-github"></i>
<a href="https://github.com/adityagoyal200" target="_blank">Aditya Goyal</a>
</p>
<p class="about">
specializing in software engineering and development. I'm interested in exploring potential internship and
job openings at your organization.My skills are centered around algorithm design and web development using
modern tools like React.js.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://encore.dev/" target="_blank" title="First Resource">Encore API</a>
</li>
<li>
<a href="https://remotesalary.ai/board?remote=true" target="_blank" title="Second Resource">
Remote Jobs
</a>
</li>
<li>
<a href="https://wellfound.com/jobs" target="_blank" title="Third resource">wellfound Remote Jobs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya card END ________ -->
<!-- ________ Tito card START ________ -->
<div class="card">
<p class="name">Tito Mazzetta</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/titomazzetta/" target="_blank">@titomazzetta</a>
<i class="fab fa-github"></i>
<a href="https://github.com/titomazzetta" target="_blank">titomazzetta</a>
</p>
<p class="about">
Passionate developer and creative thinker. Excited about the future of technology and eager to learn new
skills.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Mozilla Developer Network">
MDN Web Docs
</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stack Overflow">Stack Overflow</a>
</li>
<li>
<a href="https://github.com/trending" target="_blank" title="GitHub Trending Repositories">
GitHub Trending
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Tito card END ________ -->
<!-- Saurabh Contributor Card start -->
<div class="card">
<p class="name">Vipul Varshney</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/sau.ra.bh7" target="_blank">Hit me up on gram</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/saurabh1118" target="_blank">Here's my GitHub</a>
</p>
<p class="about">Hello, I am a MERN stack developer, DSA geek and a cybersecuirty enthusiast.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org/news/the-css-flexbox-handbook/"
target="_blank"
title="First Resource"
>
Free Code Camp CSS Flex Box Tutorial book
</a>
</li>
<li>
<a href="https://developer.mozilla.org/" target="_blank" title="Second Resource">MDN Web Dev Docs</a>
</li>
<li>
<a
href="https://www.freecodecamp.org/news/build-basic-forms-with-html/"
target="_blank"
title="Third resource"
>
Free Code Camp HTML Basic forms
</a>
</li>
</ul>
</div>
</div>
<!-- Saurabh Contributor Card end -->
<!-- Vipul contributor card start -->
<div class="card">
<p class="name">Vipul Varshney</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/LetitbeRude" target="_blank">Tweet me</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/vipulSVJ" target="_blank">Checkout my GitHub profile</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://mycolor.space/" target="_blank" title="First Resource">
ColorSpace - A great tool to generate color palates
</a>
</li>
<li>
<a href="https://devdocs.io/" target="_blank" title="Second Resource">
DevDocs - A customizable complete web development documentation
</a>
</li>
<li>
<a href="https://devhints.io/" target="_blank" title="Third resource">
DevHints - A cheat sheet for almost anything development related
</a>
</li>
</ul>
</div>
</div>
<!-- Vipul contributor card end -->
<!-- ________ *Harshavardhan* Contributor card START ________ -->
<div class="card">
<p class="name">Harshavardhan Bajoria</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/hvbajoria" target="_blank">hvbajoria</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/HVbajoria" target="_blank">HVbajoria</a>
</p>
<p class="about">6X MS Certified, Google Cloud Digital Leader</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://metaschool.so/" target="_blank" title="MetaSchool">
Website to learn blockchain development for free!
</a>
</li>
<li>
<a href="https://www.alchemy.com/university" target="_blank" title="Alchemy University">
Access to best course from experts on Blockchain for free
</a>
</li>
<li>
<a href="https://cryptozombies.io/" target="_blank" title="Crypto Zombies">
Learn to code Blockchain DApps with fun activities
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Harshavardhan* Contributor card END ________ -->
<!-- ________ *Upendra* Contributor card START ________ -->
<div class="card">
<p class="name">Angad Godara</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/herDebugger" target="_blank">herDebugger</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Angad-Godara" target="_blank">Angad-Godara</a>
</p>
<p class="about">
I seek challenging opportunities and want to succeed in that environment. I want to excel in my eld and want
a highly rewarding career. I want to use my skills and knowledge for personal and professional growth.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.freecodecamp.org/learn/responsive-web-design/"
target="_blank"
title="FreeCodeCamp"
>
Beginner friendly resouce for web dev
</a>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=ER9SspLe4Hg&list=PLu0W_9lII9ahR1blWXxgSlL4y9iQBnLpR"
target="_blank"
title="JavaScript"
>
Playlist to master the javascript concepts
</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="GPT">Chat GPT</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Angad-Godara* Contributor card END ________ -->
<!-- ________ *Upendra* Contributor card START ________ -->
<div class="card">
<p class="name">Upendra</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/Upendra" target="_blank">Upendra2003</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Upendra2003" target="_blank">Upendra</a>
</p>
<p class="about">Currently Learning React, love to do Competitive Coding</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://huggingface.co/" target="_blank" title="HuggingFace">
Website with collections of ML models, Datasets and more.
</a>
</li>
<li>
<a href="https://www.kaggle.com/" target="_blank" title="Kaggle">
Website to train ML models, participate in competitions etc.
</a>
</li>
<li>
<a href="https://paperswithcode.com/" target="_blank" title="PapersWithCode">
Get access to research papers and cutting edge developrnents.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Upendra* Contributor card END ________ -->
<!-- ________ Daoist Ye START ________ -->
<div class="card">
<p class="name">Daoist Ye</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/Daoist_Ye" target="_blank">Daoist_Ye</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Daoist-Ye" target="_blank">Daoist-Ye</a>
</p>
<p class="about">A simple man making his way across the galaxy</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.kaggle.com/" target="_blank" title="Kaggle">Kaggle For Data Science and ML</a>
</li>
<li>
<a href="https://www.hanko.io/" target="_blank" title="Second Resource">Hanko</a>
</li>
<li>
<a href="https://mlh.io" target="_blank" title="Third resource">Major League Hacking</a>
</li>
</ul>
</div>
</div>
<!-- ________ Daoist Ye END ________ -->
<!-- ________ Yash Anandcard START ________ -->
<div class="card">
<p class="name">Yash Anand</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/0xYashAnand" target="_blank">0xYashAnand</a>
</p>
<p class="about">Currently Learning React, love to do Competitive Coding</p>
<div class="resources">
<p>Useful Resources for Competitive Coding</p>
<ul>
<li>
<a href="https://clist.by/" target="_blank" title="First Resource">Coding Contest Reminder</a>
</li>
<li>
<a href="https://ide.usaco.guide/" target="_blank" title="Second Resource">
Online Compiler to learn Large set of test cases
</a>
</li>
<li>
<a href="https://codeforces.com/blog/entry/57282" target="_blank" title="Third resource">
All the good tutorials found for Competitive Programming
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Yash Anand card END ________ -->
<!-- ________ KOOPAKO Contributor card START ________ -->
<div class="card">
<p class="name">KOOPAKO</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/KOOPAKO" target="_blank">KOOPAKO</a>
</p>
<p class="about">Student studying computer science in Australia</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://hoogle.haskell.org/" target="_blank" title="Hoogle">Google but for Haskell</a>
</li>
<li>
<a
href="https://www.crackingthecodinginterview.com/"
target="_blank"
title="Cracking the Coding Interview"
>
What I have been working through in my spare time recently.
</a>
</li>
<li>
<a
href="https://itrevolution.com/product/the-phoenix-project/"
target="_blank"
title="The Phoenix Project"
>
A great way to learn about the different stakeholders involved in DevOps and their needs.
</a>
</li>
</ul>
</div>
</div>
<!-- ________ KOOPAKO Contributor card END ________ -->
<!-- ________ *romitp4l* Contributor card START ________ -->
<div class="card">
<p class="name">ROMIT PAL</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/romitp4l" target="_blank">romitp4l</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/romitp4l" target="_blank">Romit Pal</a>
</p>
<p class="about">Currently Learning Android Development, have a lot of interest in linux .</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.android.com/" target="_blank">Android Developer Documentation</a>
- Official Android development resource.
</li>
<li>
<a href="https://www.codecademy.com/learn/learn-android-app-development" target="_blank">Codecademy</a>
- Offers a beginner-friendly Android App Development course.
</li>
<li>
<a href="https://www.coursera.org/specializations/android-app-development" target="_blank">
Coursera - Android App Development Specialization
</a>
- Provides free Android app development courses.
</li>
</ul>
</div>
</div>
<!-- ________ *romitp4l* Contributor card END ________ -->
<!-- ________ Arnav card START ________ -->
<div class="card">
<p class="name">Arnav Kohli</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/THEGAMECHANGER416" target="_blank">Arnav Kohli</a>
</p>
<p class="about">AI enthusiast | Machine Learning Engineer | Code Lover</p>
<div class="resources">
<p>3 Useful AI Resources</p>
<ul>
<li>
<a href="https://huggingface.co/" target="_blank" title="HuggingFace">
Website with collections of ML models, Datasets and more.
</a>
</li>