Code Monkey home page Code Monkey logo

learn-coding's Introduction

Learn Basic Coding

This is a beginner-friendly project to help you get started with coding . If you don't know where to start, feel free to watch the videos linked below.

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

Videos

Getting Started

  • Star this repo and share it with your friends.
  • Replace <YOUR-USERNAME> with your GitHub username in this guide.

1. About Me

  • Go to 1.AboutMe folder.
  • Create the file 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.

  • press 'Propose New File' button
  • press 'Create pull request' button
  • Create pull request

2. Basic HTML Page

  • Go to 2.HTML folder.
  • Create the file 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>
  • press 'Propose New File' button
  • press 'Create pull request' button
  • Create pull request

3. Basic Python Program

  • Go to 3.Python folder.
  • Create the file 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))
  • press 'Propose New File' button
  • press 'Create pull request' button
  • Create pull request

4.Basic C Program

  • Go to 4.C folder.
  • Create the file 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);
  }
  • press 'Propose New File' button
  • press 'Create pull request' button
  • Create pull request

5.Basic Java Program

  • Go to 5.Java folder.
  • Create the file 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);
    }
}
  • press 'Propose New File' button
  • press 'Create pull request' button
  • Create pull request

Ideas for contributions

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

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

learn-coding's People

Contributors

spoodermanexe avatar shaju2609 avatar aswindevmp avatar code5am avatar akshaypradeep6152 avatar craftcoder-yt avatar alwayshp avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.