├── scripts ├── contributors.js ├── load-cards.js └── generate-cards.sh ├── .gitignore ├── docs ├── translations │ ├── cn │ │ └── README.cn.md │ ├── ja │ │ └── README.ja.md │ ├── kr │ │ └── README.kr.md │ ├── es │ │ └── README.es.md │ ├── ru │ │ └── README.ru.md │ ├── tr │ │ └── README.tr.md │ ├── id │ │ └── README.id.md │ ├── it │ │ └── README.it.md │ ├── pl │ │ └── README.pl.md │ ├── fa │ │ └── README.fa.md │ ├── vn │ │ └── README.vn.md │ ├── pt_br │ │ └── README.pt_br.md │ ├── de │ │ └── README.de.md │ ├── ar │ │ └── README.ar.md │ └── Translations.md └── design-guidelines.md ├── contributors ├── synthesis0x42.html ├── DevDorothy.html ├── linsarthur.html ├── askotze.html ├── vardhans07.html ├── 0xProf3ssor.html ├── GYihang.html ├── Yseek.html ├── srinadh14321.html ├── Hsyuan54670.html ├── ipdor.html ├── MUNJETIJAYANTHKRISHNA.html ├── asgardik0.html ├── gcdarcy.html ├── lateandlazy.html ├── simocastro18.html ├── dhirajkrgupta.html ├── moemam10.html ├── Harshasai1234.html ├── naomi_rory.html ├── sathvikkv556.html ├── mortalsking.html ├── 2400032210.html ├── Bhavya-Chowdary.html ├── Ishi1912.html ├── SummerAgain2025.html ├── halioti2.html ├── vipinMi2024.html ├── happypepii.html ├── dracok721.html ├── loki.html ├── pelumini.html ├── JayOaks.html ├── Leonardo-Garzon-1995.html ├── karta003463.html ├── Harshith-Teja.html ├── Biraj-P.html ├── sudama-bera-3.html ├── marouane666.html ├── RedAntDroid.html ├── nanagao.html ├── vineet-sketch.html ├── calchen.html ├── jiakeboge.html ├── AmodaHegde.html ├── Gotchumon.html ├── eswarseeram.html ├── frnc-crrd.html ├── harryfotso.html ├── LydiaAbrahamF.html ├── anant_kumar_sinha.html ├── samidukushalaya.html ├── najafsikander.html ├── 0xMattB.html ├── oke06.html ├── jeeracd.html ├── shilpa.html ├── samsara.html ├── vijay.html ├── AlexVer52.html ├── soap-name.html ├── rakshityadav.html ├── bantoklara.html ├── D3rk1us.html ├── tanujsharma911.html ├── vipinsao.html ├── Muntazir-sd.html ├── gilbert-maker.html ├── sharabshrestha99.html ├── willt18.html ├── ladalar.html ├── sahil.html ├── kchleon.html ├── zsylllike-sketch.html ├── ujavedodl.html ├── mazhummohammad.html ├── 2emeagauche.html ├── yats0x7.html ├── Varshini1905.html ├── borutoez.html ├── winnerxl.html ├── BlkMambaGod.html ├── SethuVinayagam.html ├── tghimanshu.html ├── richard2706.html ├── Jin-HoMLee.html ├── dee276.html ├── amoguelk.html ├── code-fuad.html ├── srs-sudeep ├── sherlock221b.html ├── isttiiak.html ├── theoriginaltudor.html ├── Umarpython.html ├── VidhuVi.html ├── SamuelIVX.html ├── h4harsimran.html ├── edwarddume55.html ├── LFreitas88.html ├── itsmrseantoo.html ├── voidexis.html ├── jkeadle2.html ├── Hamzathul-karrar.html ├── berriiacn.html ├── ameliaali.html ├── alok-38.html ├── balibabu.html ├── buckcode16.html ├── gokultp.html ├── borik216.html ├── andreeeeeea.html ├── Inengs.html ├── ProgrammingPirates.html ├── GP8-Gokul.html ├── Abvvs.html ├── paulclrt.html ├── xkensho47.html ├── harshal_waghmare.html ├── J-Guajardo.html ├── bjoseph23.html ├── henriquercz.html └── roshanjossey.html ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── workflows │ ├── pr-preview.yml │ ├── deploy.yml │ └── revert-contributors-change.yml └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── style.css ├── index.html └── LICENSE /scripts/contributors.js: -------------------------------------------------------------------------------- 1 | const contributorFiles = [ 2 | "roshanjossey.html", 3 | "gokultp.html", 4 | ]; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | scripts/contributors.js 2 | 3 | .DS_Store 4 | .idea/ 5 | .vs 6 | .env 7 | 8 | *.rsuser 9 | *.suo 10 | *.user 11 | *.userosscache 12 | *.sln.docstates 13 | *.swp 14 | -------------------------------------------------------------------------------- /docs/translations/cn/README.cn.md: -------------------------------------------------------------------------------- 1 | # 代码提交 2 | 3 | 这是一个用来让你练习给有代码的开源项目提交代码的项目 4 | 5 | 我们希望你已经完成了[“第一次提交”项目](https://github.com/firstcontributions/first-contributions)上的练习 6 | 7 | 前往 [“提交指南”](CONTRIBUTING.cn.md) 开始这个练习吧! 8 | -------------------------------------------------------------------------------- /docs/translations/ja/README.ja.md: -------------------------------------------------------------------------------- 1 | これは、オープンソースプロジェクトにコードを貢献する練習をするためのプロジェクトです。 2 | 3 | [最初の貢献](https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.ja.md) のチュートリアルをすでに完了したと仮定します。 4 | 5 | 始めるには、[貢献のガイドライン](CONTRIBUTING.ja.md) に行ってください。 6 | -------------------------------------------------------------------------------- /docs/translations/kr/README.kr.md: -------------------------------------------------------------------------------- 1 | # 코드 기여 2 | 3 | 이 프로젝트는 오픈 소스 프로젝트에 코드 기여를 연습하기 위한 프로젝트입니다. 4 | 5 | [첫 번째 기여](https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.ko.md) 튜토리얼을 이미 완료했다고 가정합니다. 6 | 7 | 시작하려면, [기여 가이드라인](CONTRIBUTING.kr.md)을 확인해 주세요. 8 | -------------------------------------------------------------------------------- /docs/translations/es/README.es.md: -------------------------------------------------------------------------------- 1 | Este es un proyecto para que practiques a contribuir en proyectos de código abierto. 2 | 3 | Suponemos que ya has terminado el tutorial en [first contributions](https://github.com/firstcontributions/first-contributions). 4 | 5 | Dirígete a [guía de contribución](CONTRIBUTING.es.md) para comenzar. 6 | -------------------------------------------------------------------------------- /docs/translations/ru/README.ru.md: -------------------------------------------------------------------------------- 1 | Этот проект создан для практики добавления кода в open source проекты. 2 | 3 | Мы предполагаем, что вы уже ознакомились с туториалом [first contributions](https://github.com/firstcontributions/first-contributions). 4 | 5 | Переходите к [contribution guide](CONTRIBUTING.ru.md), чтобы начать. 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/translations/tr/README.tr.md: -------------------------------------------------------------------------------- 1 | Bu proje, açık kaynak projelere katkı yapmayı pratik edebilmen için hazırlandı. 2 | 3 | [First Contributions](https://github.com/firstcontributions/first-contributions) eğitimini tamamladığını varsayıyoruz. 4 | 5 | Başlamak için [katkıda bulunma rehberi](CONTRIBUTING.tr.md) dosyasına göz atabilirsin. -------------------------------------------------------------------------------- /docs/translations/id/README.id.md: -------------------------------------------------------------------------------- 1 | Ini adalah proyek yang memungkinkan Anda untuk berlatih berkontribusi kode ke proyek open source. 2 | 3 | Kami berasumsi bahwa Anda telah menyelesaikan tutorial di [kontribusi pertama](https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.id.md). 4 | 5 | Buka [Cara berkontribusi](CONTRIBUTING.id.md) untuk memulai. 6 | -------------------------------------------------------------------------------- /docs/translations/it/README.it.md: -------------------------------------------------------------------------------- 1 | # contribuire al codice 2 | 3 | Questo è un progetto per farti esercitare a contribuire a progetti open source con il codice. 4 | 5 | Stiamo supponendo che tu abbia già completato il tutorial in [primi contributi](https://github.com/firstcontributions/first-contributions). 6 | 7 | Vai nei [Passaggi per contribuire](CONTRIBUTING.it.md) per iniziare. 8 | 9 | -------------------------------------------------------------------------------- /docs/translations/pl/README.pl.md: -------------------------------------------------------------------------------- 1 | Tutaj znajdziesz projekt, w którym możesz ćwiczyć kontribucje do projektów Open Source (otwartego programowania) z kodem. 2 | 3 | Zakładamy, że ukończyłeś samouczek do [pierwszych kontribucji](https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.pl.md). 4 | 5 | Przejdź do [przewodnika](CONTRIBUTING.pl.md), żeby rozpocząć. -------------------------------------------------------------------------------- /docs/translations/fa/README.fa.md: -------------------------------------------------------------------------------- 1 | این یک پروژه آموزشی است که به شما کمک می‌کند مشارکت در پروژه‌های متن‌باز با استفاده از کدنویسی را تمرین کنید. 2 | 3 | فرض بر این است که شما پیش‌تر آموزش [اولین مشارکت‌](https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.fa.md) را تکمیل کرده‌اید. 4 | 5 | برای شروع، به [راهنمای مشارکت](CONTRIBUTING.fa.md) مراجعه کنید. 6 | 7 | -------------------------------------------------------------------------------- /docs/translations/vn/README.vn.md: -------------------------------------------------------------------------------- 1 | Đóng góp mã nguồn 2 | 3 | Đây là một dự án giúp bạn thực hành cách đóng góp mã vào các dự án mã nguồn mở. 4 | 5 | Chúng tôi giả định rằng bạn đã hoàn thành hướng dẫn tại [First Contributions](https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.vn.md). 6 | 7 | Hãy truy cập [Hướng dẫn đóng góp](CONTRIBUTING.vn.md) để bắt đầu nhé. -------------------------------------------------------------------------------- /docs/translations/pt_br/README.pt_br.md: -------------------------------------------------------------------------------- 1 | Este é um projeto que permite que você pratique a contribuição de código para projetos de código aberto. 2 | 3 | Presumimos que você já tenha concluído o tutorial em [first contributions](https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.id.md). 4 | 5 | Vá para [How to contribute](CONTRIBUTING.pt_br.md) para começar. 6 | 7 | -------------------------------------------------------------------------------- /docs/translations/de/README.de.md: -------------------------------------------------------------------------------- 1 | Dies ist ein Projekt, mit dem Sie üben können, zu Open-Source-Projekten mit Code beizutragen. 2 | 3 | Wir gehen davon aus, dass Sie das Tutorial unter [erste Beiträge](https://github.com/firstcontributions/first-contributions/blob/main/docs/translations/README.de.md) bereits abgeschlossen haben. 4 | 5 | Gehen Sie zu [Anleitung für Beiträge](CONTRIBUTING.de.md), um zu beginnen. 6 | -------------------------------------------------------------------------------- /docs/translations/ar/README.ar.md: -------------------------------------------------------------------------------- 1 | # مساهمات الكود 2 | 3 | يهدف هذا المشروع إلى مساعدتك في التدرب على المساهمة في مشاريع المصدر المفتوح من خلال الكود. 4 | 5 | نفترض أنك قد أكملت بالفعل البرنامج التعليمي في [المساهمات الأولى](https://github.com/firstcontributions/first-contributions). 6 | 7 | للبدء، يمكنك الرجوع إلى [دليل المساهمة](https://github.com/Roshanjossey/code-contributions/blob/main/docs/CONTRIBUTING.md). 8 | -------------------------------------------------------------------------------- /scripts/load-cards.js: -------------------------------------------------------------------------------- 1 | function createCard(contributor) { 2 | const iframe = document.createElement('iframe'); 3 | iframe.className = 'card col col-6-md col-3-lg bd-grey'; 4 | iframe.src = `contributors/${contributor}`; 5 | iframe.title = contributor 6 | document.getElementById('contributor-cards').appendChild(iframe); 7 | } 8 | 9 | contributorFiles.forEach(contributor => createCard(contributor)); 10 | -------------------------------------------------------------------------------- /contributors/synthesis0x42.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |

