-
Notifications
You must be signed in to change notification settings - Fork 2
release 0.2
Monday October 31 by Midnight, with weekly blog posts and updates to the wiki below throughout October
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:
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.
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 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 repos. Make sure you are picking issues from existing, real open source projects. If you're not sure, ask your professor.
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 the link checking 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.
- Look at the projects that previous Seneca students worked on during Hacktoberfest in 2018, 2019, and 2020.
- 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 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 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
.
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.
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.
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
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)
- 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.
Please add a section for yourself to this document, 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
- https://github.com/example/issues/1
- https://github.com/example2/issues/2
- https://github.com/example3/issues/3
- https://github.com/example4/issues/4
- https://github.com/example/pull/1
- https://github.com/example2/pull/2
- https://github.com/example3/pull/3
- https://github.com/example4/pull/4
- 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
gulyapulya - Gulnur Baimukhambetova
- https://github.com/tonybaloney/vscode-pets/issues/185
- https://github.com/intel/cve-bin-tool/issues/1985
- https://github.com/FreshRSS/FreshRSS/issues/4661
- https://github.com/pandas-dev/pandas/issues/48855
- https://github.com/tonybaloney/vscode-pets/pull/197
- https://github.com/intel/cve-bin-tool/pull/2013
- https://github.com/FreshRSS/FreshRSS/pull/4719
- https://github.com/pandas-dev/pandas/pull/49064
- https://dev.to/gulyapulya/my-first-hacktoberfest-14l8
- https://dev.to/gulyapulya/my-first-contribution-to-intel-n76
- https://dev.to/gulyapulya/my-first-contribution-as-a-trilingual-3bnf
- https://dev.to/gulyapulya/my-first-contribution-to-pandas-9ff
- https://dev.to/gulyapulya/hacktoberfest-experience-wrap-up-and-tips-1pm5
mnosov622 - Maxim Nosov
alexsam29 - Alexander Samaniego
-
https://github.com/Google-Developer-Student-Club-RJIT/remotebirdjobs-frontend/issues/34
-
https://github.com/Google-Developer-Student-Club-RJIT/remotebirdjobs-frontend/issues/19
-
https://github.com/Google-Developer-Student-Club-RJIT/remotebirdjobs-frontend/pull/37
-
https://github.com/Google-Developer-Student-Club-RJIT/remotebirdjobs-frontend/pull/48
-
https://dev.to/alexsam29/hacktoberfest-week-1-first-pull-request-31ie
-
https://dev.to/alexsam29/hacktoberfest-week-2-first-bug-fix-5ao3
-
https://dev.to/alexsam29/hacktoberfest-week-3-enhancing-a-feature-3iin
-
https://dev.to/alexsam29/hacktoberfest-week-4-finding-and-creating-issues-j79
cychu42 - Chen-Yuan Chu
- https://github.com/Seneca-CDOT/telescope/issues/3686
- https://github.com/mgreiler/se-unlocked/issues/131
- https://github.com/makoteq/metaxa/issues/17
- https://github.com/Seneca-CDOT/telescope/issues/3611
- https://github.com/Seneca-CDOT/telescope/pull/3698
- https://github.com/mgreiler/se-unlocked/pull/159
- https://github.com/makoteq/metaxa/pull/25
- https://github.com/Seneca-CDOT/telescope/pull/3743
- https://dev.to/cychu42/hacktoberfest-week-1-document-translation-18hh
- https://dev.to/cychu42/hacktoberfest-week-2-transcript-4f74
- https://dev.to/cychu42/hacktoberfest-week-3-3im0
- https://dev.to/cychu42/hacktoberfest-week-4-wrap-up-and-overflow-50fk
- https://dev.to/cychu42/hacktoberfest-recap-5f5b
anshul137 - Anshul Gandhi
- https://github.com/Aatmaj-Zephyr/Basic-memory-game/issues/2
- https://github.com/Diptenusarkar/html.org.in/issues/17
- https://github.com/TheRedstoneRadiant/Qurl.gq/issues/24
- https://github.com/gita/bg-frontend/issues/104
- https://github.com/Aatmaj-Zephyr/Basic-memory-game/pull/80
- https://github.com/Diptenusarkar/html.org.in/pull/30
- https://github.com/TheRedstoneRadiant/Qurl.gq/pull/30
- https://github.com/gita/bg-frontend/pull/113
- https://dev.to/anshul137/dps909-blog-first-contirbution-in-hacktoberfest-2d6k
- https://dev.to/anshul137/dps909-blog-second-contirbution-in-hacktoberfest-334g
- https://dev.to/anshul137/dps909-blog-third-contirbution-in-hacktoberfest-2585
- https://dev.to/anshul137/dps909-blog-fourth-contirbution-in-hacktoberfest-343k
- https://dev.to/anshul137/dps909-blog-final-blog-4b44
devils2ndself - Artem Tanyhin
- https://github.com/Seneca-CDOT/telescope/issues/3699
- https://github.com/intel/cve-bin-tool/issues/2168
- https://github.com/provectus/kafka-ui/issues/2721
- https://github.com/GingerKiwi/alice-game/issues/5
- https://github.com/Seneca-CDOT/telescope/pull/3701
- https://github.com/intel/cve-bin-tool/pull/2171
- https://github.com/provectus/kafka-ui/pull/2804
- https://github.com/GingerKiwi/alice-game/pull/8
- https://dev.to/devils2ndself/language-is-key-for-supporting-the-nation-3j7h
- https://dev.to/devils2ndself/hacktoberfest-pr2-windows-isnt-the-greatest-os-for-development-4f41
- https://dev.to/devils2ndself/hacktoberfest-pr3-monorepos-are-cool-but-come-at-a-cost-n9j
- https://dev.to/devils2ndself/hacktoberfest-pr4-back-to-the-roots-34nh
- https://dev.to/devils2ndself/hacktoberfestend-2mkk
liutng - Tong Liu
- https://github.com/EbookFoundation/free-programming-books/issues/7495
- https://github.com/CatimaLoyalty/Android/issues/1084
- https://github.com/CatimaLoyalty/Android/issues/1092
- https://github.com/AntennaPod/AntennaPod/issues/6167
- https://github.com/EbookFoundation/free-programming-books/pull/7494
- https://github.com/CatimaLoyalty/Android/pull/1085
- https://github.com/CatimaLoyalty/Android/pull/1095
- https://github.com/AntennaPod/AntennaPod/pull/6168
- https://dev.to/liutng/hi-there-hacktober-3lcc
- https://dev.to/liutng/reflect-on-pull-request-2-30na
- https://dev.to/liutng/reflect-for-pull-request-3-1497
- https://dev.to/liutng/reflect-for-pr-4-5do0
- https://dev.to/liutng/a-very-late-coming-reflect-for-hacktober-2022-event-4680
dadolhay - Denes Adam Dolhay
- https://github.com/openfoodfacts/hunger-games/issues/246
- https://github.com/meilisearch/gatsby-plugin-meilisearch/issues/159
- https://github.com/openinf/util-text/issues/56
- https://github.com/openinf/util-text/issues/31
- https://github.com/openfoodfacts/hunger-games/pull/258
- https://github.com/meilisearch/gatsby-plugin-meilisearch/pull/179
- https://github.com/openinf/util-text/pull/117
- https://github.com/openinf/util-text/pull/124
- https://dev.to/dadolhay/osd600-release-02-14-159b
- https://dev.to/dadolhay/osd600-release-02-24-hnp
- https://dev.to/dadolhay/osd600-release-02-34-318n
- https://dev.to/dadolhay/osd600-release-02-44-40g3
- https://dev.to/dadolhay/osd600-release-02-recap-55nl
IvaniGabrovsky - Ivan Gabrovsky
- https://github.com/Seneca-CDOT/telescope/issues/3697
- https://github.com/oscarmorrison/md-page/issues/60
- https://github.com/Seneca-CDOT/telescope/issues/3734
- https://github.com/BrandonArmand/Binari/issues/69
- https://github.com/Seneca-CDOT/telescope/pull/3700
- https://github.com/oscarmorrison/md-page/pull/61
- https://github.com/Seneca-CDOT/telescope/pull/3735
- https://github.com/BrandonArmand/Binari/pull/75
- https://blogforwebdevelopment.blogspot.com/2022/10/octoberfest-week-1-blog.html
- https://blogforwebdevelopment.blogspot.com/2022/10/octoberfest-week-2-bog.html
- https://blogforwebdevelopment.blogspot.com/2022/10/octoberfest-week-3-blog.html
- https://blogforwebdevelopment.blogspot.com/2022/10/octoberfest-week-3-blog_29.html
- Week 4 blog has the same name as week 3 with the number 29 added to it. Just to make this clear.
rokaicker - Rohan Kaicker
- https://github.com/whyboris/Video-Hub-App/issues/726
- https://github.com/adonisjs/docs.adonisjs.com/issues/180 & https://github.com/adonisjs/docs.adonisjs.com/issues/147
- https://github.com/tinyhttp/tinyhttp/issues/360
- https://github.com/naveennamani/offline-docs/issues/2
- https://github.com/whyboris/Video-Hub-App/pull/772
- https://github.com/adonisjs/docs.adonisjs.com/pull/189 & https://github.com/adonisjs/docs.adonisjs.com/pull/191
- https://github.com/tinyhttp/tinyhttp/pull/363
- https://github.com/naveennamani/offline-docs/pull/14
- https://dev.to/rokaicker/first-time-contributing-to-a-public-repo-hacktoberfest-week-1-3nee
- https://dev.to/rokaicker/hacktoberfest-week-2-pt-1-me1
- https://dev.to/rokaicker/hacktoberfest-week-2-pt-2-273i
- https://dev.to/rokaicker/final-hacktoberfest-pr-b5f
- https://dev.to/rokaicker/hacktoberfest-conclusion-4bko
batunpc - Batuhan Ipci
- https://github.com/tonybaloney/vscode-pets/issues/184
- https://github.com/intel/cve-bin-tool/issues/2120
- https://github.com/pavelkeyzik/pr-approve-generator/issues/2
- https://github.com/pavelkeyzik/pr-approve-generator/issues/7
- https://github.com/tonybaloney/vscode-pets/pull/199
- https://github.com/intel/cve-bin-tool/pull/2122
- https://github.com/pavelkeyzik/pr-approve-generator/pull/5
- https://github.com/pavelkeyzik/pr-approve-generator/pull/8
- https://dev.to/batunpc/may-the-merge-be-with-you-hacktoberfest-1ok2
- https://dev.to/batunpc/unit-testing-like-a-hacker-1e3m
- https://dev.to/batunpc/easter-eggs-in-hacktoberfest-11ei
saminarp - Samina Rahman Purba
- https://github.com/intel/cve-bin-tool/issues/2118
- https://github.com/intel/cve-bin-tool/issues/2118
- https://github.com/ifmeorg/ifme/issues/2128
- https://github.com/esatya/rahat-agency/issues/235
- https://github.com/intel/cve-bin-tool/pull/2123
- https://github.com/intel/cve-bin-tool/pull/2123
- https://github.com/ifmeorg/ifme/pull/2181
- https://github.com/esatya/rahat-agency/pull/234
- https://dev.to/saminarp/things-i-learned-through-my-first-hacktoberfest-pull-requests-4na1
- https://dev.to/saminarp/on-persistence-collaboration-trial-and-error-hacktoberfest-2022-3igh
- https://dev.to/saminarp/how-muay-thai-and-powerlifting-made-me-a-better-programmer-hacktoberfest-wrap-up-46g0
Ririio - Mario Leonardo
- https://github.com/JesseRWeigel/battlemath/pull/76
- https://github.com/harshmangalam/hydrogen-solidjs-client/issues/64
- https://github.com/ShivamKun/Sakamoto/issues/95
- https://github.com/JesseRWeigel/battlemath/issues/95
- https://github.com/JesseRWeigel/battlemath/pull/76
- https://github.com/harshmangalam/hydrogen-solidjs-client/pull/69
- https://github.com/ShivamKun/Sakamoto/pull/97
- https://github.com/JesseRWeigel/battlemath/pull/96
- https://dev.to/ririio/hacktoberfest-week-1-218e
- https://dev.to/ririio/hacktoberfest-week-2-461n
- https://dev.to/ririio/hacktoberfest-week-3-3990
NeilAn99 - Neil An
- https://github.com/seths10/Quotes-Generator/issues/18
- https://github.com/makoteq/metaxa/issues/23
- https://github.com/AnkitaMalik22/devmate/issues/94
- https://github.com/ayoayco/astro-reactive-library/issues/162
- https://github.com/seths10/Quotes-Generator/pull/21
- https://github.com/makoteq/metaxa/pull/24
- https://github.com/AnkitaMalik22/devmate/pull/99
- https://github.com/ayoayco/astro-reactive-library/pull/164
- https://dev.to/neilan99/my-first-pr-for-hacktoberfest-b9d
- https://dev.to/neilan99/my-second-pr-for-hacktoberfest-4geh
- https://dev.to/neilan99/my-third-hacktoberfest-pr-823
- https://dev.to/neilan99/my-fourth-hacktoberfest-pr-4oni
- https://dev.to/neilan99/hacktoberfest-recap-1ll5
SerpentBytes - Taimoor Dawami
- https://github.com/withfig/autocomplete/issues/1535
- https://github.com/Seneca-CDOT/telescope/issues/3614
- https://github.com/Seneca-CDOT/telescope/issues/3692
- https://github.com/lostdesign/linked/issues/160
- https://github.com/withfig/autocomplete/pull/1569
- https://github.com/Seneca-CDOT/telescope/pull/3691
- https://github.com/Seneca-CDOT/telescope/pull/3722
- https://github.com/lostdesign/linked/pull/187
- https://dev.to/tdaw/hacktoberfest-week-1-first-time-contributions-30el
- https://dev.to/tdaw/hacktoberfest-fixing-a-ui-bug-40eh
- https://dev.to/tdaw/hacktoberfest-pr-3-improving-documentation-3kg
- https://dev.to/tdaw/hacktoberfest-wrap-up-minor-contribution-to-linked-196o
- https://dev.to/tdaw/hacktoberfest-sum-up-4cfe
Wonkeun No - Wonkeun No
- https://github.com/materializecss/materialize/issues/118
- https://github.com/react-tags/react-tags/issues/500
- https://github.com/johannesjo/super-productivity/issues/2301
- https://github.com/nocodb/nocodb/issues/3441
- https://github.com/materializecss/materialize/pull/290
- https://github.com/react-tags/react-tags/pull/880
- https://github.com/johannesjo/super-productivity/pull/2303
- https://github.com/nocodb/nocodb/pull/4091
- https://dev.to/genne23v/first-trial-of-real-open-source-contribution-2bb2
- https://dev.to/genne23v/learning-open-source-community-4nji
- https://dev.to/genne23v/take-some-time-to-learn-features-and-code-before-making-any-change-to-open-source-project-1ddj
- https://dev.to/genne23v/my-reasons-why-i-should-do-open-source-project-1nod
rudychung - Rudy Chung
- https://github.com/ACM-VIT/golly-bot/issues/59
- https://github.com/gregrickaby/reddit-image-viewer/issues/391
- https://github.com/gregrickaby/reddit-image-viewer/issues/409
- https://github.com/JianLoong/word-cloud-generator/issues/4
- https://github.com/ACM-VIT/golly-bot/pull/60
- https://github.com/gregrickaby/reddit-image-viewer/pull/407
- https://github.com/gregrickaby/reddit-image-viewer/pull/413
- https://github.com/JianLoong/word-cloud-generator/pull/13
- https://dev.to/rudychung/my-first-hacktoberfest-pr-5ec2
- https://dev.to/rudychung/my-second-hacktoberfest-pr-138l
- https://dev.to/rudychung/my-third-hacktoberfest-pr-4150
- https://dev.to/rudychung/my-fourth-hacktoberfest-pr-4amf
- https://dev.to/rudychung/my-hacktoberfest-recap-mc2
sfrunza13 - Stefan Frunza
- https://github.com/Clueless-Community/web-ui-kit/issues/6
- https://github.com/sindresorhus/caprine/issues/1932
- https://github.com/IndigoWizard/wildfire-burn-severity/issues/2
- https://github.com/gregrickaby/reddit-image-viewer/issues/410
- https://github.com/Clueless-Community/web-ui-kit/pull/25
- https://github.com/sindresorhus/caprine/pull/1933
- https://github.com/IndigoWizard/wildfire-burn-severity/pull/3
- https://github.com/gregrickaby/reddit-image-viewer/pull/414
- https://dev.to/sfrunza13/hacktoberfest-2fin
- https://dev.to/sfrunza13/more-hacktobing-1e78
- https://dev.to/sfrunza13/almost-hacktover-34ek
- https://dev.to/sfrunza13/hacktoverfest-4kg
- https://dev.to/sfrunza13/hacktoverview-3lmk
LostButton - Chan Dinh (Oscar) Phu
- https://github.com/ShravaniAK/noter-js/issues/2
- https://github.com/BhaktaGopal/online_Dictionary/pull/15
- https://github.com/vedant-jain03/certificate-generator/issues/7
- https://github.com/Mukundan314/dcall/issues/1
- https://github.com/ShravaniAK/noter-js/pull/18
- https://github.com/BhaktaGopal/online_Dictionary/issues/10
- https://github.com/vedant-jain03/certificate-generator/pull/19
- https://github.com/Mukundan314/dcall/pull/2
- https://dev.to/lostbutton/hacktoberfest-first-plmrg-1f3f
- https://dev.to/lostbutton/hacktoberfest-week-2-1hna
- https://student.blog.com/hacktoberfest-week-three
- https://dev.to/lostbutton/hacktoberfest-week-4-m05
- https://dev.to/lostbutton/hacktoberfest-finale-2l2h
P-DR0ZD - Piotr Drozd
- https://github.com/mcruzdev/free-programming-ebooks/issues/7
- https://github.com/dzikoysk/reposilite/issues/1604
- https://github.com/AnkitaMalik22/devmate/issues/35
- https://github.com/cuttle-cards/cuttle/issues/183
- https://github.com/mcruzdev/free-programming-ebooks/pull/8
- https://github.com/dzikoysk/reposilite/pull/1607
- https://github.com/AnkitaMalik22/devmate/pull/69
- https://github.com/cuttle-cards/cuttle/pull/184
- https://dev.to/pdr0zd/hacktoberfest-week-1-4fi1
- https://dev.to/pdr0zd/hacktober-fest-week-2-3ol8
- https://dev.to/pdr0zd/hacktoberfest-week-3-17go
- https://dev.to/pdr0zd/hacktoberfest-week-4-27l0
Eakam1007 - Eakampreet Singh
- https://github.com/Seneca-CDOT/telescope/issues/3535
- https://github.com/AppFlowy-IO/AppFlowy/issues/1345
- https://github.com/mgreiler/se-unlocked/issues/112
- https://github.com/Seneca-CDOT/telescope/issues/3687
- https://github.com/Seneca-CDOT/telescope/pull/3702
- https://github.com/AppFlowy-IO/AppFlowy/pull/1403
- https://github.com/mgreiler/se-unlocked/pull/172
- https://github.com/Seneca-CDOT/telescope/pull/3751
- https://dev.to/eakam/hacktoberfest-part-1-4kaf
- https://dev.to/eakam/hacktoberfest-part-2-jl5
- https://dev.to/eakam/hacktoberfest-part-3-2fg2
- https://dev.to/eakam/hacktoberfest-part-4-15eb
- https://dev.to/eakam/hacktoberfest-recap-bli
Myrfion - Tymur Levtsun
- https://github.com/narze/react-useless/issues/153
- https://github.com/ufosc/Club_Website_2/issues/55
- https://github.com/distributeaid/distributeaid.org/issues/815
- https://github.com/OrcaCollective/techbloc-directory/issues/21
- https://github.com/narze/react-useless/pull/158
- https://github.com/ufosc/Club_Website_2/pull/57
- https://github.com/distributeaid/distributeaid.org/pull/818
- https://github.com/OrcaCollective/techbloc-directory/pull/22
- https://dev.to/myrfion/hacktoberfest-part-1-made-useless-stuff-3loa
- https://dev.to/myrfion/hacktoberfest-part-2-made-something-small-and-usefull-1j74
- https://dev.to/myrfion/hacktoberfest-part-3-some-e2e-tests-46b8
- https://dev.to/myrfion/hacktoberfest-part-4-final-contribution-n1l
a-parris21 - Arryell Parris
Issues
- https://github.com/Aatmaj-Zephyr/Basic-memory-game/issues/104
- https://github.com/Diptenusarkar/html.org.in/issues/69
- https://github.com/Diptenusarkar/html.org.in/issues/70
- https://github.com/mgreiler/se-unlocked/issues/132
Pull Requests
- https://github.com/Aatmaj-Zephyr/Basic-memory-game/pull/105
- https://github.com/Diptenusarkar/html.org.in/pull/71
- https://github.com/Diptenusarkar/html.org.in/pull/73
- https://github.com/mgreiler/se-unlocked/pull/179
Blog Posts
- https://dev.to/aparris21/-release-02-pr-1-3g0o
- https://dev.to/aparris21/release-02-pr-2-1il2
- https://dev.to/aparris21/release-02-pr-3-376g
- https://dev.to/aparris21/release-02-pr-4-44pi