Giter VIP home page Giter VIP logo

shivaylamba / hacktoberfest Goto Github PK

View Code? Open in Web Editor NEW
256.0 4.0 1.9K 18.13 MB

Make your first PR! ~ A beginner friendly repository made specifically for open source beginners. Add any program under any language (it can be anything from a hello-world program to a complex data structure algorithm) or update the existing one. Just make sure you add the program under the correct language directory. Happy coding

JavaScript 3.47% C++ 52.79% C 15.20% Python 8.46% Java 11.66% Dart 0.31% HTML 4.67% Ruby 0.02% CSS 3.20% PHP 0.04% Go 0.17%
hacktoberfest hacktoberfest2019 github digitalocean developer dev java javascript machine-learning css

hacktoberfest's Introduction

Hacktoberfest Hello World !!!

HacktoberFest Hello World in every other language ever. Just fork it and add a 'Hello World' program to contribute for hacktober fest and send a Pull Request!!

Get yourself free goodies by just writing a hello world!

Say hi to the world in any language of your choice!

What is Hacktoberfest?

Hacktoberfest is a program by Digital Ocean, DEV and Github, where you can easily win a T-Shirt just by making 4 pull requests in the month of October to any open source projects on Github.

Logo

Steps to follow 📜

1. Register for Hacktoberfest

https://hacktoberfest.digitalocean.com/

2. Fork it 🍴

You can get your own fork/copy of Hacktoberfest by using the Fork button or clicking this.

Fork Button

3. Add a Program in any Language you like 🐇

Once you have forked the repo, add your progam in the language folder in main branch, if there is no language folder, make one, then add into it. You can take a look to the Programming Language List in Wikipedia to create a new one for Hacktoberfest!

4. Ready, Steady, Go... 🐢 🐇

Once you have completed these steps, you are ready to start contributing by checking our Help Wanted issues and creating pull requests.

5. Give this Project a Star ⭐

If you liked working on this repo, please share this repo as much as you can and star this repo to help as many people in opensource as you can.

Steps to Make Changes and contribute using GIT!

To make your own local copy of the repository you would like to contribute to, let’s first open up a terminal window.

We’ll use the git clone command along with the URL that points to your fork of the repository.

This URL will be similar to the URL above, except now it will end with .git . In the cloud_haiku example above, the URL will look like this:

https://github.com/your-username/Hacktoberfest.git

You can alternatively copy the URL by using the green “Clone or download” button from your repository page that you just forked from the original repository page. Once you click the button, you’ll be able to copy the URL by clicking the binder button next to the URL:

Once we have the URL, we’re ready to clone the repository. To do this, we’ll combine the git clone command with the repository URL from the command line in a terminal window:

git clone https://github.com/your-username/Hacktoberfest.git

4. Create a New Branch

To create your branch, from your terminal window, change your directory so that you are working in the directory of the repository. Be sure to use the actual name of the repository (i.e. Hacktoberfest) to change into that directory.

cd Hacktoberfest

Now, we’ll create our new branch with the git branch command. Make sure you name it descriptively so that others working on the project understand what you are working on.

git branch new-branch

Now that our new branch is created, we can switch to make sure that we are working on that branch by using the git checkout command:

git checkout new-branch

Once you enter the git checkout command, you will receive the following output:

Output:

Switched to branch 'new-branch'

At this point, you can now modify existing files or add new files to the project on your own branch.

Make Changes Locally

Once you have modified existing files or added new files to the project, you can add them to your local repository, which you can do with the git add command. Let’s add the -A flag to add all changes that we have made:

git add -A

or

git add .

Next, we’ll want to record the changes that we made to the repository with the git commit command.

The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is. Additionally, commit messages provide a historical record of the changes for the project at large, helping future contributors along the way.

If you have a very short message, you can record that with the -m flag and the message in quotes:

Example:

git commit -m "Updated Readme.md"

