Skip to content

release 0.2

Devansh Shah edited this page Dec 11, 2020 · 314 revisions

Release 0.2

Due Date

Saturday October 31

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.

You can also read my blog posts about Seneca open source students doing Hacktoberfest:

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 are then asked to complete 4 pull requests during October, doing roughly 1 pull request per week. All 4 PRs must be completed by Saturday 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).

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 in a single project. 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 first.

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. Make sure you are picking issues from 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 with the following exceptions:

  1. You may not work on a student project, or a project for another class (e.g., I will not count PRs to the link checking repos from 0.1)
  2. You should avoid "Hacktoberfest" specific repos, which are created simply to allow people to create PRs. Pick real open source projects.
  3. You should avoid projects that are abandoned or no longer actively maintained. Pick active projects.
  4. You need to work on 3 different project repos during the month.

If you are unsure whether a repo or project is acceptable, ask your professor on Slack.

Weekly Labs and Blogging

Each week during October you will be asked to blog about your progress. The labs 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 can 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 their 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?

Finding Issues to Work on

Finding good issues takes time, so be patient and leave yourself plenty of time. Also be aware that there will be 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.

Submit a pull request for your fix, following all guidelines for the project (see their README and CONTRIBUTING 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.

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.

Requirements

You will be graded on the following. Please make sure you have addressed everything that makes sense below:

  • Four (4) proper 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)
  • 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.
  • Blog Posts for all Pull Requests
    • 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.

Submission

When you have completed all the requirements above, please add a section below following the given template, including all necessary links to issues, pull requests, and blog posts:


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

TDDR - Tim Roberts

Issues
  1. https://github.com/electron/apps/issues/1548
  2. https://github.com/theadd336/ThavalonWeb/issues/26
  3. https://github.com/FreeTubeApp/FreeTube/issues/573
  4. https://github.com/FreeTubeApp/FreeTube/issues/702
Pull Requests
  1. https://github.com/electron/apps/pull/1550
  2. https://github.com/theadd336/ThavalonWeb/pull/28
  3. https://github.com/FreeTubeApp/FreeTube/pull/716
  4. https://github.com/FreeTubeApp/FreeTube/pull/739
Blog Posts
  1. https://dps909tddr.tech.blog/hacktoberfest-0-2-0-my-first-real-world-contribution/
  2. https://dps909tddr.tech.blog/hacktoberfest-0-2-1-crisis-averted/
  3. https://dps909tddr.tech.blog/hacktoberfest-0-2-2-scrolling-around/
  4. https://dps909tddr.tech.blog/hacktoberfest-0-2-3-the-dynamic-title/
  5. https://dps909tddr.tech.blog/hacktoberfest-recap/

hyunjiLeeTech - Hyunji Lee

Issues
  1. https://github.com/ahampriyanshu/algo_ds_101/issues/697
  2. https://github.com/upsetdog/wanikani-notifier/issues/9
  3. https://github.com/MStewGT/FindMeBeer/issues/17
  4. https://github.com/AimeTPGM/traxing/issues/10
Pull Requests
  1. https://github.com/ahampriyanshu/algo_ds_101/pull/938
  2. https://github.com/upsetdog/wanikani-notifier/pull/10
  3. https://github.com/MStewGT/FindMeBeer/pull/20
  4. https://github.com/AimeTPGM/traxing/pull/17
Blog Posts
  1. https://hyunjijanelee.blogspot.com/2020/10/hacktoberfest-first-pull-request-tower.html
  2. https://hyunjijanelee.blogspot.com/2020/10/hacktoberfest-second-pull-request.html
  3. https://hyunjijanelee.blogspot.com/2020/10/hacktoberfest-third-pull-request.html
  4. https://hyunjijanelee.blogspot.com/2020/10/hacktoberfest-fourth-pull-request.html

HyperTHD - Abdulbasid Guled

Issues

  1. https://github.com/sabesansathananthan/React-GitHub-Resume/issues/1
  2. https://github.com/avinashkranjan/Amazing-Python-Scripts/issues/126
  3. https://github.com/dmodena/polyglot-registration/issues/13
  4. https://github.com/ayaqdop/frontend/issues/10

Pull Requests

  1. https://github.com/sabesansathananthan/React-GitHub-Resume/pull/12
  2. https://github.com/avinashkranjan/Amazing-Python-Scripts/pull/127
  3. https://github.com/dmodena/polyglot-registration/pull/28
  4. https://github.com/ayaqdop/frontend/pull/18

Blog Posts

  1. https://dev.to/hyperthd/hacktoberfest-pr-1-a-pr-almost-as-simple-as-typing-hello-world-1ijc
  2. https://dev.to/hyperthd/release-0-2-part-2-just-a-little-bit-more-1531
  3. https://dev.to/hyperthd/release-0-2-part-3-when-asking-to-work-on-an-issue-is-not-enough-1m8o
  4. https://dev.to/hyperthd/release-0-2-part-4-a-disappointing-end-to-an-otherwise-interesting-month-3lh9

Strawberries73 – Jennifer Croft

Issues
  1. https://github.com/NiallEccles/Hacktoberfest-animations/issues/294
  2. https://github.com/remoteintech/remote-jobs/issues/639
  3. https://github.com/aherd2985/UtilityBelt/issues/42
  4. https://github.com/alfg/opendrinks/issues/725
Pull Requests
  1. https://github.com/NiallEccles/Hacktoberfest-animations/pull/295
  2. https://github.com/remoteintech/remote-jobs/pull/816
  3. https://github.com/aherd2985/UtilityBelt/pull/95
  4. https://github.com/alfg/opendrinks/pull/998
Blog Posts
  1. https://dev.to/strawberries73/release-0-2-hacktoberfest-week-1-16p6
  2. https://dev.to/strawberries73/hacktoberfest-the-second-pr-4mag
  3. https://dev.to/strawberries73/hacktoberfest-the-3rd-prrrrrrr-hmmm-5a3p
  4. https://dev.to/strawberries73/the-final-pr-face-palm-worthy-what-a-disaster-2haj

IcemanEtika - Thomas-Jayrell LeBlanc

Issues
  1. https://github.com/DavidMatthewFraser/easy-to-git/issues/194
  2. https://github.com/EnigmaVSSUT/Demo/issues/2
  3. https://github.com/chingu-voyages/moonshot-chingu-quiz/issues/108
  4. https://github.com/chingu-voyages/moonshot-chingu-quiz/issues/120