synthesis0x42

4 |

can't be bothered to make a card I use python 99% of the time actually love you guys

5 |
6 | 23 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Before submitting this pull request, please go through the checklist below. 2 | If you're doing something in the checklist, put an `x` inside `[ ]` so that `- [ ]` becomes `- [x]` 3 | 4 | - [ ] I have added a screenshot from browser with my changes 5 | - [ ] There are no errors in the console 6 | - [ ] I had fun going through this tutorial (ノ^o^)ノ and learned on the way ٩(^◡^)۶ 7 | - [ ] There are some things I'd like to improve in this tutorial. I have written them below. 8 | -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Reporting a Vulnerability 4 | 5 | In order for the vulnerability reports to reach maintainers as soon as possible, the preferred way is to use the "Report a vulnerability" button under the "Security" tab of the associated GitHub project. This creates a private communication channel between the reporter and the maintainers. 6 | 7 | If you are absolutely unable to or have strong reasons not to use GitHub's vulnerability reporting workflow, please reach out to the the team by mailing to firstcontributions@gmail.com 8 | -------------------------------------------------------------------------------- /.github/workflows/pr-preview.yml: -------------------------------------------------------------------------------- 1 | name: Deploy PR previews 2 | 3 | on: 4 | pull_request: 5 | types: 6 | - opened 7 | - reopened 8 | - synchronize 9 | - closed 10 | 11 | concurrency: preview-${{ github.ref }} 12 | 13 | jobs: 14 | deploy-preview: 15 | runs-on: ubuntu-latest 16 | steps: 17 | - name: Checkout 18 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 19 | - name: Generate contributors list 20 | run: bash scripts/generate-cards.sh 21 | - name: Deploy preview 22 | uses: rossjrw/pr-preview-action@df22037db54ab6ee34d3c1e2b8810ac040a530c6 # v 1.6.0 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement, question 6 | assignees: Roshanjossey 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .card { 2 | height: 32rem; 3 | width: -moz-available; 4 | width: -webkit-fill-available; 5 | width: fill-available; 6 | } 7 | 8 | header { 9 | background-color: #070707; 10 | text-align: center; 11 | margin-top: -14px; 12 | padding: 4rem 2rem; 13 | } 14 | 15 | @media (min-width:961px) { 16 | header { 17 | padding: 12rem 4rem; 18 | } 19 | } 20 | 21 | h1 { 22 | color: #fafafa; 23 | font-size: 4rem; 24 | font-weight: 700; 25 | letter-spacing: -.05em; 26 | } 27 | 28 | h1 span { 29 | -webkit-text-fill-color: #0000; 30 | background: linear-gradient(90deg, #60faa3, #1dd829); 31 | -webkit-background-clip: text; 32 | } 33 | 34 | .success.button { 35 | font-weight: 700; 36 | } 37 | -------------------------------------------------------------------------------- /scripts/generate-cards.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Path to the cards directory and output file 4 | CARDS_DIR="contributors" 5 | OUTPUT_FILE="scripts/contributors.js" 6 | 7 | # Check if the cards directory exists 8 | if [ ! -d "$CARDS_DIR" ]; then 9 | echo "Error: Directory $CARDS_DIR does not exist." 10 | exit 1 11 | fi 12 | 13 | # Start generating the JavaScript array 14 | echo "const contributorFiles = [" > "$OUTPUT_FILE" 15 | 16 | # List all HTML files in the cards directory 17 | find "$CARDS_DIR" -type f -name "*.html" | sed "s|^$CARDS_DIR/| \"|; s|$|\",|" >> "$OUTPUT_FILE" 18 | 19 | # Close the JavaScript array 20 | echo "];" >> "$OUTPUT_FILE" 21 | 22 | echo "$OUTPUT_FILE generated successfully with $(ls -1 $CARDS_DIR/*.html | wc -l | xargs) files." 23 | 24 | -------------------------------------------------------------------------------- /contributors/DevDorothy.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Contributor: DevDorothy 7 | 22 | 23 | 24 |
25 |

👋 Hi, I’m Dorothy Nankya

26 |

My GitHub username is @DevDorothy.

27 |

I’m learning how to contribute to open source!

28 |
29 | 30 | 31 | -------------------------------------------------------------------------------- /contributors/linsarthur.html: -------------------------------------------------------------------------------- 1 |
2 |

linsarthur

3 |

I have 24 year old, living in brazil. I have been studing for almost 2 years, looking for my first job in the area.

4 |

Programming languages I use

5 |
6 |
7 | JavaScript 8 |
9 |
10 | 11 |

Tools I use

12 |
13 |

React

14 |

Node.js

15 | 16 |
17 |
18 | 35 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | code contributions 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |

Contribute to open source projects with <code>

15 | Let's go! 16 |
17 | 18 |
19 |

Contributors

20 |
21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /contributors/askotze.html: -------------------------------------------------------------------------------- 1 |
2 |

ASKotze

3 |

Hello guys, my name is Braam and I am an almost 50 year old Python beginner.

4 |

Programming languages I use:

5 |
6 |
7 | Python 8 |
9 |
10 | 11 |

Tools I use