At this point you can use the git push command to push the changes to the current branch of your forked repository:

Example:

git push --set-upstream origin new-branch

5. Update Local Repository

While you are working on a project alongside other contributors, it is important for you to keep your local repository up-to-date with the project as you don’t want to make a pull request for code that will cause conflicts. To keep your local copy of the code base updated, you’ll need to sync changes.

We’ll first go over configuring a remote for the fork, then syncing the fork.

6. Configure a Remote for the Fork

Next, you’ll have to specify a new remote upstream repository for us to sync with the fork. This will be the original repository that you forked from. You’ll have to do this with the git remote add command.

git remote add upstream https://github.com/shivaylamba/Hacktoberfest.git

In this example, upstream is the shortname we have supplied for the remote repository since in terms of Git, “upstream” refers to the repository that you cloned from. If you want to add a remote pointer to the repository of a collaborator, you may want to provide that collaborator’s username or a shortened nickname for the shortname.

7. Sync the Fork

Once you have configured a remote that references the upstream and original repository on GitHub, you are ready to sync your fork of the repository to keep it up-to-date.

To sync your fork, from the directory of your local repository in a terminal window, you’ll have to use the git fetch command to fetch the branches along with their respective commits from the upstream repository. Since you used the shortname “upstream” to refer to the upstream repository, you’ll have to pass that to the command:

git fetch upstream

Switch to the local master branch of our repository:

git checkout master

You’ll now have to merge any changes that were made in the original repository’s master branch, that you will access through your local upstream/master branch, with your local master branch:

git merge upstream/master

8. Create Pull Request

At this point, you are ready to make a pull request to the original repository.

You should navigate to your forked repository, and press the “New pull request” button on your left-hand side of the page.

Hurray!! You just got closer to complete your hacktoberfest challenge.

You can add references to some cool open source projects below:

1. Zulip -

Zulip is 100% open source software, built by a vibrant community of hundreds of developers from all around the world.

Developing Open Source Software and Hardware to improve people's lives.

3. MOZILLA -

This technology could fall into the right hands. Mozilla has 30 repositories available. Follow their code on GitHub.

Learn to code for free with millions of other people round the world.

List of Data Structures and Algorithms

App that lets users gamify real-life choices and activity with in-app rewards .

Learn to code for free with millions of other people around the world.

7. REACT -

A declarative, efficient, and flexible JavaScript library for building user interfaces. Plenty resource to learn. (official)

Build cross-platform desktop apps with JavaScript, HTML, and CSS. Plenty Resource to learn and contribute. (official)

A tribute and log of beloved products and services killed by Google. This is a fun open source project that encourages contributors for Hacktoberfest!

10. issuehub.io -

A website which helps you find projects/issues based on your required language or issue labels.

Another useful tool for searching issues to fix

12. Up For Grabs - 

List of projects with issues that can be resolved by beginners

A list of issues that are labelled “first-timers-only”.

A list of awesome beginners-friendly projects.

TensorFlow is an open-source software library for dataflow programming across a range of tasks. It is a symbolic math library, and is also used for machine learning applications such as neural networks.

An open source container system for automating deployment , scaling and management of containers application.

DuckDuckGo is a privacy-conscious search engine that doesn't track users. Instant Answers is a feature that provides answers without needing to open up a website..

18. Polymer -

An open-source JavaScript library for creating web components which are then used to build web pages and apps, Polymer is currently being developed by Google developers and contributors on GitHub. Central to a wide range of Google services and websites, including YouTube, Google Earth and Google Sites, Polymer received an update in January (Polymer 2.4) which is paving the way for 3.0 and TypeScript support.

19. Blender -

Blender is the free and open source 3D creation suite. It supports the entirety of the 3D pipeline—modeling, rigging, animation, simulation, rendering, compositing and motion tracking, even video editing and game creation.

20. sagemath -