Pull Requests
  1. https://github.com/DavidMatthewFraser/easy-to-git/pull/197
  2. https://github.com/EnigmaVSSUT/Demo/pull/3
  3. https://github.com/chingu-voyages/moonshot-chingu-quiz/pull/109
  4. https://github.com/chingu-voyages/moonshot-chingu-quiz/pull/121
Blog Posts
  1. https://tjstavern24697521.wordpress.com/2020/10/08/hacktoberfest-week-1-working-on-a-webpage/
  2. https://tjstavern24697521.wordpress.com/2020/10/16/hacktoberfest-week-2-preparing-for-the-future/
  3. https://tjstavern24697521.wordpress.com/2020/10/25/hacktoberfest-week-3-one-letter-off/
  4. https://tjstavern24697521.wordpress.com/2020/10/31/hacktoberfest-week-4-grand-finale/
  5. https://tjstavern24697521.wordpress.com/2020/11/02/hacktoberfest-recap/

eunbeek - Eunbee Kim

Issues
  1. https://github.com/TheAlgorithms/Java/issues/1704
  2. https://github.com/EbookFoundation/free-programming-books/issues/4337
  3. https://github.com/30-seconds/30-seconds-of-code/issues/1683
  4. https://github.com/TheAlgorithms/Swift/issues/6
Pull Requests
  1. https://github.com/TheAlgorithms/Java/pull/1705
  2. https://github.com/EbookFoundation/free-programming-books/pull/4338
  3. https://github.com/30-seconds/30-seconds-of-code/pull/1684
  4. https://github.com/TheAlgorithms/Swift/pull/7
Blog Posts
  1. https://ekim105.wordpress.com/2020/10/09/hacktoberfest1-reported-small-bug/
  2. https://ekim105.wordpress.com/2020/10/17/hacktoberfest2-used-my-repository-to-check-the-bug-of-the-new-repo/
  3. https://ekim105.wordpress.com/2020/10/22/hacktoberfest3-not-necessary-but-not-bad-trial/
  4. https://ekim105.wordpress.com/2020/10/26/hacktoberfest4-swift-language-i-have-never-coded-before/

StellaJung-Student - Stella Jung

Issues
  1. https://github.com/claramiranda/PrevisaoDoTempo/issues/2
  2. https://github.com/mazipan/buku-saku-pramuka/issues/14
  3. https://github.com/mazipan/buku-saku-pramuka/issues/15
  4. https://github.com/Seneca-CDOT/telescope/issues/1221
Pull Requests
  1. https://github.com/claramiranda/PrevisaoDoTempo/pull/5
  2. https://github.com/mazipan/buku-saku-pramuka/pull/17
  3. https://github.com/mazipan/buku-saku-pramuka/pull/17
  4. https://github.com/Seneca-CDOT/telescope/pull/1253
Blog Posts
  1. https://sostellajung.blogspot.com/2020/10/exploring-to-open-source-world.html
  2. https://sostellajung.blogspot.com/2020/10/hactoberfest-is-very-competitive.html
  3. https://sostellajung.blogspot.com/2020/10/setting-coding-standard-for-javascript.html
  4. https://sostellajung.blogspot.com/2020/10/setting-coding-standard-for-javascript.html (the same as 2)
  5. https://sostellajung.blogspot.com/2020/10/getting-more-difficult.html

chrispinkney - Chris Pinkney

Issues
  1. https://github.com/ramboxapp/community-edition/issues/2828
  2. https://github.com/mjswensen/shoulders/issues/5
  3. https://github.com/revir/dictionaries/issues/20
  4. https://github.com/poundifdef/plainoldrecipe/issues/7
Pull Requests
  1. https://github.com/ramboxapp/community-edition/pull/2841
  2. https://github.com/mjswensen/shoulders/pull/8
  3. https://github.com/revir/dictionaries/pull/23
  4. https://github.com/poundifdef/plainoldrecipe/pull/43
Blog Posts
  1. https://dev.to/chrispinkney/release-0-2-1-or-how-hacktoberfest-ruins-everything-me-too-probably-9l2
  2. https://dev.to/chrispinkney/release-0-2-2-or-standing-on-the-shoulders-of-a-small-project-3op
  3. https://dev.to/chrispinkney/release-0-2-3-or-pivoting-by-a-beautiful-little-fool-378g
  4. https://dev.to/chrispinkney/release-0-2-4-or-these-english-muffins-keep-throwing-stuff-at-me-2ool
  5. https://dev.to/chrispinkney/release-0-2-recap-or-dunce-hat-hacking-4pld

egrinberg - Ekaterina Grinberg

Issues
  1. https://github.com/lsacera/KiuwanDeliveryAction/issues/1
  2. https://github.com/mdolr/survol/issues/116
  3. https://github.com/mdolr/survol/issues/130
  4. https://github.com/mattermost/mattermost-server/issues/15845
Pull Requests
  1. https://github.com/lsacera/KiuwanDeliveryAction/pull/2
  2. https://github.com/mdolr/survol/pull/134
  3. https://github.com/mdolr/survol/pull/133
  4. https://github.com/mattermost/mattermost-webapp/pull/6957
Blog Posts
  1. https://medium.com/@egrinberg/hacktoberfest-dps909-e9b97ce2b2ef
  2. https://egrinberg.medium.com/hacktoberfest-dps909-second-pr-9841a1e8be85
  3. https://egrinberg.medium.com/hacktoberfest-dps909-3rd-pr-c56fd059452d
  4. https://egrinberg.medium.com/hacktoberfest-dps909-4th-pr-3435b47a3c61

rogercyyu - Roger Yu

Issues
  1. https://github.com/samyakbambole/twitch-live-chat-history/issues/1
  2. https://github.com/drodil/rustybeer/issues/54
  3. https://github.com/o2sh/onefetch/issues/290
  4. https://github.com/samyakbambole/twitch-live-chat-history/issues/1
Pull Requests
  1. https://github.com/samyakbambole/twitch-live-chat-history/pull/18
  2. https://github.com/drodil/rustybeer/pull/80
  3. https://github.com/o2sh/onefetch/pull/295
  4. https://github.com/samyakbambole/twitch-live-chat-history/pull/29
Blog Posts
  1. https://ryudeveloper.wordpress.com/2020/10/09/release-0-2-first-public-pr/
  2. https://ryudeveloper.wordpress.com/2020/10/17/release-0-2-first-public-pr-2/
  3. https://ryudeveloper.wordpress.com/2020/10/25/release-0-2-third-public-pr/
  4. https://ryudeveloper.wordpress.com/2020/10/29/release-0-3-last-pr/
  5. https://ryudeveloper.wordpress.com/2020/10/29/release-0-2-recap-hacktoberfest/