12 |
13 | 17 | 21 |
22 |
23 | 40 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug, question 6 | assignees: Roshanjossey 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /contributors/vardhans07.html: -------------------------------------------------------------------------------- 1 |
2 |

Rajvardhan Patil

3 |

Python student passionate about learning and contributing to open source.

4 | 5 |

Programming languages I use

6 |
7 |
8 | Python 9 |
10 |
11 | JavaScript 12 |
13 |
14 | 15 |

Tools I use

16 |
17 | 19 | 21 |
22 |
23 | 24 | 30 | -------------------------------------------------------------------------------- /contributors/0xProf3ssor.html: -------------------------------------------------------------------------------- 1 |
2 |

0xProf3ssor

3 |

Python

4 |
5 |
6 | Python 7 |
8 |
9 | JavaScript 10 |
11 |
12 | 13 |

Tools I use

14 |
15 | 19 | 23 |
24 |
25 | 42 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Build and Deploy to GitHub Pages 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | permissions: 9 | contents: read 10 | pages: write 11 | id-token: write 12 | 13 | jobs: 14 | deploy: 15 | environment: 16 | name: github-pages 17 | url: ${{ steps.deployment.outputs.page_url }} 18 | runs-on: ubuntu-latest 19 | 20 | steps: 21 | - name: Checkout Code 22 | uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v 4.2.2 23 | 24 | - name: Generate contributors list 25 | run: bash scripts/generate-cards.sh 26 | 27 | - name: Setup Pages 28 | uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b #v5.0.0 29 | - name: Upload artifact 30 | uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa #v3.0.1 31 | with: 32 | path: "." 33 | - name: Deploy to GitHub Pages 34 | id: deployment 35 | uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e #v4.0.5 36 | -------------------------------------------------------------------------------- /contributors/GYihang.html: -------------------------------------------------------------------------------- 1 |
2 |

GYihang

3 |

Handsome

4 |

Python

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/Yseek.html: -------------------------------------------------------------------------------- 1 |
2 |

Yseek

3 |

Thank you

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/srinadh14321.html: -------------------------------------------------------------------------------- 1 |
2 |

srinadh14321

3 |

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/Hsyuan54670.html: -------------------------------------------------------------------------------- 1 |
2 |

Hsyuan54670

3 |

a happy man

4 |

Programming languages I use

5 |
6 |
7 | Java 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/ipdor.html: -------------------------------------------------------------------------------- 1 |
2 |

Nate

3 |

A back-end software engineer

4 |

Programming languages I use

5 |
6 |
7 | C++ 8 |
9 |
10 | Python 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/MUNJETIJAYANTHKRISHNA.html: -------------------------------------------------------------------------------- 1 |
2 |

MUNJETIJAYANTHKRISHNA

3 |

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/asgardik0.html: -------------------------------------------------------------------------------- 1 |
2 |

asgardik0

3 |

This is a small bio

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | 44 | -------------------------------------------------------------------------------- /contributors/gcdarcy.html: -------------------------------------------------------------------------------- 1 |
2 |

gcdarcy

3 |

I am 15 and Filipino

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | C++ 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | 44 | -------------------------------------------------------------------------------- /contributors/lateandlazy.html: -------------------------------------------------------------------------------- 1 |
2 |

lateandlazy

3 |

Rookie in Open Source Contributions

4 |

Programming Languages

5 |
6 |
7 | Python 8 |
9 |
10 | Cpp 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/simocastro18.html: -------------------------------------------------------------------------------- 1 |
2 |

simocastro18

3 |

Computer engineering student

4 |

Programming languages I use

5 |
6 |
7 | c++ 8 |
9 |
10 | c 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/dhirajkrgupta.html: -------------------------------------------------------------------------------- 1 |
2 |

Dhiraj Kumar Gupta

3 |

I'm 21 years old

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/moemam10.html: -------------------------------------------------------------------------------- 1 |
2 |

moemam10

3 |

Hello baddiess (optional)

4 |

c++ , java , python , dart , c#

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/Harshasai1234.html: -------------------------------------------------------------------------------- 1 |
2 |

Harshasai1234

3 |

Btech CSE student at KLU

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/naomi_rory.html: -------------------------------------------------------------------------------- 1 |
2 |

Chandel247

3 |

Learning open source contribution

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/sathvikkv556.html: -------------------------------------------------------------------------------- 1 |
2 |

Sathvik KV

3 |

A small bio about you (optional)

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/mortalsking.html: -------------------------------------------------------------------------------- 1 |
2 |

mortalsking

3 |

I am a detective solving serious cases now learning coding for fun hehe......

4 |
5 |
6 | Python 7 |
8 |
9 | JavaScript 10 |
11 |
12 | 13 |

Tools I use

14 |
15 | 19 | 23 |
24 |
25 | 42 | -------------------------------------------------------------------------------- /contributors/2400032210.html: -------------------------------------------------------------------------------- 1 |
2 |

2400032210

3 |

I am a Computer Science Engineering Student

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/Bhavya-Chowdary.html: -------------------------------------------------------------------------------- 1 |
2 |

Your username

3 |

A small bio about you (optional)

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/Ishi1912.html: -------------------------------------------------------------------------------- 1 |
2 |

Ishi1912

3 |

A software developer in progress.

4 |

Programming languages I use C++, Python

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/SummerAgain2025.html: -------------------------------------------------------------------------------- 1 |
2 |

Your username

3 |

A small bio about you (optional)

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/halioti2.html: -------------------------------------------------------------------------------- 1 |
2 |

halioti2

3 |

I'm adding to an opensourceproject for a class

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | -------------------------------------------------------------------------------- /contributors/vipinMi2024.html: -------------------------------------------------------------------------------- 1 |
2 |

vipinMI2024

3 |

Data Scientist | Python, AI/ML | Building intelligent systems

4 |

Python

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/happypepii.html: -------------------------------------------------------------------------------- 1 |
2 |

happypepii

3 |

Just a person who tries to experience life the most

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/dracok721.html: -------------------------------------------------------------------------------- 1 |
2 |

Dracok721

3 |

Coding enthusiast with a passion for learning new technologies.

4 |

C, C++, Python, JavaScript

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/loki.html: -------------------------------------------------------------------------------- 1 |
2 |

Lokesh Nehete

3 |

A small bio about me

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 17 | 18 |
19 |
20 | -------------------------------------------------------------------------------- /contributors/pelumini.html: -------------------------------------------------------------------------------- 1 |
2 |

pelumini

3 |

Full stack developer, interested in creating things 👨‍💻

4 | 5 |

Programming languages I use

6 |
7 |
8 | Python 9 |
10 |
11 | JavaScript 12 |
13 |
14 | 15 |

Tools I use

16 |
17 | 21 | 25 |
26 |
27 | 28 | 45 | -------------------------------------------------------------------------------- /contributors/JayOaks.html: -------------------------------------------------------------------------------- 1 |
2 |

JayOaks

3 |

A coffee-dependent college student trying to learn something new everyday.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/Leonardo-Garzon-1995.html: -------------------------------------------------------------------------------- 1 |
2 |

Leonardo-Garzon-1995

3 |

I am a junior JavaScript and Python developer

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/karta003463.html: -------------------------------------------------------------------------------- 1 |
2 |

karta003463

3 |

A small bio about you (optional)

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 17 | 18 |
19 |
20 | -------------------------------------------------------------------------------- /contributors/Harshith-Teja.html: -------------------------------------------------------------------------------- 1 |
2 |

Harshith-Teja

3 |

SDE

4 |

Programming languages I use

5 |
6 |
7 | Java 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 - present Roshan Jossy 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /contributors/Biraj-P.html: -------------------------------------------------------------------------------- 1 |
2 |

Biraj-P

3 |

Code. Lift. Learn. Repeat

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/sudama-bera-3.html: -------------------------------------------------------------------------------- 1 |
2 |

sudama-bera-3

3 |

HEY, I am sudama bera, 4th year electrical engineering student. I am late to learn OS contributions but no problem

4 |

Programming languages I use

5 |
6 |
7 | C++ 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/marouane666.html: -------------------------------------------------------------------------------- 1 |
2 |

Marouane666

3 |

Hi! I am Marouane a full stack developer based in Morocco, 4 | I build secure, scalable and efficient web applications.

5 |

Programming languages I use

6 |
7 |
8 | TypeScript 9 |
10 |
11 | Java 12 |
13 |
14 | 15 |

Tools I use

16 |
17 | 21 | 25 |
26 |
27 | 44 | -------------------------------------------------------------------------------- /contributors/RedAntDroid.html: -------------------------------------------------------------------------------- 1 |
2 |

RedAntDroid

3 |

Hello peeps , Im Dharun from India , currently im focusing on js and its frameworks like p5.js , React.js ,Open to collaboration :D

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/nanagao.html: -------------------------------------------------------------------------------- 1 |
2 |

Qinan Gao

3 |

