Skip to content

Hacktoberfest 2020. Don't forget to spread love and if you like give me a ⭐️

License

Notifications You must be signed in to change notification settings

Praggya17/Hacktoberfest2020-Newbie

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hacktoberfest 2020 - Newbie

This is a beginner-friendly project to help you get started with your hacktoberfest. If you don't know where to start, feel free to watch the videos linked below, and read the contribution rules. Happy hacking <3 !!

P.S. Star and share this repository, if you had fun!

Videos

Getting Started

Replace <YOUR-USERNAME> with your GitHub username in this guide.

1. About Me

  • Create the file 1.AboutMe/YOUR-USERNAME.md It should look something like this 1.AboutMe/<YOUR-USERNAME>.md
  • Copy the next template into your file and fill the information with yours. (Replace along with * )
---
name: *Your Name*
age: *Your Age*
institution: *Your Institution*
quote: *Random Quote*
github_user: *Your UserName*
---

Do not use special characters in the template above.

  • Commit Changes.

2. Basic HTML Page

  • Create the file 2.HTML/YOUR-USERNAME.html It should look something like this 2.HTML/<YOUR-USERNAME>.html
  • Copy the next template into your file and fill the information with yours. (Replace along with * )
<html>
<head><link rel="stylesheet" type="text/css" href="style.css"></head>
<body>
  <div class="wrapper">
    <div class="left">


      <img class="profile-picture" src="*Your Image URL*" width="200"/>
      <h1 class="name">  *Your Name*  </h1>
      <h4 class="subtitle">  *Age*  </h4>


    </div>
    <div class="right">
      <p class="bio">

        *Random Quote*

      </p>
      <ul class="social-links">

        <li><a href="https://github.com/*yourusername*">  *Your Username* </a></li>

      </ul>
    </div>
  </div>
</body>
</html>
  • Commit Changes.

3. Basic Python Program

  • Create the file 3.Python/YOUR-USERNAME.py It should look something like this 3.Python/<YOUR-USERNAME>.py
  • Copy the next template into your file and fill the information with yours. (Replace along with * )
name, age = "*YOUR NAME*", *YOUR AGE*
username = "*YOUR USERNAME*"
print ('Hello!')
print("Name: {}\nAge: {}\nUsername: {}".format(name, age, username))
  • Commit Changes.

4.Basic C Program

  • Create the file 4.C/YOUR-USERNAME.c It should look something like this 4.C/<YOUR-USERNAME>.c
  • Copy the next template into your file and fill the information with yours. (Replace along with * )
#include <stdio.h>
 int main()
  {
     printf("Hello!\n");
     printf("Name   : *YOUR NAME*\n");
     printf("Age    : *YOUR AGE*\n");
     printf("Username : *YOUR USERNAME*\n");
     return(0);
  }
  • Commit Changes.

5.Basic Java Program

  • Create the file 5.Java/YOUR-USERNAME.java It should look something like this 5.Java/<YOUR-USERNAME>.java
  • Copy the next template into your file and fill the information with yours. (Replace along with * )
class *YOUR USERNAME* {
    public static void main(String[] args) {

    String name = "*YOUR NAME*";
    int age = *YOUR AGE* ;
    String username = "*YOUR USERNAME*";

        System.out.println("Hello!\nName: "+name+"\nAge: "+age+ "\nUsername: "+username);
    }
}
  • Commit Changes.

Ideas for contributions

  • Style the index.html
  • Add your own projects to the 'Helpful Material Page'

FAQs

  • Who can contribute?

    • Anyone with a github account and who is signed up for hacktoberfest :).
  • How many pull request (PR) must be made, if I can get an awesome shirt from Hacktoberfest 2020?

    • 5
  • How do I track my progress to get an awesome shirt from Hacktoberfest 2020?

  • What is the duration of Hacktoberfest 2020?

    • It is from 1st october to 31st october 2020.
  • What is the event for?

    • For the open source community engagement.

I will do my best to merge as much as possible from everyone. However, time is limited and the merge conflicts are horrible <3

About

Hacktoberfest 2020. Don't forget to spread love and if you like give me a ⭐️

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 34.2%
  • CSS 29.9%
  • Java 15.5%
  • C 11.6%
  • Python 8.8%