1jz - Philip Golovin

Issues
  1. https://github.com/runelite/runelite/issues/12518
  2. https://github.com/runelite/runelite/issues/12467
  3. https://github.com/mattermost/mattermost-server/issues/16028
  4. https://github.com/drodil/rustybeer/issues/55
Pull Requests
  1. https://github.com/runelite/runelite/pull/12602
  2. https://github.com/runelite/runelite/pull/12651
  3. https://github.com/mattermost/mattermost-webapp/pull/6915
  4. https://github.com/drodil/rustybeer/pull/94
Blog Posts
  1. https://1jz.tech.blog/2020/10/09/my-first-contribution/
  2. https://1jz.tech.blog/2020/10/16/another-contribution-to-my-favourite-project/
  3. https://1jz.tech.blog/2020/10/30/contributing-to-big-projects/
  4. https://1jz.tech.blog/2020/10/30/back-to-comfy-small-projects/
  5. Wrap Up

joey2031 - Joseph Assal

Issues
  1. https://github.com/alucardthefish/CodeNowHere/issues/1
  2. https://github.com/aniketsharma00411/algorithmsUse/issues/1
  3. https://github.com/osmlab/name-suggestion-index/issues/4427
  4. https://github.com/YellowOSM/YellowOSM/issues/25
Pull Requests
  1. https://github.com/alucardthefish/CodeNowHere/pull/15
  2. https://github.com/aniketsharma00411/algorithmsUse/pull/117
  3. https://github.com/osmlab/name-suggestion-index/pull/4437
  4. https://github.com/YellowOSM/YellowOSM/pull/37
Blog Posts
  1. https://osd600-joey-assal.blogspot.com/2020/10/osd600-release-02-pr-1.html
  2. https://osd600-joey-assal.blogspot.com/2020/10/osd600-release-02-pr-2.html
  3. https://osd600-joey-assal.blogspot.com/2020/10/osd600-release-02-pr-3.html
  4. https://osd600-joey-assal.blogspot.com/2020/10/osd600-release-02-pr4.html

pyvelkov - Plamen Velkov

Issues
  1. https://github.com/skyreep/quest-fan-info/issues/1
  2. https://github.com/madmagic007/Oculus-Quest-Presence/issues/21
  3. https://github.com/Tithibots/tithif/issues/1 and https://github.com/Tithibots/tithiwa/issues/51
  4. https://github.com/Tithibots/tithiwa/issues/60
Pull Requests
  1. https://github.com/skyreep/quest-fan-info/pull/2
  2. https://github.com/madmagic007/Oculus-Quest-Presence/pull/22
  3. https://github.com/Tithibots/tithif/pull/3 and https://github.com/Tithibots/tithiwa/pull/65
  4. https://github.com/Tithibots/tithiwa/pull/69
Blog Posts
  1. https://plamenvelkovtech.blogspot.com/2020/10/release-021-entry-into-open-source.html
  2. https://plamenvelkovtech.blogspot.com/2020/10/release-022-entering-anothervirtual.html
  3. https://plamenvelkovtech.blogspot.com/2020/10/release-023-avoiding-boring-people-with.html
  4. https://plamenvelkovtech.blogspot.com/2020/10/release-024-more-pythonic-automation.html
  5. https://plamenvelkovtech.blogspot.com/2020/10/season-1-hacktoberfest-recap.html

NesaByte - Nesa Bertanico

Issues
  1. https://github.com/BetaPundit/Yoga-Guru/issues/8
  2. https://github.com/BetaPundit/Yoga-Guru/issues/10
  3. https://github.com/akshansh2000/learn_ar_flutter/issues/3
  4. https://github.com/MARCOSM-MARTINS/NASA_PICTURE_OF_THE_DAY/issues/1
Pull Requests
  1. https://github.com/BetaPundit/Yoga-Guru/pull/9
  2. https://github.com/BetaPundit/Yoga-Guru/pull/13
  3. https://github.com/akshansh2000/learn_ar_flutter/pull/16
  4. https://github.com/MARCOSM-MARTINS/NASA_PICTURE_OF_THE_DAY/pull/5
Blog Posts
  1. Hacktoberfest 1: Baby Steps - Adding a command on a README.md
  2. Hacktoberfest 2: Dart - Adding a FloatingActionButton
  3. Hacktoberfest 3: Dart - Adding a ThemeData
  4. Hacktoberfest 4: Dart – Created a theme and improved the look of the app
  5. Hactoberfest2020 – RECAP

lixiaoqity - Leon Li

Issues
  1. https://github.com/dpkp/kafka-python/issues/2125
  2. https://github.com/sanijalal/random-dessert-generator/issues/24
  3. https://github.com/tripathi-abhishek/screen-recorder/issues/1
  4. https://github.com/houseofgeeks/hg/issues/197
Pull Requests
  1. https://github.com/dpkp/kafka-python/pull/2138
  2. https://github.com/sanijalal/random-dessert-generator/pull/25
  3. https://github.com/tripathi-abhishek/screen-recorder/pull/2
  4. https://github.com/houseofgeeks/hg/pull/201
Blog Posts
  1. https://gonewiththewind1982.blogspot.com/2020/10/hacktoberfest-pull-request-1.html
  2. https://gonewiththewind1982.blogspot.com/2020/10/the-second-pull-request-for-release02.html
  3. https://gonewiththewind1982.blogspot.com/2020/10/the-third-pull-request-for-release02.html
  4. https://gonewiththewind1982.blogspot.com/2020/10/the-fourth-pull-request-for-release02.html

yuanLeeMidori - Yuan-Hsi Lee

Issues
  1. this and this
  2. https://github.com/infokiller/web-search-navigator/issues/91
  3. https://github.com/sindresorhus/refined-twitter/issues/197
  4. Issue1, Issue2, Issue3
Pull Requests
  1. https://github.com/drgn-hart/Countdown-Timer/pull/21
  2. https://github.com/infokiller/web-search-navigator/pull/221
  3. https://github.com/sindresorhus/refined-twitter/pull/198
  4. PR1, PR2a, PR2b, PR3
Blog Posts
  1. https://dev.to/yuanleemidori/hacktoberfest-week-1-l9j
  2. https://dev.to/yuanleemidori/hacktoberfest-week-2-to-be-continued-4hla
  3. https://dev.to/yuanleemidori/hacktoberfest-week-3-3m40
  4. https://dev.to/yuanleemidori/hacktoberfest-this-is-not-the-end-244g

