ajay2827 / AffiCodes

Some usefull Algorithms and Codes to help beginners. You will find multiple different languages Algorithms and ideas here and also some beginners Mini Projects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AffiCodes

. It is an Open Source Repo for students/young programmers who are absolute begineers in programming and want to learn it. This repository will contain Some usefull Algorithms and Codes to help beginners.Consists of Different Languages codes.

Languages You Will Found:
-HTML
-CSS
-JAVASCRIPT
-PHP
-PYTHON
-C++
-C#
-JAVA

You can also find
-Mini Projects

How to contribute

  1. You can contribute with Code.
  2. Fixing issues.
  3. You can contribute in terms of usefull tips and tricks of programming or add documentations.

Steps.

Step 1

Starred and Fork this repository

step 2 Fork this repository

You can fork this repository by clicking on fork button on top right corner. Once you fork this will create a copy of repo on your account

step 3 Clone the repository

To clone the repository go to your account open this repo and either click on clone button or run the command below to get this repository on your local machine

git clone <copied URL>

e.g. git clone https://github.com/DevAffan/contribution.git

step 4 Create a branch

Go inside of your folder where you clone the repository and run these commands.

create a new branch using below command.

git checkout -b <branch-name>

e.g. git checkout -b mybranch

step 5 Lets make some contributions

Make changes to files on your local machine or add some code.

step 6 Add Changes and Commit Changes

use the following commands

git add .

Now we have to commit changes, commit message should always be clear, to commit use command below.

git commit -m "resolved the <issue>"

step 7 Push changes to GitHub

Now push the changes to your branch.

git push origin <branch-name>

name of branch is same as you created in step 4

e.g git push origin mybranch

step 8 Submit your changes for review

Once you have pushed your code to GitHub, it's now time to create pull request, you will go to the repository click on compare and pull request and submit the pull request.

Soon, we will be merging all your pull requests to the main branch of project.

Happy Hacking

About

Some usefull Algorithms and Codes to help beginners. You will find multiple different languages Algorithms and ideas here and also some beginners Mini Projects.


Languages

Language:C++ 62.3%Language:JavaScript 14.5%Language:Python 9.6%Language:PHP 5.0%Language:HTML 3.5%Language:Java 3.1%Language:CSS 2.1%