I'm a drug discovery scientist and a self-taught developer.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
C#
13 |
14 | 15 |

Tools I use

16 |
17 | 21 | 25 |
26 |
27 | 44 | -------------------------------------------------------------------------------- /contributors/vineet-sketch.html: -------------------------------------------------------------------------------- 1 |
2 |

vineet-sketch

3 |

A wannabe programmer giving it a shot.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | Java 11 |
12 |
13 | C 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 |
28 |
29 | -------------------------------------------------------------------------------- /contributors/calchen.html: -------------------------------------------------------------------------------- 1 |
2 |

cal

3 |

hey its me! look at me learning and contributing!!

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | C++ 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 |
28 |
29 | 46 | -------------------------------------------------------------------------------- /contributors/jiakeboge.html: -------------------------------------------------------------------------------- 1 |
2 |

jiakeboge

3 |

I'm a software engineer with a passion for building AI applications.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | TypeScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/AmodaHegde.html: -------------------------------------------------------------------------------- 1 |
2 |

AmodaHegde

3 |

Passionate about distributed systems and software dev

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | Java 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 |
28 |
29 | 46 | -------------------------------------------------------------------------------- /contributors/Gotchumon.html: -------------------------------------------------------------------------------- 1 |
2 |

Gotchumon

3 |

New to contributing to github. Look forward to all the learning :)

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | Java 11 |
12 |
13 | C/C++ 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 |
28 |
29 | 46 | -------------------------------------------------------------------------------- /contributors/eswarseeram.html: -------------------------------------------------------------------------------- 1 |
2 |

eswarseeram

3 |

An Undergraduate student contributing to Open source.

4 | 5 |

Programming languages I use

6 |
7 |
8 | Python 9 |
10 |
11 | JavaScript 12 |
13 |
14 | C / C++ 15 |
16 |
17 | 18 |

Tools I use

19 |
20 | 24 | 28 |
29 |
30 | 31 | 48 | -------------------------------------------------------------------------------- /contributors/frnc-crrd.html: -------------------------------------------------------------------------------- 1 |
2 |

frnc-crrd

3 |

I'm a Data Engineer

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | Bash 21 | Linux 26 |
27 |
28 | 53 | -------------------------------------------------------------------------------- /contributors/harryfotso.html: -------------------------------------------------------------------------------- 1 |
2 |

Harry

3 |

3rd Year Engineering Science Student | École Polytechnique de Bruxelles (ULB)

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | C++ 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 |
28 |
29 | 46 | -------------------------------------------------------------------------------- /contributors/LydiaAbrahamF.html: -------------------------------------------------------------------------------- 1 |
2 |

LydiaAbrahamF

3 |

Hello I am Lydia, from Ethiopia getting started with open source contribution. Mainly working as Data Scientist.

4 |

Programming languages I use are SQL, python mainly and its frameworks for data analysis and visualization.

5 |
6 |
7 | Python 8 |
9 |
10 | SQL 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/anant_kumar_sinha.html: -------------------------------------------------------------------------------- 1 |
2 |

Anant Kumar Sinha

3 |

Learning and Living

4 |

Programming languages I use

5 |
6 |
7 | Cpp 8 |
9 |
10 | Python 11 |
12 |
13 | Java 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 20 | 21 |
22 |
23 | -------------------------------------------------------------------------------- /contributors/samidukushalaya.html: -------------------------------------------------------------------------------- 1 |
2 |

samidukushalaya

3 |

code contributions

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | C++ 14 |
15 |
16 | Java 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 26 | 30 |
31 |
32 | 49 | -------------------------------------------------------------------------------- /contributors/najafsikander.html: -------------------------------------------------------------------------------- 1 |
2 |

Najaf Sikander

3 |

Experienced Developer & Consultant with a demonstrated history of working in the computer software industry. Skilled in Android, Databases, Mobile Applications, Web Design, and Java. Strong consulting professional graduated from Indus University.

4 |

Programming languages I use

5 |
6 |
7 | Java 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 |
25 |
26 | 43 | -------------------------------------------------------------------------------- /contributors/0xMattB.html: -------------------------------------------------------------------------------- 1 |
2 |

0xMattB

3 |

Programming languages I use

4 |
5 |
6 | C 7 |
8 |
9 | C++ 10 |
11 |
12 | Rust 13 |
14 |
15 | Python 16 |
17 |
18 | JavaScript 19 |
20 |
21 | 22 |

Tools I use

23 |
24 | 28 | 32 |
33 |
34 | 51 | -------------------------------------------------------------------------------- /contributors/oke06.html: -------------------------------------------------------------------------------- 1 |
2 |

oke06's webpage

3 |

I'm an ambitious programmer who's about to begin their computer science degree.
4 | Currently practicing making open source contributions 5 |

6 |

Programming languages I use

7 |
8 |
9 | Python 10 |
11 |
12 | JavaScript 13 |
14 |
15 | 16 |

Tools I use

17 |
18 | 22 | 26 |
27 |
28 | 45 | -------------------------------------------------------------------------------- /contributors/jeeracd.html: -------------------------------------------------------------------------------- 1 |
2 |

Jeeracd

3 |

I hope to grow as a programmer

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | C++ 11 |
12 |
13 | Java 14 |
15 |
16 |

Tools I use

17 |
18 | 22 | 26 | 30 |
31 |
32 | 49 | -------------------------------------------------------------------------------- /contributors/shilpa.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Contribution Page 7 | 8 | 23 | 24 | 25 |

Maintaining First Contributions

26 |

Technical Skills that I am familiar with:

27 | 28 |
29 |
30 |

31 |

Java

32 |
33 |
34 |

35 |

AngularJS

36 |
37 |
38 |

39 |

PHP

40 |
41 |
42 | 43 | 44 | -------------------------------------------------------------------------------- /contributors/samsara.html: -------------------------------------------------------------------------------- 1 |
2 |

Samsara

3 |

i just learn to code (optional)

4 |

Programming languages I use is C++ and JavaScript + a lil bit of python & Linux

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use is React.js, node.js, kali linux, ubuntu linux, Typescrypt, WSL, Angular, BootSrap, Next.js, Django, MYSQL, AWS, Vue.JS

15 |
16 | 20 | 24 | 28 |
29 |
30 | 47 | -------------------------------------------------------------------------------- /contributors/vijay.html: -------------------------------------------------------------------------------- 1 |
2 |

Vijay M0di

3 |

Hi,I am vijay a new contributor,looking forward to meet with you all

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | C 11 |
12 |
13 | js 14 |
15 |
16 | html 17 |
18 |
19 | R 20 |
21 |
22 | 23 |

Tools I use

24 |
25 | 29 | 33 |
34 |
35 | 52 | -------------------------------------------------------------------------------- /contributors/AlexVer52.html: -------------------------------------------------------------------------------- 1 |
2 |

AlexVer52

3 |

A small bio about you (optional)

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | Model Learning 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 | 31 | 35 |
36 |
37 | 54 | -------------------------------------------------------------------------------- /contributors/soap-name.html: -------------------------------------------------------------------------------- 1 |
2 |

soap-name

3 |

Hi! I am Milo and i work as a test automation engineer. I want to improve both my coding skills and learn how to contribute to open source projects

4 |

Programming languages I use

5 |
6 |
7 | Java 8 |
9 |
10 | HTML 11 |
12 |
13 | JavaScript 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 22 | 23 | 24 | 25 | 26 |
27 |
28 | -------------------------------------------------------------------------------- /contributors/rakshityadav.html: -------------------------------------------------------------------------------- 1 |
2 |

Rakshit Yadav

3 |

Excited to contribute to open source!

4 |

Programming languages I use

5 |
6 |
7 | JavaScript 8 |
9 |
10 | TypeScript 11 |
12 |
13 | Python 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 | 31 | 35 |
36 |
37 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /contributors/bantoklara.html: -------------------------------------------------------------------------------- 1 |
2 |

bantoklara

3 |

Hi, my name is Klari, and I am a computer sciense graduate. I would like to start contributing to exciting projects!

4 |

Programming languages I use

5 |
6 |
7 | Java 8 |
9 |
10 | JavaScript 11 |
12 |
13 | Python 14 |
15 |
16 | C++ 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 23 | 24 |
25 |
26 | -------------------------------------------------------------------------------- /contributors/D3rk1us.html: -------------------------------------------------------------------------------- 1 |
2 |

D3rk1us

3 |

Student focused on integrating secure coding practices into the development lifecycle.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | PHP 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 | 31 | 35 |
36 |
37 | -------------------------------------------------------------------------------- /contributors/tanujsharma911.html: -------------------------------------------------------------------------------- 1 |
2 |

tanujsharma911

3 |

Pursuing computer science. Hoping to contribute to open source projects.

4 |

Programming languages I use