sanji11 - Sanjida Afrin

Issues
  1. https://github.com/rico-projects/rico/issues/169
  2. https://github.com/Harvesthru-Inc/Harvesthru-Web/issues/30
  3. https://github.com/emberjs/ember.js/issues/18060
  4. https://github.com/grommet/grommet/issues/4651
Pull Requests
  1. https://github.com/rico-projects/rico/pull/171
  2. https://github.com/Harvesthru-Inc/Harvesthru-Web/pull/42
  3. https://github.com/emberjs/ember.js/pull/19229
  4. PR-1, PR-2, PR-3, PR-4
Blog Posts
  1. https://medium.com/@safrin2/first-pr-to-real-world-c8663e6ec2fa
  2. https://medium.com/@safrin2/first-time-fixing-bug-in-others-repo-a228fcebd17a
  3. https://medium.com/@safrin2/contribution-in-ember-60f3766f3970
  4. https://safrin2.medium.com/thank-you-hactoberfest-92506b798193

PedroFonsecaDEV - Pedro Antonio Fonseca Ferreira

Issues
  1. https://github.com/Seneca-CDOT/telescope/issues/974
  2. https://github.com/Seneca-CDOT/telescope/issues/1078
  3. https://github.com/shaun-chiang/storefront/issues/3
  4. https://github.com/microsoft/vscode/issues/109132
Pull Requests
  1. https://github.com/Seneca-CDOT/telescope/pull/1148
  2. https://github.com/Seneca-CDOT/telescope/pull/1162
  3. https://github.com/shaun-chiang/storefront/pull/5
  4. https://github.com/microsoft/vscode/pull/109440
Blog Posts
  1. https://medium.com/@pedrofonsecadev/release-0-2-pull-request-1-8b2a53136c89
  2. https://medium.com/@pedrofonsecadev/release-0-2-2-cfed719b25fc
  3. https://medium.com/@pedrofonsecadev/no-answer-293726949c71
  4. https://medium.com/@pedrofonsecadev/release-0-2-4-bfdaa7baab65
  5. https://medium.com/@pedrofonsecadev/release-0-2-final-chapter-b5ce58cd53c

sonechca - Mintae Kim

Issues
  1. https://github.com/karakun/OpenWebStart/issues/302
  2. https://github.com/DavidMatthewFraser/easy-to-git/issues/193
  3. https://github.com/TheAlgorithms/Javascript/issues/14
  4. https://github.com/TheAlgorithms/Python/issues/2510
Pull Requests
  1. https://github.com/karakun/OpenWebStart/pull/335
  2. https://github.com/DavidMatthewFraser/easy-to-git/pull/229
  3. https://github.com/TheAlgorithms/Javascript/pull/513
  4. https://github.com/TheAlgorithms/Python/pull/3839
Blog Posts
  1. https://mintaedotblog.wordpress.com/2020/10/11/release-0-2-first-hacktoberfest/
  2. https://wordpress.com/block-editor/post/mintaedotblog.wordpress.com/133
  3. https://mintaedotblog.wordpress.com/2020/10/24/release-0-2-third-hectoberfest/
  4. https://mintaedotblog.wordpress.com/2020/10/30/release-0-2-last-hectoberfest/

tianlangwu - Junyong Liu

Issues
  1. https://github.com/o2sh/onefetch/issues/250
  2. https://github.com/trybick/issue-collab/issues/57
  3. https://github.com/trybick/issue-collab/issues/71
  4. https://github.com/mattermost/mattermost-server/issues/16167
Pull Requests
  1. https://github.com/o2sh/onefetch/pull/254
  2. https://github.com/trybick/issue-collab/pull/65
  3. https://github.com/trybick/issue-collab/pull/72
  4. https://github.com/mattermost/mattermost-webapp/pull/6976
Blog Posts
  1. https://jliu396.blogspot.com/2020/10/my-first-pr-for-hacktoberfest.html
  2. https://jliu396.blogspot.com/2020/10/second-pr-for-hacktoberfest.html
  3. https://jliu396.blogspot.com/2020/10/my-third-pull-request-for-hacktoberfest.html
  4. https://jliu396.blogspot.com/2020/10/my-fouth-pr-request-for-hacktoberfest.html
  5. https://jliu396.blogspot.com/2020/10/release-02-hacktoberfest-recap.html

MSTEWARDSON - Matthew Stewardson

Issues
  1. https://github.com/AlexanderLapygin/dags/issues/6
  2. https://github.com/ryzbaka/PyLot/issues/7
  3. https://github.com/AggRag/UMusic/issues/1
  4. https://github.com/sButtons/sbuttons/issues/1013
Pull Requests
  1. https://github.com/AlexanderLapygin/dags/pull/22
  2. https://github.com/ryzbaka/PyLot/pull/10
  3. https://github.com/AggRag/UMusic/pull/2
  4. https://github.com/sButtons/sbuttons/pull/1031
Blog Posts
  1. https://matthew-k-stewardson.blogspot.com/2020/10/week-4-pr1.html
  2. https://matthew-k-stewardson.blogspot.com/2020/10/week-5-pr2.html
  3. https://matthew-k-stewardson.blogspot.com/2020/10/week-6-pr3.html
  4. https://matthew-k-stewardson.blogspot.com/2020/10/week-6-pr-4.html
  5. https://matthew-k-stewardson.blogspot.com/2020/10/release-02-end-of-line.html

Niaz-Ul-Haque - Mohammed Niaz Ul Haque

Issues
  1. https://github.com/kelumsampath/health_assistant_client/issues/2
  2. https://github.com/shkaushal/Manage-Expenses/issues/1
  3. https://github.com/aloks98/unisys-backend/issues/1
  4. https://github.com/Tisn/tisn.app/issues/232
Pull Requests
  1. https://github.com/kelumsampath/health_assistant_client/pull/3
  2. https://github.com/shkaushal/Manage-Expenses/pull/3
  3. https://github.com/aloks98/unisys-backend/pull/5
  4. https://github.com/Tisn/tisn.app/pull/368
