selinsezi / hacktoberfest

Hacktober fest repository and purely designed for good intention.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

๐ŸŽƒ๐ŸŽƒ๐ŸŽƒHACKTOBERFEST๐ŸŽƒ๐ŸŽƒ๐ŸŽƒ

๐Ÿ‘ปIntroduction๐Ÿ‘ป

This repository is designed for open source event for Hacktoberfest. Please respect others and enjoy!

Disclaimer: Any push that alters integrity of this repo or content of other person's file will not be merge to this repository.


How to contribute? โœ…

Prior to starting these challenges please sign up at Hacktoberfest, and login to it using your Github account.

First, fork this repo to your Github. Forking

Second clone it down to your computer Cloning

Third, create your own branch with your name

Fourth, push your code up and make a pull request.

Great article to follow


๐Ÿ‘ปChallenges๐Ÿ‘ป

Challenge #1๐ŸŽƒ

  • Log your name into the Contributor.md file. The format should be as follow.
- Name: (Full Name)
- Bio: Tell me about yourself!
- Link: [Github](link goes here)

After adding this to the contributor.md file, make a pull request and wait for it to merge!


Challenge #2๐ŸŽƒ

Introduce yourself! In About-Me folder, create a file with your initials.md. After that add a contents as follow:

- Name: (Name)
- Location: (where are you from? if its too personal, put Remote)
- Fun Fact: Tell me about yourself any fun fact
- Link: [Github](Put your Github link)

Then make a pull request


Challenge #3๐ŸŽƒ

Create any simple scripts into the Scripts folder, printing Hello World message.

Feel free too use any of these code or be creative!

Example

// JavaScript

function helloWorld(){
    console.log("Hello World");
}

helloWorld();
# Python
def hello_world():
    print("Hello World")

hello_world()
// C Sharp
public class Program
{
    public static void Main(string[] args)
    {
        HelloWorld();
    }
    public static void HelloWorld()
    {
        Console.WriteLine("Hello World");
    }
}
// Java
public class Program {
    public static void main(String[] args) {
        helloWorld();
    }
    public static void helloWorld() {
        System.out.print("Hello World");
    }
}

Challenges #4๐ŸŽƒ

Should you choose to do this mission...

Let create something cool together!
In Application folder, I've started node app. Please build on top this application by adding one line of code. Again ONE LINE of code! This is to give other people to put their cool idea.

If you are brand new to coding. You can still participate by adding a comment to the function or variable and tell what you think that line is doing!!

In node.js you can create a comment by adding // to the beginning of the statement.

Lets get creative!


Thank you all for participating and thank you Clubhouse1 for doing it live.

Checkout these cool people as well ๐Ÿ‘๐Ÿ‘

Mario Pugh: Github
Kimberly Dills: Github
Bubacarr Darboe: Github
Kimberley Boggs: Github


Credit

AliceWonderland for idea of the this open source project.

About

Hacktober fest repository and purely designed for good intention.

License:MIT License


Languages

Language:Python 92.0%Language:JavaScript 4.7%Language:C++ 2.7%Language:Julia 0.6%