Skip to content

release 0.2

bhavik001 edited this page Nov 27, 2023 · 132 revisions

Release 0.2

Due Date

Tuesday 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 Monday 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. 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:

  1. 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)
  2. 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.
  3. Look at the open source projects that previous Seneca students worked on during Hacktoberfest in 2018, 2019, 2020, 2021, 2022.
  4. 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.
  5. You should avoid projects that are abandoned or no longer actively maintained. Pick active projects, where you can get your work merged.
  6. 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:

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:


GitHubUserName - Student Name

Issues
Pull Requests
  1. https://github.com/example/pull/1
  2. https://github.com/example2/pull/2
  3. https://github.com/example3/pull/3
  4. https://github.com/example4/pull/4
Blog Posts
  1. https://student.blog.com/hacktoberfest-week-one
  2. https://student.blog.com/hacktoberfest-week-two
  3. https://student.blog.com/hacktoberfest-week-three
  4. https://student.blog.com/hacktoberfest-week-four
  5. https://student.blog.com/hacktoberfest-recap

sdthaker - Soham Thaker

Issues
Pull Requests
  1. https://github.com/nkronlage/JavaScripture/pull/40
  2. https://github.com/mgreiler/se-unlocked/pull/182
  3. 2 PRs were part of the 3rd PR
    1. https://github.com/Esri/esri-leaflet-vector/pull/201
    2. https://github.com/Esri/esri-leaflet-vector/pull/202
  4. 3 PRs were part of the 4th PR
    1. https://github.com/Curio-org/Curio/pull/50
    2. https://github.com/Curio-org/Curio/pull/51
    3. https://github.com/Curio-org/Curio/pull/57
Blog Posts
  1. https://dev.to/soham-thaker/my-first-ever-hacktoberfest-contribution-14aa
  2. https://dev.to/soham-thaker/hacktoberfest-pr-2-5e1e
  3. https://dev.to/sdthaker/hacktoberfest-pr-3-5a3n
  4. https://dev.to/soham-thaker/hacktoberfest-pr-4-2pbb
  5. https://dev.to/sdthaker/hacktoberfest-recap-494k

avelynhc - Hyunjeong Choi

Issues
Pull Requests
  1. https://github.com/IshaanAdarsh/ezmail/pull/43
  2. https://github.com/Seneca-CDOT/telescope/pull/3836
  3. https://github.com/prasenjeet-symon/intellectia/pull/150
  4. https://github.com/swiftwave-org/dashboard/pull/47
Blog Posts
  1. https://dev.to/avelynhc/hacktoberfest-01-1863
  2. https://dev.to/avelynhc/hacktoberfest-02-5e7c
  3. https://dev.to/avelynhc/hacktoberfest-03-16mb
  4. https://dev.to/avelynhc/hacktoberfest-04-4lap
  5. https://dev.to/avelynhc/hacktoberfest-final-recap-373g

Namatuzio - Nicolas Amatuzio

Issues
Pull Requests
  1. https://github.com/bhargavnova/python-helper-modules/pull/22
  2. https://github.com/KriteshTimsina/Wassupbroo-Chat-App/pull/3
  3. https://github.com/TheShiveshNetwork/Pokedex/pull/13
  4. https://github.com/TheShiveshNetwork/Pokedex/pull/17
Blog Posts
  1. https://dev.to/namatuzio/contributing-to-the-community-hacktoberfest-pr-1-2f96
  2. https://dev.to/namatuzio/contributing-to-the-community-hacktoberfest-pr-2-48j6
  3. https://dev.to/namatuzio/contributing-to-the-community-hacktoberfest-pr-3-5a61
  4. https://dev.to/namatuzio/contributing-to-the-community-hacktoberfest-pr-4-450k
  5. https://dev.to/namatuzio/post-hacktoberfest-recap-3dfn

pbelokon - Pavel Belokon

Issues
Pull Requests
  1. https://github.com/Would-You-Bot/website/pull/55
  2. https://github.com/manancodes/Screenbows/pull/31
  3. https://github.com/intel/cve-bin-tool/pull/3469
  4. https://github.com/Santhoshmani1/Clear-Space/pull/5
Blog Posts
  1. https://dev.to/pbelokon/first-hacktoberfest-pr-4c0c
  2. https://dev.to/pbelokon/a-new-hacktoberfest-pr-2lc4
  3. https://dev.to/pbelokon/contributting-to-a-bigger-backtoberfest-project-3295
  4. https://dev.to/pbelokon/my-last-pr-for-my-first-hacktoberfest-26o9
  5. https://dev.to/pbelokon/my-first-hacktoberfest-9b1

