Created
January 17, 2018 06:56
-
-
Save Varnan/376e42371f6d43d0d5351a181dd0a492 to your computer and use it in GitHub Desktop.
Tutorials LInks
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 characters
GIT Tutorials | |
=============== | |
http://pcottle.github.io/learnGitBranching/?demo | |
https://try.github.io/levels/1/challenges/1 | |
Create a new local branch from develop: | |
git fetch origin develop | |
git checkout develop | |
git reset —hard origin/develop | |
git checkout -b <branch_name> | |
MS office & Adobe Photoshop in Ubuntu/Debian Linux OS | |
======================================================== | |
http://askubuntu.com/questions/156296/can-i-install-microsoft-office-if-so-how | |
Angular regular expressions tutorial in 20 min | |
================================================= | |
http://tutorialzine.com/2014/12/learn-regular-expressions-in-20-minutes/ | |
Angular dynamic Form Validation | |
================================== | |
https://www.sitepoint.com/premium/books/angularjs-novice-to-ninja/preview/angularjs-form-validation-9d394f8 | |
Panda - Open source python library for data analysis | |
======================================================== | |
http://www.gregreda.com/2013/10/26/intro-to-pandas-data-structures/ | |
http://pythonprogramming.net/pandas-saving-reading-csv-file/ | |
Mac Screen Notes | |
============== | |
Create New Screen : screen -S <Screen Name> | |
List All Screen : screen -ls | |
Attach a Screen : screen -r <screen Name> | |
Detach a Screen : screen -d <screen name> | |
Deletev a Screen : enter to screen and ctrl + c | |
Exit From working Screen : ctrl+a then ctrl+d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment