Giter Club home page Giter Club logo

helios1101 / hacktoberfest_20 Goto Github PK

View Code? Open in Web Editor NEW
84.0 4.0 236.0 70.67 MB

This repository aims to cater to all users from beginners to advanced in this Hacktober'20. Everyone will surely have a take away form this. Happy Hacktober !!

Home Page: https://helios1101.github.io/HacktoberFest_20/

License: GNU General Public License v3.0

HTML 37.42% CSS 1.29% C 7.88% C++ 31.98% Go 0.22% Java 3.54% Python 12.00% Dart 0.41% Scheme 0.12% JavaScript 1.85% PHP 1.04% Kotlin 0.21% Ruby 0.01% Haskell 1.15% Objective-C 0.46% HCL 0.42%
hacktoberfest good-first-issue html-css programming-languages first-contributions git github first-pull-request-and-commit collaborator portfolio-page

hacktoberfest_20's Introduction

Hacktoberfest

Gitter PRs Welcome

πŸŽƒ HacktoberFest'20 Icebreaker Project πŸŽƒ

This repository aims to give an introduction as to how the Open Source World functions. Use this project to make your first contribution to an open-source project on GitHub. Practice making your first pull request to a public repository before doing the real thing!

Make sure to grab some cool swags during Hacktoberfest by getting involved in the open-source community and completing some simple tasks in this project.

This repository is open to all members of the GitHub community. Any member can contribute to this project without being a collaborator.

Repo Link : helios1101.github.io/hacktoberfest'19/

What is Hacktoberfest?

A month-long celebration from October 1st to October 31st presented by Digital Ocean and DEV Community collaborated with GitHub to get people involved in Open Source. Create your very first pull request to any public repository on GitHub and contribute to the open-source developer community.

https://hacktoberfest.digitalocean.com/

Rules

To qualify for the official limited edition Hacktoberfest shirt, you must register here and make four Pull Requests (PRs) between October 1-31 (in any time zone). PRs can be made to any public repo on GitHub, not only the ones with issues labeled Hacktoberfest. This year, the first 50,000 participants who complete the challenge will earn a T-shirt.

Choose from these tasks

Here are 3 quick and easy ways to contribute to this project:

  • Task-1: Add your name and description Add your name to the website with description and make your way to Open Source.

  • Task-2: Making your Own portfolio page Host your very own portfolio page in minutes and share with us to get nearer to swags

  • Task-3: Show Off coding skills Help us in making a one-stop place to find necessary codes and articles, which can vary from Hello World to Dynamic Programming in any language of your choice.

Choose one or all 3, make a pull request for your work and wait for it to be merged!

Steps to follow πŸ“œ

0. Star The Repo 🌟

Star the repo by pressing the topmost-right button to start your wonderful journey.

1. Fork it 🍴

You can get your own fork/copy of HacktoberFest_20 by using the Fork button or clicking this at top-right of your screen.

Fork Button

2. Clone it πŸ‘₯

NOTE: commands are to be executed on Linux, Mac, and Windows(using Powershell)

You need to clone (download) it to local machine using

$ git clone https://github.com/Your_Username/HacktoberFest_20.git

This makes a local copy of the repository in your machine.

Once you have cloned the HacktoberFest_20 repository in Github, move to that folder first using change directory command on Linux, Mac, and Windows(PowerShell to be used).

# This will change directory to a folder HacktoberFest_20
$ cd Hacktoberfest_20

Move to this folder for all other commands.

3. Set it up ⬆️

Run the following commands to see that your local copy has a reference to your forked remote repository in Github :octocat:

$ git remote -v
origin  https://github.com/Your_Username/HacktoberFest_20.git (fetch)
origin  https://github.com/Your_Username/HacktoberFest_20.git (push)

Now, let's add a reference to the original HacktoberFest_20 repository using

$ git remote add upstream https://github.com/helios1101/HacktoberFest_20.git

This adds a new remote named upstream.

See the changes using

$ git remote -v
origin    https://github.com/Your_Username/HacktoberFest_20.git (fetch)
origin    https://github.com/Your_Username/HacktoberFest_20.git (push)
upstream  https://github.com/Remote_Username/HacktoberFest_20.git (fetch)
upstream  https://github.com/Remote_Username/HacktoberFest_20.git (push)

In your case, you will see

$ git remote -V
origin    https://github.com/Your_Username/HacktoberFest_20.git (fetch)
origin    https://github.com/Your_Username/HacktoberFest_20.git (push)
upstream  https://github.com/helios1101/HacktoberFest_20.git (fetch)
upstream  https://github.com/helios1101/HacktoberFest_20.git (push)

4. Sync it ♻️

Always keep your local copy of the repository updated with the original repository. Before making any changes and/or in an appropriate interval, run the following commands carefully to update your local repository.

# Fetch all remote repositories and delete any deleted remote branches
$ git fetch --all --prune

# Switch to `master` branch
$ git checkout master

# Reset local `master` branch to match the `upstream` repository's `master` branch
$ git reset --hard upstream/master

# Push changes to your forked `HacktoberFest_20` repo
$ git push origin master

5. 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.

6. Create a new branch ‼️

Whenever you are going to contribute. Please create a separate branch using command and keep your master branch clean (i.e. synced with remote branch).

# It will create a new branch with name Branch_Name and switch to branch Folder_Name
$ git checkout -b BranchName

Create a separate branch for contribution and try to use the same name of the branch as of folder.