Yousef-Majidi - Yousef Majidi

Issues
Pull Requests
  1. Update parameters in documentation #35
  2. Episode 47 Transcript Improvement #192
  3. Modify ExportedAt to include date + time #12
  4. Remove retry rule in FtpClient.cs #212
Blog Posts
  1. Good First Issue
  2. Hacktoberfest: Week 2
  3. Hacking Away in Week 3 of Hacktoberfest
  4. Last Week of Hacktoberfest
  5. Hacktoberfest 2023: Recap

Amnish04 - Amnish Singh Arora

Issues
Pull Requests
  1. Add CI workflow for the project #5
  2. Add custom validation to form
  3. Add a feature to skip questions, and later come back at them
  4. Fix viewport scroll bug #271
  5. Bonus PR: Rate Limit Kuru Squash #19
Blog Posts
  1. Happy Hactoween 🎃
  2. My second Hacktoberfest PR!
  3. Adding a real feature to a project 🧛
  4. No backing away when hacking away 🎃🚀
  5. Hacktoberfest 2023 Recap

omalk98 - Omar Hussein

Issues
Pull Requests
  1. https://github.com/mgreiler/se-unlocked/pull/189
  2. https://github.com/highlightjs/highlight.js/pull/3883
  3. https://github.com/Curio-org/Curio/pull/70
  4. https://github.com/validatorjs/validator.js/pull/2330
Blog Posts
  1. https://dev.to/omalk98/hacktoberfest-pr-1-lgj
  2. https://dev.to/omalk98/hacktoberfest-pr-2-56n0
  3. https://dev.to/omalk98/hacktoberfest-pr-3-4l0i
  4. https://dev.to/omalk98/hacktoberfest-pr-4-1e2f
  5. https://dev.to/omalk98/hacktoberfest-recap-1pon

seog-jun - Seog-Jun Hong

Issues
Pull Requests
  1. https://github.com/eduardconstantin/storybook-gpt/pull/9
  2. https://github.com/samratghosh291/Musicia/pull/45
  3. https://github.com/movesthatmatter/movex/pull/170
  4. https://github.com/codu-code/codu/pull/562
Blog Posts
  1. https://dev.to/seogjun/2023-hacktoberfest-1-3gnb
  2. https://dev.to/seogjun/2023-hacktoberfest-2-53ei
  3. https://dev.to/seogjun/2023-hacktoberfest-3-4ion
  4. https://dev.to/seogjun/2023-hacktoberfest-4-126e
  5. https://dev.to/seogjun/2023-hacktoberfest-recap-4i93

WangGithub0 - Yumei Wang

Issues
Pull Requests
  1. https://github.com/mfranzon/mojo-is-awesome/pull/11
  2. https://github.com/movesthatmatter/movex/pull/81
  3. https://github.com/Aiven-Open/klaw-docs/pull/136
  4. https://github.com/harshmangalam/qwik-x/pull/67
Blog Posts
  1. https://dev.to/wanggithub0/my-first-pull-request-in-hacktoberfest23-34d5
  2. https://dev.to/wanggithub0/my-second-hacktoberfest-pr-158a
  3. https://dev.to/wanggithub0/third-pull-request-in-hacktoberfest23-4oic
  4. https://dev.to/wanggithub0/my-forth-pull-request-in-hacktoberfest23-5gf8
  5. https://dev.to/wanggithub0/my-hacktoberfest23-journey-gp8

rjwignar - Roy J. Wignarajah

Issues
Pull Requests
  1. https://github.com/doodlum/skyrim-community-shaders/pull/119
  2. https://github.com/GudBoiNero/PrimedKeys/pull/41
  3. https://github.com/inclinedadarsh/timeloom/pull/18
  4. https://github.com/ZeroIntensity/view.py/pull/73
Blog Posts
  1. https://dev.to/rjwignar/hacktoberfest-skyrim-community-shaders-5553
  2. https://dev.to/rjwignar/hacktoberfest-2-primedkeys-imgui-bugfix-3d2p
  3. https://dev.to/rjwignar/hacktoberfest-3-timeloom-typescript-h10
  4. https://dev.to/rjwignar/hacktoberfest-4-viewpy-linting-and-static-type-checking-5f9g
  5. https://dev.to/rjwignar/my-first-hacktoberfest-hacktoberfest-2023-recap-pd4