5 |
6 |
7 | C/C++ 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 17 | 18 | 19 | node.js 20 | express-js 22 |
23 |
24 | -------------------------------------------------------------------------------- /contributors/vipinsao.html: -------------------------------------------------------------------------------- 1 |
2 |

vipinsao

3 |

4 | Hello, I am Vipin Chandra Sao a B.Tech graduate in computer science & 5 | engineering from shri shankracharya institue of professional management & 6 | technology Raipur. I have worked as a research intern at initial startup 7 | called Humming Minds Tech Pvt Ltd. There I explored various user-friendly 8 | and performance optimized web technologies. I have been mastering my skills 9 | in full stack development through various courses and by creating dynamic & 10 | innovative projects. 11 |

12 |

Programming languages I use

13 |
14 |
C++
15 |
16 | JavaScript 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 26 | 30 |
31 |
32 | 49 | -------------------------------------------------------------------------------- /contributors/Muntazir-sd.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 |
12 |

Your username

13 |

A small bio about you (optional)

14 |

Programming languages I use

15 |
16 |
17 | Python 18 |
19 |
20 | JavaScript 21 |
22 |
23 | 24 |

Tools I use

25 |
26 | 27 | 29 |
30 |
31 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /contributors/gilbert-maker.html: -------------------------------------------------------------------------------- 1 |
2 |

gilbert-maker

3 |

Currently working as a self-taught developer with FileMaker and Javascript and occasionally writing Python scripts. Wanting to learn Version control to use and at work and contribute to Open Source projects.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | FileMaker 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 | 31 | 32 |
33 |
34 | 51 | -------------------------------------------------------------------------------- /contributors/sharabshrestha99.html: -------------------------------------------------------------------------------- 1 |
2 |

sharabshrestha99

3 |

Wanna Be Developer

4 |

Programming languages I use

5 |
6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 |

Tools I use

14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 |
23 | 45 | -------------------------------------------------------------------------------- /contributors/willt18.html: -------------------------------------------------------------------------------- 1 |
2 |

WillT18

3 |

Hi, I graduated in computer science a long time ago and am looking to get back into some open source projects. I've gotten very rusty with git since my college days so I am following these tutorials.

4 |

Programming languages I use

5 |
6 |
7 | Java 8 |
9 |
10 | Lua 11 |
12 | JavaScript/HTML 13 |
14 |
15 | Pyton (still learning) 16 |
17 | C (still learning) 18 |
19 |
20 | 21 |

Tools I use

22 |
23 | 27 | 31 |
32 |
33 | 50 | -------------------------------------------------------------------------------- /contributors/ladalar.html: -------------------------------------------------------------------------------- 1 |
2 |

ladalar

3 |

Computer Scientist with a background in Music. Passionate about technology, education, and the intersection of music and programming.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | C++ 11 |
12 |
13 | R 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 | 31 | 35 |
36 |
37 | 54 | -------------------------------------------------------------------------------- /contributors/sahil.html: -------------------------------------------------------------------------------- 1 |
2 |

reshisahil

3 |

heloo folks-im sahil from banagalore india; currently in my 2nd year of engineering, im currently learningi learninig dsa in c n 4 | trying to learn from this social code as much as i can!! im enjoying this though!!!

5 |

Programming languages i noramlly use

6 |
7 |
8 | python 9 |
10 |
11 | JavaScript 12 |
13 |
14 | css 15 |
16 |
17 | html5 18 |
19 |
20 |
21 |
22 | 23 |

Tools I use

24 |
25 | 29 | 33 |
34 |
35 | 52 | -------------------------------------------------------------------------------- /contributors/kchleon.html: -------------------------------------------------------------------------------- 1 |
2 |

kchleon

3 |

I am currently a Business Analyst but I would like to get a job more coding-related, currently studying hard on web development and Docker. I am also interested in electronics like Raspberry Pi.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | MySQL 11 |
12 |
13 | PostgreSQL 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 | 31 | 35 |
36 |
37 | 54 | -------------------------------------------------------------------------------- /contributors/zsylllike-sketch.html: -------------------------------------------------------------------------------- 1 |
2 |

zsylllike

3 |

CS Year 3 · Western University (Specialization)

4 | 5 |

Languages

6 |
7 |
Python
8 |
Java
9 |
SQL
10 |
11 | 12 |

Tools

13 |
14 | 15 | 16 |
17 |
18 | 19 | 62 | -------------------------------------------------------------------------------- /contributors/ujavedodl.html: -------------------------------------------------------------------------------- 1 |
2 |

ujavedodl

3 |

I am an experienced software developer with over 5 years experience with .Net development and Microsoft Azure

4 |

Programming languages I use

5 |
6 |
7 | C# 8 |
9 |
10 | Javascript 11 |
12 |
13 | SQL 14 |
15 |
16 | Angular.Js 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 23 | 24 | 25 | 26 |
27 |
28 | 45 | -------------------------------------------------------------------------------- /docs/design-guidelines.md: -------------------------------------------------------------------------------- 1 | ### 1. Keep the tutorial short 2 | 3 | I think this is one of the most important aspects that helped this project grow. Getting a pay-off within five minutes of learning something is remarkable. For brevity, we have to compromise on details. A lot of details are missing from the main tutorial. From explanations on what actually happens when you run those commands to other good practices one could follow. 4 | 5 | ### 2. Accessibility matters 6 | 7 | We want these tutorials to be accessible to as much people as possible. Be it somebody having trouble with language barriers or someone with limited internet speed. Translations help people understand this in languages they're more comfortable with. Keeping the size of this repository small will help with limited bandwidth. 8 | If we see that the web page takes a lot of time to load on computers that doesn't have much processing power or memory, we'll remove contributor HTML files to improve that situation 9 | 10 | ### 3. Users shouldn't have to install (almost) anything. 11 | 12 | We're going on the assumption that most user will have a web browser, text editor and terminal emulator. We want users to be able to go though the tutorial with these. 13 | We don't want user to install node or python to run a web server on local. 14 | 15 | 16 | ### 4. Be generic. 17 | 18 | We could make assumptions about what OS most of our users are using or what terminal emulator or text editor they're comfortable with. By not making such assumptions, we give our readers more freedom and include more people. 19 | 20 | 21 | 22 | Feel free to challenge any of the above in issues. I'd love to get feedback from you. Let's have a discussion. 23 | -------------------------------------------------------------------------------- /contributors/mazhummohammad.html: -------------------------------------------------------------------------------- 1 |
2 |

mazhumohammad

3 |

Web & Software Developer | Learning Java, DSA & Open Source

4 | 5 |

Programming languages & technologies I use

6 |
7 |
HTML
8 |
CSS
9 |
JavaScript
10 |
React
11 |
Java
12 |
C
13 |
C++
14 |
Python
15 |
SQL
16 |
17 | 18 |

Tools I use

19 |
20 | 21 | 22 | 23 |
24 |
25 | 26 | 36 | -------------------------------------------------------------------------------- /contributors/2emeagauche.html: -------------------------------------------------------------------------------- 1 |
2 |

2emeagauche

3 |

Hi, I want to get better in Reactjs, to get starting in Nextjs. I do challenges on Frontent Mentor.

4 |

Programming languages I use

5 |
6 |
7 | JavaScript 8 |
9 |
10 | React 11 |
12 |
13 | Html 14 |
15 |
16 | Css (Sass, Tailwind) 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 25 | 28 | 31 | 34 | 35 |
36 |
37 | 54 | -------------------------------------------------------------------------------- /contributors/yats0x7.html: -------------------------------------------------------------------------------- 1 |
2 |

yats0x7

3 |

Future Tech Founder 🚀 | Learning Coding, AI & Robotics | Passionate About Building Smart Solution

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 | 10 |
11 | HTML 12 |
13 | 14 |
15 | CSS 16 |
17 | 18 |
19 | JavaScript 20 |
21 |
22 | 23 |

Tools I use

24 |
25 | 29 | 30 | 34 | 35 | 39 | 40 | 44 |
45 |
46 | 63 | -------------------------------------------------------------------------------- /contributors/Varshini1905.html: -------------------------------------------------------------------------------- 1 |
2 |

Varshini1905

3 |

I am a B.Tech student in Computer Science Engineering focused on advancing my technical expertise and career development.In addition to my academic pursuits, I am passionate about reading and art.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | C/C++ 14 |
15 |
16 | SQL 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 26 | 30 | 34 |
35 |
36 | 53 | -------------------------------------------------------------------------------- /contributors/borutoez.html: -------------------------------------------------------------------------------- 1 |
2 |

Boruto

3 |

Hi there! My name is Boruto, I love to contribute open 4 | source contributions :)

5 |

Programming languages I use

6 |
7 |
8 | Python 9 |
10 |
11 | JavaScript 12 |
13 |
14 | 15 |

Tools I use

