All Projects β†’ abhilashmnair β†’ HacktoberFest2021

abhilashmnair / HacktoberFest2021

Licence: MIT license
Beginner-friendly repository for Hacktober Fest 2021. Start your contribution to open source through baby steps. πŸ’œ

Programming Languages

Jupyter Notebook
11667 projects
C++
36643 projects - #6 most used programming language
java
68154 projects - #9 most used programming language
python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to HacktoberFest2021

hacktoberfest2021
For Beginners, students and developers this is a great opportunity to learn and contribute to open source.
Stars: ✭ 79 (+139.39%)
Mutual labels:  mit-license, hacktoberfest2021
hacktoberfest-beginner
Make your first contribution for Hacktoberfest in the simplest way
Stars: ✭ 16 (-51.52%)
Mutual labels:  beginner, hacktoberfest2021
HacktoberFest21
A beginner friendly repository for HacktoberFest 2021
Stars: ✭ 45 (+36.36%)
Mutual labels:  beginner, hacktoberfest2021
HacktoberFest2021
Make changes on the website and check them.πŸŽƒ
Stars: ✭ 0 (-100%)
Mutual labels:  beginner, hacktoberfest2021
Hacktoberfest-2021
This Repo is created for beginners to promote open source contribution (hacktoberfest). The steps are provided in the readme file. Give it a star⭐ if you liked it :)
Stars: ✭ 52 (+57.58%)
Mutual labels:  beginner, hacktoberfest2021
Hacktoberfest-hackedoff
This Repo contains easy javascript questions for beginners to participate in Hacktoberfest 2021.
Stars: ✭ 14 (-57.58%)
Mutual labels:  beginner, hacktoberfest2021
Hacktoberfest2021 beginners
Hactoberfest repo for absolute beginners.
Stars: ✭ 39 (+18.18%)
Mutual labels:  beginner, hacktoberfest2021
HACKTOBERFEST2021 INSPIRATION
😎A Hacktoberfest-2021 Contribution Repository For Beginners😎...Simplest Repo for BeginnersπŸ‘¨β€πŸ’»πŸ‘¨β€πŸ’»πŸ‘¨β€πŸ’»...Add your Profile Details, Photo and Inspirational Quote πŸ™ŒπŸ™ŒπŸ™Œ& There you go to do your first PR❀❀❀
Stars: ✭ 30 (-9.09%)
Mutual labels:  beginner, hacktoberfest2021
Yet Another Algorithms Repository
Beginner friendly repo for easily contributing algorithms' implementations
Stars: ✭ 31 (-6.06%)
Mutual labels:  mit-license, beginner
browzica
Use browzica to keep track of your bookmarks
Stars: ✭ 18 (-45.45%)
Mutual labels:  hacktoberfest2021
Ravys-unified-discord-ruleset
Extensive, yet polished community ruleset, aimed at reducing the work of moderators
Stars: ✭ 21 (-36.36%)
Mutual labels:  hacktoberfest2021
Web-OS
No description or website provided.
Stars: ✭ 21 (-36.36%)
Mutual labels:  hacktoberfest2021
NAME-CARD hacktoberfest
It is a website for showcasing your Github profile.
Stars: ✭ 33 (+0%)
Mutual labels:  hacktoberfest2021
EduSmart
It utilizes 3D, Augmented reality to give real-life simulations or feels of various models and make the learning process more impactful and fascinating. With an interactive live feature, students can ask the teacher their doubts instantly and also discuss.
Stars: ✭ 23 (-30.3%)
Mutual labels:  hacktoberfest2021
beginr
an R package for beginners
Stars: ✭ 15 (-54.55%)
Mutual labels:  beginner
Cold-Family-Feud
Host your own Family Feud game. Mobile friendly with built in buzzers.
Stars: ✭ 30 (-9.09%)
Mutual labels:  mit-license
just-calling-random-api
React app to call various APIs. A place for new contributors to learn how to consume their APIs and contribute to open-source. Part of Hacktoberfest.
Stars: ✭ 25 (-24.24%)
Mutual labels:  hacktoberfest2021
HackerRank-swift-solutions
My solutions in Swift for HackerRank tests
Stars: ✭ 16 (-51.52%)
Mutual labels:  hacktoberfest2021
BnademOverflow
BnademOverFlow's Official Website
Stars: ✭ 37 (+12.12%)
Mutual labels:  hacktoberfest2021
NbGodotBoilerplate
This is a simple kickstarter project for NimbleBeasts projects. It comes with some standard features and little helpers as well as a some stuff, no one has time for in a game jam.
Stars: ✭ 18 (-45.45%)
Mutual labels:  hacktoberfest2021

Hacktober Fest 2021

πŸŽ‰ Open source is changing the world – one contribution at a time! πŸŽ‰


This repository is made for beginners who are unfamiliar with open source and GitHub. So what is holding you back?! Make your first contribution to the open source and take home swags. πŸ‘•πŸ“¦

What is Hacktober Fest?

Hacktoberfest is a month-long open source contribution program hosted by DigitalOcean in the month of October for supporting open source development. Hacktoberfest encourages participation in the open source community, which grows bigger every year. Whether you are a pro in programming or a newbie, Hacktoberfest welcomes each one of the contributors for providing their valuable contribution to the open source community. Completing the challenge earns you a limited edition swags and other exiciting goodies.

How to receive swags?

  • Register yourself at the Hacktober Fest Website
  • Create 4 pull-requests from repositories participating in the challenge (repositories having hacktoberfest topic)
  • Successfully merged PRs will be validated further for 14 days.
  • After that, the PR is accepted
  • Remember! All PRs must be done between October 1 to October 31 to be eligible for swags.
  • This year the first 55,000 participants will be eligible for the prize.

How to contribute?

Read RULES.md before creating a pull request

PRs violating the rules will be closed and reported Spam! ❌

If you're not comfortable with command line, here are tutorials using GUI tools. If you don't have git on your machine, install it.

1. Fork the repository.

fork this repository

2. Clone your forked copy of the project.

git clone  https://github.com/abhilashmnair/HacktoberFest2021.git

3. Navigate to the project directory πŸ“ .

cd HacktoberFest2021

4. Add a reference(remote) to the original repository.

git remote add upstream https://github.com/abhilashmnair/HacktoberFest2021.git

5. Check the remotes for this repository.

git remote -v

6. Always take a pull from the upstream repository to your master branch to keep it at par with the main project(updated repository).

git pull upstream main

7. Create a new branch.

git checkout -b <your_branch_name>

8. Perform your desired changes to the code base.

9. Track your changesβœ”οΈ .

git add *

10. Commit your changes .

git commit -m "Message"

11. Push the committed changes in your feature branch to your remote repo.

git push -u origin <your_branch_name>

12. To create a pull request, click on compare and pull requests. Please ensure you compare your feature branch to the desired branch of the repository you are supposed to make a PR to.

Not a developer or programmer? Don't worry! Add useful documentation and fix grammatical errors in the README file. Every single contribution of yours will benefit your open source venture.

License

This repository and the contained files are licensed under MIT License. See LICENSE for full text.


πŸ’œ Thank You for your participation! πŸ’œ

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].