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
Installing Mysql Srver | |
sudo apt-get install mysql | |
login Mysql | |
mysql -u username -p | |
Create a Database | |
create Database db_name; | |
Use Database | |
use db_name; |
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
Installl sublime from Terminal | |
sudo add-apt-repository ppa:webupd8team/sublime-text-2 | |
sudo apt-get update | |
sudo apt-get install sublime-text | |
Installing git | |
sudo apt-get install git | |
Configuring git to use | |
git config --global user.email "[email protected]" | |
git config --global user.name "Meraj Ahmad Siddiqui" |
NewerOlder