16 |
17 | 18 | 19 | 20 | 21 | 22 |
23 |
24 | 46 | -------------------------------------------------------------------------------- /contributors/winnerxl.html: -------------------------------------------------------------------------------- 1 |
2 |

Winnerxl

3 |

Graduate Engineer

4 |

Programming languages I use

5 |
6 |
7 | C 8 |
9 |
10 | Java 11 |
12 |
13 | Python 14 |
15 |
16 | Assembly 17 |
18 | 19 |
20 | 21 |

Tools I use

22 |
23 | 27 | 31 | 35 | 39 |
40 |
41 | 58 | -------------------------------------------------------------------------------- /contributors/BlkMambaGod.html: -------------------------------------------------------------------------------- 1 |
2 |

BlkMambaGod

3 |

Hi, I’m William — a Computer & Electrical Engineering student. 4 | I’m developing a strong interest in embedded systems, robotics, computer vision, and vehicle automation. 5 | I’m always looking to collaborate on projects where I can learn, contribute, and grow as a developer.

6 |

Programming languages I use

7 |
8 |
9 | C++ 10 |
11 |
12 | Python 13 |
14 |
15 | 16 |

Tools I use

17 |
18 | 21 | 25 | 29 | 32 |
33 |
34 | 51 | -------------------------------------------------------------------------------- /contributors/SethuVinayagam.html: -------------------------------------------------------------------------------- 1 |
2 |

Sethu Vinayagam

3 |

Programming languages I use

4 |
5 |
6 | Python 7 |
8 |
9 | C++ 10 |
11 |
12 | R 13 |
14 |
15 | 16 |

Tools I use

17 |
18 | 22 | 26 | 30 | 34 | 38 | 42 |
43 |
44 | -------------------------------------------------------------------------------- /contributors/tghimanshu.html: -------------------------------------------------------------------------------- 1 |
2 |

tghimanshu

3 |

A GCP Certified - Cloud Architect

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | Terraform 14 |
15 |
16 | Java 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 26 | 30 | 34 | 38 | 42 |
43 |
44 | 61 | -------------------------------------------------------------------------------- /.github/workflows/revert-contributors-change.yml: -------------------------------------------------------------------------------- 1 | name: Revert contributors.js changes 2 | 3 | on: 4 | pull_request_target: 5 | paths: 6 | - 'scripts/contributors.js' 7 | 8 | jobs: 9 | revert-changes: 10 | name: Revert changes to contributors.js 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Checkout repository 14 | uses: actions/checkout@v4 15 | with: 16 | ref: ${{ github.event.pull_request.head.sha }} 17 | repository: ${{ github.event.pull_request.head.repo.full_name }} 18 | fetch-depth: 0 19 | 20 | - name: Revert changes to contributors.js 21 | run: | 22 | # Check if the file has changed 23 | if git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} | grep -q 'scripts/contributors.js'; then 24 | echo "Changes detected in scripts/contributors.js - reverting..." 25 | 26 | # Ensure we're on the branch, not detached HEAD 27 | git checkout ${{ github.event.pull_request.head.ref }} 28 | 29 | # Revert the file 30 | git checkout ${{ github.event.pull_request.base.sha }} -- scripts/contributors.js 31 | 32 | # Configure git 33 | git config --global user.name "GitHub Actions" 34 | git config --global user.email "actions@github.com" 35 | 36 | # Commit and push 37 | git commit -m "Revert changes to scripts/contributors.js [skip ci]" 38 | git push origin ${{ github.event.pull_request.head.ref }} 39 | 40 | echo "Changes to scripts/contributors.js have been reverted." 41 | else 42 | echo "No changes to scripts/contributors.js detected." 43 | fi 44 | -------------------------------------------------------------------------------- /contributors/richard2706.html: -------------------------------------------------------------------------------- 1 |
2 |

richard2706

3 |

Computer Science graduate from Swansea University building desktop, mobile and web projects.

4 |

Programming languages I use

5 |
6 |
7 | C# 8 |
9 |
10 | Java 11 |
12 |
13 | Kotlin 14 |
15 |
16 | C++ 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 26 | 30 | 34 | 38 |
39 |
40 | -------------------------------------------------------------------------------- /contributors/Jin-HoMLee.html: -------------------------------------------------------------------------------- 1 |
2 |

Jin-HoMLee

3 |

"Eager to dive into open source and collaborate on meaningful projects."

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | R 11 |
12 |
13 | MATLAB 14 |
15 | 16 |

Tools I use

17 |
18 | 22 | 26 | 30 | 34 | 38 | 42 |
43 |
44 | 61 | -------------------------------------------------------------------------------- /contributors/dee276.html: -------------------------------------------------------------------------------- 1 |
2 |

dee276

3 |

I am a hardware programmer.
I have experience with languages for FPGAs,
4 | circuits design, languages like Verilog/VHDL, LabVIEW, C++, Python and Arduino.
5 | I recently completed the IBM Full Stack certificate to extend my skills to software programming
6 | which is why i'm doing this. These projects are an opportunity for me to get some experience outside of
7 | the labs within the certificate. 8 |

9 |

Programming languages I use

10 |
11 |
12 | Python 13 |
14 |
15 | JavaScript 16 |
17 |
18 | Java 19 |
20 |
21 | C++ 22 |
23 |
24 | VHDL/Verilog 25 |
26 |
27 | 28 |

Tools I use

29 |
30 | 34 | 38 |
39 |
40 | 57 | -------------------------------------------------------------------------------- /contributors/amoguelk.html: -------------------------------------------------------------------------------- 1 |
2 |

amoguelk

3 |

A computer engineer from Mexico City

4 |

Programming languages I use

5 |
6 |
7 | Java 8 |
9 |
10 | Python 11 |
12 |
13 | JavaScript 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 | 31 | 35 | 39 |
40 |
41 | 58 | -------------------------------------------------------------------------------- /contributors/code-fuad.html: -------------------------------------------------------------------------------- 1 |
2 |

code-fuad

3 |

Creating impactful system is my passion.

4 |

I'm currently using javascript

5 |
6 |
7 | JavaScript 8 |
9 |
10 | 11 |

Tools I use

12 |
13 | 21 | 22 | 25 | 26 | 30 |
31 |
32 | 49 | -------------------------------------------------------------------------------- /contributors/srs-sudeep: -------------------------------------------------------------------------------- 1 |
2 |

srs-sudeep

3 |

A professional yapper and occasional coder

4 | 5 |

Programming languages I use

6 |
7 |
8 | React 9 |
10 |
11 | Python 12 |
13 |
14 | C++ 15 |
16 |
17 | Java 18 |
19 |
20 | JavaScript 21 |
22 |
23 | 24 |

Tools I use

25 |
26 | VS Code 31 | Vim 36 | Git 41 | Docker 46 |
47 |
48 | 49 | 70 | -------------------------------------------------------------------------------- /docs/translations/Translations.md: -------------------------------------------------------------------------------- 1 | # Translations 2 | 3 | | | Translated Link | 4 | | ------------------------------------------------------------ | ------------------------------------------- | 5 | | 日本語 | [日本語](ja/README.ja.md) | 6 | | Deutsch | [Deutsch](de/README.de.md) | 7 | | Português (Brasil) | [Português (Brasil)](pt_br/README.pt_br.md) | 8 | | Bahasa Indonesia | [Bahasa Indonesia](id/README.id.md) | 9 | | 中文 | [中文](cn/README.cn.md) | 10 | | Türkiye | [Türkiye](tr/README.tr.md) | 11 | | Italiano | [Italiano](it/README.it.md) | 12 | | Spain | [Spain](es/README.es.md) | 13 | | العربية | [العربية](ar/README.ar.md) | 14 | | 한국어 | [한국어](kr/README.kr.md) | 15 | -------------------------------------------------------------------------------- /contributors/sherlock221b.html: -------------------------------------------------------------------------------- 1 |
2 |

Sherlock221b

3 |

Wouldn't say I'm passionate about tech or something cheesey like that, but this stuff seems interesting and gives me a little dopmine when I do something exciting or learn something new.

4 |

Programming languages I use

5 |
6 |
7 | Java 8 |
9 |
10 | Python 11 |
12 |
13 | JavaScript 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 | 31 | 35 | 39 | 43 |
44 |
45 | -------------------------------------------------------------------------------- /contributors/isttiiak.html: -------------------------------------------------------------------------------- 1 |
2 |

isttiiak

3 |

Passionate web developer from Bangladesh, eager to contribute to open-source projects and grow with the 4 | community.

5 | 6 |

Programming languages I use

7 |
8 |
9 | Python 10 |
11 |
12 | JavaScript 13 |
14 |
15 | TypeScript 16 |
17 |
18 | 19 |

Tools I use

20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 |
30 | 31 | -------------------------------------------------------------------------------- /contributors/theoriginaltudor.html: -------------------------------------------------------------------------------- 1 |
2 |

theoriginaltudor

3 |