Blog Posts
  1. https://dev.to/niazulhaque/late-start-to-hacktober-life-updates-kdramas-new-fun-2gp8
  2. https://dev.to/niazulhaque/delayed-post-2nd-pr-new-stuff-hacktober-fun-doctors-not-fun-cce
  3. https://dev.to/niazulhaque/3rd-pr-study-week-but-late-posting-2nd-last-work-of-hacktober-exam-week-is-done-3b2g
  4. https://dev.to/niazulhaque/the-last-pr-the-fourth-pr-study-week-done-studying-restarts-heavy-weeks-incoming-3m3a
  5. https://dev.to/niazulhaque/officially-done-with-hacktober-looking-forward-to-what-future-has-hyped-af-52dd

jossiey - Jie Yang

Issues
Pull Requests
  1. https://github.com/ahampriyanshu/algo_ds_101/pull/802
  2. https://github.com/Seneca-CDOT/telescope/pull/1186
  3. https://github.com/Seneca-CDOT/telescope/pull/1198
  4. https://github.com/the-pat/spooky/pull/18
  5. https://github.com/the-pat/spooky/pull/19
Blog Posts
  1. https://jyangblogs.wordpress.com/2020/10/12/hacktoberfest-2020-week-1/
  2. https://jyangblogs.wordpress.com/2020/10/17/hacktoberfest-2020-week-2/
  3. https://jyangblogs.wordpress.com/2020/10/25/hacktoberfest-2020-week-3/
  4. https://jyangblogs.wordpress.com/2020/10/31/hacktoberfest-2020-week-4/
  5. https://jyangblogs.wordpress.com/2020/11/01/hacktoberfest-2020/

Paul Sin - Paul Sin

Issues
  1. https://github.com/JanusGraph/janusgraph/issues/2230
  2. https://github.com/Blank1611/jsonmergeutils/issues/2
  3. https://github.com/IamJayshree/Pong/issues/1
  4. Did not create an Issue
Pull Requests
  1. https://github.com/JanusGraph/janusgraph/pull/2233
  2. https://github.com/Blank1611/jsonmergeutils/pull/11
  3. https://github.com/IamJayshree/Pong/pull/2
  4. https://github.com/sammchardy/python-binance/pull/602/files
Blog Posts
  1. https://osd600.blogspot.com/2020/10/release-v02.html
  2. https://osd600.blogspot.com/2020/10/02v-conflicts-struggles-and-pain-all.html
  3. https://osd600.blogspot.com/2020/10/pump-up-jam.html
  4. https://osd600.blogspot.com/2020/10/release-v02-4th-pr.html

NathanPang001 - Nathan Pang

Issues
  1. https://github.com/Auto-DL/Generator/issues/25
  2. https://github.com/uzair-ashraf/genshin-impact-wish-simulator/issues/8
  3. https://github.com/salyadav/gundoosmean-client/issues/21
  4. https://github.com/Seniru/pewpew/issues/18
Pull Requests
  1. https://github.com/Auto-DL/Generator/pull/26
  2. https://github.com/uzair-ashraf/genshin-impact-wish-simulator/pull/9
  3. https://github.com/salyadav/gundoosmean-client/pull/24
  4. https://github.com/Seniru/pewpew/pull/20
Blog Posts
  1. https://osdnathanp.wordpress.com/2020/10/12/release-0-2-pull-request-1/
  2. https://osdnathanp.wordpress.com/2020/10/18/release-0-2-pull-request-2/
  3. https://osdnathanp.wordpress.com/2020/10/25/release-0-2-pull-request-3/
  4. https://osdnathanp.wordpress.com/2020/10/31/release-0-2-pull-request-4/
  5. https://osdnathanp.wordpress.com/2020/10/31/release-0-2-recap/


joelazwar - Joel Azwar

Issues
Pull Requests
  1. https://github.com/kelumsampath/health_assistant_client/pull/8
  2. https://github.com/mdolr/survol/pull/145
  3. https://github.com/Seneca-CDOT/telescope/pull/1256
  4. https://github.com/papercups-io/papercups/pull/372
Blog Posts
  1. https://joelazwaros.blogspot.com/2020/10/i-fixed-typo.html
  2. https://joelazwaros.blogspot.com/2020/10/hacktoberfest-entry-no2.html
  3. https://joelazwaros.blogspot.com/2020/11/hack-vemberfest-pr-no-3.html
  4. https://joelazwaros.blogspot.com/2020/11/hackvember-fest-pr4-days-late-conclusion.html

klee214 - Kimin Lee

Issues
  1. https://github.com/pettnaut/frontend-code/issues/17
  2. https://github.com/aemmadi/fastdocs/issues/22
  3. https://github.com/PerhapsSomeone/GreenLight/issues/13
  4. https://github.com/redxzeta/Awesome-Adoption/issues/30
Pull Requests
  1. https://github.com/pettnaut/frontend-code/pull/19
  2. https://github.com/aemmadi/fastdocs/pull/23
  3. https://github.com/PerhapsSomeone/GreenLight/pull/16
  4. https://github.com/redxzeta/Awesome-Adoption/pull/34
Blog Posts
  1. https://dev.to/klee214/hacktoberfest-my-first-small-contribution-to-open-source-3m44
  2. https://dev.to/klee214/fastdocs-application-crashes-at-invalid-endpoint-cdp
  3. https://dev.to/klee214/greenlight-added-a-syntax-checker-feature-54df
  4. https://dev.to/klee214/last-commit-for-2020-hacktoberfest-1keo


VietnameZe - Minh Huy Nguyen

Issues
Pull Requests
  1. https://github.com/kentor/flush-promises/pull/25
  2. https://github.com/30-seconds/30-seconds-of-code/pull/1655
  3. https://github.com/TheAlgorithms/Java/pull/1951
  4. https://github.com/paypal/butterfly/pull/363
Blog Posts
  1. https://x7z.net/release0-2
  2. https://x7z.net/release0-2-2
  3. https://x7z.net/release0-2-3
  4. https://x7z.net/release0-2-4
  5. https://x7z.net/release0-2-final

tonyvugithub - Khoi Nguyen Vu (Tony)

Issues
  1. https://github.com/Seneca-CDOT/telescope/issues/1179
  2. https://github.com/Seneca-CDOT/telescope/issues/1190
  3. https://github.com/palanik/run.env/issues/5
  4. https://github.com/Seneca-CDOT/telescope/issues/1145
Pull Requests
  1. https://github.com/Seneca-CDOT/telescope/pull/1181
  2. https://github.com/Seneca-CDOT/telescope/pull/1209
  3. https://github.com/palanik/run.env/pull/6
  4. https://github.com/Seneca-CDOT/telescope/pull/1248
