forked from Syknapse/Contribute-To-This-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2757 lines (2668 loc) · 114 KB
/
index.html
File metadata and controls
2757 lines (2668 loc) · 114 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="assets/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link href="https://fonts.googleapis.com/css2?family=Domine&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.4.2/css/all.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>Contribute To This Project</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="column">
<!-- Night Mode Creation -->
<div class="nightmode">
<div class="toggle-box">
<input type="checkbox" name="checkbox1" id="toggle-box-checkbox" />
<label for="toggle-box-checkbox" class="toggle-box-label-left"></label>
<label for="toggle-box-checkbox" class="toggle-box-label"></label>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"
integrity="sha512-STof4xm1wgkfm7heWqFJVn58Hm3EtS31XFaagaa8VMReCXAkQnJZ+jEy8PCC/iT18dFy95WcExNHFTqLyp72eQ=="
crossorigin="anonymous"
></script>
</div>
<!-- / Night Mode Creation -->
</div>
</div>
<div class="row">
<div class="column-double">
<div class="column-left">
<h1>CONTRIBUTE TO THIS PROJECT</h1>
<h2>A project for first-time contributions</h2>
<p>
This is a tutorial to help first-time contributors participate in a simple and easy project. Get more
comfortable using GitHub and make your first open source contribution. It's quick and easy.
</p>
<a
class="button"
href="https://github.com/Syknapse/Contribute-To-This-Project/blob/master/README.md"
target="_blank"
title="Go to project README - A step by step tutorial"
>
Learn how to contribute
<i class="fas fa-long-arrow-alt-right"></i>
</a>
</div>
</div>
<div class="column">
<div class="column-right">
<div class="twitter-button">
<a
href="https://twitter.com/share?ref_src=twsrc%5Etfw"
class="twitter-share-button"
data-size="large"
data-text="Contribute To This Project. An easy Git and GitHub project for first-time contributors, with a full tutorial."
data-url="https://github.com/Syknapse/Contribute-To-This-Project"
data-via="Syknapse"
data-hashtags="100DaysOfCode"
data-show-count="false"
title="Tweet this project"
>
Tweet
</a>
<script async="" src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<p>Contributions so far...</p>
<div class="animated" id="contributions-number">0</div>
</div>
</div>
</div>
<!-- <div class="searchContainer">
<input id="searchbar" type="search" name="search" placeholder="Search for your card here!" />
</div> -->
<div class="grid" id="contributions">
<!-- ================================================ -->
<!-- ================== TEMPLATE ================== -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Your name</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com" target="_blank">Your handle</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com" target="_blank">Your handle</a>
</p>
<p class="about">about you</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="#" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="#" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="#" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- COPY everything ABOVE this, from contributor card start to end along with the "START" and "END" comment lines -->
<!-- ============== ^^^^ TEMPLATE ^^^^ ============== -->
<!-- ================================================ -->
<!-- DO NOT modify the TEMPLATE directly, make a copy and paste it below -->
<!-- Keep one line of space above and below your card -->
<!-- ========= Paste YOUR CARD directly BELOW this line ========= -->
<!-- ________ lewcyan's Contributor card START ________ -->
<div class="card">
<p class="name">Luciano Delahaye</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/luciano-iv%C3%A1n-delahaye-7742741b8/" target="_blank">
Luciano Delahaye
</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ludelah" target="_blank">ludelah</a>
</p>
<p class="about">
Hello! My name is Luciano and I'm a software engineering student from Argentina. I am very passionate about
computers and technology and I'm hoping to learn a lot from this project and it's community!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="www.freecodecamp.org" target="_blank" title="First Resource">
Free code camp with official certifications
</a>
</li>
<li>
<a href="www.learncpp.com" target="_blank" title="Second Resource">
Constantly updated and fully fledged c++ programming tutorials
</a>
</li>
<li>
<a href="https://dotnet.microsoft.com/en-us/learn" target="_blank" title="Third resource">
Dotnet's official learning documentation and tutorials
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Peter Mwangi</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/peter-brian-3b3199264/" target="_blank">Peter Brian</a>
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/pm6093628" target="_blank">pm6093628</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Peter-Mwangi254" target="_blank">Peter-Mwangi254</a>
</p>
<p class="about">
Hello Everyone. I am a software engineering student aspiring to become a full stack engineer. I am skilled
in C language, python, HTML, CSS and JavaScript. I am open to collaborate on upcoming projects.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/watch?v=y1MiOUSuCl0" target="_blank" title="First Resource">
More information on CSS
</a>
</li>
<li>
<a
href="https://medium.com/@eliudnjenga/unleashing-docker-magic-on-aws-using-ecs-01f44d0c4967"
target="_blank"
title="Second Resource"
>
More information about Docker
</a>
</li>
<li>
<a href="https://github.com/mbeaudru/modern-js-cheatsheet" target="_blank" title="Third resource">
Mordern JavaScript Cheatsheet
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ evan Contributor card START ________ -->
<div class="card">
<p class="name">Evan Mulcare</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/evan90182737828" target="_blank">evanmulcare</a>
<i class="fab fa-github"></i>
<a href="https://github.com/evanmulcare" target="_blank">evanmulcare</a>
</p>
<p class="about">Yes this is all about me.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://neetcode.io/roadmap" target="_blank" title="First Resource">Neetcode Roadmap</a>
</li>
<li>
<a href="https://roadmap.sh/roadmaps" target="_blank" title="Second Resource">Developer Roadmaps</a>
</li>
<li>
<a href="https://www.youtube.com/@Fireship" target="_blank" title="Third resource">Fireship</a>
</li>
</ul>
</div>
</div>
<!-- ________ evan Contributor card END ________ -->
<!-- ________ Jonas card START ________ -->
<div class="card">
<p class="name">Jonas Ermert</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/Jonas20692" target="_blank">Jonas @ Twitter</a>
<i class="fab fa-github"></i>
<a href="https://github.com/jonasermert" target="_blank">Jonas Github</a>
</p>
<p class="about">About me</p>
<div class="resources">
<p>Take a look @ some of my programming projects</p>
<ul>
<li>
<a href="https://github.com/jonasermert/RepoViewer" target="_blank" title="RepoViewer">
Github RepoViewer (Dart/Flutter Project)
</a>
</li>
<li>
<a href="https://github.com/jonasermert/expensee" target="_blank" title="expansee">
Finance Tacking App (React/Firebase Project)
</a>
</li>
<li>
<a href="https://github.com/jonasermert/GitHubSearch" target="_blank" title="githubsearch">
GitHub Repository Search (Dart/Flutter/Github API Project)
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Jonas card END ________ -->
<!-- ________ Tanmay card START ________ -->
<div class="card">
<p class="name">Tanmay Itkelwar</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/tanmayitkelwar/" target="_blank">@tanmayitkelwar</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/tanmay1501" target="_blank">@tanmay1501</a>
</p>
<p class="about">Fullstack Developer with a good knowledge of devops</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 web docs lets you modify the css in real time and see the effect
</a>
</li>
<li>
<a href="https://cssbattle.dev/" target="_blank" title="Second Resource">
CSS Battle - feel like a programmer and complete the given challeg by match the exact image output
</a>
</li>
<li>
<a href="https://www.youtube.com/@WebDevSimplified" target="_blank" title="Third resource">
Web Dev Simplified
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Tanmay card END ________ -->
<!-- ________ *U.Senthil Kumar* Contributor card START ________ -->
<div class="card">
<p class="name">U.Senthil Kumar</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/CoderikSenthil" target="_blank">coderiksenthil</a>
<i class="fab fa-github"></i>
<a href="https://github.com/coderiksenthil" target="_blank">coderiksenthil</a>
</p>
<p class="about">
about you My name U.Senthil Kumar, and I am very much interested in programming and leadership. I am
currently making a journey in ML, WebDev, C, Python, and video editing, Analysis, and Big Data and I am
enthusiastic about making new things. Passionate in Research and helping in research activities with other
peers.
</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://developer.mozilla.org/en-US/" target="_blank" title="Third resource">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ *U.Senthil Kumar* Contributor card END ________ -->
<!-- ________ *Brian Muniz Silveira card START ________ -->
<div class="card">
<p class="name">Brian Muniz Silveira</p>
<p class="contact">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/mxlfylxrd/" target="_blank">@mxlfylxrd</a>
<i class="fab fa-github"></i>
<a href="https://github.com/BrianMunizSilveira" target="_blank">@BrianMunizSilveira</a>
</p>
<p class="about">Beginner in the world of front-end programming</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.dafont.com/" target="_blank" title="First Resource">
You can get different sources through this website
</a>
</li>
<li>
<a href="https://www.pexels.com/" target="_blank" title="Second Resource">
Great images to use in your projects
</a>
</li>
<li>
<a href="https://coolors.co/" target="_blank" title="Third resource">
Great for color palettes for your projects
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Brian Muniz S. card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Friedrich wt</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/friedrich-wekenon-tokponto-106789283/" target="_blank">Friedrich wt</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Friedrich482" target="_blank">Friedrich482</a>
</p>
<p class="about">
Hello ! I'm an engineering student and aspire to become a full-stack developer. I' m new in webDev and
opensource. I am enthusiast to collab on many projects and learn a stuff of new things. Especially in
JavaScript framework for webDev.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@BroCodez" target="_blank" title="First Resource">Bro Code</a>
</li>
<li>
<a href="https://www.youtube.com/@Fireship" target="_blank" title="Second Resource">Fireship</a>
</li>
<li>
<a href="https://chat.openai.com/" target="_blank" title="Third resource">Chat GPT</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ Federico card START ________ -->
<div class="card">
<p class="name">Federico Toldo</p>
<p class="contact">
<i class="fab fa-barcode"></i>
<a href="https://federicotoldo.com/" target="_blank">My Site</a>
<i class="fab fa-github"></i>
<a href="https://github.com/ToldoDesign128" target="_blank">ToldoDesign128</a>
</p>
<p class="about">
Hello everyone, i'm a UI & UX designer who has discovered code for create beautifull something. I'm Italian
and I love Spaghetti, Pizza and good music. Let's collaborate for amazing project and laught😁
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://sass-lang.com/" target="_blank" title="First Resource">Sass Lang</a>
</li>
<li>
<a href="https://gsap.com/" target="_blank" title="Second Resource">GSAP</a>
</li>
<li>
<a href="https://laravel-mix.com/" target="_blank" title="Third resource">Laravel Mix</a>
</li>
</ul>
</div>
</div>
<!-- ________ Federico card END ________ -->
<!-- ________ *Aniruddha Adak* Contributor card START ________ -->
<div class="card">
<p class="name">Aniruddha Adak</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/aniruddha-adak/" target="_blank">aniruddha-adak</a>
<i class="fab fa-github"></i>
<a href="https://github.com/aniruddhaadak80" target="_blank">aniruddhaadak80</a>
</p>
<p class="about">
Hello, my name is Aniruddha Adak. I am a professional with skills in C++ , HTML5 , CSS3 , Bootstrap
(framework) , git , GitHub, JavaScript,MongoDB and more...
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a
href="https://www.codingninjas.com/studio/guided-paths?category=web-app-development"
target="_blank"
title="Coding Ninjas"
>
Coding Ninjas
</a>
</li>
<li>
<a href="https://www.sololearn.com/" target="_blank" title="Sololearn">Sololearn</a>
</li>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="w3schools">W3Schools</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Aniruddha Adak* Contributor card END ________ -->
<!-- ________ *Minayo Esere card START ________ -->
<div class="card">
<p class="name">Minayo Esere</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/minayo-esere" target="_blank">minayo-esere</a>
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/devmudeizi" target="_blank">devmudeizi</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/mudeitsi" target="_blank">mudeitsi</a>
</p>
<p class="about">
Hi, I'm a full stack developer, a synergy of art and technology. I specialize in providing creative
solutions. HTML | CSS | JavaScript | Python(Flask) | SQL(MySQL).
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@programmingwithmosh/" target="_blank" title="Programming with Mosh">
Programming with Mosh
</a>
</li>
<li>
<a href="https://www.youtube.com/@SuperSimpleDev/" target="_blank" title="SuperSimpleDev">
SuperSimpleDev
</a>
</li>
<li>
<a href="https://developer.mozilla.org/en-US/" target="_blank" title="MDN Web Docs">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- ________ Minayo Esere card END ________ -->
<!-- ________ shaaddev card START ________ -->
<div class="card">
<p class="name">Shaad Lee Hue</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/rashaadleehue-joseph/" target="_blank">Rashaad Lee Hue-Joseph</a>
<i class="fab fa-github"></i>
<a href="https://github.com/shaaddev" target="_blank">shaaddev</a>
</p>
<p class="about">
I am aspiring software development enginneer based in new york. Mostly into backend development and cloud
computing but this is my first time trying out contributing to open source projects.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="First Resource">W3 Schools</a>
</li>
<li>
<a href="https://nextjs.org/" target="_blank" title="Second Resource">NextJs</a>
</li>
<li>
<a href="https://mongoosejs.com/" target="_blank" title="Third resource">Mongoose (MongoDB)</a>
</li>
</ul>
</div>
</div>
<!-- ________ shaaddev card END ________ -->
<!-- ________ *Rizki Ramadandi* Contributor card START ________ -->
<div class="card">
<p class="name">Rizki Ramadandi</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/rizki-ramadandi/" target="_blank">rizki-ramadandi</a>
<i class="fab fa-github"></i>
<a href="https://github.com/rizkiramadandi" target="_blank">rizkiramadandi</a>
</p>
<p class="about">Hi there! This is one of my first PR &. Keep learning!</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="Online web tutorials">W3Schools</a>
</li>
<li>
<a
href="https://stackoverflow.com/"
target="_blank"
title="Where developers learn, share, & build careers"
>
Stack Overflow
</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="A computer science portal for geeks">
GeeksforGeeks
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *Rizki Ramadandi* Contributor card END ________ -->
<!-- ________ meilynbear card START ________ -->
<div class="card">
<p class="name">meilynbear</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/meilynbear" target="_blank">meilynbear</a>
</p>
<p class="about">
Hello! I am a student in computer science and an aspiring author!
<br />
I love learning about the world around me and meeting new people!
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.youtube.com/@thenewboston" target="_blank" title="First Resource">Resource 1</a>
</li>
<li>
<a href="https://www.theodinproject.com" target="_blank" title="Second Resource">Resource 2</a>
</li>
<li>
<a href="https://www.freecodecamp.org" target="_blank" title="Third resource">Resource 3</a>
</li>
</ul>
</div>
</div>
<!-- ________ meilynbear card END ________ -->
<!-- ________ Harleen card START ________ -->
<div class="card">
<p class="name">Harleen Singh</p>
<p class="contact">
<a href="https://harleen001.github.io/portfolio1/" target="_blank">Portfolio</a>
<a href="https://github.com/harleen001" target="_blank">Github</a>
<a href="https://www.linkedin.com/in/harleen001/" target="_blank">Linkedin</a>
</p>
<p class="about">
Hey Devs, I am a university grad. self made developer who is aiming to make this world a better place by
making really cool stuff. you can reach out me via my portfolio link given above and dont forget to wave at
me.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://harleen001.github.io/portfolio1/form.html" target="_blank" title="First Resource">
Wave at me
</a>
</li>
<li>
<a
href="https://www.youtube.com/watch?v=WQoB2z67hvY&list=PLDzeHZWIZsTryvtXdMr6rPh4IDexB5NIA"
target="_blank"
title="Second Resource"
>
Best Resource of DSA
</a>
</li>
<li>
<a href="https://www.geeksforgeeks.org/" target="_blank" title="Third resource">Geeks for Geeks</a>
</li>
</ul>
</div>
</div>
<!-- ________ Harleen card END ________ -->
<!-- ________ Lin Thit Htwe card START ________ -->
<div class="card">
<p class="name">Lin Thit Htwe</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/lin-thit-845b64294/" target="_blank">lin thit</a>
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/linthit2745/" target="_blank">linthit2745</a>
<i class="fab fa-github"></i>
<a href="https://github.com/LinThit27" target="_blank">LinThit27</a>
</p>
<p class="about">
👋 Hey, I'm Lin Thit Htwe – Full Stack Developer from Myanmar 🇲🇲. I specialize in creating digital magic,
turning ideas into functional and user-friendly solutions. Let's collaborate and bring innovation to life!
💻✨
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3-schools">W3-schools</a>
</li>
<li>
<a href="https://daily.dev/" target="_blank" title="daily-dev">Daily.dev</a>
</li>
<li>
<a href="https://www.youtube.com/@WebDevSimplified" target="_blank" title="WebDevSimplified">
@WebDevSimplified
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Lin Thit Htwe card END ________ -->
<!-- ________ Dreagon card START ________ -->
<div class="card">
<p class="name">Dreagon</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/thejiteshkumar" target="_blank">thejiteshkumar</a>
</p>
<p class="about">
Hey there! Jitesh here,
<br />
Many commits for companies, but this one is for me. 😎
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://github.com/codecrafters-io/build-your-own-x" target="_blank" title="First Resource">
build-your-own-x (build anything with this resource)
</a>
</li>
<li>
<a href="https://github.com/kamranahmedse/developer-roadmap" target="_blank" title="Second Resource">
Roadmap for every tech stack
</a>
</li>
<li>
<a href="https://github.com/fmhy/FMHY" target="_blank" title="Third resource">Free Media Heck Yeah</a>
</li>
</ul>
</div>
</div>
<!-- ________ Dreagon card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Bernevs</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Bernevs" target="_blank">Bernevs</a>
</p>
<p class="about">I am a student and I am looking to become a developer</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.hackerrank.com" target="_blank" title="hackerrank">HackerRank</a>
</li>
<li>
<a href="https://www.freecodecamp.org" target="_blank" title="freecodecamp">FreeCodeCamp</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *TEMPLATE: MAKE A COPY* Contributor card START ________ -->
<div class="card">
<p class="name">Jessica J</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/Jessica71643016" target="_blank">Jessica71643016</a>
<i class="fab fa-github"></i>
<a href="https://github.com/flowerpower220" target="_blank">flowerpower220</a>
</p>
<p class="about">Hello! I'm learning web development & am excited to post more to GitHub.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3-schools-web-dev-site">W3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Learn-to-code-for-free">freeCodeCamp</a>
</li>
<li>
<a
href="https://www.theodinproject.com/"
target="_blank"
title="Open-source-free web-development-course"
>
The Odin Project
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *TEMPLATE* Contributor card END ________ -->
<!-- ________ *bhattd78* Contributor card START ________ -->
<div class="card">
<p class="name">Bhatt D</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/bhattd78" target="_blank">flowerpower220</a>
</p>
<p class="about">Hello! I'm new to opensource world and am excited to post more to GitHub.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.w3schools.com/" target="_blank" title="W3-schools-web-dev-site">W3Schools</a>
</li>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="Learn-to-code-for-free">freeCodeCamp</a>
</li>
<li>
<a href="https://www.youtube.com/@JennyslecturesCSIT" target="_blank" title="Jennys lectures for CS/IT">
The Odin Project
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *bhattd78* Contributor card END ________ -->
<!-- ________ *eugene4545 card START ________ -->
<div class="card">
<p class="name">Eugene Onuoha</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://www.github.com/eugene4545" target="_blank">eugene4545</a>
</p>
<p class="about">
Hello World!👋, I am a med student and an aspiring software developer, I'm always eager to connect with
other developers and exchange ideas and resources, so feel free to reach out and say hello.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://topswe.com" target="_blank" title="100-Leetcode">
Beginner friendly questions from leetcode
</a>
</li>
<li>
<a href="https://pi.ai/talk" target="_blank" title="codepen">pi Ai</a>
</li>
<li>
<a href="https://www.youtube.com/@NetNinja" target="_blank" title="net-ninja">
Short-form coding tutorials
</a>
</li>
</ul>
</div>
</div>
<!-- ________ *eugene4545 card END ________ -->
<!-- Aviral Srivastava card Start -->
<div class="card">
<p class="name">Aviral Srivastava</p>
<p class="contact">
<i class="fab fa-github"></i>
<a href="https://github.com/Aviral2002" target="_blank">Aviral2002</a>
</p>
<p class="about">
One word that always comes to mind is multipod whenever someone asks me to describe myself. And well in this
context i am a just beginner in doing some open-source Contributions
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="First Resource">Phind ai</a>
</li>
<li>
<a href="https://www.phind.com/search?home=true" target="_blank" title="Second Resource">Chat GPT</a>
</li>
<li>
<a href="https://www.youtube.com/@Fireship" target="_blank" title="Third resource">Fireship</a>
</li>
</ul>
</div>
</div>
<!-- Aviral Srivastava card End -->
<!--_________Labeeb-Basil card Start________-->
<div class="card">
<p class="name">Labeeb Basil</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/Labeeb_Basil" target="_blank">@Labeeb_Basil</a>
<i class="fab fa-github"></i>
<a href="https://github.com/Labeeb-Basil" target="_blank">Labeeb-Basil</a>
</p>
<p class="about">
I'm a software engineering student who loves programming and gaming. So, why not do both? I aim to become a
game developer.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.udemy.com/course/100-days-of-code/" target="_blank" title="Python Basics">
Python in 100 Days
</a>
</li>
<li>
<a
href="https://www.geeksforgeeks.org/introduction-to-spring-boot/"
target="_blank"
title="Spring Boot Introduction"
>
Start Learning Spring Boot
</a>
</li>
<li>
<a href="https://javascript.info/" target="_blank" title="Third resource">
Eveyrthing About Javascript
</a>
</li>
</ul>
</div>
</div>
<!--_________Labeeb-Basil card End________-->
<!--_________anabeacode card Start________-->
<div class="card">
<p class="name">Ana Beatriz Esper</p>
<p class="contact">
<i class="fab fa-linkedin"></i>
<a href="https://www.linkedin.com/in/ana-beatriz-lima-esper" target="_blank">Ana Beatriz</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/anabeacode" target="_blank">@anabeacode</a>
</p>
<p class="about">Sou estudante de Análise e desenvolvimento de sistemas, apaixonada por tecnologia.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.cursoemvideo.com/cursos/" target="_blank" title="Cursos">Curso em vídeo</a>
</li>
<li>
<a href="https://www.coursera.org/" target="_blank" title="Cousera">Coursera</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Udemy">Udemy</a>
</li>
</ul>
</div>
</div>
<!-- ________ anabeacode card END ________ -->
<!-- ________ Yukesh card START ________ -->
<div class="card">
<p class="name">Yukesh Dhakal</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/TrxsTerIsHere" target="_blank">TrxsTerIsHere</a>
<i class="fab fa-github"></i>
<a href="https://github.com/DhakalYukesh" target="_blank">DhakalYukesh</a>
</p>
<p class="about">I am a frontend developer who loves to make design come to reality.</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://calltoinspiration.com/" target="_blank" title="Inspiration">UI Inspiration</a>
</li>
<li>
<a href="https://www.frontendmentor.io/challenges" target="_blank" title="FrontendMentor">
Frontend Challenges
</a>
</li>
<li>
<a
href="https://github.com/avinash201199/Free-courses-with-Certificates"
target="_blank"
title="FreeCertificates"
>
Free certificates repo
</a>
</li>
</ul>
</div>
</div>
<!-- ________ Yukesh card END ________ -->
<!-- ________ zgr0 card START ________ -->
<div class="card">
<p class="name">zgr0</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://twitter.com/ozkara583" target="_blank">ozkara583</a>
<i class="fab fa-github"></i>
<a href="https://github.com/zgr0" target="_blank">zgr0</a>
</p>
<p class="about">
I am CS student who loves web programming and web security. I want to find new projects I can contribute
about these topics.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://www.freecodecamp.org/" target="_blank" title="freecodecamp">freecodecamp</a>
</li>
<li>
<a href="https://portswigger.net/web-security" target="_blank" title="web security course">
portswigger web security academy
</a>
</li>
<li>
<a href="https://darknetdiaries.com/episode/" target="_blank" title="CyberSec Stories">
darknet diaries
</a>
</li>
</ul>
</div>
</div>
<!-- ________ zgr0 card END ________ -->
<!-- ________ luciano44 card START ________ -->
<div class="card">
<p class="name">Luciano Ribeiro</p>
<p class="contact">
<i class="fab fa-x-twitter"></i>
<a href="https://www.twitter.com/lucianoasri" target="_blank">lucianoasri</a>
<i class="fab fa-github"></i>
<a href="https://www.github.com/luciano44" target="_blank">luciano44</a>
</p>
<p class="about">
I am a full-stack web developer who loves creating projects for fun and learning every day through courses
and practice.
</p>
<div class="resources">
<p>3 Useful Dev Resources</p>
<ul>
<li>
<a href="https://chat.openai.com/" target="_blank" title="ChatGPT">ChatGPT</a>
</li>
<li>
<a href="https://www.udemy.com/" target="_blank" title="Udemy">Udemy</a>
</li>
<li>