mismathh - Muzzammil Ismathhimam

Issues
Pull Requests
  1. https://github.com/X-Evolve/Python_Hunt/pull/29
  2. https://github.com/Leo5661/Starwar-Archive/pull/13
  3. https://github.com/mgreiler/se-unlocked/pull/198
  4. https://github.com/Leo5661/Starwar-Archive/pull/14
Blog Posts
  1. https://dev.to/mismathh/first-pull-request-in-hacktoberfest23-4j8d
  2. https://dev.to/mismathh/2nd-pull-request-in-hacktoberfest23-3gmj
  3. https://dev.to/mismathh/3rd-pull-request-in-hacktoberfest23-34gf
  4. https://dev.to/mismathh/4th-pull-request-in-hacktoberfest23-4f0j
  5. https://dev.to/mismathh/recap-of-my-first-hacktoberfest-2pdj

mnajibi - Maryam Najibi

Issues
Pull Requests
  1. https://github.com/unoplatform/uno/pull/13945
  2. https://github.com/mgreiler/se-unlocked/pull/195
  3. https://github.com/Curio-org/Curio/pull/67
  4. https://github.com/theinit01/portscanner/pull/21
Blog Posts
  1. https://dev.to/mnajibi/my-journey-with-removing-empty-methods-in-uno-platform-g48
  2. https://dev.to/mnajibi/my-adventure-helping-to-make-a-podcast-transcript-better-3i5p
  3. https://dev.to/mnajibi/from-issue-to-experience-my-journey-contributing-to-curio-3450
  4. https://dev.to/mnajibi/making-the-python-port-scanner-more-user-friendly-1bo4
  5. https://dev.to/mnajibi/my-open-source-adventure-a-friendly-recap-473p

Rachit1313 - Rachit Chawla

Issues
Pull Requests
  1. https://github.com/rcallaby/Learn-Git/pull/155
  2. https://github.com/Pranavnk15/Todo-List/pull/24
  3. https://github.com/Pranavnk15/Todo-List/pull/27
  4. https://github.com/corners2wall/Skyscraper/pull/5
  5. Bonus Issue: https://github.com/AhsanAyaz/slides/pull/15
Blog Posts
  1. https://dev.to/rachit1313/my-first-pr-to-hacktoberfest-3ifi
  2. https://dev.to/rachit1313/my-halfway-to-hacktoberfest-2nd-pull-request-42og
  3. https://dev.to/rachit1313/navigating-challenges-in-open-source-my-hacktoberfest-journey-continues-pr-3-4an8
  4. https://dev.to/rachit1313/my-hacktoberfest-journey-my-last-contribution-33d1
  5. Bonus PR's Blog: https://dev.to/rachit1313/hacktoberfest-bonus-pr-5-2hm1
  6. https://dev.to/rachit1313/hacktoberfest-the-journey-recap-1618

rabroldan - Ronald Roldan

Issues
Pull Requests
  1. Added an enhancement - issue 366 to add a download all if no argument
  2. Enhancement issue 108 added a verification when deleting a user
  3. MESSY PR1 , MESSY PR2, CORRECT PR1
  4. updated clone cmd to cp #137
  5. updating docstring with formatted with black. requesting new PR for version_scanner.py
Blog Posts
  1. It was not "Good First Issue"
  2. It's not quite there yet..
  3. I knew a boy who made all the wrong choices
  4. The Tale of the Shadow Copy Jutsu!
  5. It's OVER 9000!!!
  6. HACKTOBERFEST 2023

Vishnudas2003 - Vishnu Das Puthukudi

Issues
Pull Requests
  1. Added TLDR Page for 'aks' Command (Azure Kubernetes Service)
  2. PULL 101
  3. PULL 13
  4. Add feature to get Weekly Forecast
Blog Posts
  1. A better Start with "Good first issue"
  2. My Hacktoberfest Journey - Adding Quotes to QuoteVerse
  3. Implementing Rate Limiting in PyFuzz
  4. Enhancing the Weather App with Weekly Forecasts
  5. Hacktober-fest recap4

kliu57 - Katie Liu

Issues
Pull Requests
  1. https://github.com/mohiwalla/dtquick/pull/5
  2. https://github.com/mazipan/tanyaaja/pull/67
  3. https://github.com/UjjwalSharma01/checklist/pull/48
  4. https://github.com/mazipan/tanyaaja/pull/123