Blog Posts
  1. https://medium.com/@tonyknvu/had-a-taste-on-real-world-osd-approved-merged-twice-cd58d898924c
  2. https://medium.com/@tonyknvu/level-up-my-pr-game-86d7539294f9
  3. https://tonyknvu.medium.com/taking-a-detour-to-explore-what-testing-really-means-268c76dca8c0
  4. https://tonyknvu.medium.com/last-pr-what-should-i-do-maybe-more-testin-8c2ad2c52701
  5. To be updated


mamadou-diallo - Mamadou Diallo

Issues
  1. https://github.com/bitsandbytes1708/FlappyBirdClone/issues/3
  2. Issue 2.1 and Issue 2.2
  3. Issue 3.1 and Issue 3.2
  4. https://github.com/DiversityCorp/companies-on-blm/issues/80
Pull Requests
  1. https://github.com/bitsandbytes1708/FlappyBirdClone/pull/6
  2. PR 2.1 and PR 2.2
  3. https://github.com/div-bargali/Data-Structures-and-Algorithms/pull/807
  4. https://github.com/DiversityCorp/companies-on-blm/pull/154
Blog Posts
  1. https://mamadou--diallo.blogspot.com/2020/10/hacktoberfest-1.html
  2. https://mamadou--diallo.blogspot.com/2020/10/10-easy-steps-and-animations.html
  3. https://mamadou--diallo.blogspot.com/2020/10/release-23.html
  4. https://mamadou--diallo.blogspot.com/2020/10/release-24.html


fluentinstroll - Raymond Rambo

Issues
  1. https://github.com/Jain-Sanchit/webseries-quotes/issues/39
  2. issue #20, issue #26
  3. https://github.com/vichudson1/empire/issues/17
  4. https://github.com/AardWolf/MHTimerBot/issues/215
Pull Requests
  1. https://github.com/Jain-Sanchit/webseries-quotes/pull/40
  2. pull #21, pull #27
  3. https://github.com/vichudson1/empire/pull/18
  4. https://github.com/AardWolf/MHTimerBot/pull/216
Blog Posts
  1. https://dev.to/fluentinstroll/a-diatribe-on-how-hard-coding-is-d26
  2. https://dev.to/fluentinstroll/week-2-and-making-it-up-to-myself-1lfa
  3. https://dev.to/fluentinstroll/release-0-2-week-3-29gm
  4. https://dev.to/fluentinstroll/as-a-real-gamer-256b
  5. Wrap-up


yzwdroid - Zongwei Yang

Issues
  1. https://github.com/LukasJoswiak/etch/issues/10
  2. https://github.com/jamesmawm/golang-user-microservice/issues/17
  3. https://github.com/photoprism/photoprism/issues/514
  4. https://github.com/JIITODC/jiitodc.github.io/issues/86#event-3923513143
Pull Requests
  1. https://github.com/LukasJoswiak/etch/pull/11
  2. https://github.com/jamesmawm/golang-user-microservice/pull/18
  3. https://github.com/photoprism/photoprism/pull/569
  4. https://github.com/JIITODC/jiitodc.github.io/pull/88
Blog Posts
  1. https://dev.to/yzwdroid/hacktoberfest-week-1-2j43
  2. https://dev.to/yzwdroid/release-0-2-hn9
  3. https://dev.to/yzwdroid/release-2-0-translation-38cb
  4. https://dev.to/yzwdroid/release-2-0-pr4-16e7

zg3d - Devansh Shah

Issues
  1. https://github.com/utkarshpant/telemetry/issues/6
  2. https://github.com/Seneca-CDOT/telescope/issues/489)) 3.https://github.com/TroyTae/game-of-life/issues/1368
  3. none
Pull Requests
  1. https://github.com/utkarshpant/telemetry/pull/7
  2. https://github.com/Seneca-CDOT/telescope/pull/1254 3.https://github.com/TroyTae/game-of-life/pull/1376 4.https://github.com/Seneca-CDOT/telescope/pull/1467
Blog Posts
  1. https://dev.to/zg3d/first-week-of-hacktoberfest-596e
  2. https://dev.to/zg3d/telescope-my-first-contribution-19en
  3. https://dev.to/zg3d/the-month-of-october-2020-2j99
  4. https://dev.to/zg3d/game-of-life-small-contribution-4dc2
  5. https://dev.to/zg3d/telescope-a-high-severity-vulnerability-bo6

isabellaliu77 - Xiaolu Liu

Issues
  1. https://github.com/codethesaurus/codethesaur.us/issues/60
  2. https://github.com/konveyor/move2kube-api/issues/27
  3. https://github.com/consolelancer/portfolio-shala/issues/3
  4. https://github.com/inlets/inletsctl/issues/81
Pull Requests
  1. https://github.com/codethesaurus/codethesaur.us/pull/63
  2. https://github.com/konveyor/move2kube-api/pull/30
  3. https://github.com/consolelancer/portfolio-shala/pull/11
  4. https://github.com/inlets/inletsctl/pull/82
Blog Posts
  1. https://dev.to/isabellaliu77/release-0-2-1-first-pr-for-hacktoberfest-4ac6
  2. https://dev.to/isabellaliu77/2nd-pr-for-hacktoberfest-regexp-in-golang-4jip
  3. https://dev.to/isabellaliu77/release-0-2-3-3f6m
  4. https://dev.to/isabellaliu77/i-did-not-make-a-good-end-for-release-0-2-5fme

chawlapalak - Palak Chawla

Issues
  1. https://github.com/abhishekpatel946/PassManager-pyScript/issues/3
  2. https://github.com/interledger-rs/interledger-rs/issues/158
  3. https://github.com/EricTurf/hacktober-new-tab/issues/9
  4. https://github.com/EricTurf/hacktober-new-tab/issues/6
Pull Requests
  1. https://github.com/abhishekpatel946/PassManager-pyScript/pull/4
  2. https://github.com/interledger-rs/interledger-rs/pull/655
  3. https://github.com/EricTurf/hacktober-new-tab/pull/10
  4. https://github.com/EricTurf/hacktober-new-tab/pull/11
Blog Posts
  1. https://palak-chawla.blogspot.com/2020/10/release-02-pr-1.html
  2. https://palak-chawla.blogspot.com/2020/10/release-02-pr-2.html
  3. https://palak-chawla.blogspot.com/2020/10/release-02-pr-3.html
  4. https://palak-chawla.blogspot.com/2020/10/release-02-pr-4.html
  5. https://palak-chawla.blogspot.com/2020/10/release-02-journey-final-stone.html

MLJBrackett - Michael Brackett

