Last active
May 29, 2019 11:36
-
-
Save jagroop/89db2428f6ded9f957678f3c025a681b to your computer and use it in GitHub Desktop.
Revisions
-
jagroop revised this gist
May 29, 2019 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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/) -
jagroop revised this gist
May 8, 2019 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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) -
jagroop revised this gist
Jan 22, 2019 . 1 changed file with 10 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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) -
jagroop revised this gist
Jan 22, 2019 . 1 changed file with 40 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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> ``` -
jagroop revised this gist
Jan 10, 2019 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 ) -
jagroop revised this gist
Jan 2, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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/) - [http://w3schools.com](https://w3schools.com) - [https://www.geeksforgeeks.org/](https://www.geeksforgeeks.org/) - [https://laracasts.com](https://laracasts.com) -
jagroop revised this gist
Jan 2, 2019 . 1 changed file with 9 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -63,4 +63,12 @@ - Vuejs ( Javascript Framework ) - 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) -
jagroop renamed this gist
Jan 1, 2019 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jagroop created this gist
Jan 1, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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