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
Dial this: *#*#2846579#*#* | |
Service menu will appear. | |
Go to "ProjectMenu" -> "Background Setting" -> "Log Setting" | |
Open "Log switch" and set it to ON. | |
Open "Log level setting" and set the log level you wish. |
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
sudo chown -R $(whoami) ~/.npm |
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
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |
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
# Install Git | |
# https://gist.github.com/kostysh/1f6f56660ce08e0d4c69 | |
# Install Ruby | |
sudo apt-get install ruby | |
# Install OpenShift gem | |
sudo gem install rhc | |
# Setup for OpenShift client |
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
sudo apt-get install git | |
git config --global user.name "Your Name" | |
git config --global user.email "[email protected]" |
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
# Install Java: | |
# https://gist.github.com/kostysh/f46fe6ddf808a53d6a53 | |
# Download and install Sencha CMD into /home/[user]/bin | |
# http://www.sencha.com/products/sencha-cmd/download/ | |
# Get the Android SDK | |
# http://developer.android.com/sdk/index.html#download | |
# Unzip sdk into folder /home/[user]/bin/android-sdk-linux_x86 |
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
sudo gedit /etc/sysctl.conf | |
# add at the end of file line: | |
fs.inotify.max_user_watches=1000000 | |
# and when | |
sudo sysctl -p |
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
cordova plugin add org.apache.cordova.battery-status & | |
cordova plugin add org.apache.cordova.camera & | |
cordova plugin add org.apache.cordova.console & | |
cordova plugin add org.apache.cordova.contacts & | |
cordova plugin add org.apache.cordova.device & | |
cordova plugin add org.apache.cordova.device-motion & | |
cordova plugin add org.apache.cordova.dialogs & | |
cordova plugin add org.apache.cordova.file & | |
cordova plugin add org.apache.cordova.file-transfer & | |
cordova plugin add org.apache.cordova.geolocation & |
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
sudo add-apt-repository ppa:cordova-ubuntu/ppa | |
sudo apt-get update | |
sudo apt-get install cordova-cli |
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
sudo add-apt-repository ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install oracle-java7-installer | |
sudo apt-get install oracle-java8-installer | |
#sudo update-java-alternatives -s java-7-oracle | |
sudo apt-get install oracle-java8-set-default |