To switch to the desired branch

# To switch from one folder to other
$ git checkout BranchName

To add the changes to the branch. Use

# To add all files to branch Folder_Name
$ git add .

Type in a message relevant for the code reviewer using

# This message get associated with all files you have changed
$ git commit -m 'relevant message'

Now, Push your awesome work to your remote repository using

# To push your work to your remote repository
$ git push -u origin BranchName

Finally, go to your repository in the browser and click on compare and pull requests. Then add a title and description to your pull request that explains your precious effort.

Help Contributing Guides πŸ‘‘

We love to have articles and codes in different languages and the betterment of existing ones.

Please discuss it with us first by creating a new issue.

πŸŽ‰ 🎊 πŸ˜ƒ Happy Contributing πŸ˜ƒ 🎊 πŸŽ‰

References πŸ“‹ πŸ“œ

  • Books πŸ“– πŸ“š
    • Data Structures with C by Schaum Series
    • Data Structures: A Pseudocode Approach with C by Richard F. Gilberg
    • Fundamentals Of Data Structures in C by Horowitz
    • Java: The Complete Reference By Herbert Schildt
    • Object Oriented Programming with C++ by E Balaguruswamy
    • Introduction to Algorithms by Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein.
  • Websites πŸ’»

Code Maintainers:

The project is maintained by :

hacktoberfest_20's People

Contributors

aanand300 avatar aayushgarg-03 avatar aliana17 avatar arpitmishu avatar baecon avatar greyhatlinux avatar guptam123 avatar helios1101 avatar ifanzalukhu97 avatar jenssen avatar jwala-anirudh avatar mohsinrasool avatar muskan077 avatar nairitya03 avatar nikitanamdev avatar officialputuid avatar poonam125sharma avatar priyanshu2510 avatar pseudonerd avatar rahulharlalka avatar risheekjain avatar sk99sk avatar somyamahajan18 avatar stnbnvdz avatar suchisarkar avatar sudeepta14 avatar utkryuk avatar vaibhavvijay9 avatar yaelsteinberger avatar zainfarrukh90 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

Watchers

 avatar  avatar  avatar  avatar

hacktoberfest_20's Issues

Pull requests here won’t count toward Hacktoberfest.

Hi there,

Thanks for your interest in Hacktoberfest and helping others learn how to make their first contributions to open source!

That said, high-quality contributions are part of the the core values of Hacktoberfest, so we kindly ask that you do not create repositories which allow users to quickly gain a PR toward completing the challenge.

We encourage you to take a look at our list of Hacktoberfest issues for inspiration and ideas about making meaningful contributions to open source projects.

Due to this, we've added this repository to our list of excluded repositories and pull requests here will not count toward Hacktoberfest 2019.

Please note, you are welcome to keep running this repository as a learning tool for new contributors to open-source, but pull requests won’t count toward Hacktoberfest.

Happy Hacking,
The Hacktoberfest Team

Hacktoberfest is presented by DigitalOcean and DEV.

Task 3 Adding Shell Sort.cpp

Is your feature request related to a problem? Please describe.
Shell sort is an algorithm that first sorts the elements far apart from each other and successively reduces the interval between the elements to be sorted. It is a generalized version of insertion sort. In shell sort, elements at a specific interval are sorted.

Describe the solution you'd like
Implementing using CPPSo

Describe alternatives you've considered
Sorting using Array

Additional context
Add any other context or screenshots about the feature request here.

Task1 - Explain how to render HTML page

Just completed Task1 and was wondering that it would be great to have a simple walkthrough inside README.md on how to render the HTML page before sending the PR.

I would like to see if I did anything wrong prior to sending the PR but I actually don't know how to. Guess it would improve the task even more.

Thanks a lot!

HacktoberFest PR Not Consider

Is your feature request related to a problem? Please describe.
The contribution are not contributing the PR count for hactoberfest 2020

Describe the solution you'd like
Addition of the label hacktoberfest to the repo will fix this

Describe alternatives you've considered
There are no alternatives , refer to the new guidlines for HacktoberFest2020

Pull requests here won’t count toward Hacktoberfest.

Hi there,

Thank you for your interest in Hacktoberfest and in helping others make their first contributions to open source.

While we agree that it's important to help others, this repository does not do this in a way that is in line with the Hacktoberfest values. Please read the part that talks about high-quality contributions to understand why we are reaching out and taking action. Due to this, we've added this repository to the list of excluded repositories which means pull requests here will not count toward Hacktoberfest 2020.

This is not a DigitalOcean decision, it's one that is inspired by the community of maintainers and contributors who all agree that quality is more important than quantity when it comes to engagement in the Open Source community. The values remind us to shift the focus from contributions to repositories that encourage folks to quickly create and gain a pull request to contributions that will help people level-up their skills and contribute to open-source projects that are in need of help.

If you feel that this repository is an effective learning resource, we encourage you to keep running it since a core part of the aim for Hacktoberfest is to encourage new folks to get involved with open-source.

However, if you are interested in having contributions to this repo count toward Hacktoberfest we encourage you to take a look at this list of Hacktoberfest issues for inspiration and make the necessary changes to focus on enabling people to make meaningful contributions to open source projects.

If you have any questions about this or participating in Hacktoberfest, please contact our team via email [email protected] or join our community Discord server.

Happy Hacking,
The Hacktoberfest Team

Hacktoberfest is presented by DigitalOcean, Intel and DEV.

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.