forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2007 lines (1925 loc) · 86.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/style.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>Contribute To This Project</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode">
<div class="toggle-box">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
</div>
<!-- / Night Mode Creation -->
</div>
</div>
<div class="row">
<div class="column-double">
<div class="column-left">
<h1>CONTRIBUTE TO THIS PROJECT</h1>
<h2>A project for first-time contributions</h2>
<p>
This is a tutorial to help first-time contributors participate in a simple and easy project. Get more
comfortable using GitHub and make your first open source contribution. It's quick and easy.
</p>
<a
class="button"
href="https://github.com/Syknapse/Contribute-To-This-Project/blob/master/README.md"
title="Go to project README - A step by step tutorial"
>
Learn how to contribute
<i class="fas fa-long-arrow-alt-right"></i>
</a>
</div>
</div>
<div class="column">
<div class="column-right">
<div class="twitter-button">
<a
href="https://twitter.com/share?ref_src=twsrc%5Etfw"
class="twitter-share-button"
data-size="large"
data-text="Contribute To This Project. An easy Git and GitHub project for first-time contributors, with a full tutorial."
data-url="https://github.com/Syknapse/Contribute-To-This-Project"
data-via="Syknapse"
data-hashtags="100DaysOfCode"
data-show-count="false"
title="Tweet this project"
>
Tweet
</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<p>Contributions so far...</p>
<div class="animated" id="contributions-number">0</div>
</div>
</div>
</div>
<div class="searchContainer">
<input id="searchbar" type="search" name="search" placeholder="Search for your card here!" />
</div>
<div class="grid">
<!-- ================================================ -->
<!-- ================== TEMPLATE ================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Your name</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/" target="_blank">Your handle</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________*END TEMPLATE* Contributor card END ________ -->
<!-- COPY everything ABOVE this, from contributor card start to end along with the "START" and "END" comment lines -->
<!-- ============== ^^^^ TEMPLATE ^^^^ ============== -->
<!-- ================================================ -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- Keep one line of space above and below your card -->
<!-- ========= Paste YOUR CARD directly BELOW this line ========= -->
<!-- ________ Abel card START ________ -->
<div class="card">
<p class="name">Abel</p>
<p class="contact">
<i class="fab fa-facebook"></i>
<a href="https://www.facebook.com/abel.robel.3" target="_blank">@itsmeabela</a>
</p>
<p class="about">Am a passionate front-end developer</p>
<div class="resources">
<p>Dev Resources</p>
<ul>
<li>
<a href="https://www.scrimba.com" target="_blank" title="First Resource">Scrimba</a>
</li>
<li>
<a href="https://www.freecodecamp.com" target="_blank" title="Second Resource">freecodecamp</a>
</li>
<li>
<a href="https://www.edx.com" target="_blank" title="Third resource">EDX for free Certification of CS</a>
</li>
</ul>
</div>
</div>
<!-- ________Abel card END ________ -->
<!-- ________ jimit-exe card START ________ -->
<div class="card">
<p class="name">Jimit Patel</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/jimityaar" target="_blank">Jimit Patel</a>
</p>
<p class="about">Indian Student just starting Open source</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/KunalKushwaha" target="_blank" title="First Resource">Kunal Kushwaha(YouTube)</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Second Resource">w3 Schools</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Third resource">Udemy</a>
</li>
</ul>
</div>
</div>
<!-- ________ jimit-exe card END ________ -->
<!-- ________ Ronen's card STARTS ________ -->
<div class="card">
<p class="name">Ronen Hammond</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Ronen_T_G" target="_blank">@Ronen_T_G</a>
</p>
<p class="about">I'm an undergraduate offering Information Technology. A FullStack developer in the making. I like to read and watch anime. Currently learning Flask and ReactJS.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="www.tinywow.com" target="_blank" title="Tools That Solve Your Files Problem">Tinywow</a>
</li>
<li>
<a href="https://devchallenges.io/" target="_blank" title="Second Resource">devchallenges</a>
</li>
<li>
<a href="https://youtube.com/playlist?list=PL54X5yR8qizsMpvTCqUIEFMeEp-chvcxk" target="_blank" title="Danny Thompson's LinkedIn playlist">Get a Job using LinkedIn</a>
</li>
</ul>
</div>
</div>
<!-- ________ Ronen's card END ________ -->
<!-- ________ Vishal card START ________ -->
<div class="card">
<p class="name">Vishal Singh</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/TeslaVishal" target="_blank">@TeslaVishal</a> <br>
<i class="fab fa-github"></i>
<a href="https://github.com/Vishal35679">@Vishal35679</a>
</p>
<p class="about">I am a student and currently pursuing computer science engineering and i am looking forward to
learn about Open source and contribute for the cause.</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.w3schools.com/" target="_blank" title="Second Resource">W3Schools</a>
</li>
<li>
<a href="https://www.edx.org/learn/computer-programming" target="_blank" title="Third resource">edX -
computer science</a>
</li>
</ul>
</div>
</div>
<!-- ________ Vishal card END ________ -->
<!-- ________ Aditya's card START ________ -->
<div class="card">
<p class="name">Aditya Bhagat</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/curryb0i" target="_blank">@curryb0i</a>
</p>
<p class="about">I am a college student and learing full stack web development.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/" target="_blank" title="roadmap.sh is a community effort to create roadmaps, guides and other educational content to help guide the developers in picking up the path and guide their learnings.">Developer Roadmaps</a>
</li>
<li>
<a href="https://devdocs.io/" target="_blank" title="DevDocs combines multiple API documentations in a fast, organized, and searchable interface.">API documentations</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Learn to code — for free.">freeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Aditya's card END ________ -->
<!-- ________ lingeshwaran card START ________ -->
<div class="card">
<p class="name">Lingeshwaran</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/my_portfolio_" target="_blank">@my_portfolio_</a>
</p>
<p class="about">Iam a student learning DevOps and OpenSource enthusiast , contributing in many open source projects </p>
<div class="resources">
<p>Roadmaps</p>
<ul>
<li>
<a href="https://www.commclassroom.org/devops-roadmap" target="_blank" title="DevOps roadmap">DevOps roadmap</a>
</li>
<li>
<a href="https://www.commclassroom.org/fullstack-roadmap" target="_blank" title="FullStack Roadmap">FullStack roadmap</a>
</li>
<li>
<a href="https://www.commclassroom.org/android-roadmap" target="_blank" title="Android Developer">Android Developer</a>
</li>
</ul>
</div>
</div>
<!-- ________lingeshwaran card END ________ -->
<!--___________Cade Humphreys's card START___________-->
<div class="card">
<p class="name">Cade Humphreys</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/waffles_cpt" target="_blank">@waffles_cpt</a><br>
<i class="fab fa-github"></i>
<a href="https://github.com/thecptwaffles">@thecptwaffles</a>
</p>
<p class="about">about you</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://up-for-grabs.net" target="_blank" title="Second Resource">Up For Grabs</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">W3Schools</a>
</li>
</ul>
</div>
</div>
<!--_______Cade Humphreys's card END___________-->
<!-- ________ Saurav's 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/Saurav_Navdhare" target="_blank">@Saurav_Navdhare</a>
</p>
<p class="about">I am a Computer Science student. currently learning backend Web Dev using NodeJS</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="http://freecodecamp.org/" target="_blank" title="FreeCodeCamp">FreeCodeCamp</a>
</li>
<li>
<a href="https://w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="The Odin Project">The Odin Project</a>
</li>
</ul>
</div>
</div>
<!-- ________Saurav's card END ________ -->
<!-- ________ Mcube's card START ________ -->
<div class="card">
<p class="name">Mikhail Martins</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Mikhail_Martins" target="_blank">@Mikhail_Martins</a>
</p>
<p class="about">I am currently a student studying computer science. <br>I am interested about space, robotics and music.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.py4e.com/" target="_blank" title="Python for Everybody">Python for Everybody</a>
</li>
<li>
<a href="hhttps://github.com/EbookFoundation/free-programming-books" target="_blank" title="Free programming ebooks">Free Prgramming E-books</a>
</li>
<li>
<a href="http://codepen.io/" target="_blank" title="A website with sandboxes for code about front end development">Codepen</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mcube's card END ________ -->
<!-- ________ Niki T.'s card START ________ -->
<div class="card">
<p class="name">Niki T.</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/heyNikiTshere" target="_blank">@heyNikiTshere</a>
</p>
<p class="about">Hello there! I love the colors of fall, but not the cold. Right now, I'm practising Git :)</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://git-scm.com/book/en/v2" target="_blank" title="Git Pro">Git Pro book</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="The Odin Project">The Odin Project</a>
</li>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Roadmaps">Roadmaps for developers</a>
</li>
</ul>
</div>
</div>
<!-- ________Niki T.'s card END ________ -->
<!-- ________ Hitarth Srivastava's card START ________ -->
<div class="card">
<p class="name">Hitarth Srivastava</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/hitarth_srt" target="_blank">@hitarth_srt</a>
</p>
<p class="about">Hey there! I like Python and Linux and I'm a free and open source software enthusiast. I like to explore about various tech domains in my free time.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://linkedin.github.io/school-of-sre/" target="_blank" title="First Resource for aspiring SREs">School Of SRE</a>
</li>
<li>
<a href="https://seanprashad.com/leetcode-patterns/" target="_blank" title="Second Resource for technical interviews">Leetcode Patterns</a>
</li>
<li>
<a href="https://up-for-grabs.net/#/" target="_blank" title="Third resource for beginner open source contributions">Up For Grabs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Hitarth Srivastava's card END ________ -->
<!-- ________ Sriyansh Shivam's card START ________ -->
<div class="card">
<p class="name">Sriyansh Shivam</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ShivamSriyansh" target="_blank">@ShivamSriyansh</a>
</p>
<p class="about">MERN Developer | C++/Java Programmer | Blockchain and Web3 Enthusiast | UI UX | Graphic Designing |
Looking to work for Communities | Open Source Enthusiast</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org" target="_blank" title="FreeCodeCamp">For Practice and Certification</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Learn" target="_blank"
title="Doc on Web Development">Documentation on Web Development</a>
</li>
<li>
<a href="https://www.youtube.com" target="_blank" title="Youtube">Best Place for free Tutorials</a>
</li>
</ul>
</div>
</div>
<!-- ________Sriyansh Shivam's card END ________ -->
<!-- ________ lifeashaze card START ________ -->
<div class="card">
<p class="name">lifeashaze</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/abhishek-bhagawati-a985a5210/" target="_blank">@lifeashaze</a>
</p>
<p class="about">Hey! I'm Abhishek and I'm an aspiring full stack web developer!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/JavaScriptMastery" target="_blank" title="First Resource">JavaScript Mastery
Youtube Channel.</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://justgetflux.com/" target="_blank" title="Third resource">Flux</a>
</li>
</ul>
</div>
</div>
<!-- ________lifeashaze card END ________ -->
<!-- ________ Ziani Imane's card START ________ -->
<div class="card">
<p class="name">ZIANI IMANE</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Ziani_Imane7" target="_blank">@Ziani_Imane7</a>
</p>
<p class="about">I'm currently a Jack of all trades, master of none. I want to know everything about everything. I
mostly work with Google Apps Script and Python for two reasons: I LOVE Google Sheets and automation. On my free
time, I make my own clothes. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/news/670-free-online-programming-computer-science-courses-you-can-start-in-december-a90149ac6de4?fbclid=IwAR2sEwV1SSS7oLgN6pQS6SLcLljGjHIsBOUEbHe8fNdSn2Ells88_Gr-5jk"
target="_blank" title="First Resource">670 Free Online Programming & Computer Science Courses.</a>
</li>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="Second Resource"> The Odin Project</a>
</li>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Third resource">Codecademy</a>
</li>
</ul>
</div>
</div>
<!-- ________Ziani Imane's card END ________ -->
<!-- ________ Abhishek card START ________ -->
<div class="card">
<p class="name">Abhishek Kulkarni</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Abhishekk973" target="_blank">Abhishekk973</a>
</p>
<p class="about">Hi, I m Abhishek and i like to develop and code for fun.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="First Resource">MDN</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Second Resource">W3Schools</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">Geeks for Geeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ Abhishek card END ________ -->
<!-- ________ Yogesh Rajput's card START ________ -->
<div class="card">
<p class="name">Yogesh Rajput</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/yuvi335" target="_blank">@yuvi335</a>
</p>
<p class="about">
I am eager to join any community which is friendly enough to accept me as one of them.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/EbookFoundation/free-programming-books" target="_blank"
title="First Resource">Progamming Ebooks Repo</a>
</li>
<li>
<a href="https://github.com/kamranahmedse/developer-roadmap" target="_blank" title="Second Resource">Roadmaps
for different techs</a>
</li>
<li>
<a href="https://devdocs.io/" target="_blank" title="Third resource">Documentation for different
technologies</a>
</li>
</ul>
</div>
</div>
<!-- ________ Yogesh Rajput's card END ________ -->
<!-- ________ Estitxu Larralde's card START ________ -->
<div class="card">
<p class="name">Estitxu Larralde Erasun</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/EstitxuLE" target="_blank">@EstitxuLE</a>
</p>
<p class="about">I'm a Data Analyst willing to contribute to open source projects</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.hackerrank.com/" target="_blank" title="First Resource">Hacker Rank</a>
</li>
<li>
<a href="https://www.udacity.com/" target="_blank" title="Second Resource">Udacity</a>
</li>
<li>
<a href="https://www.kaggle.com/" target="_blank" title="Third resource">Kaggle</a>
</li>
</ul>
</div>
</div>
<!-- ________Estitxu Larralde's card END ________ -->
<!-- ________ Tasneem's card START ________ -->
<div class="card">
<p class="name">Tasneem</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Tasneem-I" target="_blank">@Tasneem-I</a>
</p>
<h4>About</h4>
<p class="about"> Hey there! I'm a newbie programmer interested in getting my hands into all things coding. This is my
first time contributing!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/html/" target="_blank" title="First Resource">html w3schools</a>
</li>
<li>
<a href="https://getbootstrap.com/docs/5.2/getting-started/introduction/" target="_blank"
title="Second Resource">Bootstrap introduction</a>
</li>
<li>
<a href="https://roadmap.sh/frontend" target="_blank" title="Third resource">Frontend roadmap</a>
</li>
</ul>
</div>
</div>
<!-- ________Tasneem's card END ________ -->
<!-- ________ Aman Chopra's card START ________ -->
<div class="card">
<p class="name">Aman Chopra</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/iam_chopra_aman" target="_blank">@iam_chopra_aman</a>
</p>
<p class="about">MERN Developer | Java Programmer | Cloud and DevOps Engineer | Technical Content Writer | Loves to
work for Communities | Open Source Enthusiast | Mentor</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://amanchopra-atg.medium.com/git-and-github-beginners-guide-a-hands-on-approach-e97e9489a017"
target="_blank" title="Git and GitHub">A complete guide for Git and GitHub</a>
</li>
<li>
<a href="https://amanchopra-atg.medium.com/binary-search-algorithm-using-java-3c7c24d783cf" target="_blank"
title="Binary Search">Binary Search Algorithm using Java</a>
</li>
<li>
<a href="https://amanchopra-atg.medium.com/docker-a-beginners-guide-338f20f5f113" target="_blank"
title="Docker">Docker for Beginners</a>
</li>
</ul>
</div>
</div>
<!-- ________Aman Chopra's card END ________ -->
<!-- ________ Madhavi's card START ________ -->
<div class="card">
<p class="name">Madhavi Sonawane</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/madhavi9857" target="_blank">@Madhavi9857</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/CODING-Enthusiast9857" target="_blank">@CODING-Enthusiast9857</a>
</p>
<p class="about">I am an undergraduate student. Currently learning Android application development and DSA. Interested
in contributing to open source.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.hackerrank.com/" target="_blank" title="First Resource">Hackerrank Problems</a>
</li>
<li>
<a href="https://www.geeksforgeeks.com/" target="_blank" title="Second Resource">Programming roadmap</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">w3schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ Madhavi's card END ________ -->
<!-- ________ Hosam card START ________ -->
<div class="card">
<p class="name">Muhammad Hosam Nayeem</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/mdhosamnayeem" target="_blank">@mdhosamnayeem</a>
</p>
<p class="about">Hello, I am Hosam. I am a Full Stack Developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtu.be/AN3t-OmdyKA" target="_blank" title="First Resource">E Commerce using MERN stack.</a>
</li>
<li>
<a href="https://www.udemy.com/course/the-complete-web-development-bootcamp/" target="_blank"
title="Second Resource">Angela Yu - Bootcamp</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="Third resource">MDN WebDocs</a>
</li>
</ul>
</div>
</div>
<!-- ________Hosam card END ________ -->
<!-- ________ Avinash's card START ________ -->
<div class="card">
<p class="name">Avinash</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/aphs_avi" target="_blank">@aphs_avi</a>
</p>
<p class="about">Hello, I am Avinash. I am a Computer Science Diploma student.My favourite language is JAVA.</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.geeksforgeeks.org/" target="_blank" title="Second Resource">GeeksforGeeks</a>
</li>
<li>
<a href="https://github.com" target="_blank" title="Third resource">Github</a>
</li>
</ul>
</div>
</div>
<!-- ________ Avinash's card END ________ -->
<!-- ________ Advie's Card START ________ -->
<div class="card">
<p class="name">Muhammad Advie Rifaldy</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Madvier8" target="_blank">@Madvier8</a>
</p>
<p class="about">Im a junior programmer from indonesia ✌️, this hacktober fest is my first time contributing to open
source. <a href="https://github.com/madvier83" target="_blank">Check Out My GitHub :)</a></p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/WebProgrammingUNPAS" target="_blank"
title="First Resource">WebProgrammingUNPAS</a>
</li>
<li>
<a href="https://www.youtube.com/c/WebDevSimplified" target="_blank"
title="Second Resource">WebDevSimplified</a>
</li>
<li>
<a href="https://www.youtube.com/c/Fireship" target="_blank" title="Third resource">Fireship</a>
</li>
</ul>
</div>
</div>
<!-- ________ Advie's card END ________ -->
<!-- ________ Samaresh's card START ________ -->
<div class="card">
<p class="name">Samaresh Das</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Samaresh-Das" target="_blank">@Samaresh-Das</a>
</p>
<p class="about">Passionate Self Taught Web developer, an avid learner. Project Nerd.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/" target="_blank" title="First Resource">UDEMY, Best for learning a skill</a>
</li>
<li>
<a href="https://www.codecademy.com/learn" target="_blank" title="Second Resource">Codecademy, best for
self-taughts</a>
</li>
<li>
<a href="https://medium.com/" target="_blank" title="Third resource">Medium, best for knowing other people's
experience</a>
</li>
</ul>
</div>
</div>
<!-- ________ Samaresh's card END ________ -->
<!-- ________ Kavindu's card START ________ -->
<div class="card">
<p class="name">Kavindu Senevirathne</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/im_kavindu" target="_blank">@im_kavindu</a>
</p>
<p class="about">I'm an undergraduate, a data science enthusiast. I study Business Analytics and Software Engineering.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Learn" target="_blank" title="First Resource">Mozilla
Developer Network</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/web-development/" target="_blank"
title="Second Resource">GeeksForGeeks</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Third resource">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________Kavindu's card END ________ -->
<!-- Supratim's Card START -->
<div class="card">
<p class="name">Supratim Majumder</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/supratim_js" target="_blank">@supratim_js</a>
</p>
<p class="about">A self-taught developer with a flair for clean code and efficient infrastructure, loves building
solutions from scratch.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/playlist?list=PLlasXeu85E9cQ32gLCvAvr9vNaUccPVNP" target="_blank"
title="First Resource">Namaste JavaScript</a>
</li>
<li>
<a href="https://roadmap.sh/backend" target="_blank" title="Second Resource">Backend roadmap</a>
</li>
<li>
<a href="https://scrimba.com/learn/learnreact" target="_blank" title="Third resource">ReactJS Tutorial</a>
</li>
</ul>
</div>
</div>
<!-- Supratim's Card END -->
<!-- ________ Harshwardhan's card START ________ -->
<div class="card">
<p class="name">Harshwardhan Lokhande</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/harshlokhande24" target="_blank">@harshlokhande24</a>
</p>
<p class="about">Hi👋, Harshwardhan here. I work as an enthusiastic web developer in India. I'm learning ReactJs right
now and am eager to work with others and contribute to full-stack projects.</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.youtube.com/watch?v=ok-plXXHlWw" target="_blank" title="Second Resource">HTML in 100
seconds</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Third resource">W3School</a>
</li>
</ul>
</div>
</div>
<!-- ________Harshwardhan's card END ________ -->
<!-- ________ Lauti's card START ________ -->
<div class="card">
<p class="name">Lauti Cometti</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/lauticometti" target="_blank">@lauticometti </a>
</p>
<p class="about">A 19 years boy from Argentina who loves making web sites. Im a begginner coder
and student of React web development at CoderHouse academy. I like teach my friends everything
I know about coding.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://teloexplicocongatitos.com" target="_blank" title="Te lo explico con gatitos">A didactic
explanation about coding topics.</a>
</li>
<li>
<a href="https://www.frontendmentor.io/home" target="_blank" title="Frontend Mentor">Challenges for you improves
your frontend skills.</a>
</li>
<li>
<a href="https://lenguajejs.com/" target="_blank" title="Lenguaje JS">A nice site with JavaScript documentantion
and useful tools around her ecosystem.</a>
</li>
</ul>
</div>
</div>
<!-- ________ Lauti's card END ________ -->
<!-- ________ Joydeep Mallick's card START ________ -->
<div class="card">
<p class="name">Joydeep Mallick</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/JoydeepMallick/" target="_blank">JoydeepMallick</a>
</p>
<p class="about">Hey there, I am a homo sapien hailing from an engineering college currently pusuing my Bachelor
degree in Computer Science and Engineering.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://codeforces.com/profile/silent_Joy?f0a28=1" target="_blank" title="First Resource">Codeforces
handle</a>
</li>
<li>
<a href="https://developer.mozilla.org/" target="_blank" title="Second Resource">MDN docs</a>
</li>
<li>
<a href="https://fosstorrents.com/softwares/cad/" target="_blank" title="Third resource">Foss torrents</a>
</li>
</ul>
</div>
</div>
<!-- ________Joydeep Mallick's card END ________ -->
<!-- ________ jitesh gadage card START ________ -->
<div class="card">
<p class="name">Jitesh Gadage</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Jitesh-Gadage16" target="_blank">Jitesh-Gadage16</a> <br>
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Jitya16?s=08" target="_blank">@Jitya16</a> <br>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/jitesh-gadage-b610261b1/" target="_blank">Jitesh Gadage</a>
</p>
<p class="about">
I am a Web Developer with grate skills in HTML,CSS,JavaScript,React,Git and Git Version Control.
"Coding empowers magic to my thought with a wing of Programming"
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/channel/UCXgGY0wkgOzynnHvSEVmE3A" target="_blank"
title="Excellent articles every day">
Hitesh Choudhary
</a>
</li>
<li>
<a href="https://jiteshgadage.hashnode.dev/" target="_blank"
title="Smashing Magazine's awesome collection of CSS grid resources to get you started">
My Blogs
</a>
</li>
<li>
<a href="https://jitesh-gadage.netlify.app/" target="_blank"
title="A great challenge and community to keep you coding and motivated every day">
My Portfolio
</a>
</li>
</ul>
</div>
</div>
<!-- ________jitesh gadage card START END ________ -->
<!-- ________ */Emmanuel's card START ________ -->
<div class="card">
<p class="name">Emmanuel </p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/1EmmanuelMejia/" target="_blank">github</a>
</p>
<p class="about">The future is looking bright with all this technology. Definitely want to be part of the tech
movement</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.theodinproject.com/" target="_blank" title="First Resource">Great site to learn at your own
pace.</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">Another site that will help you
learn at your own pace</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Third resource">Great community to help you overcome
any obstacles </a>
</li>
</ul>
</div>
</div>
<!-- ________*Emmanuel's card END ________ -->
<!-- ________ MEALY-iCepts card START ________ -->
<div class="card">
<p class="name">MEaly-iCepts</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/MEaly-Icepts" target="_blank">@MEaly-Icepts</a>
</p>
<p class="about">ADHD riddled Sysadmin masquerading as a functioning adult.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.waldo.be/" target="_blank" title="Waldo's Blog on everything Dynamics BC & AL">Waldo
Blog</a>
</li>
<li>
<a href="https://learn.microsoft.com/en-us/powershell/" target="_blank" title="Learning Powershell">Learn
Powershell</a>
</li>
<li>
<a href="https://app.pluralsight.com/library/" target="_blank" title="Plural Sight It training videos">Plural
Sight</a>
</li>
</ul>
</div>
</div>
<!-- ________ MEALY-iCepts card END ________ -->
<!-- ________ AtmaAtm's card START ________ -->
<div class="card">
<p class="name">AtmaAtm</p>
<p class="contact">
<i class="fab fa-github"></i>