albertojauregui / HELLO_WORLD

A application to show hello world programme in most of the programming language created so far

Home Page:https://kmrakash.github.io/HELLO_WORLD/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hacktoberfest2020

Project Description

This is a simple web application to show the hello world programmes in all the possible progamming language created so far . If you are looking to begin your open source journey and make your first PR for hacktoberfest 2020 . This is a great oppurtunity for you . Please read contribution guide before making any PR.

Fun Fact

Wikipedia has a list whose goal is to include “all notable programming languages in existence”, that currently lists over 700 programming languages. Wikipedia’s list excludes certain types of languages such as markup languages.

Get the whole list of programming language from here . Feel free to create a issue if a programme for that language is not added .

Contribution Guide

  1. Fork this Repository.
  2. Clone the Repository on your system using the command - git clone [url of the forked repository]
  3. Create a new branch using the command - git branch [branch-name]
  4. Move to the new branch by using this command - git checkout [new branch-name]
  5. Add a card with the image of your programme, Language Name and mention your Github Profile name in the Button.
  6. Once you've made your changes make sure you pull changes in master just in case - git checkout master -> git pull
  7. Then again checkout to your new branch and pull from master branch - git checkout [new branch name] -> git pull
  8. Add your content using the command - git add -A
  9. Commit the changes using the command - git commit -m "your-message"
  10. Push the changes using the command - git push origin [branch-name]
  11. Creat a Pull request.
  12. Star this Repository.

For reference check out : www.youtube.com/watch?v=c6b6B9oN4Vg

What to do in this project ?

  • First visit carbon.now.sh
  • chose a nice background
  • write the programe
  • save the image as png
  • name the image as [programming language].png
  • store the image in images folder
  • use below template code , Add this to necessary place inside index.html
  • commit your changes
  • now create a PR mention the image in PR also

Template Code

 <div class="col-lg-4 mb-4">
                <div class="card">
                    <img class="card-img-top" src="[Image address]" alt="">
                    <div class="card-body">
                        <h5 class="card-title text-center">[Name of Programming Language]</h5>
                        <div class="col text-center">
                        <a href="[Add the link to your Github Profile]" class="btn btn-outline-danger btn-sm">Contributed by - [Add your Github Username/profile name]</a>
                        </div>
                    </div>
                </div>
            </div>

About

A application to show hello world programme in most of the programming language created so far

https://kmrakash.github.io/HELLO_WORLD/

License:MIT License


Languages

Language:HTML 100.0%