Issues
Pull Requests
  1. https://github.com/mozilla/OpenWPM/pull/762
  2. https://github.com/Mustafiz04/Covid-19-website/pull/5 & https://github.com/Mustafiz04/Covid-19-website/pull/7
  3. https://github.com/Blank1611/jsonmergeutils/pull/14
  4. https://github.com/redxzeta/Awesome-Adoption/pull/35
Blog Posts
  1. https://dev.to/mljbrackett/my-first-public-pr-dbo
  2. https://dev.to/mljbrackett/contributing-to-a-covid-19-website-41jm
  3. https://dev.to/mljbrackett/release-2-0-pr-3-4d20
  4. https://dev.to/mljbrackett/release-2-0-pr-4-1c73
  5. https://dev.to/mljbrackett/hacktoberfest-finale-1k57

Wei-J-Huang - Wei Huang

Issues
Pull Requests
  1. https://github.com/FOSS-UCSC/FOSSALGO/pull/512
  2. https://github.com/OwenGranot/svelte-calender/pull/15
  3. https://github.com/redxzeta/Awesome-Adoption/pull/14
  4. https://github.com/callbacc/Artistify/pull/112 and https://github.com/callbacc/Artistify/pull/114
Blog Posts
  1. https://weihuangosd.blogspot.com/2020/10/hacktoberfest-1.html
  2. https://weihuangosd.blogspot.com/2020/10/hacktoberfest-2.html
  3. https://weihuangosd.blogspot.com/2020/10/hacktoberfest-3.html
  4. https://weihuangosd.blogspot.com/2020/10/hacktoberfest-final.html

Jasper-Mui - Jasper Mui

Issues
Pull Requests
  1. https://github.com/code4romania/vot-romania-api/pull/119
  2. https://github.com/callbacc/Artistify/pull/93
  3. https://github.com/r-ush/khayaali-pulao/pull/9
  4. https://github.com/callbacc/Artistify/pull/111
Blog Posts
  1. https://muioverflow.wordpress.com/2020/10/13/hacktoberfest-week-one/
  2. https://muioverflow.wordpress.com/2020/10/19/hacktoberfest-week-2/
  3. https://muioverflow.wordpress.com/2020/10/26/hacktoberfest-week-3/
  4. https://muioverflow.wordpress.com/2020/10/31/hacktoberfest-week-4/
  5. https://muioverflow.wordpress.com/2020/10/31/hacktoberfest-2020-recap/

Shinh18 - Muskan Shinh

Issues
  1. https://github.com/owjs3901/SSU_World/issues/1
  2. https://github.com/antievictionmappingproject/covid-19-map/issues/167
  3. https://github.com/dhritippaul/Data-Structure-Algorithm/issues/8
  4. https://github.com/threedevs/3dev-fullstack/issues/8
Pull Requests
  1. https://github.com/owjs3901/SSU_World/pull/2
  2. https://github.com/antievictionmappingproject/covid-19-map/pull/168
  3. https://github.com/dhritippaul/Data-Structure-Algorithm/pull/24
  4. https://github.com/threedevs/3dev-fullstack/pull/45
Blog Posts
  1. https://muskanshinh.wordpress.com/2020/10/13/hacktoberfest-0-2-1-baby-step/
  2. https://muskanshinh.wordpress.com/2020/10/30/hacktoberfest-0-2-2-covid/
  3. https://muskanshinh.wordpress.com/2020/10/30/hacktoberfest-0-2-3-dsa/
  4. https://muskanshinh.wordpress.com/2020/11/01/hacktoberfest-0-2-4-read-a-book/
  5. https://muskanshinh.wordpress.com/2020/11/01/hacktoberfest-0-2-recap/

matt-ross16 - Matthew Ross

Issues
  1. https://github.com/blockspacer/flextool/issues/2
  2. https://github.com/enarx/enarx-keepldr/issues/85
  3. https://github.com/codestromer/ContestReminder/issues/5 4a. https://github.com/codestromer/ContestReminder/issues/12 4b. https://github.com/codestromer/ContestReminder/issues/13
Pull Requests
  1. https://github.com/blockspacer/flextool/pull/3
  2. https://github.com/enarx/enarx-keepldr/pull/86
  3. https://github.com/codestromer/ContestReminder/pull/10 4a. https://github.com/codestromer/ContestReminder/pull/14 4b. https://github.com/codestromer/ContestReminder/pull/15
Blog Posts
  1. https://os-discovery.blogspot.com/2020/10/spooky-prs.html
  2. https://os-discovery.blogspot.com/2020/10/halloween-badges.html
  3. https://os-discovery.blogspot.com/2020/12/now-featuring.html
  4. https://os-discovery.blogspot.com/2020/12/where-should-i-go.html
  5. https://os-discovery.blogspot.com/2020/12/time-for-the-next-step.html

Supercraft888 - Alexander Hugh

Issues

  1. https://github.com/kookmin-sw/capstone-2020-12/issues/136

Pull Requests

  1. https://github.com/kookmin-sw/capstone-2020-12/pull/167
Blog Posts
  1. https://medium.com/@ahugh2000/going-international-2e2dd24342d3

abuZayed15 - Abu Zayed Kazi

Issues
  1. Issue1.1 & Issue1.2
  2. https://github.com/aherd2985/UtilityBelt/issues/42
  3. Issue3.1, Issue3.2, Issue3.3
  4. https://github.com/bjorno43/NMS-Advanced-Modding-Station/issues/1
Pull Requests
  1. PR1.1 & PR1.2
  2. https://github.com/aherd2985/UtilityBelt/pull/69
  3. PR3.1, PR3.2, PR3.3
  4. https://github.com/bjorno43/NMS-Advanced-Modding-Station/pull/6
Blog Posts
  1. https://www.abuzayed.ca/my-blog/osd600/2020/10/13/my-first-prs-for-hactoberfest/
  2. https://www.abuzayed.ca/my-blog/osd600/2020/10/20/utilitybelt-console-api/
  3. https://www.abuzayed.ca/my-blog/osd600/2020/10/24/dragonfruit-six-rainbow-6-seige-api/
  4. https://www.abuzayed.ca/my-blog/osd600/2020/11/03/no-man-sky-api-final-pr-for-hacktoberfest/

zjjiang2 - Zong Jin Jiang

Issues
  1. https://github.com/FOSS-UCSC/FOSSALGO/issues/432
  2. https://github.com/kelumsampath/health_assistant_client/issues/12
  3. https://github.com/Seneca-CDOT/telescope/issues/1220
  4. https://github.com/callbacc/Artistify/issues/64
