Repository for contribution.

Overview

Hacktoberfest_22

Repository for contribution.

alt text

Understanding Recursion in easier way


Just fork it and add a code of recursion to contribute for hacktober fest and send a Pull Request!

What is Recursion?

The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. Using a recursive algorithm, certain problems can be solved quite easily. Examples of such problems are Towers of Hanoi (TOH), Inorder/Preorder/Postorder Tree Traversals, DFS of Graph, etc.

Get yourself free goodies by just writing a simple code of recursion!

Write code of recursion in any of your desired language in which you think understanding this concept is easier.

What is Hacktoberfest?

Hacktoberfest is a program by Digital Ocean 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.

Steps to follow 📜

1. Register for Hacktoberfest

https://hacktoberfest.com

2. Fork it 🍴

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

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 Hacktoberfest !

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

Once you have completed these steps, you are ready to start contributing

by creating pull requests.

5. Give this Project a Star ⭐

If you liked working on this project, please share this project as much

as you can and star this project 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/abdulmoizquddus/Hacktoberfest_22 //
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 might also like...

The repository contains the list of awesome✨ & cool web development beginner-friendly✌️ projects!

The repository contains the list of awesome✨ & cool web development beginner-friendly✌️ projects!

Web-dev-mini-projects The repository contains the list of awesome ✨ & cool web development beginner-friendly ✌️ projects! Web-dev-mini-projects ADD AN

Jan 3, 2023

Github Repository for the resources shown in my 8 JavaScript Pro Tips Tutorial in Youtube

Github Repository for the resources shown in my 8 JavaScript Pro Tips Tutorial in Youtube

Part 1 - JavaScript Pro Tips - Learn with Sumit Table of Contents How to run Contact How to run Different lessons taught in the Youtube Tutorial are o

Dec 28, 2022

Primary repository for all information related to Fast-Floward Bootcamp session 1

Primary repository for all information related to Fast-Floward Bootcamp session 1

⏊ Fast Floward Welcome to Fast Floward! We are excited to have you here. This repository is where you will find all content, resources, and links for

Dec 23, 2022

This Repository consist of Daily learning JS, Assignments, coding challenge, projects, references, tutorial

This Repository consist of Daily learning JS, Assignments, coding challenge, projects, references, tutorial

💛 A Tour of JavaScript This Repository consist of Daily learning, Assignments, coding challenge, projects, references, tutorial. 👩‍💻 👨‍💻 alert(

Sep 7, 2022

This repository contains a basic example on how to set up and run test automation jobs with CircleCI and report results to Testmo.

CircleCI test automation example This repository contains a basic example on how to set up and run test automation jobs with CircleCI and report resul

Dec 23, 2021

Personal repository for adventjs.dev

🎄 My adventjs commented solutions 🎄 adventjs.dev is a platform developed by where you can practice your JavaScript skills via challenges as an adven

Dec 3, 2022

Runs prettier on a repository's code

prettier-docker-ga Run prettier on your code from Github workflows. Sample Github workflow (this assumes there is a prettier.config.js file in your re

Oct 18, 2022

Example-browserstack-reporting - This repository contains an example of running Selenium tests and reporting BrowserStack test results, including full CI pipeline integration.

BrowserStack reporting and Selenium test result example This repository contains an example of running Selenium tests and reporting BrowserStack test

Jan 1, 2022
Comments
  • New file Vending machine is ADDED

    New file Vending machine is ADDED

    Hey there, thanks for viewing , I have added a new file Vending Machine, it was my semester project from my 1st semester, hope you will approve it, have a great day

    invalid 
    opened by khawajaazfar2000 1
Owner
Abdul Moiz Quddus
Cybersecurity Enthusiast | Software Engineer
Abdul Moiz Quddus
Kurs-repo fĂśr kursen Webbserver och Databaser

Webbserver och databaser This repository is meant for CME students to access exercises and codealongs that happen throughout the course. I hope you wi

null 14 Jan 3, 2023
Repository for contribution.

Hacktoberfest_22 Repository for contribution. Understanding Recursion in easier way Just fork it and add a code of recursion to contribute for hacktob

Abdul Moiz Quddus 9 Dec 29, 2022
Intermediate HTML-CSS-JS Repository to promote Open Source Contribution for Hacktoberfest 2022

Fun-with-JS ?? This project is a sincere attempt by MSTC, DA-IICT to encourage Open Source contribution. Make the best out of the ongoing Hacktoberfes

MSTC, DA-IICT 3 Dec 9, 2022
Medusa + Next.js starter frontend UI project as a part of Open source contribution.

Medusa Next.js Starter Medusa is an open-source headless commerce engine that enables developers to create amazing digital commerce experiences. Prere

Gourav Singh Rawat 9 Dec 15, 2022
Write something on your contribution graph!

GitWrite Write something on your contribution graph! What is GitWrite? GitWrite is a little tool I developed that lets you add a short message to a ye

yodalightsabr 23 Sep 19, 2022
Contribution to the participatory resilience hackathon by Alexander Eggerth, Gawain Marti, Ilija Peijc and me.

GeoHelp A big part of every event is safety. Organizers of these events go to great lengths to ensure the safety of their guests. Security personnel,

Studer Nicola 3 Sep 10, 2022
Own and know your contribution in Science - CitizenSci

Citizen Sci The Pinata API allows for decentralized storage of research data but not at the cost of losing control and privacy over the data as the ac

Kai-Ti Wu 4 Sep 18, 2022
This repo renders contribution data.

This is a Next.js project bootstrapped with create-next-app. Getting Started First, run the development server: npm run dev # or yarn dev Open http://

OpenSauced 4 Sep 17, 2022
Full stack app to journal and keep track of your overall mood each day of the year, inspired by GitHub's contribution graph.

Mood Tracker Mood tracker to journal and keep track of your overall mood each day of the year. How It's Made: Tech used: EJS, CSS, JavaScript, Node.js

Bianca Togonon 44 Dec 14, 2022
A beginner friendly hacktoberfest2022 repo made lately to accept valid open source contribution.

Hacktoberfest2022 A hacktoberfest2022 repo made lately to accept valid open source contribution. What is Hacktoberfest? Hacktoberfest is digitalocean’

One Teacher One 5 Oct 20, 2022