Skip to content

Instantly share code, notes, and snippets.

@jagroop
Last active May 29, 2019 11:36
Show Gist options
  • Select an option

  • Save jagroop/89db2428f6ded9f957678f3c025a681b to your computer and use it in GitHub Desktop.

Select an option

Save jagroop/89db2428f6ded9f957678f3c025a681b to your computer and use it in GitHub Desktop.

Revisions

  1. jagroop revised this gist May 29, 2019. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions training.md
    Original file line number Diff line number Diff line change
    @@ -67,6 +67,10 @@

    - Git Workflow

    - Basics Of NodeJS

    - Socket Programming

    ## Links

    - [http://phpforkids.com/](http://phpforkids.com/)
  2. jagroop revised this gist May 8, 2019. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions training.md
    Original file line number Diff line number Diff line change
    @@ -69,6 +69,7 @@

    ## Links

    - [http://phpforkids.com/](http://phpforkids.com/)
    - [https://phptherightway.com](https://phptherightway.com)
    - [http://www.phpthewrongway.com/](http://www.phpthewrongway.com/)
    - [http://w3schools.com](https://w3schools.com)
  3. jagroop revised this gist Jan 22, 2019. 1 changed file with 10 additions and 1 deletion.
    11 changes: 10 additions & 1 deletion git.md
    Original file line number Diff line number Diff line change
    @@ -37,4 +37,13 @@ git commit -m "enter your commit message here"

    ```
    git push origin <branch-name>
    ```
    ```

    Links
    =====

    - [http://rogerdudler.github.io/git-guide/](http://rogerdudler.github.io/git-guide/)
    - [https://try.github.io/](https://try.github.io/)
    - [https://learngitbranching.js.org/](https://learngitbranching.js.org/)
    - [https://github.com/git-tips/tips](https://github.com/git-tips/tips)
    - [https://github.com/k88hudson/git-flight-rules](https://github.com/k88hudson/git-flight-rules)
  4. jagroop revised this gist Jan 22, 2019. 1 changed file with 40 additions and 0 deletions.
    40 changes: 40 additions & 0 deletions git.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,40 @@
    Git first time setup on PC ( only if its not already done )
    ==========================================================

    1. Install GIT

    2. Configure

    ```
    git config --global user.name "Your name"
    git config --global user.email "youemailaddress@example.com"
    ```

    Note: Ask for System admin's help if you dont know how to do that.

    Git basic workflow
    ==================

    1. Initialize ( One time process only )

    ```
    git init
    ```

    2. Stag changes ( Git will reinitialize tracking file and folders )

    ```
    git add -A
    ```

    3. Commit changes

    ```
    git commit -m "enter your commit message here"
    ```

    4. Push

    ```
    git push origin <branch-name>
    ```
  5. jagroop revised this gist Jan 10, 2019. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion training.md
    Original file line number Diff line number Diff line change
    @@ -54,7 +54,9 @@
    - Clone a project, Push to Github
    - Branches
    - Commiting changes


    - Rest APIs

    **Advance Level** *[ 1 Month ]*

    - MVC ( Laravel )
  6. jagroop revised this gist Jan 2, 2019. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion training.md
    Original file line number Diff line number Diff line change
    @@ -69,6 +69,6 @@

    - [https://phptherightway.com](https://phptherightway.com)
    - [http://www.phpthewrongway.com/](http://www.phpthewrongway.com/)
    - [w3schools.com](w3schools.com)
    - [http://w3schools.com](https://w3schools.com)
    - [https://www.geeksforgeeks.org/](https://www.geeksforgeeks.org/)
    - [https://laracasts.com](https://laracasts.com)
  7. jagroop revised this gist Jan 2, 2019. 1 changed file with 9 additions and 1 deletion.
    10 changes: 9 additions & 1 deletion training.md
    Original file line number Diff line number Diff line change
    @@ -63,4 +63,12 @@

    - Vuejs ( Javascript Framework )

    - Git Workflow
    - Git Workflow

    ## Links

    - [https://phptherightway.com](https://phptherightway.com)
    - [http://www.phpthewrongway.com/](http://www.phpthewrongway.com/)
    - [w3schools.com](w3schools.com)
    - [https://www.geeksforgeeks.org/](https://www.geeksforgeeks.org/)
    - [https://laracasts.com](https://laracasts.com)
  8. jagroop renamed this gist Jan 1, 2019. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  9. jagroop created this gist Jan 1, 2019.
    66 changes: 66 additions & 0 deletions trainin.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,66 @@
    # Kindlebit Training Program

    <br>

    ## Things to keep in mind

    <br>

    - ***Most important:*** Please write clean code
    - Keep your Team leader updated. ( Your team leader will share a excel sheet with you , you have to put your daily status on daily basis )
    - Keep Notes of everything you do.

    <br>

    ## Levels Of Training

    <br>

    **Beginner Level** *[ 2 Weeks ]*


    - PHP Basics
    - Variables , Arrays , Functions ( Inbuilt and Custom Functions )
    - Date and Time
    - Super Globals
    - Password Hashing
    - Data Filtering

    - PHP Object Oriented
    - Classes , Objects , Class Access Modifiers , Inheritance, Constructors , Destructors

    - MySQL
    - Connections
    - Data Fetching , Adding , Updating , Deleting
    - Joins , Sub Queries
    - Inbuilt Mysql functions [Mysql Useful Functions](https://www.tutorialspoint.com/mysql/mysql-useful-functions.htm)
    - PDO ( PHP Data Objects )

    **Intermediate Level** *[ 3 Weeks ]*


    - Dependency Management
    - [Composer](https://getcomposer.org/)
    - Installing , Updating and removing Dependencies

    - PSR Auto loading

    - MVC and CMS Patterns ( Codeingiter and Wordpress )

    - Javascript and Jquery

    - GIT
    - Basics
    - Clone a project, Push to Github
    - Branches
    - Commiting changes

    **Advance Level** *[ 1 Month ]*

    - MVC ( Laravel )

    - CMS ( Wordpress , Drupal )

    - Vuejs ( Javascript Framework )

    - Git Workflow