forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2554 lines (2455 loc) · 114 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link href="https://fonts.googleapis.com/css2?family=Domine&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>Contribute To This Project</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode">
<div class="toggle-box">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.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"
target="_blank"
title="Go to project README - A step by step tutorial"
>
Learn how to contribute
<i class="fas fa-long-arrow-alt-right"></i>
</a>
</div>
</div>
<div class="column">
<div class="column-right">
<div class="twitter-button">
<a
href="https://twitter.com/share?ref_src=twsrc%5Etfw"
class="twitter-share-button"
data-size="large"
data-text="Contribute To This Project. An easy Git and GitHub project for first-time contributors, with a full tutorial."
data-url="https://github.com/Syknapse/Contribute-To-This-Project"
data-via="Syknapse"
data-hashtags="100DaysOfCode"
data-show-count="false"
title="Tweet this project"
>
Tweet
</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<p>Contributions so far...</p>
<div class="animated" id="contributions-number">0</div>
</div>
</div>
</div>
<div class="searchContainer">
<input id="searchbar" type="search" name="search" placeholder="Search for your card here!" />
</div>
<div class="grid">
<!-- ================================================ -->
<!-- ================== TEMPLATE ================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Your name</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/" target="_blank">Your handle</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- COPY everything ABOVE this, from contributor card start to end along with the "START" and "END" comment lines -->
<!-- ============== ^^^^ TEMPLATE ^^^^ ============== -->
<!-- ================================================ -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- Keep one line of space above and below your card -->
<!-- ========= Paste YOUR CARD directly BELOW this line ========= -->
<!-- ________ JohnPraise card START ________ -->
<div class="card">
<p class="name">JohnPraise</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/JohnPraise247/" target="_blank">Github</a>
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/_distino_?igshid=ZDdkNTZiNTM=" target="_blank">Instagram</a>
</p>
<p class="about">I'm a 3D Artist and a Programmer. I'm new to open source community and practicing by contributing to this project</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3schools">W3schools</a>
</li>
<li>
<a href="https://www.javascripting.com/" target="_blank" title="Javascripting">Javascripting</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="stackoverflow">Stackoverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ JohnPraise card END ________ -->
<!-- ________ *Mukesh card START ________ -->
<div class="card">
<p class="name">Mukesh Gautam</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/mukesh-gautam-a9a79820a/" target="_blank">linkedin</a> |
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/wild_born.001/" target="_blank">Instagram</a> |
<i class="fab fa-github"></i>
<a href="https://github.com/mukesh-843" target="_blank">Github</a>
</p>
<p class="about">I am a 3rd Year Student of Sikkim Manipal Institute of Technology.I love implementing my knowledge on the actual work.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://cssgradient.io/" target="_blank" title="First Resource">CSS gradient(help making nice looking css)</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">Stack Overflow (solving your doubts)</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Third resource">Youtube!</a>
</li>
</ul>
</div>
</div>
<!-- ________ Mukesh card END ________ -->
<!-- ________ *masbindev card ________ -->
<div class="card">
<p class="name">Masbin</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/masbindev" target="_blank">masbindev</a>
</p>
<p class="about">Engineer making move to dev. Looking forward to consistently learn and build.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://roadmap.sh/" target="_blank" title="Dev Roadmap">Which Dev Path Are You?</a>
</li>
<li>
<a href="https://www.fullstackpython.com/" target="_blank" title="Fullstack Python">Fullstack Python</a>
</li>
<li>
<a href="https://doc.rust-lang.org/book/" target="_blank" title="Learn Rust Programming">New and still Loved Language</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ sparkk29 card START ________ -->
<div class="card">
<p class="name">Sreejit</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/sparkk29" target="_blank">sparkk29</a>
</p>
<p class="about">I have been using gitlab for long time now, and forgot about making contribution on github.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="First Resource">Stack overflow</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Second Resource">Youtube</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="Third resource">Github</a>
</li>
</ul>
</div>
</div>
<!-- ________ sparkk29 card END ________ -->
<!-- ________ Focault's card START ________ -->
<div class="card">
<p class="name">Focault</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Focault" target="_blank">Focault</a>
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/tomer-ussishkin/" target="_blank">Tomer Ussishkin</a>
</p>
<p class="about">I'm a back-end developer in the start of my career. My main experience is with C/C++ but I constantly thrive to widen my knowledge.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://godbolt.org/" target="_blank" title="First Resource">Compiler Explorer</a>
</li>
<li>
<a href="https://brave.com/" target="_blank" title="Second Resource">Brave Browser</a>
</li>
<li>
<a href="https://fishshell.com/" target="_blank" title="Third resource">The Supreme Fish Shell</a>
</li>
</ul>
</div>
</div>
<!-- ________ Focault's card END ________ -->
<!-- ________ DaringCuteSeal's card START ________ -->
<div class="card">
<p class="name">DaringCuteSeal</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/DaringCuteSeal" target="_blank">DaringCuteSeal</a>
</p>
<p class="about">🦭 Visual artist, programmer, Linux enthusiast! Hoping to help the open source community <3</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://scrimba.com" target="_blank" title="First Resource">Scrimba</a>
</li>
<li>
<a href="https://www.tutorialspoint.com" target="_blank" title="Second Resource">Tutorialspoint</a>
</li>
<li>
<a href="https://stackoverflow.com" target="_blank" title="Third resource">Stack Overflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ DaringCuteSeal's card END ________ -->
<!-- ________ NotStonee card START ________ -->
<div class="card">
<p class="name">Stonee</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/NotStonee" target="_blank">@NotStonee</a>
<i class="fab fa-youtube"></i>
<a href="https://www.youtube.com/NotStonee" target="_blank">@NotStonee</a>
</p>
<p class="about">I am new to open source, I want to learn more and develop my programming skills!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="First Resource">Stack overflow</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Second Resource">Youtube</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="Third resource">Github</a>
</li>
</ul>
</div>
</div>
<!-- ________ NotStonee card END ________ -->
<!-- ________ erickdc7 card START ________ -->
<div class="card">
<p class="name">Erick Diaz</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/erickdc7" target="_blank">@erickdc7</a>
</p>
<p class="about">I like programming, UI/UX design, playing video games and watching anime. 😎</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://uiverse.io/" target="_blank" title="First Resource">Uiverse</a>
</li>
<li>
<a href="https://bgjar.com/" target="_blank" title="Second Resource">BGJar</a>
</li>
<li>
<a href="https://www.blobmaker.app/" target="_blank" title="Third resource">Blobmaker</a>
</li>
</ul>
</div>
</div>
<!-- ________ erickdc7 card END ________ -->
<!-- ________ Pratyush card start ________ -->
<div class="card">
<p class="name">Pratyush Kamal</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/whypratyush" target="_blank">whypratyush</a>
</p>
<p class="about">A Computer Science Major currently working on front end developent skills.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=G3e-cpL7ofc" target="_blank" title="First Resource">HTML & CSS tutorial</a>
</li>
<li>
<a href="https://www.youtube.com/@TechWithTim/videos" target="_blank" title="Second Resource">Creative ideas and tutorials related to coding.</a>
</li>
<li>
<a href="https://www.w3schools.com/tags/att_input_type.asp" target="_blank" title="Third resource">HTML <input> type attributes</a>
</li>
</ul>
</div>
</div>
<!-- ________ Pratyush card end ________ -->
<!-- ________ xvllinihao card START ________ -->
<div class="card">
<p class="name">Li Xu</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/xvllinihao" target="_blank">@xvllinihao</a>
</p>
<p class="about">I am a newbie to open source community. I am willing to grow up with this friendly community!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://developer.mozilla.org/zh-CN/docs/Web/CSS" target="_blank" title="First Resource">MDN css tutorial</a>
</li>
<li>
<a href="https://developer.mozilla.org/zh-CN/docs/Web/HTML" target="_blank" title="Second Resource">MDN html tutorial</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" title="Third resource">MDN javascript tutorial</a>
</li>
</ul>
</div>
</div>
<!-- ________ xvllinihao card END ________ -->
<!-- ________ Axorax Contributor card START ________ -->
<div class="card">
<p class="name">Axorax</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/axorax" target="_blank">Axorax</a>
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/axorax_/" target="_blank">axorax_</a>
<i class="fab fa-youtube"></i>
<a href="https://www.youtube.com/axorax" target="_blank">Axorax</a>
<i class="fab fa-patreon"></i>
<a href="https://www.patreon.com/axorax" target="_blank">Axorax</a>
<i class="fab fa-reddit"></i>
<a href="https://www.reddit.com/user/axorax" target="_blank">Axorax</a>
</p>
<p class="about">I love programming, science and chess.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/" target="_blank" title="First Resource">YouTube</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://github.com/" target="_blank" title="Third resource">Github</a>
</li>
</ul>
</div>
</div>
<!-- ________ Axorax Contributor card END ________ -->
<!-- ASHWIN BALAKRISHNA's CARD -->
<div class="card">
<p class="name">Ashwin Balakrishna</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/ashwinbkrish" target="_blank">@ashwinbkrish</a>
</p>
<p class="about">A passionate Front End Developer</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=w1_qt9nyAFA" target="_blank" title="First Resource">Latest ECMA script features</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=AryZSCeKU9Y" target="_blank" title="Second Resource">Creative tags to improve HTML</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=Y0wwJrhVJcU&list=RDQM5UJtoPEgO44&start_radio=1" target="_blank" title="Third resource">Water Animation for text CSS</a>
</li>
</ul>
</div>
</div>
<!-- END OF ASHWIN's CARD -->
<!-- ________ *Nilabhra card START ________ -->
<div class="card">
<p class="name">Nilabhra Adhikari</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/I_AM_Nilabhra" target="_blank">I_AM_Nilabhra</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/Nil2000" target="_blank">Nil2000</a>
</p>
<p class="about">I am a front end developer and also a tech enthusiast.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://devdocs.io/javascript/" target="_blank" title="First Resource">Official Documentation (I put just an example)</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Second Resource">Stack Overflow (solving your doubts)</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Third resource">Youtube!</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Nilabhra* card END ________ -->
<!-- ________ *Francisco Mora Contributor card START ________ -->
<div class="card">
<p class="name">Francisco Mora</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/fmoradev" target="_blank">@fmoradev</a>
<i class="fab fa-github"></i>
<a href="https://github.com/fmoradev" target="_blank">My GitHub</a>
</p>
<p class="about">Hello world, I'm a QA Automation Engineer from Chile</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://codecombat.com/" target="_blank" title="First Resource">Code Combat</a>
</li>
<li>
<a href="https://scratch.mit.edu/" target="_blank" title="Second Resource">Scratch</a>
</li>
<li>
<a href="https://pythonchile.cl/" target="_blank" title="Third resource">Python Chile</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Sunil Kumar Yadav card START ________ -->
<div class="card">
<p class="name">Sunil Kumar Yadav</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/123sunilkr" target="_blank">@123sunilkr</a>
</p>
<p class="about">Hi, I'm a software developer and I'm just starting out in open source development. I'm practicing by contributing to this
project.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://hackernoon.com/19-github-repositories-to-make-you-a-10x-developer?source=rss" target="_blank" title="First Resource">19 github repositories to make you 10x developer</a>
</li>
<li>
<a href="https://madza.hashnode.dev/21-github-repositories-to-become-a-javascript-master" target="_blank" title="Second Resource">21 GitHub Repositories to Become a JavaScript Master</a>
</li>
<li>
<a href="https://www.pngegg.com/" target="_blank" title="Third resource">Free PNG Download</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sunil Kumar Yadav card END ________ -->
<!-- Abhayy Chetri card start -->
<div class="card">
<p class="name">Abhay Chetri</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Abhayy16093089" target="_blank">Tweets</a>
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/abhayy.___" target="_blank">abhayy.___</a>
</p>
<p class="about">Hey I'm Abhayy and I'm starting to learn making PR's and the entire Git & GitHub ecosystem.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://undraw.co/" target="_blank" title="First Resource">Undraw</a>
</li>
<li>
<a href="https://error404.fun/" target="_blank" title="Second Resource">Error 404</a>
</li>
<li>
<a href="https://dribbble.com/" target="_blank" title="Third resource">Dribble</a>
</li>
</ul>
</div>
</div>
<!--Abhayy Chetri card end -->
<!-- Dharmik gangani card start -->
<div class="card">
<p class="name">Dharmik Gangani</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/" target="_blank">im_Dharma09</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://code4rena.com" target="_blank" title="First Resource">Code4rena</a>
</li>
<li>
<a href="https://dharma1.netlify.app/" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- Dharmik gangani card end -->
<!-- Kirill card start -->
<div class="card">
<p class="name">Kirill McQuillin</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/McquillinKirill" target="_blank">My Twitter</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">W3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Second Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.youtube.com/" target="_blank" title="Third resource">Youtube!</a>
</li>
</ul>
</div>
</div>
<!-- Kirill card end -->
<!-- ________ Nicktarius67 card START ________ -->
<div class="card">
<p class="name">Nicktarius67</p>
<p class="contact">
<i class="fab fa-telegram"></i>
<a href="https://t.me/nikita_v_shch" target="_blank">My Telegram profile (too lazy find my Discord)</a>
</p>
<p class="about">Hopefully I will remember how to do public Pull Requests later</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://cmake.org/cmake/help/book/mastering-cmake/chapter/Cross%20Compiling%20With%20CMake.html" target="_blank" title="Cross Compiling With CMake">Helped me Build some Git Project</a>
</li>
<li>
<a href="https://qr.ae/prGvEC" target="_blank" title="Helped me bet started with Building the Git Projects">An obvious hint on how to get started with compiling Git Projects</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Jeez how many stupid answers are there (sometimes)">The Motherbase</a>
</li>
</ul>
</div>
</div>
<!-- ________ Nicktarius67 card END ________ -->
<!-- ________ Shiheb Din card START ________ -->
<div class="card">
<p class="name">Shiheb Din</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/d3j1x" target="_blank">My Github</a>
</p>
<p class="about">Cyber Security Specialist</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.exploit-db.com/" target="_blank" title="The Exploit Database - Exploits, Shellcode, ...">The Exploit Database</a>
</li>
<li>
<a href="https://www.hackthebox.com/" target="_blank" title="Hack The Box is a massive, online cybersecurity training platform">Hack The Box</a>
</li>
<li>
<a href="https://tryhackme.com/" target="_blank" title="TryHackMe is a free online platform for learning cyber security">TryHackMe</a>
</li>
</ul>
</div>
</div>
<!-- ________ Shiheb Din card END ________ -->
<!-- ________ Snehil Chhabria card START ________ -->
<div class="card">
<p class="name">Snehil Chhabria</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/snehil_chhabria" target="_blank">snehil_chhabria</a>
</p>
<p class="about">I'm currently a computer science undergrad, passionate about open-source and cloud technology.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtu.be/ZxKM3DCV2kE" target="_blank" title="First Resource">codedamn</a>
</li>
<li>
<a href="https://www.codewithharry.com" target="_blank" title="Second Resource">Code With Harry</a>
</li>
<li>
<a href="https://youtu.be/nu_pCVPKzTk" target="_blank" title="Third resource">freecodecamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Snehil Chhabria card END ________ -->
<!-- ________ Arruabe card START ________ -->
<div class="card">
<p class="name">Arruabe</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/Arruabe" target="_blank">Arruabe</a>
</p>
<p class="about">hey there, I'm interested in learn and create code. Also want to contribute to open source projects</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://html.spec.whatwg.org/" target="_blank" title="HTML Standard">HTML Standard</a>
</li>
<li>
<a href="https://262.ecma-international.org/13.0/#sec-block" target="_blank" title="ECMAScript Standard">ECMAScript Standard</a>
</li>
<li>
<a href="https://developer.mozilla.org/" target="_blank" title="Mozilla Developer Network">MDN</a>
</li>
</ul>
</div>
</div>
<!-- ________ Arruabe card END ________ -->
<!-- Chirag Gupta card start -->
<div class="card">
<p class="name">Chirag Gupta</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/Chirag28276456" target="_main">My twitter handle</a>
</p>
<p class="about">Hello i am Chirag Gupta learning new concepts and try to contribute so that internet can become safe place for pleople to use</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.hackerone.com" target="_blank" title="Start to learn Bug bounty">hackerone</a>
</li>
<li>
<a href="https://www.codewithharry.com" target="_blank" title="Good resource to learn coding">code with Harry</a>
</li>
<li>
<a href="www.https://www.nwking.org/" target="_blank" title="Good resource to learn networking">networKing</a>
</li>
</ul>
</div>
</div>
<!-- Chirag Gupta card End -->
<!-- ________ Daramola card START ________ -->
<div class="card">
<p class="name">Daramola Oluwanifemi</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/nifedara" target="_blank">nifedara</a>
</p>
<p class="about">I'm interested in AI and Machine Learning. I'm currently interning as a Software Engineer at a tech startup</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://link.medium.com/0GdYJkSwUvb" target="_blank" title="14 Essential Developer Tools to 10X Your Productivity">Developer Tools to Increase Your Productivity by Al - Naubit</a>
</li>
<li>
<a href="https://www.drivendata.org/" target="_blank" title="Data science competitions to build a better world">Participate in Data Science competitions and challenges</a>
</li>
<li>
<a href="https://www.oreilly.com/library/view/building-machine-learning/9781492045106/" target="_blank" title="Building Machine Learning Powered Applications">Learn skills to build Machine Learning powered applications</a>
</li>
</ul>
</div>
</div>
<!-- ________ Daramola card END ________ -->
<!-- ________ Bharath Kalyan S card START ________ -->
<div class="card">
<p class="name">Bharath Kalyan S</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/bharathkalyans" target="_blank">bharathkalyans</a>
</p>
<p class="about">Hey there 👋🏼, I am a computer science graduate and I am working as Full Stack Developer at Nagarro.
I am passionate about programming, fitness and cooking.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://nodejs.dev/en/learn/" target="_blank" title="First Resource">Node JS Learn</a>
</li>
<li>
<a href="https://howtodoinjava.com/" target="_blank" title="Second Resource">How to Do In Java</a>
</li>
<li>
<a href="https://www.oodesign.com/" target="_blank" title="Third resource">Design Patterns</a>
</li>
</ul>
</div>
</div>
<!-- ________ Bharath Kalyan S END ________ -->
<!-- ________ Jarek Pacocha card START ________ -->
<div class="card">
<p class="name">Jarek Pacocha</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/jaroslaw-pacocha" target="_blank">Jarek Pacocha</a> |
<i class="fab fa-github"></i>
<a href="https://github.com/jarek-pacocha" target="_blank">jarek-pacocha</a> |
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/thlyer" target="_blank">thlyer</a>
</p>
<p class="about">Hi, I am a Python developer/cloud engineer. I'm interested in contributing to Open Source projects and building things that improve lives. Have a great day!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://youtu.be/yzeVMecydCE" target="_blank" title="A great guide on how to contribute to Open Source ">Video: Guide on contributing to Open Source</a>
</li>
<li>
<a href="https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax" target="_blank" title="Markdown cheat sheet">GH docs on Markdown</a>
</li>
<li>
<a href="https://github.com/EbookFoundation/free-programming-books" target="_blank" title="List of Free Learning Resources In Many Languages">Freely available programming books</a>
</li>
</ul>
</div>
</div>
<!-- ________ Jarek Pacocha card END ________ -->
<!-- ________ Brian Salkas Contributor card START ________ -->
<div class="card">
<p class="name">Brian Salkas</p>
<p class="contact">
<i class="fab fa-youtube"></i>
<a href="https://www.youtube.com/channel/UCyiRQAoL8tjGzMaJF9iPWjw" target="_blank">Brian Salkas</a>
</p>
<p class="about">passionate about education, programming, bayesian statistics and data.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=8aGhZQkoFbQ" target="_blank" title="good video about the node.js event loop">event loop</a>
</li>
<li>
<a href="https://mead.io/" target="_blank" title="Andrew Mead is a great teacher">Andrew Mead</a>
</li>
<li>
<a href="https://www.utep.edu/information-resources/iso/security-awareness/technical-security-resources/what-is-html-injection.html" target="_blank" title="HTML injection for those interested in ethical (or otherwise) hacking">HTML injection</a>
</li>
</ul>
</div>
</div>
<!-- ________ Brian Salkas Contributor card END ________ -->
<!-- ________ Sabitri Shrestha card START ________ -->
<div class="card">
<p class="name">Sabitri Shrestha</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/sabitri-shrestha/ target="_blank">Sabitri Shrestha</a>
</p>
<p class="about">Hello there! I'm Sabitri. I am a developer learning and creating.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.geeksforgeeks.org" target="_blank" title="a good python resource">GeeksForGeeks</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stackoverflow">Stackoverflow</a>
</li>
<li>
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design/" target="_blank" title="First Resource">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ Sabitri Shrestha card END ________ -->
<!-- ________ Elfonda START ________ -->
<div class="card">
<p class="name">Nuzul Pakaya</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/LeenaRaveena" target="_blank">Nuzul</a>
</p>
<p class="about">Hello there I'm Nuzul, a student who loves computers and has interest in web and software development</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design/" target="_blank" title="First Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.codewithrandom.com/" target="_blank" title="Second Resource">Code with random</a>
</li>
<li>
<a href="https://threadreaderapp.com/user/codemarch" target="_blank" title="Third resource">Codemarch</a>
</li>
</ul>
</div>
</div>
<!-- ________ Elfonda card END ________ -->
<!-- ________ SanderRasmus card START ________ -->
<div class="card">
<p class="name">Sander Rasmus</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/Ichbensander" target="_blank">Sanderinos</a>
</p>
<p class="about">I am 16 years old and currently live in Norway.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3Schools">W3Schools</a>
</li>
<li>
<a href="https://www.codecademy.com/" target="_blank" title="Codecademy">Codecademy</a>
</li>
<li>
<a href="https://stackoverflow.com/" target="_blank" title="Stackoverflow">Stackoverflow</a>
</li>
</ul>
</div>
</div>
<!-- ________ SanderRasmus card END ________ -->
<!-- ________ Vick card START ________ -->
<div class="card">
<p class="name">Vick Ouma</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/vckouma" target="_blank">vick</a>
</p>
<p class="about">Hello there I'm Vick, a student who loves computers and has interest in web and software development</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design/" target="_blank" title="First Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.codewithrandom.com/" target="_blank" title="Second Resource">Code with random</a>
</li>
<li>
<a href="https://threadreaderapp.com/user/codemarch" target="_blank" title="Third resource">Codemarch</a>
</li>
</ul>
</div>
</div>
<!-- ________ Vick card END ________ -->
<!-- ________ MJ card START ________ -->
<div class="card">
<p class="name">Mohammad Javad</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/MohammadJavadRamezanpour" target="_blank">My Github</a>
</p>
<p class="about">life-time student</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.pypi.org" target="_blank" title="Home of Python Libraries">PyPI</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org" target="_blank" title="a good python resource">GeeksForGeeks</a>
</li>
<li>
<a href="https://realpython.com" target="_blank" title="an other good python resource">RealPython</a>
</li>
</ul>
</div>
</div>
<!-- ________ MJ card END ________ -->
<!-- ________ Rohan card START ________ -->
<div class="card">
<p class="name">Rohan Kamble</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://twitter.com/_rohankamble" target="_blank">_rohankamble</a> |
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/rohan-kamble/" target="_blank">Rohan Kamble</a> |
<i class="fab fa-github"></i>
<a href="https://github.com/Rohan3011/" target="_blank">Rohan3011</a>
</p>
<p class="about">Hello devs, I am a passionate, self-proclaimed 10X developer. I create blazingly fast web applications. </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">MDN</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Second Resource">geeks for geeks</a>
</li
<li>
<a href="https://www.edx.org/course/introduction-computer-science-harvardx-cs50x" target="_blank" title="Third resource">introduction-computer-science-harvardx-cs50x</a>
</li>
</ul>
</div>
</div>
<!-- ________ Rohan card END ________ -->
<!-- ________ Vick card START ________ -->
<div class="card">
<p class="name">Vick Ouma</p>
<p class="contact">
<i class="fab fa-twitter"></i>
<a href="https://www.twitter.com/vckouma" target="_blank">vick</a>
</p>
<p class="about">Hello there I'm Vick, a student who loves computers and has interest in web and software development</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/learn/2022/responsive-web-design/" target="_blank" title="First Resource">FreeCodeCamp</a>
</li>
<li>
<a href="https://www.codewithrandom.com/" target="_blank" title="Second Resource">Code with random</a>
</li>
<li>
<a href="https://threadreaderapp.com/user/codemarch" target="_blank" title="Third resource">Codemarch</a>
</li>
</ul>
</div>