4 | Full-stack developer, father, like RemixJs, works with ASP.NET, interested 5 | in Laravel 6 |

7 |

Programming languages I use

8 |
9 |
C#
10 |
11 | TypeScript 12 |
13 |
14 | Python 15 |
16 |
17 | JavaScript 18 |
19 |
20 | 21 |

Tools I use

22 |
23 | 27 | 31 | 35 | 39 | 43 | 47 |
48 |
49 | 66 | -------------------------------------------------------------------------------- /contributors/Umarpython.html: -------------------------------------------------------------------------------- 1 |
2 |

Olowonyo Umar

3 |

Hello world 👋! My name is Umar and I like to code. I also love mathematics. I can say that I am addicted to it. I initially wanted to study medicine to become a doctor. The main reason why I wanted to do that was because I had a small disability when I was younger. I had a bow-leg; so, I had surgery then my legs were straight. Then I thought it would be nice to become an orthopedic surgeon to help children that would be like me. But sadly,I just lost interest. I thought it required a lot of cramming(and I don't like cramming); so, I dropped it. Thennnnn, I found out about CS. My brother is a computer guy too so I just thought CS would be nice. I realised that I am young and that I can do ANYTHING that I want to do. So, I just thought of doing CS. Well, that's me.

4 |

Programming languages I use

5 |
6 |
7 | Python(What I use all the time) 8 |
9 |
10 | HTML(I barely use it) 11 |
12 |
13 | CSS(I barely know it) 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 23 | 27 |
28 |
29 | 46 | -------------------------------------------------------------------------------- /contributors/VidhuVi.html: -------------------------------------------------------------------------------- 1 |
2 |

Vidhu P Vinod

3 |

A CS student from Kerala, I am very basic

4 |

Programming languages I use:

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
16 | C 17 |
18 |
22 | Java 23 |
24 |
28 | C++ 29 |
30 |
31 | 32 |

Tools I use

33 |
34 | 38 | 42 | 46 | 50 | 54 |
55 |
56 | 73 | -------------------------------------------------------------------------------- /contributors/SamuelIVX.html: -------------------------------------------------------------------------------- 1 |
2 |

SamuelIVX

3 |

4 | Hey everyone! I'm Samuel, a junior and a CS major at CSI! I am currently practicing on contributing to open 5 | source projects! 6 |

7 |

Programming languages I use

8 |
9 |
10 | Python 11 |
12 |
13 | JavaScript 14 |
15 |
16 | TypeScript 17 |
18 |
19 | Java 20 |
21 |
22 | C++ 23 |
24 |
25 | React 26 |
27 |
28 | 29 |

Tools I use

30 |
31 | 32 | 33 | 34 | 35 | 36 |
37 |
38 | -------------------------------------------------------------------------------- /contributors/h4harsimran.html: -------------------------------------------------------------------------------- 1 |
2 |

h4harsimran

3 |

Full-stack developer with a focus on automation and real-world problem solving through clean, efficient code.

4 | 5 |

Programming languages I use

6 |
7 |
Python
8 |
JavaScript
9 |
TypeScript
10 |
HTML
11 |
CSS
12 |
SQL
13 |
14 | 15 |

Tools I use

16 |
17 | Bash 23 | Linux 29 | React 35 | Node.js 41 |
42 |
43 | 44 | 62 | -------------------------------------------------------------------------------- /contributors/edwarddume55.html: -------------------------------------------------------------------------------- 1 |
2 |

Edward Dume

3 |

4 | Aspiring Cloud & DevOps Engineer passionate about AWS, automation, and scalable infrastructure. 5 | Skilled in deploying cloud solutions with CI/CD, Terraform, and container technologies. 6 |

7 | 8 |

Programming languages I use

9 |
10 |
11 | Python 12 |
13 |
14 | JavaScript 15 |
16 |
17 | Bash 18 |
19 |
20 | 21 |

Tools I use

22 |
23 | 28 | 33 | 38 | 43 | 48 | 53 |
54 |
55 | 56 | 73 | -------------------------------------------------------------------------------- /contributors/LFreitas88.html: -------------------------------------------------------------------------------- 1 |
2 |

LFreitas88

3 |

Cybersecurity student and Linux enthusiast. Passionate about networks, hardening, and home lab automation.

4 | 5 |

Programming languages I use

6 |
7 |
Python
8 |
JavaScript
9 |
10 | 11 |

Tools I use

12 |
13 | Ubuntu 14 | Debian 15 | GIMP 16 | Blender 17 | Thunderbird 18 | Virtual Machine Manager 19 | OBS Studio 20 | Linux 21 | Audacity 22 | Visual Studio Code 23 | Wireshark 24 | Bash 25 |
26 |
27 | 28 | 34 | -------------------------------------------------------------------------------- /contributors/itsmrseantoo.html: -------------------------------------------------------------------------------- 1 |
2 |

大肌肌Sean

3 |

HI, I'm Sean and from Taiwan!

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | C++ 14 |
15 |
16 | Java 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 26 | 30 | 34 | 38 | 42 | 47 | ChatGPT 53 |
54 |
55 | 72 | -------------------------------------------------------------------------------- /contributors/voidexis.html: -------------------------------------------------------------------------------- 1 |
2 |

@voidexis

3 |

🤖 Code creature running on unstable memory blocks ▪ Logging weird systems from the void 💾

4 | 5 |

I poked these...

6 |
7 |
8 | Python 9 |
10 |
11 | JavaScript 12 |
13 |
14 | HTML/CSS 15 |
16 |
17 | SQL 18 |
19 |
20 | 21 |

...and these too!

22 |
23 | 27 | 31 | 35 | 39 | 43 | 47 | 51 |
52 |
53 | 54 | 74 | 75 | -------------------------------------------------------------------------------- /contributors/jkeadle2.html: -------------------------------------------------------------------------------- 1 |
2 |

jkeadle2

3 |

Technical Professional with over 30 years experience in engineering level product support and 6 years in software testing, Technical Integration and Quality Assurance

4 |

Programming languages that I use

5 |
6 |
7 | Python 8 |
9 |
10 | Microsoft C# 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 | 28 | 44 | 45 | 46 | 47 | 48 | 49 | 50 |
51 |
52 | -------------------------------------------------------------------------------- /contributors/Hamzathul-karrar.html: -------------------------------------------------------------------------------- 1 |
2 |

Hamzathul karrar

3 |

Java + React Developer

4 |

Programming languages I use

5 |
6 |
7 | Java 8 |
9 |
10 | React 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 17 | Java 22 | 23 | 24 | React 29 | 30 | 31 | Spring Boot 36 | 37 | 38 | MySQL 43 | 44 | 45 | Eclipse 50 | 51 | 52 | ChatGPT 57 | 58 | 59 | Windows 64 |
65 | > 66 | 67 |
68 | 85 | -------------------------------------------------------------------------------- /contributors/berriiacn.html: -------------------------------------------------------------------------------- 1 |
2 |

berriiacn

3 |

I'm a recent computer science graduate at UNSW looking to develop 4 | coding skills in open source contributions and hopefully land a software development role. 5 |

6 |

Programming languages I use

7 |
8 |
9 | Python 10 |
11 |
12 | JavaScript 13 |
14 |
15 | C 16 |
17 |
18 | SQL 19 |
20 |
21 | HTML/CSS 22 |
23 |
24 | 25 |

Tools I use

26 |
27 | 31 | 35 | 39 | 43 | 47 | 51 |
52 |
53 | 70 | -------------------------------------------------------------------------------- /contributors/ameliaali.html: -------------------------------------------------------------------------------- 1 |
2 |

Amelia Ali

3 |

Just a dev building cool things with code

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 |
53 |
54 | 71 | -------------------------------------------------------------------------------- /contributors/alok-38.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Alokananda Y | Contrubution to open source code 8 | 9 | 10 | 11 |
12 |

alok-38

13 |

Hi! My name is Alokananda Y. Call me Alok! 14 | I recently started learning full-stack web development 15 | on Scrimba. 16 |

17 |

Programming languages I use

18 |
19 |
20 | HTML 21 |
22 |
23 | CSS 24 |
25 |
26 | Python 27 |
28 |
29 | JavaScript 30 |
31 |
32 | 33 |

Tools I use

34 |
35 | 36 | 38 | 39 | 41 |
42 |
43 | 63 | 64 | 65 | 66 | -------------------------------------------------------------------------------- /contributors/balibabu.html: -------------------------------------------------------------------------------- 1 |
2 |

balibabu

3 |

i love coding

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | Java 14 |
15 |
16 | C# 17 |
18 |
19 | Rust 20 |
21 |
22 | 23 |

Tools I use

24 |
25 | 29 | 33 | 37 | 41 | 45 | 49 | 53 | 54 |
55 |
56 | 73 | -------------------------------------------------------------------------------- /contributors/buckcode16.html: -------------------------------------------------------------------------------- 1 |
2 |

buckcode16

3 |

Reaching out to the world !

4 |

Programming languages I use

5 |
6 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 |

Tools I use

27 |
28 | 32 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 |
51 |
52 | 69 | -------------------------------------------------------------------------------- /contributors/gokultp.html: -------------------------------------------------------------------------------- 1 |
2 |

Gokul

3 |

Maintains first contributions

4 |

Programming languages I use

5 |
6 |
7 | Go 8 |
9 |
10 | Python 11 |
12 |
13 | 14 |

Tools I use

15 |
16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 |
57 |
58 | 75 | -------------------------------------------------------------------------------- /contributors/borik216.html: -------------------------------------------------------------------------------- 1 |
2 | 19 | 20 |

borik216

21 |

22 | A qa engineer at checkpoint looking to contribute to open source projects 23 |

24 |

Programming languages I use

25 |
26 |
27 | Python 28 |
29 |
30 | JavaScript 31 |
32 |
Go
33 |
34 | 35 |

Tools I use

36 |
37 | 41 | 45 | 49 | 53 | 57 | 61 | 65 | 69 | 73 |
74 |
75 | -------------------------------------------------------------------------------- /contributors/andreeeeeea.html: -------------------------------------------------------------------------------- 1 |
2 |

Andreea

3 |

Dev trying to learn how to contribute to open source projects.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | C++ 11 |
12 |
13 | C# 14 |
15 |
16 | Java 17 |
18 |
19 |

Tools I use

20 |
21 | 22 | 23 | 24 | 25 |
26 |
27 | 76 | -------------------------------------------------------------------------------- /contributors/Inengs.html: -------------------------------------------------------------------------------- 1 |
2 |

Inengs

3 |

4 | I am a freelance developer passionate about building innovative solutions, 5 | currently working with JavaScript and its powerful ecosystem. 6 |

7 |

Programming languages I use

8 |
9 |
10 | JavaScript/TypeScript 11 |
12 |
13 | Golang 14 |
15 |
16 | 17 |

Tools I use

18 |
19 | 20 | 24 | 25 | 26 | 30 | 31 | 32 | 36 | 37 | 38 | 42 | 43 | 44 | 48 | 49 | 50 | 54 | 55 | 56 | 60 | 61 | 62 | 66 |
67 |
68 | 85 | -------------------------------------------------------------------------------- /contributors/ProgrammingPirates.html: -------------------------------------------------------------------------------- 1 |
2 |

ProgrammingPirates

3 |

Full Stack Developer | Competitive Programmer | Coding enthusiast | tech geek | 1000+ on LeetCode | B.Tech IT @ MNNIT Allahabad

4 |

Programming languages I use

5 |
6 |
7 | JavaScript 8 |
9 |
10 | TypeScript 11 |
12 |
13 | Python 14 |
15 |
16 | C++ 17 |
18 |
19 | C 20 |
21 |
22 | 23 |

Tools I use

24 |
25 | 29 | 33 | 37 | 41 | 45 | 49 | 53 | 57 |
58 |
59 | 76 | -------------------------------------------------------------------------------- /contributors/GP8-Gokul.html: -------------------------------------------------------------------------------- 1 |
2 |

Gokul P Jayan

3 |

Aspiring developer, looking for opportunities to learn and grow.

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | C 14 |
15 |
16 | HTML 17 |
18 |
19 | CSS 20 |
21 | 22 |
23 | 24 |

Tools I use

25 |
26 | Git 31 | React 36 | Node.js 41 | Express 46 | MongoDB 51 | Postgres 56 | Vercel 61 | Flutter 66 |
67 |
68 | 85 | -------------------------------------------------------------------------------- /contributors/Abvvs.html: -------------------------------------------------------------------------------- 1 |
2 |

Abvvs

3 |

Hi, i'm learning how to contribute in OS projects, i'm very exiting about this because i want to grow as a software enginner

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | TypeScript 14 |
15 |
16 | PostgreSQL 17 |
18 |
19 |

Frameworks & Libraries

20 |
21 |
22 | Django 23 |
24 |
25 | React 26 |
27 |
28 | Vue 29 |
30 |
31 | Pandas 32 |
33 |
34 | 35 |

Tools I use

36 |
37 | 41 | 45 | 49 | 53 | 57 | 61 | 65 |
66 |
67 | 84 | -------------------------------------------------------------------------------- /contributors/paulclrt.html: -------------------------------------------------------------------------------- 1 |
2 |

Paul Claret

3 |

4 | Regular engineer learning how to contribute to OS instead of doing my day job :) 5 |
6 | This is a joke don't worry 7 |