Blog Posts
  1. https://dev.to/katiel/hacktoberfest-week-1-pr-423
  2. https://dev.to/katiel/hacktoberfest-week-2-pr-3b0f
  3. https://dev.to/katiel/hacktoberfest-week-3-pr-jjj
  4. https://dev.to/katiel/hacktoberfest-week-4-pr-15dm
  5. https://dev.to/katiel/hacktoberfest-recap-10kl

mingming-ma - Mingming Ma

Issues
Pull Requests
  1. https://github.com/ant-design/ant-design/pull/45164
  2. https://github.com/ant-design/ant-design/pull/45314
  3. https://github.com/mozilla-mobile/firefox-ios/pull/16925
  4. https://github.com/tarasglek/chatcraft.org/pull/267
Blog Posts
  1. https://dev.to/mingming-ma/my-prs-to-ant-design-pr1-3j8l
  2. https://dev.to/mingming-ma/my-prs-to-ant-design-pr2-l6
  3. https://dev.to/mingming-ma/my-pr-to-firefox-ios-4eji
  4. https://dev.to/mingming-ma/my-pr-to-chatcraftorg-4kc8
  5. https://dev.to/mingming-ma/october-recap-my-contributions-and-learnings-480o

paulkim26 - Paul Seung Kyung Kim

Issues
Pull Requests
  1. https://github.com/movesthatmatter/movex/pull/148
  2. https://github.com/avikantz/ikea-word-games/pull/40
  3. https://github.com/avikantz/ikea-word-games/pull/42
  4. https://github.com/Yureien/YABin/pull/29
Blog Posts
  1. https://dev.to/paulkim26/hacktoberfest-week-1-33hh
  2. https://dev.to/paulkim26/hacktoberfest-week-2-4648
  3. https://dev.to/paulkim26/hacktoberfest-week-3-49id
  4. https://dev.to/paulkim26/hacktoberfest-week-4-ad2
  5. https://dev.to/paulkim26/hacktoberfest-recap-1i9m

Pasqua101 - Marco Pasqua

Issues
  1. https://github.com/theritikchoure/headx/issues/10#issuecomment-1755752767
  2. https://github.com/SarthakKeshari/calc_for_everything/issues/346
  3. https://github.com/SarthakKeshari/calc_for_everything/issues/461 (Repo Owner Denied The Issue)
  4. https://github.com/SarthakKeshari/calc_for_everything/issues/531
Pull Requests
  1. https://github.com/theritikchoure/headx/pull/11
  2. https://github.com/SarthakKeshari/calc_for_everything/pull/369
  3. https://github.com/seths10/Quotes-Generator/pull/191
  4. https://github.com/SarthakKeshari/calc_for_everything/pull/535
Blog Posts
  1. https://dev.to/pasqua101/first-pull-request-of-hacktoberfest-1c1j
  2. https://dev.to/pasqua101/second-issue-of-hacktoberfest-17j7
  3. https://dev.to/pasqua101/third-hacktoberfest-pr-3978
  4. https://dev.to/pasqua101/last-pr-of-hacktoberfest-5dce
  5. https://dev.to/pasqua101/summary-of-hacktoberfest-45ke

bryce-seefieldt - Bryce Seefieldt

Issues
  1. https://github.com/nodejs/node/issues/50368

  2. https://github.com/hammadsaedi/regex-pro/issues/6

  3. https://github.com/pccoe-acm-hacktoberfest-2023/GDSC_tic-tac-toe/issues/2

  4. a. https://github.com/neokd/NeoGPT/issues/67

    b. https://github.com/neokd/NeoGPT/issues/43

Pull Requests
  1. https://github.com/nodejs/node/pull/50372

  2. https://github.com/hammadsaedi/regex-pro/pull/32

  3. https://github.com/pccoe-acm-hacktoberfest-2023/GDSC_tic-tac-toe/pull/8

  4. a. Closed as a duplicate issues; my work landed at 8d9a73d. Closed with PR69

    b. https://github.com/neokd/NeoGPT/pull/88

    c. https://github.com/neokd/NeoGPT/pull/86

Blog Posts
  1. https://dev.to/bseefieldt/hacktobers-very-own-491m
  2. https://dev.to/bseefieldt/hacktoberfest-progress-50jf
  3. https://dev.to/bseefieldt/hacktober-the-3rd-3l1e
  4. https://dev.to/bseefieldt/hacktoberrest-4oi5