SageMath is a computer algebra system with features covering many aspects of mathematics, including algebra, combinatorics, graph theory, numerical analysis, number theory, calculus and statistics. It builds on top of many existing open-source packages: NumPy, SciPy, matplotlib, Sympy, Maxima, GAP, FLINT, R and many more.

Material Ocean is a theme for various Applications based on a blueish ocean color scheme

A starter project for Ruby On Sinatra web app projects to introduce programmers to Ruby programming. Link to Live Application HERE

Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.

An open source Study guide and introduction to the modern front end stack created by Grab.

LibreOffice is a free and open-source office suite, a project of The Document Foundation. LibreOffice uses the international ISO/IEC standard OpenDocument file format (ODF).

The Roulette game was to control the animation ball stop number. This project was write and using library PixiJs. This is just for fun.

Uber open source project info

A blazing fast & offline web playground in your browser.

hacktoberfest's People

Contributors

abhishekkmr01 avatar ashutoshdas07 avatar dcjha avatar deebindal avatar devrajdc avatar dhirajs0 avatar govinddixit avatar irajeshegde avatar kalpanmukherjee avatar kunal-kushwaha avatar kvv1618 avatar mk-21 avatar nikhildsahu avatar nitishp25 avatar pr4nshul avatar predatorcoderr avatar raghavk16 avatar sabith-nadakkavil avatar sajalgupta0709 avatar sakshigupta265 avatar sarthakbhutani avatar shanky199912 avatar shekhar0809 avatar shivaylamba avatar somya-kapoor avatar sumitdahiya619 avatar tejas10p avatar thribhuvanguptas avatar vsaini212223 avatar xacrolyte avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

hacktoberfest's Issues

The repository is ineligible for Hacktoberfest 2020

Still having the same issue

Ineligible Repository
Your PR was submitted to a repository that is not participating in Hacktoberfest. Maintainers of the repository can add the "hacktoberfest" topic to their repository if they wish to participate

The repository is ineligible for Hacktoberfest 2020

"Your PR was submitted to a repository that is not participating in Hacktoberfest. Maintainers of the repository can add the "hacktoberfest" topic to their repository if they wish to participate."

Please add the "hacktoberfest" topic to this repository

Reversing K Nodes in Linked List

I have searched the Linked List Section and found that a very interesting problem of reversing K nodes in a Linked List is missing.I want to merge my code in Github Repo

Trapping Rain Water

Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining.

Example:

Input: height = [0,1,0,2,1,0,1,3,2,1,2,1]
Output: 6

Kindly assign this issue I want to work under Hacktoberfest 2022.

Make a drawing application

I want to create a repository to showcase how to create an application using modern C++ , including directory structure and Cmake. I will be using Qt6 for the project.

Notepad Using Python

Hey There,
I have created Notepad using Python. I want to contribute it to this repo. Can I ?

Organizing the files

Many files are outside their respective folders. Either change their location and mention this instruction in the readme file if possible.

Guess the number

I want to code for a game called "Guess the random number" using C language. Please allow me to do so.

Add HacktoberFest 2020 Topic

Your PR was submitted to a repository that is not participating in Hacktoberfest. Maintainers of the repository can add the "hacktoberfest" topic to their repository if they wish to participate.

Quick Sort Algorithm in C++

Hi, @shivalamba This is my first PR. I would like to contribute to this repo and add a quicksort Algorithm using C++.
Please assign this to me under Hacktoberfest 2022 .
Thanks!!

KMP- algorithm

Hello @shivaylamba ,
I hope you are going very well. I am participating in hacktoberfest2021. I found that in C++ the KMP algorithm is missing, which is a very important algorithm related to pattern matching problems. I want to add this topic to your repo. I will write well commented, justified and easy to understand code, I will make sure that the reader understands each and every line of my code.

Please assign this issue to me.

Thanks.

Image to edge detection

Want to integrate a python notebook explaining image convlutions and creating an edge detection using that, please assign an issue

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.