8 |

Programming languages I use

9 |
10 |
11 | Python 12 |
13 |
14 | Typesrcipt 15 |
16 |
17 | C/C++ 18 |
19 |
20 | 21 |

Tools I use

22 |
23 | 27 | 31 | 35 | 39 | 43 | 47 | 51 | 55 | 59 | 63 | 67 |
68 |
69 | 86 | 87 | -------------------------------------------------------------------------------- /contributors/xkensho47.html: -------------------------------------------------------------------------------- 1 |
2 |

xKensho47

3 |

4 | Full Stack Developer with academic training and practical experience in programming. 5 |
6 | I love learning new things, getting into projects and solving problems. 7 |

8 |

Programming languages I use

9 |
10 |
11 | JavaScript 12 |
13 |
14 | PHP 15 |
16 |
17 | C# 18 |
19 |
20 | Java 21 |
22 |
23 | Python 24 |
25 |
26 | 27 |

Tools I use

28 |
29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 |
41 |
42 | -------------------------------------------------------------------------------- /contributors/harshal_waghmare.html: -------------------------------------------------------------------------------- 1 |
13 |

✨ Harshal Waghmare

14 |

15 | Passionate learner exploring software development, web technologies, and open-source. 🚀 16 |

17 | 18 |

💻 Programming Languages I use

19 | 20 |
21 |
JavaScript
22 |
TypeScript
23 |
C
24 |
25 | 26 |

🛠 Tools I use

27 |
28 | React 30 | 31 | Git 33 | 34 | VS Code 36 | 37 | Tailwind CSS 39 |
40 |
41 | 42 | 80 | -------------------------------------------------------------------------------- /contributors/J-Guajardo.html: -------------------------------------------------------------------------------- 1 |
2 |

J-Guajardo

3 |

Lifelong learner

4 |

Programming languages I use

5 |
6 |
7 | Python 8 |
9 |
10 | JavaScript 11 |
12 |
13 | C++ 14 |
15 |
16 | Assembly (Turing Complete and Shenzhen I/O) 17 |
18 |
19 | 20 |

Tools I use

21 |
22 | 26 | 30 | 34 | 38 | 42 | 46 | 50 | 54 | 58 | 62 | 66 | 70 |
71 |
72 | 89 | -------------------------------------------------------------------------------- /contributors/bjoseph23.html: -------------------------------------------------------------------------------- 1 |
2 |

Hi there 👋

3 |

Welcome to my GitHub profile!

4 | 5 |

🚀 About Me

6 | 13 | 14 |

🛠️ Languages & Tools

15 |
16 |
17 | Python 18 |
19 |
20 | JavaScript 21 |
22 | Bash 27 | Linux 32 |
33 | 34 |

📊 GitHub Stats

35 | Top Langs 40 | Bill's GitHub stats 45 | 46 |

🏆 Trophies

47 | Trophies 52 |
53 | 54 | 105 | -------------------------------------------------------------------------------- /contributors/henriquercz.html: -------------------------------------------------------------------------------- 1 |
2 |

henriquercz

3 |

Estudante de Desenvolvimento de Sistemas | Entusiasta em IA e Tecnologias

4 |

Linguagens de Programação

5 |
6 |
7 | HTML 8 |
9 |
10 | CSS 11 |
12 |
13 | JavaScript 14 |
15 |
16 | TypeScript 17 |
18 |
19 | React 20 |
21 |
22 | Python 23 |
24 |
25 | 26 |

Ferramentas que Utilizo

27 |
28 | 33 | 38 | 43 | 48 | 53 | 58 | 63 | 68 | 73 |
74 |
75 | 92 | -------------------------------------------------------------------------------- /contributors/roshanjossey.html: -------------------------------------------------------------------------------- 1 |
2 |

sudo

3 |

Maintains first contributions

4 |

Programming languages I use

5 |
6 |
7 | TypeScript 8 |
9 |
10 | JavaScript 11 |
12 |
13 | CSS3 14 |
15 |
16 | Ruby 17 |
18 |
19 | Python 20 |
21 |
22 | 23 |

Tools I use

24 |
25 | 29 | 33 | 37 | 41 | 45 | 49 | 53 | 57 | 61 | 65 | 69 | 73 |
74 |
75 | 92 | --------------------------------------------------------------------------------