jilesh980 - Jilesh Patel

Issues

  1. https://github.com/devjainofficial/React-Portfolio/issues/10
  2. https://github.com/ashish2675/100DaysOfCode/issues/3
  3. https://github.com/IshaanAdarsh/ezmail/issues/20

Pull Requests

  1. https://github.com/devjainofficial/React-Portfolio/pull/12
  2. https://github.com/ashish2675/100DaysOfCode/pull/11
  3. https://github.com/IshaanAdarsh/ezmail/pull/115

BLog Post

  1. https://dev.to/jilesh980/adding-dark-mode-button-4i5j

sshah135 - Shaily Shah

Issues

  1. https://github.com/bratergit/webSiteCreation/issues/11
  2. https://github.com/miljkovicjovan/minimalist-task-tracker/issues/16
  3. https://github.com/mermaid-js/mermaid/issues/4987
  4. https://github.com/artisticLogicMK/timelydiff/issues/5

Pull Requests

  1. https://github.com/bratergit/webSiteCreation/pull/12
  2. https://github.com/mermaid-js/mermaid/pull/4988
  3. https://github.com/artisticLogicMK/timelydiff/pull/6

Blog Post

  1. https://dev.to/sshah135/adding-more-code-to-websitecreation-296j
  2. https://dev.to/sshah135/enhancing-the-minimalist-tracker-readme-2l6m
  3. https://dev.to/sshah135/contributing-to-mermaid-github-4p2d
  4. https://dev.to/sshah135/contributing-to-timelydiff-5hbb
  5. https://dev.to/sshah135/summing-it-all-up-for-release-20-2kk

alikhan1998 - Sher Ali Khan

Issues

  1. https://github.com/yala/Mirai/pull/9
  2. https://github.com/alikhan1998/image-to-sound-python-/pull/1
  3. https://github.com/alikhan1998/BABLU-The-Smart-Calculator-Assistant/pull/1
  4. https://github.com/hassaanahmed04/Drowsiness-Detection-System/issues/1

Pull Request

  1. https://github.com/alikhan1998/image-to-sound-python-/pull/1
  2. https://github.com/alikhan1998/BABLU-The-Smart-Calculator-Assistant/pull/1
  3. https://github.com/yala/Mirai/pull/9

Blog Post

  1. https://dev.to/alikhan1998/refactoring-onconet-script-2fho
  2. https://dev.to/alikhan1998/multilingual-support-in-imagetosound-5bma
  3. https://dev.to/alikhan1998/adding-calculation-history-feature-187d
  4. https://dev.to/alikhan1998/refactoring-drowsiness-detection-system-479d

Amir Helali - Amirreza Helaliesfahani

Issues
Pull Requests
  1. https://github.com/Webwiznitr/Hacktoberfest-Tulip/pull/15
  2. https://github.com/dmitry-ivashenko/StatefulUI/pull/9
  3. https://github.com/NikolaBV/Console-Spendings-Calculator/pull/41
  4. https://github.com/TechStarHub/quotes/pull/4
Blog Posts
  1. https://dev.to/ahelali/late-hacktoberfest-part-l-1dbd
  2. https://dev.to/ahelali/late-hacktoberfest-part-ll-5a0o
  3. https://dev.to/ahelali/late-hacktoberfest-part-lll-dhc
  4. https://dev.to/ahelali/late-hacktoberfest-part-lv-cbj
  5. https://dev.to/ahelali/late-hacktoberfest-part-v-3e64

bhavik001 - Bhavikkumar Hemantbhai Mistry

Issues
Pull Requests
  1. https://github.com/Curio-org/Curio/pull/85
  2. https://github.com/godkingjay/turbo-nextui-starter/pull/3
  3. https://github.com/Isaiah-Hamilton/live-atc/pull/11
Blog Posts
  1. https://dev.to/bhmistry/my-journey-into-open-source-a-hactoberfest-contribution-to-curio-1e3o
  2. https://dev.to/bhmistry/navigating-the-open-source-seas-my-second-hactoberfest-contribution-to-turbo-nextui-starter-3em3
  3. https://dev.to/bhmistry/contributing-to-open-source-adding-prettier-feature-to-live-atc-cl
  4. https://dev.to/bhmistry/my-hacktoberfest-journey-a-recap-of-contributions-and-learnings-4k07

Clone this wiki locally