-
Notifications
You must be signed in to change notification settings - Fork 67
/
index.html
2096 lines (1981 loc) · 110 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" />
<link rel="shortcut icon" href="img/favicon.svg" type="image/x-icon">
<title>Resource Card</title>
</head>
<body>
<div class="container">
<div class="row" style="display: flex; ">
<div class="logo" style=" width: 90%; " ><img src="img/logo.gif" width="8%" ></div>
<div style=" width: 10%; text-align:right;" ><a href="#follow_us"><button class="follow_btn">Follow us</button></a></div>
</div>
<div class="row">
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode" >
<div style="width: 70%; float:left; margin-left:15%"><h1 class="tittle">Resⓞurce Finder</h1></div>
<div class="toggle-box" style=" float:right; padding-right: 10px;">
<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>
</div>
<!-- / Night Mode Creation -->
</div>
</div>
<div class="row">
<div class="column-double padding-buttom">
<div class="column-left">
<style>
h2 {
text-align: center;
}
p {
text-align: center;
}
</style>
<h2>Help your friends find some good learning resources</h2>
<p>
Share good learning resources and make this project a resource hub, where all can find the
resources which will help learners in their journey
</p>
</div>
</div>
<div class="column">
<div class="column-right">
<style>
p {
text-align: center;
}
div {
text-align: center;
}
</style>
<p >------- CONTRIBUTIONS SO FAR -------</p>
<div class="animated" id="contributions-number">07</div>
</div>
</div>
</div>
<div class="searchContainer">
<input id="searchbar" type="search" name="search" placeholder="Search for your card here!" />
</div>
<div class="grid">
<!-- ________ Mohd Kaleem Saqlaini Contributor card START ________ -->
<div class="card">
<p class="name">Mohd Kaleem Saqlaini</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/saqlainkaleem" target="_blank">saqlainkaleem</a>
</p>
<p class="about">Hey! I'm Kaleem, 4th year CS engineering student from India. I am a keen-learner who likes to code and develop stuff. Also I like to share my knowledge and understanding among all other keen-learners and help all of us grow. Always looking for innovative projects to collaborate on.</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://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference" target="_blank" title="First Resource">JavaScript</a>
</li>
<li>
<a href="https://www.w3schools.com" target="_blank" title="Third resource">HTML, CSS & JS</a>
</li>
</ul>
</div>
</div>
<!-- ________Mohd Kaleem Saqlaini Contributor card END ________ -->
<!-- ________ Abhay Chandel Contributor card START ________ -->
<div class="card">
<p class="name">Abhay Chandel</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/abhaychandel404" target="_blank">@abhaychandel404</a>
</p>
<p class="about">I am currently pursuing a Bachelor of Technology in Computer Science Engineering. I am currently
studying JavaScript and DSA. I am gonna learn React after completing Js.</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.edx.org" target="_blank"
title="Second Resource">Edx Courses</a>
</li>
<li>
<a href="https://www.theodinproject.com" target="_blank" title="Third resource">The Odin Project</a>
</li>
</ul>
</div>
</div>
<!-- ________Abhay Chandel Contributor card END ________ -->
<!-- ________ Gilang Kharisma Contributor card START ________ -->
<div class="card">
<p class="name">Gilang Kharisma</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/lalumuhammadgk1" target="_blank">@lalumuhammadgk1</a>
</p>
<p class="about">I'm Gilang Kharisma, I'm still learning about mysql, and I interested with web
programing, I'm from indoneisa, Nice to meet you</p>
<div class="resources">
<p>3 Useful website to learn code with Indonesian Language</p>
<ul>
<li>
<a href="https://codepolitan.com/" target="_blank" title="First Resource">Place to learn
code with Indonesian Language</a>
</li>
<li>
<a href="https://www.hostinger.co.id/tutorial/belajar-coding-online-gratis" target="_blank"
title="Second Resource">List of place to learn code freely</a>
</li>
<li>
<a href="https://codesaya.com/" target="_blank" title="Third resource">Place to learn code
with Indonesian Language</a>
</li>
</ul>
</div>
</div>
<!-- ________ Gilang Kharisma Contributor card END ________ -->
<!-- ________ Berlian Contributor card START ________ -->
<div class="card">
<p class="name">Berlian Fatimah</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/berlian-fatimah" target="_blank">berlian</a>
</p>
<p class="about">I am berlian. Im a learner. I interested in code.</p>
<div class="resources">
<p>3 Useful Resources for programming</p>
<ul>
<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>
<li>
<a href="https://www.dicoding.com" target="_blank"
title="dicoding">dicoding</a>
</li>
</ul>
</div>
</div>
<!-- ________Berlian Contributor card END ________ -->
<!-- ________ Dhruva Contributor card START ________ -->
<div class="card">
<p class="name">Dhruva Bhattacharya</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/DhruvaBhattach2" target="_blank">@DhruvaBhattach2</a>
</p>
<p class="about">I am Dhruva Bhattacharya, currently pursuing B.Tech in Artificial Intelligence and
Machine Learning at Gyan Ganga Institute of Technology and Science Jabalpur. A full stack developer,
self-led learner, team player, and a software enthusiast who loves to build products. Besides
developing, I enjoy writing technical blogs. I am a full stack developer and a software enthusiast
who loves to build products.</p>
<div class="resources">
<p>3 Useful Web 3.0 Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=ipwxYa-F1uY" target="_blank"
title="A Full Course on Ethereum, Blockchain Development, Smart Contracts, and the EVM">Block
Chain Development and Smart Contract</a>
</li>
<li>
<a href="https://www.coursera.org/learn/smarter-contracts" target="_blank"
title="Smart Contracts - Zero to Hero">Smart Contract Beginner to Advance</a>
</li>
<li>
<a href="https://youtu.be/ci_AIMCF-HA" target="_blank"
title="Roadmap to learn Blockchain Development">Roadmap for Blockchain Development</a>
</li>
</ul>
</div>
</div>
<!-- ________Dhruva Contributor card END ________ -->
<!-- ________ *Srijoy* Contributor card START ________ -->
<div class="card">
<p class="name">Srijoy Paul</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/SdDecent" target="_blank">@SdDecent</a>
</p>
<p class="about">I am currently pursuing a Bachelor of Science in Computer Engineering. I am currently
studying DSA and web development. I am also excited about AI and what it has to offer in terms of
solving problems in a modern and effective manner.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/EbookFoundation/free-programming-books" target="_blank"
title="Progamming Ebooks Repo">Programming Books</a>
</li>
<li>
<a href="https://github.com/kamranahmedse/developer-roadmap" target="_blank"
title="Second Resource">All RoadMaps for Development </a>
</li>
<li>
<a href="https://devdocs.io/" target="_blank" title="Third resource">Documentation for
different technologies</a>
</li>
</ul>
</div>
</div>
<!-- ________*Srijoy* Contributor card END ________ -->
<!-- ________ Piyush's card START ________ -->
<div class="card">
<p class="name">Piyush Chandel</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Piyush_Chandel7" target="_blank">@Piyush_Chandel7</a>
</p>
<p class="about">A Front-End Developer, currently learning git and contributing into various open-source
projects</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/thedaviddias/Resources-Front-End-Beginner" target="_blank"
title="First Resource">The most essential list of resources for Front-End beginners.</a>
</li>
<li>
<a href="https://github.com/bradtraversy/design-resources-for-developers" target="_blank"
title="Second Resource">Curated list of design and UI resources.</a>
</li>
<li>
<a href="https://github.com/learning-zone/website-templates" target="_blank"
title="Third resource">Website templates.</a>
</li>
</ul>
</div>
</div>
<!-- ________ Piyush's card END ________ -->
<div class="card">
<p class="name">Kirtan Kushwah</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/T_kirtan_" target="_blank">T_kirtan_</a>
</p>
<p class="about">I am a tech geek who is passionate about community learning and comfortable in adopting
new technologies and environment. I have previously lead communities where I learned skills which
included DevOps, Management, Leadership and working for Non-profit causes.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://learn.microsoft.com/en-us/training/" target="_blank"
title="First Resource">Microsoft Learn Documentations</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">StackOverFlow -
Troubleshooting</a>
</li>
<li>
<a href="https://www.cloudskillsboost.google/" target="_blank" title="Third resource">Cloud
Skills Boost - Qwiklabs</a>
</li>
</ul>
</div>
</div>
<div class="card">
<p class="name">Mrinank Bhowmick</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/" target="_blank">_mrinank_</a>
</p>
<p class="about">𝙸’𝚖 𝚌𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 𝚕𝚎𝚊𝚛𝚗𝚒𝚗𝚐 what I need. 𝙸’𝚖 𝚕𝚘𝚘𝚔𝚒𝚗𝚐 𝚝𝚘
𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚎 𝚘𝚗 more and more Open source projects. 𝙿𝚛𝚘𝚗𝚘𝚞𝚗𝚜 :
𝙷𝚎/𝙷𝚒𝚖/𝙷𝚒𝚜</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/python/" target="_blank"
title="Python Resource from w3schools">Python Tutorial -W3Schools</a>
</li>
<li>
<a href="https://www.codewars.com/" target="_blank"
title="Python Challenges on CodeWars">Python Challenges -CodeWars</a>
</li>
<li>
<a href="https://exercism.org/tracks/python" target="_blank"
title="Python Challenges on exercism">Python Challenges -exercism</a>
</li>
</ul>
</div>
</div>
<div class="card">
<p class="name">Varun Kakathiya</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/" target="_blank">KakathiyaVarun</a>
</p>
<p class="about">I am an Open Source Enthusiast who always tries to create an impact on society.I am
also passionate about new technlogies too.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.htmlandcssbook.com/" target="HTML and CSS resources" title="blank">Html
and CSS</a>
</li>
<li>
<a href="https://www.codechef.com/wiki/tutorial-number-theory/"
target="Number theory for CP" title="blank">Basic number theory</a>
</li>
<li>
<a href="https://www.freecodecamp.org/news/30-free-resources-for-learning-javascript-fundamentals/"
target="blank" title="Javascript by Freecodecamp">Javascript Resources</a>
</li>
</ul>
</div>
</div>
<div class="card">
<p class="name">Sajal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/sajalkmr18" target="_blank">sajalkmr18</a>
</p>
<p class="about">Hey, I'm an undergrad IT student who loves Cyber Security. I'm currently learning Web
Dev.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://missing.csail.mit.edu/" target="_blank" title="First Resource">Missing
Semester by MIT</a>
</li>
<li>
<a href="https://github.com/ossu/computer-science" target="_blank"
title="Second Resource">OSSU</a>
</li>
<li>
<a href="https://github.com/kamranahmedse/developer-roadmap" target="_blank"
title="Third resource">Roadmaps</a>
</li>
</ul>
</div>
</div>
<!-- ________Contributor card END ________ -->
<div class="card">
<p class="name">Vipin Chaudhary</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/" target="_blank">itsvipindev</a>
</p>
<p class="about">Back-end Enthusiast
• Learning in public 📘
• Tweets about web development 🐦
• Open source✨</p>
<div class="resources">
<p>3 Useful Backend Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/learn/back-end-development-and-apis/" target="_blank"
title="First Resource">Freecodecamp Backend and API development course </a>
</li>
<li>
<a href="https://www.commclassroom.org/backend-roadmap" target="_blank"
title="Second Resource">Backend roadmap by commclassroom</a>
</li>
<li>
<a href="https://codedamn.com/learning-paths/backend" target="_blank"
title="Third resource">Back-end learning path by codedamn</a>
</li>
</ul>
</div>
</div>
<div class="card">
<p class="name">Sumit</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/SumitKanth99" target="_blank">Sumit</a>
</p>
<p class="about">I am a web developer, coder and a open source enthusiastic</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://fontawesome.com/" target="_blank" title="First Resource">Fontawesome</a>
</li>
<li>
<a href="https://dribbble.com/" target="_blank" title="Second Resource">Dribbble</a>
</li>
<li>
<a href="https://tinypng.com/" target="_blank" title="Third Resource">Tiny png</a>
</li>
</ul>
</div>
</div>
<div class="card">
<p class="name">forno</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/ashutosh-sahuu/" target="_blank">Ashutosh</a>
</p>
<p class="about">New to open source</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.edx.org/course/introduction-to-computer-science-and-programming-7"
target="_blank" title="MIT 600x">Introduction to Computer Science and Programming Using
Python</a>
</li>
<li>
<a href="https://github.com/ossu/computer-science" target="_blank"
title="Open Source Society University">Path to a free self-taught education in Computer
Science!</a>
</li>
<li>
<a href="https://github.com/freeCodeCamp/freeCodeCamp" target="_blank"
title="Free Code Academy">freeCodeCamp.org's open-source codebase and curriculum. Learn
to code for free.</a>
</li>
</ul>
</div>
</div>
<div class="card">
<p class="name">Sarthak Wakchaure</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/SarthakWakchau3" target="_blank">Sumit</a>
</p>
<p class="about">I am a web developer, coder and a Machine Learning enthusiastic</p>
<div class="resources">
<p>Machine Learning Resources & Project</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/news/how-to-learn-machine-learning-practical-tips-and-resources/"
target="_blank" title="First Resource">freecodecamp</a>
</li>
<li>
<a href="https://youtu.be/NWONeJKn6kc/" target="_blank"
title="Second Resource">Youtube(freecodecamp)</a>
</li>
<li>
<a href="https://github.com/Sarthak88-tech/Breast-Cancer-Prediction-ML" target="_blank"
title="Third Resource">ML Project</a>
</li>
</ul>
</div>
</div>
<!-- Vaibhav's card-->
<div class="card">
<p class="name">Vaibhav</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/vaibhav-mishra-7006911b5/" target="_blank">Vaibhav Mishra</a>
</p>
<p class="about">Hey! I'm Vaibhav, 4th year engineering student. I like to code and develop stuff.
Always looking for cool projects to collaborate on.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/playlist?list=PLwGdqUZWnOp3t3qT7pvAznwUDzKbhEcCc"
target="_blank" title="Full MERN">Full MERN Stack learning with project</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PLC3y8-rFHvwg2-q6Kvw3Tl_4xhxtIaNlY"
target="_blank" title="Learn about chrome extension">Learn and build your own chrome
extensions</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/web-development/" target="_blank"
title="Learn web Dev">Learn full web development with blogs</a>
</li>
</ul>
</div>
</div>
<!-- Rahul's card-->
<div class="card">
<p class="name">Rahul Kumar</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/rahul-kumar-072/" target="_blank">Rahul Kumar</a>
</p>
<p class="about">I am a technology enthusiast and love competitive programming. Along with I am pursuing my B.Tech with a specialization in Civil Engineering</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference" target="_blank" title="First Resource">JavaScript</a>
</li>
<li>
<a href="https://goalkicker.com" target="_blank" title="First Resource">Programming Notes</a>
</li>
<li>
<a href="https://github.com/kamranahmedse/design-patterns-for-humans" target="_blank" title="Third resource">Design Pattern Explained</a>
</li>
</ul>
</div>
</div>
<!-- Aniket's card-->
<div class="card">
<p class="name">Aniket Ghosh</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/aniketghosh-64550a191/" target="_blank">aniketghosh</a>
</p>
<p class="about">Hey! I'm Aniket, 4th year CS engineering student. I am a keen-learner who likes to code
and develop stuff. Also I like to share my knowledge and understanding amongst all other
keen-learners and help all of us grow. Always looking for innovative projects to collaborate on.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://mbeaudru.github.io/modern-js-cheatsheet/" target="_blank" title="JS">Modern
JS Cheetsheet</a>
</li>
<li>
<a href="https://github.com/kunaltyagi9/MERN-Stack-Projects" target="_blank"
title="MERN">Hands-on MERN Projects</a>
</li>
<li>
<a href="https://colorhunt.co/" target="_blank" title="Color Palette">Hex of all Color
Palette</a>
</li>
</ul>
</div>
</div>
<!-- Sayak's card-->
<div class="card">
<p class="name">Sayak Rana</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/sayak-rana-125a48192/" target="_blank">Sayak Rana</a>
</p>
<p class="about">Currently, I am am studying in 4th Year in IIEST Shibpur within the department Computer
Science and Technology.I am exploring various fields of Computer Science and Technology.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">W3Schools for
HTML,CSS,JS</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PLlasXeu85E9cQ32gLCvAvr9vNaUccPVNP"
target="_blank" title="Second Resource">Namaste Javascript</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PLu0W_9lII9agiCUZYRsvtGTXdxkzPyItg"
target="_blank" title="Third resource">Full Stack with Code With Harry</a>
</li>
</ul>
</div>
</div>
<!--Aniket's card-->
<div class="card">
<p class="name">Aniket Shekhar Chaudhari</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/aniket-chaudhari-9114a322a" target="_blank">Aniket
Chaudhari</a>
</p>
<p class="about">Hey! I am a second year student pursuing my B.Tech degree in Computer Science and
Engineering . I like to do competitive Programming along with web-development</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.youtube.com/c/WebDevSimplified" target="_blank"
title="Second Resource">WebDevSimplified</a>
</li>
<li>
<a href="https://www.youtube.com/c/Freecodecamp" target="_blank"
title="Third resource">Freecodecamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shivendra's card START ________ -->
<div class="card">
<p class="name">Shivendra Pandey</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Shivendra_0510" target="_blank">Shivendra_0510</a>
</p>
<p class="about">Hey ! Shivendra here, a second-year undergraduate at IIT BHU. I have keen interest in
Competitive Programming, Web Development and I have recently started contributing to open source
projects. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/c/TraversyMedia" target="_blank"
title="First Resource">TraversyMedia</a>
</li>
<li>
<a href="https://www.youtube.com/c/TheNetNinja" target="_blank"
title="Second Resource">TheNetNinja</a>
</li>
<li>
<a href="https://www.youtube.com/c/Freecodecamp" target="_blank"
title="Third resource">Freecodecamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shivendra's card END ________ -->
<!--Gourav's card-->
<div class="card">
<p class="name">Gourav Saini</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/g7i/" target="_blank">Gourav Saini</a>
</p>
<p class="about">Hey! I am Gourav Saini. I am an SDE Intern at Amazon. I'm a Full Stack Developer.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://blog.cloudflare.com/even-faster-connection-establishment-with-quic-0-rtt-resumption/" target="_blank" title="First Resource">Even faster connection establishment with QUIC 0-RTT resumption</a>
</li>
<li>
<a href="https://kerkour.com/web-application-with-rust-and-webassembly" target="_blank" title="Second Resource">Building a web application with Rust and WebAssembly </a>
</li>
<li>
<a href="https://engineering.fb.com/2022/09/12/open-source/memlab/" target="_blank" title="Third resource">MemLab: An open source framework for finding JavaScript memory leaks</a>
</li>
</ul>
</div>
</div>
<!--Gourav's card End-->
<!-- ________ birobirobiro's card START ________ -->
<div class="card">
<p class="name">birobirobiro</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/birobirobirodev" target="_blank">@birobirobirodev</a>
</p>
<p class="about">My name is João, better known as Biro and I am 29 years old.
I'm a front-end programmer, passionate about technology. I currently work as a Developer Instructor
at Rocketseat and I have 2 years of experience with these technologies: HTML, CSS, JavaScript,
TypeScript, TailwindCSS, ReactJS and React Native. </p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://birobirobiro.dev" target="_blank" title="First Resource">Portfolio</a>
</li>
<li>
<a href="https://www.instagram.com/birobirobiro" target="_blank"
title="Second Resource">Instagram</a>
</li>
<li>
<a href="https://www.youtube.com/c/birobirobiro" target="_blank"
title="Third resource">Youtube</a>
</li>
</ul>
</div>
</div>
<!-- ________ birobirobiro's card END ________ -->
<!-- ________ anasilveira9787's card START ________ -->
<div class="card">
<p class="name">anasilveira9787</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/anaccord/" target="_blank">@anaccord</a>
</p>
<p class="about">My name is Ana Silveira, I'm a programmer from Brazil.
I'm currently working as developer instructor at Rocketseat, a well knowed coding school for Javascript lovers.
I adore working with CSS, animations and graphic resources, so call me if you want your project to be prettier!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.rocketseat.com.br" target="_blank" title="First Resource">Rocketseat</a>
</li>
<li>
<a href="https://grasshopper.app/pt_br/" target="_blank"
title="Second Resource">Grasshopper by Google</a>
</li>
<li>
<a href="https://mjml.io/" target="_blank"
title="Third resource">MJML</a>
</li>
</ul>
</div>
</div>
<!-- ________ anasilveira9787's card END ________ -->
<!-- ________ ialexanderbrito's card START ________ -->
<div class="card">
<p class="name">ialexanderbrito</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/ialexanderbrito" target="_blank">@ialexanderbrito</a>
</p>
<p class="about">My name is Alexander, I'm 25 years old, I live in Rio de Janeiro Brazil, I'm a Front-end Full React developer, currently working at Localiza.</p>
<div class="resources">
<p>2 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.alura.com.br/" target="_blank" title="First Resource">Rocketseat</a>
</li>
<li>
<a href="https://www.alura.com.br" target="_blank"
title="Second Resource">Alura</a>
</li>
</ul>
</div>
</div>
<!-- ________ ialexanderbrito's card END ________ -->
<!--Harshwardhan's card-->
<div class="card">
<p class="name">HARSHWARDHAN TILEKAR</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/harshwardhan-tilekar-1a0794212/" target="_blank">HARSHWARDHAN TILEKAR</a>
</p>
<p class="about">I'm Harshwardhan Tilekar, currently pursuing my computer engineering degree.
I'm passionate about the cloud and also worked on some cloud provider platforms, such as GCP, AWS, and AZURE.2 X Microsoft certified</p>
<div class="resources">
<p>3 Useful Cloud Computing Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/user/stephane-maarek/" target="_blank" title="First Resource">Udemy course</a>
</li>
<li>
<a href="https://aws.amazon.com/what-is-cloud-computing/" target="_blank" title="Second Resource">AWS documentation</a>
</li>
<li>
<a href="https://learn.microsoft.com/en-us/azure/?product=popular" target="_blank" title="Third resource">Azure documentation</a>
</li>
</ul>
</div>
</div>
<!--Harshwardhan's card End-->
<!--Yash's card-->
<div class="card">
<p class="name">Yash</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="www.linkedin.com/in/yash-mathur-3a2aa21b7" target="_blank">Yash Mathur</a>
</p>
<p class="about">My name is Yash, I am starting college this year, I am studying computer science engineering from an A rated institute in Delhi,
i'm passionate about cyber security and related areas.</p>
<div class="resources">
<p>3 Useful Cyber Sec Resources</p>
<ul>
<li>
<a href="https://www.springboard.com/blog/cybersecurity/12-must-watch-cybersecurity-ted-talks/" target="_blank" title="Resource 1">Ted Talks</a>
</li>
<li>
<a href="https://www.ninjaone.com/resources/" target="_blank" title="Resource 2">Ninjaone resources</a>
</li>
<li>
<a href="https://screenshot-media.com/technology/innovation/cybersecurity-documentaries/" target="_blank" title="Third resource">Cybersecurity Documentaries</a>
</li>
</ul>
</div>
</div>
<!--Yash's card End-->
<!--Deepanshu's card-->
<div class="card">
<p class="name">Deepanshu Manocha</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/dmanocha464" target="_blank">@dmanocha464</a>
</p>
<p class="about">I am 2021 passout with 1 year of experience, currently working as a software engineer. I am learning git,github
to contribute to various open souce projects.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://goodfirstissue.dev/" target="_blank" title="First Resource">Site if you are looking for good-first-issue</a>
</li>
<li>
<a href="https://www.virustotal.com/gui/home/upload" target="_blank" title="Second Resource">Scan any suspicious link before opening</a>
</li>
<li>
<a href="https://www.sejda.com/" target="_blank" title="Third resource">Edit PDF file online</a>
</li>
</ul>
</div>
</div>
<!--Deepanshu's card End--!>
<!--Sneha's card-->
<div class="card">
<p class="name">Sneha Agarwal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/isyneha" target="_blank">@isyneha</a>
</p>
<p class="about">I am a pen-ultimate third year undergraduate at HArcourt Butler Technical University, Kanpur. A firm believer who loves to explore various domains.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com" target="_blank" title="First Resource">Site for learning front-End Development</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn" target="_blank" title="Second Resource">Another good course for Front-end Developemnt and more</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">For DSA and CSE Subjects</a>
</li>
</ul>
</div>
</div>
<!--Deepanshu's card End--!>
<!--lenalightning's card-->
<div class="card">
<p class="name">lenalightning</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/barbosaamanda/" target="_blank">@lenalightning</a>
</p>
<p class="about">hi, I'm Amanda, I'm starting my studies in programming.
It's still a new world for me, but I'm really enjoying it.
I work at Rocketseat, the largest programming school in Latin America, and I have contact with programming every day.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=DemagUML778&t=72s" target="_blank" title="How to organize a study schedule?">Organize a study</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=QfcozcbDhNM" target="_blank" title="Study techniques and learning techniques">Study techniques</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=Fzwr1JcqFo4&t=76s" target="_blank" title="Programming study techniques">Programming techniques</a>
</li>
</ul>
</div>
</div>
<!--lenalightning's card end--!>
<!--Samman's card-->
<div class="card">
<p class="name">Samman Sarkar</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/Samman-Sarkar/" target="_blank">@SammanSarkar</a>
</p>
<p class="about">I am an undergrad student in Netaji Subhas University of Technology,Delhi.
I am new to open source and looking forward to contribute to various open souce projects.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Resource 1">w3Schools</a>
</li>
<li>
<a href="https://www.youtube.com/c/WebDevSimplified" target="_blank" title="Resource 2">WebDevSimplified</a>
</li>
<li>
<a href="https://www.youtube.com/c/Freecodecamp" target="_blank" title="Resource 3">Freecodecamp</a>
</li>
</ul>
</div>
</div>
<!--Samman's card end--!>
<!--HimanshuSinghNegi's card-->
<div class="card">
<p class="name">Himanshu Singh Negi</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/himanshusinghnegi/" target="_blank">Himanshu Negi</a>
</p>
<p class="about">Hi, My name is Himanshu Singh Negi. I am pursuing MCA. And this is my first Contribution.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtube.com/playlist?list=PLnfapp4Woqpo0QDKTi692dveQJAW-GzB9" target="_blank" title="Core Java">Learn Core Java -(Hindi)</a>
</li>
<li>
<a href="https://youtube.com/playlist?list=PLUhfM8afLE_Ok-0Lx2v9hfrmbxi3GgsX1" target="_blank" title="Android Development">Project Based Android Development Course -(Hindi)</a>
</li>
<li>
<a href="https://youtube.com/playlist?list=PLDzeHZWIZsTryvtXdMr6rPh4IDexB5NIA" target="_blank" title="DSA Course">Complete C++ DSA Course -(Hindi)</a>
</li>
</ul>
</div>
</div>
<!--HimanshuSinghNegi's card end--!>
<!--Abhijeet Srivastav card-->
<div class="card">
<p class="name">Abhijeet Srivastav</p>
<p class="contact">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/in/abhijeet-srivastav-02245a18b/" target="_blank">Abhijeet Srivastav</a>
</p>
<p class="about">Hi, My name is Abhijeet Srivastav. I am pursuing B.Texh. And this is my first contribution to Hacktoberfest.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/user/krishnaik06" target="_blank" title="Data Science">Data Science</a>
</li>
<li>
<a href="https://www.youtube.com/c/Coreyms" target="_blank" title="Python Development">Corey Schafer</a>
</li>
<li>
<a href="https://www.youtube.com/c/sentdex" target="_blank" title="Machine Learning">Sentdex)</a>
</li>
</ul>