release 0.2 - humphd/topics-in-open-source-2024 GitHub Wiki
Release 0.2
Due Date
Thursday October 31 by Midnight, with weekly blog posts and updates to the wiki below throughout October
Overview
This second release is meant to get you contributing to real open source projects, furthering your git, GitHub, and open source experience.
For the month of October, we will be participating in Hacktoberfest, a yearly event to encourage new people to get involved in the open source community.
I have created a video to discuss Hacktoberfest and this release in more detail, which you are encouraged to watch before you begin.
You can also read my blog posts about Seneca open source students doing Hacktoberfest in the past
Learning Goals
The goal of this second release is to help you gain experience and confidence in contributing to open source projects through direct involvement in a number of real projects. As a result, you will learn more about what it's like to work within the open source development community. Finally, you will participate in a global event, and get a chance to network in the industry.
This release will also help you to continue to develop your blogging skills, and practice software planning, estimating, and scheduling, as you work to complete your pull requests each week.
Hacktoberfest
Start by registering with your GitHub info on the Hacktoberfest web page. You might also want to join the Hacktoberfest Discord server, in order to get help or find interesting projects.
You are then asked to complete 4 pull requests during October, doing roughly 1 pull request per week. All 4 PRs must be completed by Oct 31, and you are asked to work on 3 separate repos/projects (i.e., you can't do all 4 PRs in one project). You will also be required to blog each week about your progress (see below). The complete list of rules for Hacktoberfest are here.
You are expected to make steady progress through your 4 pull requests. That is, each one should build on the previous one in some way. You can't, for example, fix 4 spelling mistakes--but you could fix one for your first PR. Rather, use each pull request as an opportunity to try something new, and to push yourself a little bit further. Your 4th PR should be more complex and larger than your third, etc.
You shouldn't take on huge issues in projects you don't understand and overwhelm yourself. But you should challenge yourself to work just a bit outside your current skill and comfort zones. The goal is to progress in your experience, competence, and confidence.
NOTE: many people "cheat" at Hacktoberfest by creating repositories that are simply lists of words, movie titles, algorithms, etc and aren't really open source projects. Please refrain from contributing to these repos. Make sure you are picking issues from existing, real open source projects. If you're not sure, ask your professor.
Picking Open Source Projects
You can work on any GitHub hosted open source project, but be aware of the following:
- You may not work on a student project, or a project for another class (e.g., I will not count PRs to repos from 0.1)
- Look for repos with the Hacktoberfest topic and/or Issues with the Hacktoberfest label. If you want to work on a repo/issue that doesn't have the "Hacktoberfest" topic or label, ask the maintainers of the project if they can add it for your PR when merging.
- Look at the open source projects that previous Seneca students worked on during Hacktoberfest in 2018, 2019, 2020, 2021, 2022.
- You should avoid "Hacktoberfest" specific repos, which are created simply to allow people to create silly PRs (i.e., "add your name to this list!"). Pick real open source projects.
- You should avoid projects that are abandoned or no longer actively maintained. Pick active projects, where you can get your work merged.
- You need to work on 3 different GitHub repos during the month.
If you are unsure whether a repo or project is acceptable, ask your professor.
Finding Issues to Work on
When you're new to open source, finding good issues takes time (often a lot of time), so be patient and leave yourself plenty of time. Also be aware that there will be tens-of-thousands of other people contributing to Hacktoberfest, and competing with you for issues.
Here are some links to queries and tools for finding potential issues to work on:
- Awesome For Beginners - a list of open source projects in various languages that are known to be welcoming to new developers
- Issues labelled 'Hacktoberfest' - be aware that there will likely be a lot of competition for these
- Issues labelled 'good first issue' - sorted by least commented. Try different ways of sorting them, for example by newest
- Up For Grabs - curated list of projects with beginner-friendly issues
- Finding Open Source Projects on GitHub - an article on different ways to search for projects on GitHub
Some other tips when searching for issues on GitHub:
- You can specify the
user
field, if you want to limit your search to an organization or company, for example user:microsoft would show only issues belonging to Microsoft repos. - You can limit to a particular programming language using the
language
field,language:python
.
Fixing Your Issues
I have created two videos to walk you through the process of contributing to open source projects on GitHub:
When you find an issue that you want to work on, you are encouraged to leave a comment telling the project maintainers. This will help signal to other developers that you are working on it, and (hopefully) not submit a fix. Some people don't follow this rule, and submit fixes anyway. If this happens to you, talk to your professor.
Submit a pull request for your fix, following all guidelines for the project (see their README.md
and CONTRIBUTING.md
docs). Make sure your pull request is high quality, doesn't touch lines/files that aren't related to your fix, and has proper indenting and code formatting. Pay attention to small things.
You are expected to make any fixes that your reviewers request in subsequent commits. Be professional in your communication and the code you submit. Submitting a pull request, but then abandoning it when you get feedback, is not acceptable.
Getting Help
At every stage of your work, make sure you ask for help, and get feedback from others in the community by asking questions. Don't struggle on your own and get stuck, or miss the due date.
Please use Slack to help with communication. If you can't get a maintainer for a repository to respond to your Issues, or give feedback on reviews, you should try and reach out on Slack. If that doesn't work, consider switching to contribute to another repository.
Weekly Blogging
Each week during October you will be asked to blog about your progress. These blogs will help you stay on track, and spread your work out during the month. You cannot possibly do this assignment the week or night before it is due, so manage your time well.
Your blog posts should include things like:
- Which issue did your work on? Always include links to URLs so readers can find them.
- What was the issue about?
- What did you need to do to prepare the fix? Was there much setup?
- What did you need to learn in order to make the fix?
- Explain the code for your fix. How does it work?
- If possible, include some kind of demo of the code before/after the fix (not all issues will lend themselves to this, but if you can, consider using screenshots, etc).
- What research did you do? Were there aspects of the issue that you found difficult?
- Did you have any interesting interactions with the project maintainers?
- What did you find difficult? How did you overcome this?
- Link to your Pull Request
Requirements
You will be graded on the following. Please make sure you have addressed everything that makes sense below:
- Four (4) approved Pull Requests completed on time (i.e., not all in the final week) and including at least 3 different project repos.
- Clear progression in your work (i.e., you did more than fix 4 spelling mistakes). Talk about this in your final blog post.
- Professional and respectful interactions in your issue with maintainers, good communication in issues and pull requests.
- Pull Requests should reference the Issue Number in its description (e.g., "Fixes #7: Add feature to do ..."), and include sufficient information about changes you made
- All work is done on a new branch (e.g., if you are fixing Issue 123, use
issue-123
as your branch name) - Proper code to fix your Issues
- Code follows style of the original repository author(s)
- All review comments have been addressed, and subsequent commits have been added to correct any problems. Ideally your Pull Request is merged.
- Weekly Blog Posts
- Discussion of the changes you made. What was your process? What did you learn? What would you do differently next time, or what worked and you would do again?
- Link to the Issues you filed, and discuss the bug/problem/addition you wanted to address.
- Link to the Pull Requests you created, and discuss the fix.
- Discussion of what you did to address your review comments.
- Final recap blog post about everything you did in October, how you've progressed, and what you learned.
Submission
Please add a section for yourself to this wiki page, copy/pasting the template below. Each week you should update your data for blogs, pull requests and issues you are working on:
Template
GitHubUserName - Student Name
Issues
- https://github.com/example/issues/1
- https://github.com/example2/issues/2
- https://github.com/example3/issues/3
- https://github.com/example4/issues/4
Pull Requests
- https://github.com/example/pull/1
- https://github.com/example2/pull/2
- https://github.com/example3/pull/3
- https://github.com/example4/pull/4
Blog Posts
- https://student.blog.com/hacktoberfest-week-one
- https://student.blog.com/hacktoberfest-week-two
- https://student.blog.com/hacktoberfest-week-three
- https://student.blog.com/hacktoberfest-week-four
- https://student.blog.com/hacktoberfest-recap
Mounayer - Majd Al Mnayer
Issues
- https://github.com/Ashish-simpleCoder/classic-react-hooks/issues/55
- https://github.com/blenderskool/blaze/issues/172
- https://github.com/huggingface/chat-ui/issues/1432
Pull Requests
- https://github.com/Ashish-simpleCoder/classic-react-hooks/pull/69
- https://github.com/blenderskool/blaze/pull/176
- https://github.com/huggingface/chat-ui/pull/1539
Blog Posts
- https://dev.to/majd_almnayer_2101/my-first-hacktoberfest-45j2
- https://dev.to/majd_almnayer_2101/contributing-to-open-source-c-edition-255a
- https://dev.to/majd_almnayer_2101/p2p-websockets-webtorrent-3om1
- https://dev.to/majd_almnayer_2101/hacktoberfest-conclusion-hugging-face-finale-4hj4
AryanK1511 - Aryan Khurana
Issues
- https://github.com/zero-to-mastery/ZTM-Quest/issues/36
- https://github.com/Canner/WrenAI/issues/713
- https://github.com/apache/airflow/issues/42823
- https://github.com/ToolJet/ToolJet/issues/10977
Pull Requests
- https://github.com/zero-to-mastery/ZTM-Quest/pull/63
- https://github.com/Canner/WrenAI/pull/724
- https://github.com/apache/airflow/pull/42964
- https://github.com/ToolJet/ToolJet/pull/10982
Blog Posts
- https://aryank1511.hashnode.dev/hacktoberfest2024-blog1
- https://aryank1511.hashnode.dev/hacktoberfest2024-blog2
- https://aryank1511.hashnode.dev/hacktoberfest2024-blog3
- https://aryank1511.hashnode.dev/hacktoberfest2024-blog4
- https://aryank1511.hashnode.dev/hacktoberfest2024-blog5
Kannav02 - Kannav Sethi
Issues
- https://github.com/brombomb/f1hub/issues/89
- https://github.com/DiceDB/dice/issues/798
- https://github.com/zero-to-mastery/ZTM-Quest/issues/21
- https://github.com/planetarium/www.nine-chronicles.dev/issues/90
- https://github.com/DiceDB/dice/issues/1103
Pull Requests
- https://github.com/brombomb/f1hub/pull/91
- https://github.com/DiceDB/dice/pull/975
- https://github.com/zero-to-mastery/ZTM-Quest/pull/115
- https://github.com/planetarium/www.nine-chronicles.dev/pull/92
- https://github.com/DiceDB/dice/pull/1170
Blog Posts
- https://dev.to/kannav02/my-first-hacktoberfest-contribution-5a06
- https://dev.to/kannav02/my-hacktobefest-contribution-to-dicedb-4egg
- https://dev.to/kannav02/hacktoberfest-contribution-to-ztm-quest-d38
- https://dev.to/kannav02/my-fourth-and-final-contribution-to-hacktoberfest-1g8d
cleobnvntra - Cleo Buenaventura
Issues
- https://github.com/surreal30/Food-Data-Scrapper/issues/2
- https://github.com/vigneshs-dev/Q-Vote/issues/22
- https://github.com/onlook-dev/onlook/issues/524
- https://github.com/onlook-dev/onlook/issues/147
Pull Requests
- https://github.com/surreal30/Food-Data-Scrapper/pull/3
- https://github.com/vigneshs-dev/Q-Vote/pull/26
- https://github.com/onlook-dev/onlook/pull/558
- https://github.com/onlook-dev/onlook/pull/646
Blog Post
- https://dev.to/cleobnvntra/hacktoberfest-2024-part-1-110m
- https://dev.to/cleobnvntra/hacktoberfest-2024-part-2-1ldj
- https://dev.to/cleobnvntra/hacktoberfest-2024-part-3-2jlo
- https://dev.to/cleobnvntra/hacktoberfest-2024-part-4-887
- https://dev.to/cleobnvntra/reflecting-on-hacktoberfest-2024-43k4
fadingNA - Nonthachai Plodthong
Issues
- transformer KeyError update
- scrape-it Update Type
- DocsGPT New Feature Caching System
- Graddio Update docstring issue on Button
Pull Requests
- PR Update KeyError, _evaluate function, _save_checkpoint function
- PR Update Type for Scrape-it
- PR Add New Feature for caching LLM response using Redis
- PR Update Docstring for Button behavior with variant
Blog Posts
- First PR Transformer
- Second PR Scrape IT
- Third PR DocsGPT Caching
- Fourth PR Gradio Document API Update
- Recap Hacktober Fest
brokoli777 - Bregwin Jogi
Issues
- https://github.com/tldr-pages/tldr/issues/6141
- https://github.com/ScottPlot/ScottPlot/issues/4318
- https://github.com/microsoft/vscode-python/issues/24077
- https://github.com/mozilla/mozdownload/issues/702
- https://github.com/google/magika/issues/730
Pull Requests
- https://github.com/tldr-pages/tldr/pull/13934
- https://github.com/nats-io/nats.docs/pull/752
- https://github.com/ScottPlot/ScottPlot/pull/4335
- https://github.com/microsoft/vscode-python/pull/24300
- https://github.com/mozilla/mozdownload/pull/703
- https://github.com/google/magika/pull/739
Blog Posts
- https://dev.to/bregwin/getting-started-with-hacktoberfest-my-first-open-source-contributions-54pc
- https://dev.to/bregwin/contributing-to-other-open-source-projects-week-2-p94
- https://dev.to/bregwin/contributing-to-open-source-projects-3-dij
- https://dev.to/bregwin/from-regex-to-ruff-lessons-learned-in-contributing-to-magika-2be6
- https://dev.to/bregwin/a-brief-recap-of-what-i-did-this-month-40e1
peterdanwan - Peter Wan
Issues
- https://github.com/tarasglek/chatcraft.org/issues/691
- https://github.com/beRajeevKumar/Frontend_Mentor/issues/52
- https://github.com/beRajeevKumar/Frontend_Mentor/issues/180
- https://github.com/microsoft/vscode/issues/230636
- https://github.com/aayushai/TranspilerX/issues/34
- https://github.com/aayushai/TranspilerX/issues/27
- https://github.com/aayushai/TranspilerX/issues/22
- https://github.com/yzhang-gh/vscode-markdown/issues/1476
- https://github.com/mjbvz/vscode-markdown-mermaid/issues/293
- https://github.com/PlasmoHQ/plasmo/issues/658#issuecomment-2433289258
- https://github.com/PlasmoHQ/plasmo/issues/1121
- https://github.com/streetsidesoftware/vscode-spell-checker/issues/2409
Pull Requests
- https://github.com/tarasglek/chatcraft.org/pull/692
- https://github.com/beRajeevKumar/Frontend_Mentor/pull/59
- https://github.com/beRajeevKumar/Frontend_Mentor/pull/182
- https://github.com/microsoft/vscode/pull/230987
- https://github.com/aayushai/TranspilerX/pull/37
- https://github.com/aayushai/TranspilerX/pull/29
- https://github.com/PlasmoHQ/plasmo/pull/1122
- https://github.com/streetsidesoftware/vscode-spell-checker/pull/3729
Blog Posts
- https://dev.to/peterdanwan/devlog-hacktoberfest-2024-14-23b
- https://dev.to/peterdanwan/devlog-hacktoberfest-2024-24-32ja
- https://dev.to/peterdanwan/devlog-hacktoberfest-2024-34-44f
- https://dev.to/peterdanwan/devlog-hacktoberfest-2024-44-k2m
- https://dev.to/peterdanwan/hacktoberfest-2024-a-retrospective-3a7c
uday-rana - Uday Rana
Issues
- intel/cve-bin-tool/issues/4458
- planetarium/libplanet/issues/3955
- ghostfolio/ghostfolio/issues/3808
- bytechefhq/bytechef/issues/1645
Pull Requests
- intel/cve-bin-tool/pull/4464
- planetarium/libplanet/pull/3957
- ghostfolio/ghostfolio/pull/3897
- bytechefhq/bytechef/pull/1656
Blog Posts
- First Contribution
- Finally Contributing Actual Code to Open Source
- Jumping Into The Deep End
- Dipping Into a Java Project
- My Hacktoberfest 2024 Recap
lilyhuang-github - Lily Huang
Issues
- https://github.com/BurkusCat/r6-operator-counters/issues/207
- https://github.com/BurkusCat/r6-operator-counters/issues/176
- https://github.com/City-Bureau/city-scrapers/issues/728
Pull Requests
- https://github.com/BurkusCat/r6-operator-counters/pull/249
- https://github.com/BurkusCat/r6-operator-counters/pull/250
- https://github.com/City-Bureau/city-scrapers/pull/1131
Blog Posts
- https://vriskaserket2.wordpress.com/2024/09/25/pr-1/
- https://vriskaserket2.wordpress.com/2024/10/11/pr-2/
- https://vriskaserket2.wordpress.com/2024/10/04/pr3/
- https://vriskaserket2.wordpress.com/2024/11/04/pr-overview/
arilloid - Arina Kolodeznikova
Issues
- https://github.com/sparshg/battleship/issues/18
- https://github.com/mattermost/docs/issues/7458
- https://github.com/ohcnetwork/care/issues/2528
- https://github.com/SandeepVashishtha/Code-Editor/issues/16
Pull Requests
- https://github.com/sparshg/battleship/pull/19
- https://github.com/mattermost/docs/pull/7463
- https://github.com/ohcnetwork/care/pull/2547
- https://github.com/SandeepVashishtha/Code-Editor/pull/17
Blog Posts
- https://dev.to/arilloid/hacktoberfest-2024-1st-contribution-34i2
- https://dev.to/arilloid/hacktoberfest-2024-2nd-contribution-1med
- https://dev.to/arilloid/hacktoberfest-2024-3rd-contribution-l7l
- https://dev.to/arilloid/hacktoberfest-2024-last-contribution-recap-337h
HTSagara - Henrique Sagara
Issues
- https://github.com/neomjs/neo/issues/5976
- https://github.com/shardeum/validator-dashboard/issues/39
- https://github.com/manascb1344/Online-Auction-System/issues/9
Pull Requests
- https://github.com/neomjs/pages/pull/5
- https://github.com/neomjs/neo/pull/6021
- https://github.com/shardeum/validator-dashboard/pull/40
- https://github.com/manascb1344/Online-Auction-System/pull/15
Blog Posts
- https://dev.to/htsagara/hacktoberfest-week-1-f8j
- https://dev.to/htsagara/hacktoberfest-week-2-shardeum-validator-dashboard-dl
- https://dev.to/htsagara/hacktoberfest-week-3-online-auction-system-4knp
TheoForger - Theo
Issues
- https://github.com/domferr/tilingshell/issues/122
- https://github.com/mattermost/mattermost/issues/28408
- https://github.com/distrochooser/distrochooser/issues/318
Pull Requests
- https://github.com/distrochooser/distrochooser/pull/316
- https://github.com/distrochooser/distrochooser/pull/320
- https://github.com/domferr/tilingshell/pull/151
- https://github.com/mattermost/mattermost-mobile/pull/8260
- https://github.com/mattermost/mattermost-mobile/pull/8278
Blog Posts
- https://dev.to/theoforger/hacktoberfest-week-1-2c13
- https://dev.to/theoforger/hacktoberfest-week-2-72k
- https://dev.to/theoforger/hacktoberfest-week-3-4ild
- https://dev.to/theoforger/hacktoberfest-week-4-4bo1
- https://dev.to/theoforger/hacktoberfest-racap-8cc
AnhChienVu - Anh Chien Vu
Issues
- https://github.com/LakshmiSowmya04/GradLink/issues/8
- https://github.com/monyasau/PolyShare/issues/3
- https://github.com/jaiyankargupta/GitExplorer/issues/2
- https://github.com/zero-to-mastery/ZTM-Quest/issues/3
- https://github.com/zer0tonin/Mikochi/issues/18
Pull Requests
- https://github.com/LakshmiSowmya04/GradLink/pull/35
- https://github.com/monyasau/PolyShare/pull/4
- https://github.com/jaiyankargupta/GitExplorer/pull/19
- https://github.com/zero-to-mastery/ZTM-Quest/pull/89
- https://github.com/zer0tonin/Mikochi/pull/23
Blog Posts
- https://dev.to/anhchienvu/my-first-small-start-in-hacktoberfest-2024-1pa3
- https://dev.to/anhchienvu/hacktoberfest-week-2-diving-deeper-into-code-contributions-12g1
- https://dev.to/anhchienvu/open-source-achievement-completing-my-third-pr-in-hacktoberfest-42ja
- https://dev.to/anhchienvu/open-source-open-doors-wrapping-up-hacktoberfest-2024-2foi
hpatel292-seneca - Harshil Patel
Issues
- https://github.com/tarasglek/chatcraft.org/issues/675
- https://github.com/Canner/WrenAI/issues/706
- https://github.com/zero-to-mastery/ZTM-Quest/issues/142
- https://github.com/planetarium/libplanet/issues/3781
Pull Requests
- https://github.com/tarasglek/chatcraft.org/pull/690
- https://github.com/Canner/WrenAI/pull/745
- https://github.com/zero-to-mastery/ZTM-Quest/pull/153
- https://github.com/planetarium/libplanet/pull/3972
Blog Posts
- https://dev.to/harshil_patel/first-open-source-project-for-hacktoberfest-2024-45al
- https://dev.to/harshil_patel/hacktoberfest-24-pr-to-big-open-source-repo-72k
- https://dev.to/harshil_patel/hacktoberfest-34-contributing-to-ztm-quest-1agb
- https://dev.to/harshil_patel/hacktoberfest-44-the-final-pr-p08
- https://dev.to/harshil_patel/hacktoberfest-2024-my-journey-and-key-learnings-5h4k
cduarte3 - Christian Duarte
Issues
- https://github.com/admiralorbiter/EngageKC/issues/9
- https://github.com/narasimha-1511/travel-planner-app/issues/1
- https://github.com/onlook-dev/onlook/issues/549
- https://github.com/codethesaurus/codethesaur.us/issues/736#issue-2436514141
Pull Requests
- https://github.com/admiralorbiter/EngageKC/pull/16
- https://github.com/narasimha-1511/travel-planner-app/pull/2
- https://github.com/onlook-dev/onlook/pull/572
- https://github.com/codethesaurus/codethesaur.us/pull/762#issue-2627255281
Blog Posts
- https://dev.to/cduarte3/release-02-hacktoberfest-week-1-2pnp
- https://dev.to/cduarte3/hacktoberfest-week-2-1na4
- https://dev.to/cduarte3/hacktoberfest-week-3-1fbp
- https://dev.to/cduarte3/hacktoberfest-week-4-1m
Add00 - Adam Davis
Issues
- https://github.com/admiralorbiter/EngageKC/issues/18
- https://github.com/codethesaurus/codethesaur.us/issues/739
- https://github.com/litecanvas/game-engine/issues/8
- https://github.com/litecanvas/game-engine/issues/9
Pull Requests
- https://github.com/admiralorbiter/EngageKC/pull/17
- https://github.com/codethesaurus/codethesaur.us/pull/761
- https://github.com/litecanvas/game-engine/pull/81
- https://github.com/litecanvas/game-engine/pull/84
Blog Posts
- https://dev.to/add00_3/hackoberfest-part-1-1b8j
- https://dev.to/add00_3/hackoberfest-part-2-3mbc
- https://dev.to/add00_3/hackoberfest-part-3-3id2
- https://dev.to/add00_3/hackoberfest-part-4-2gh1
aldrin312 - Aldrin Fernandez
Issues
- https://github.com/swamimalode07/SimonsaysGame/issues/51
- https://github.com/swamimalode07/SimonsaysGame/issues/60
- https://github.com/whtrapp/whtrapp.github.io/issues/18
- https://github.com/anjalit03/Dazzle-and-Delight/issues/37
Pull Requests
- https://github.com/swamimalode07/SimonsaysGame/pull/54
- https://github.com/swamimalode07/SimonsaysGame/pull/61
- https://github.com/whtrapp/whtrapp.github.io/pull/35
- https://github.com/anjalit03/Dazzle-and-Delight/pull/52
Blog Posts
- https://dev.to/aldrin312/hacktoberfest-first-pull-request-1040
- https://dev.to/aldrin312/hacktoberfest-2nd-pull-request-ihk
- https://dev.to/aldrin312/3rd-pull-request-hacktoberfest-5cm6
- https://dev.to/aldrin312/4th-pull-request-hacktoberfest-2hoi
mpa-LHutchinson - Liam Hutchinson
Issues
- https://github.com/computerclubkec/computerclubkec.github.io/issues/59
- https://github.com/InDieTasten/ASCII-mate/issues/35
- https://github.com/bodonovan/wordle_cheat/issues/3
- https://github.com/jessesimpson36/yamldifftool/issues/1
Pull Requests
- https://github.com/computerclubkec/computerclubkec.github.io/pull/61
- https://github.com/InDieTasten/ASCII-mate/pull/41
- https://github.com/bodonovan/wordle_cheat/pull/4
- https://github.com/jessesimpson36/yamldifftool/pull/5
- (other PRs) https://github.com/TheBaljitSingh/Apna-Blog-Frontend/pull/2, https://github.com/noskofficial/noskofficial.github.io/pull/79, https://github.com/One-Zero-Code/ngx-toastr-message/pull/19,
Blog Posts
- https://dev.to/mpalhutchinson/week-5-hacktoberfest-pull-request-1-5h64
- https://dev.to/mpalhutchinson/week-7-hacktoberfest-pull-request-2-5dh9
- https://dev.to/mpalhutchinson/week-8-hacktoberfest-pull-request-3-dn4
- https://dev.to/mpalhutchinson/week-9-hacktoberfest-pull-request-4-55al
ajogseneca - Ajo George
Issues
Pull Requests
Blog Posts
- https://dev.to/ajogseneca/getting-involved-in-hacktoberfest--4564
- https://dev.to/ajogseneca/diving-into-open-source-part-2-30gb
- https://dev.to/ajogseneca/diving-into-open-source-part-3-nl9
- https://dev.to/ajogseneca/diving-into-open-source-final-part-and-recap-44lp
Tasbi03 - Tasbi Tasbi
Issues
Pull Requests
- Pull Request-1
- Pull Request-2
- Pull Request-3
- Pull Request-4
- Pull Request-5.1
- Pull Request-5.2
- Pull Request-5.3
Blog Posts
MadhurSaluja - Madhur Saluja
Issues
Pull Requests
Blog Posts
vinhyan - Vinh Nhan
Issues
Pull Requests
- Week 1 - Pull Request 18
- Week 2 - Pull Request 22
- Week 3 - Pull Request 370
- Week 4 - Pull Request 985
Blog Posts
aamfahim - Abdullah Al Mamun Fahim
Issues
- https://github.com/0xflotus/valid-gtin/issues/81
- https://github.com/mattermost/docs/issues/7459
- https://github.com/erxes/erxes/issues/5701
Pull Requests
- https://github.com/0xflotus/valid-gtin/pull/84
- https://github.com/mattermost/docs/pull/7466
- https://github.com/erxes/erxes/pull/5706
Blog Posts
- https://dev.to/aamfahim/hacktoberfest-week-1-59f4
- https://dev.to/aamfahim/hacktoberfest-week-2-31oa
- https://dev.to/aamfahim/hacktoberfest-week-3-634
- https://dev.to/aamfahim/hacktoberfest-week-4-5172
- https://dev.to/aamfahim/hacktoberfest-recap-4im1
gitdevjin - Hyunjin Shin
Issues
- https://github.com/expressjs/cookie-parser/issues/112
- https://github.com/ozkary/UISpark/issues/1
- https://github.com/devlup-labs/dev-playground/issues/14
- https://github.com/tarasglek/chatcraft.org/issues/655
Pull Requests
- https://github.com/expressjs/cookie-parser/pull/113
- https://github.com/ozkary/UISpark/pull/2
- https://github.com/devlup-labs/dev-playground/pull/22
- https://github.com/tarasglek/chatcraft.org/pull/705
Blog Posts
Fahad-Ali-Khan-ca - Fahad ALi Khan
Issues
Pull Requests
Blog Posts
- Adding Comprehensive Test Cases for Bitwise Operations in Theoretica
- Implementing the Dancing Links (DLX) Algorithm for Exact Cover in C
- Enhancing the Shortlist Modal in Recruitify
- Improving-documentation-in-theoretica
mayank-Pareek - Mayank Kumar
Issues
- https://github.com/tldr-pages/tldr/issues/14000
- https://github.com/denoland/deno/issues/24236
- https://github.com/cieslarmichal/faker-cxx/issues/898
- https://github.com/0xflotus/valid-gtin/issues/109
Pull Requests
- https://github.com/tldr-pages/tldr/pull/14262
- https://github.com/denoland/deno/pull/26534
- https://github.com/cieslarmichal/faker-cxx/pull/970
- https://github.com/0xflotus/valid-gtin/pull/113
Blog Posts
- https://dev.to/mayankpareek/my-first-hacktoberfest-pull-request-3m2
- https://dev.to/mayankpareek/my-contribution-to-deno-20-48mg
- https://dev.to/mayankpareek/my-third-hacktoberfest-pr-adding-locale-support-to-faker-c-3p7c
- https://dev.to/mayankpareek/adding-workflow-filters-to-valid-gtin-48bl
- Hacktoberfest-Recap
Rong Chen - Rong Chen
Issues
Pull Requests
Blog Posts
InderParmar - Inderpreet Singh Parmar
Issues
- https://github.com/AdityaSinha2305/ForkTheCaptcha/issues/96
- https://github.com/harshmangalam/event-blend-frontend/issues/112
- https://github.com/microsoft/torchgeo/issues/2364
- https://github.com/rodrigoea/my-notion-journal/issues/3
Pull Requests
- https://github.com/AdityaSinha2305/ForkTheCaptcha/pull/100
- https://github.com/harshmangalam/event-blend-frontend/pull/115
- https://github.com/microsoft/torchgeo/pull/2376
- https://github.com/rodrigoea/my-notion-journal/pull/4
Blog Posts
- https://dev.to/inderpreet/adding-a-signup-feature-in-login-page-issue-96-1ep9
- https://dev.to/inderpreet/fixing-the-get-started-link-in-event-blend-frontend-24fb
- https://dev.to/inder4code/my-first-open-source-contribution-microsoft-542c
- https://dev.to/inder4code/open-source-working-on-task-migration-for-nested-checkboxes-1b11
- https://dev.to/inder4code/final-blog-my-hacktoberfest-journey-four-prs-countless-lessons-44cl
mull028 - Amir Mullagaliev
Issues
- https://github.com/aspl-lang/aspl/issues/3
- https://github.com/JabRef/jabref/issues/11997#issuecomment-2426291302
- https://github.com/py-pdf/pdfly/issues/63
- https://github.com/py-pdf/pdfly/issues/64
Pull Requests
- https://github.com/aspl-lang/aspl/pull/4
- https://github.com/JabRef/jabref/pull/12022
- https://github.com/py-pdf/pdfly/pull/65
- https://github.com/py-pdf/pdfly/pull/67
Blog Posts
- https://dev.to/amullagaliev/first-hacktoberfest-experience-n7p
- https://dev.to/amullagaliev/hard-times-2e5a
- https://dev.to/amullagaliev/take-smaller-tasks-ibb
- https://dev.to/amullagaliev/last-contribution-for-hacktoberfest-162
- https://dev.to/amullagaliev/bye-bye-hacktoberfest-3lfn
KrinsKumar - Krinskumar Vaghasia
Issues
- https://github.com/dmotts/yt-to-cloud-uploader/issues/43
- https://github.com/dscnsec/Stake-frontend-clone/issues/7
- https://github.com/TejasNasre/nexmeet/issues/217
- https://github.com/u-ways/logging-http-client/issues/11
Pull Requests
- https://github.com/dmotts/yt-to-cloud-uploader/pull/53
- https://github.com/dscnsec/Stake-frontend-clone/pull/8
- https://github.com/TejasNasre/nexmeet/pull/234
- https://github.com/u-ways/logging-http-client/pull/21
Blog Posts
- https://dev.to/krinskumar/hacktoberfest-my-first-pr-47gk
- https://dev.to/krinskumar/second-contributions-for-hacktoberfest-56j6
- https://dev.to/krinskumar/iiird-merge-in-hacktoberfest-f15
- https://dev.to/krinskumar/4th-and-final-hacktoberfest-4cpk
- https://dev.to/krinskumar/hacktoberfest-completed-i7o