Pull Requests
  1. https://github.com/FOSS-UCSC/FOSSALGO/pull/583
  2. https://github.com/kelumsampath/health_assistant_client/pull/24
  3. https://github.com/Seneca-CDOT/telescope/pull/1251
  4. https://github.com/callbacc/Artistify/pull/113
Blog Posts
  1. https://zjjiang2.blogspot.com/2020/10/hacktoberfest-pr-1.html
  2. https://zjjiang2.blogspot.com/2020/10/hacktoberfest-pr-2.html
  3. https://zjjiang2.blogspot.com/2020/10/hacktoberfest-pr-3.html
  4. https://zjjiang2.blogspot.com/2020/10/hacktoberfest-pr-4.html

rjayroso - Royce Ayroso-Ong

Issues
  1. https://github.com/Xx-Ashutosh-xX/SongBird/issues/3
  2. https://github.com/shrpereira/coviewer_flutter/issues/14
  3. https://github.com/dnajs/dna.js/issues/107
  4. https://github.com/flashreads/blogs/issues/87
Pull Requests
  1. https://github.com/Xx-Ashutosh-xX/SongBird/pull/6
  2. https://github.com/shrpereira/coviewer_flutter/pull/15
  3. https://github.com/dnajs/dna.js/pull/108
  4. https://github.com/flashreads/blogs/pull/92
Blog Posts
  1. https://roycedev.medium.com/my-first-hacktoberfest-entry-af193531d470
  2. https://roycedev.medium.com/designing-with-flutter-717da699d6fb
  3. https://roycedev.medium.com/coding-with-style-3f4334b46db3
  4. https://roycedev.medium.com/a-return-to-argparse-6ec0a7a0259c
  5. https://roycedev.medium.com/hacktoberfest-2020-recap-34dadebb0a16

phast184 - Thanh Tien Phat Nguyen

Issues
  1. https://github.com/ahampriyanshu/algo_ds_101/issues/842
  2. https://github.com/mdolr/survol/issues/116
  3. https://github.com/trybick/issue-collab/issues/74
  4. https://github.com/aditya109/git-osp-for-beginners/issues/340
Pull Requests
  1. https://github.com/ahampriyanshu/algo_ds_101/pull/1202
  2. https://github.com/mdolr/survol/pull/148#event-3915821866
  3. https://github.com/trybick/issue-collab/pull/75#event-3935750838
  4. https://github.com/aditya109/git-osp-for-beginners/pull/348
Blog Posts
  1. https://dev.to/phast184/hacktoberfest-the-first-pr-30hc
  2. https://dev.to/phast184/hacktoberfest-my-second-pr-2bn7
  3. https://dev.to/phast184/hacktoberfest-level-3-3cpn
  4. https://dev.to/phast184/hacktoberfest-last-pr-dutch-national-flag-pde

Metropass - Mohammed Ahmed (Mo)

Issues
  1. https://github.com/mozilla/OpenWPM/issues/619
  2. https://github.com/Todarith/mathgenerator/issues/289
  3. https://github.com/Todarith/mathgenerator/issues/278
  4. https://github.com/EvgenyKashin/stylegan2-distillation/issues/9
Pull Requests
  1. https://github.com/mozilla/OpenWPM/pull/768
  2. https://github.com/Todarith/mathgenerator/pull/298
  3. https://github.com/Todarith/mathgenerator/pull/296
  4. https://github.com/EvgenyKashin/stylegan2-distillation/pull/8
Blog Posts
  1. https://moho472.medium.com/release-0-2-my-first-big-contribution-867578a0b5a4
  2. https://moho472.medium.com/release-0-2-fixing-my-own-mistake-799f53447b0e
  3. https://moho472.medium.com/release-0-2-simple-math-b71cb3fa4b4
  4. https://moho472.medium.com/release-0-2-depreciation-for-days-66b7f0527534

slaterslater - Anthony Slater

Issues
Pull Requests
  1. https://github.com/Mimic-Tools/name-generation/pull/55
  2. https://github.com/HarshdipD/job-tracker/pull/29
  3. https://github.com/nimit2801/MorseCodeMessenger/pull/3
Blog Posts
  1. https://dev.to/slaterslater/contributing-to-a-rpg-with-csv-1moj
  2. https://dev.to/slaterslater/adding-form-validation-to-eztrackr-435
  3. https://dev.to/slaterslater/using-numpy-to-build-wav-files-1ga6

badalsarkar - Badal Sarkar

Issues
Pull Requests
Blog Posts

HenryZerocool - Henry Nguyen

Issues
Pull Requests
Blog Posts

bpan2 - Bing Pan

Issues

*https://github.com/Shopify/shopify_transporter/issues/11

Pull Requests

*PR for issues 11 is abandoned. Please refer to the blog post 1

Blog Posts

*https://dev.to/bpan2/how-a-good-for-first-programming-issue-becomes-a-design-issue-1b2c


rubyAnneB - Ruby Anne Bautista
Issues
Pull Requests
  1. https://github.com/rico-projects/rico/pull/172
  2. https://github.com/OpenRefine/OpenRefine/pull/3294
  3. https://github.com/anshulhub/Car-Game/pull/7
  4. https://github.com/MitchellTFord/Fitness-Tracker/pull/32
Blog Posts
  1. https://rabautista.medium.com/first-foray-into-contributing-2eaca7cd47c7
  2. https://rabautista.medium.com/the-bullet-i-bit-7078fc10b29d
  3. https://rabautista.medium.com/back-to-android-4819403e0704
  4. https://medium.com/@rabautista/cars-and-python-940fbb433651
  5. https://medium.com/@rabautista/reflecting-on-the-month-a352afc23aae

AbdulMAbdi - Abdul Abdi
Issues
Pull Requests
  1. https://github.com/Py-Contributors/awesomeScripts/pull/310
  2. https://github.com/Py-Contributors/awesomeScripts/pull/340
  3. https://github.com/pandas-dev/pandas/pull/38203
  4. https://github.com/sButtons/sbuttons/pull/1190
Blog Posts
  1. https://abdulosd.blogspot.com/2020/10/hacktoberfest-pt1.html
  2. https://abdulosd.blogspot.com/2020/10/second-hacktoberfest-pr-making-some.html
  3. https://abdulosd.blogspot.com/2020/12/pullrequest3.html
  4. https://abdulosd.blogspot.com/2020/12/0.2pullrequest4.html

Clone this wiki locally