- Go to: 'System Preferences' >> 'MySQL' and stop MySQL
OR,
- sudo /usr/local/mysql/support-files/mysql.server start
- sudo /usr/local/mysql/support-files/mysql.server stop
| #!/bin/bash | |
| if [ ! $1 ]; then | |
| echo " Example of use: $0 database_name dir_to_store" | |
| exit 1 | |
| fi | |
| db=$1 | |
| out_dir=$2 | |
| if [ ! $out_dir ]; then | |
| out_dir="./" |
| # install openjdk | |
| sudo apt-get install openjdk-7-jdk | |
| # download android sdk | |
| wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz | |
| tar -xvf android-sdk_r24.2-linux.tgz | |
| cd android-sdk-linux/tools | |
| # install all sdk packages |
| sudo ln -sf /lib/x86_64-linux-gnu/libudev.so.1 /lib/x86_64-linux-gnu/libudev.so.0 |
| <?php | |
| function unique_array($multidimetionalarray) { | |
| $static_array = array(); | |
| foreach($multidimetionalarray as $array){ | |
| $static_array[] = json_encode($array); | |
| } | |
| $filtered_static_array = array_unique($static_array); | |
| $filtered_array = array(); | |
| foreach($filtered_static_array as $array){ | |
| $filtered_array[] = json_decode($array, true); |
| ini_set("memory_limit","200M"); | |
| if( !empty($_SERVER['HTTP_ORIGIN']) ){ | |
| // Enable CORS | |
| header('Access-Control-Allow-Origin: ' . $_SERVER['HTTP_ORIGIN']); | |
| header('Access-Control-Allow-Methods: POST, GET, OPTIONS'); | |
| header('Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Range, Content-Disposition, Content-Type'); | |
| } | |
| if( $_SERVER['REQUEST_METHOD'] == 'OPTIONS' ){ |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| 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 |