- Install pre-requisities
sudo apt-get install build-essential tcl
- Install Redis
cd /tmp
curl -O http://download.redis.io/redis-stable.tar.gz
tar xzvf redis-stable.tar.gz
| <template> | |
| <div> | |
| <accordion-item | |
| v-for="(item, index) in items" | |
| :title="item[titleName]" | |
| :body="item[bodyName]" | |
| :key="index" | |
| :is-open="activeItemIndex == index" | |
| @toggled="onToggle" | |
| ></accordion-item> |
sudo apt-get install build-essential tcl
cd /tmp
curl -O http://download.redis.io/redis-stable.tar.gz
tar xzvf redis-stable.tar.gz
PHP | Laravel | Web Scraping
A curated list of amazingly awesome PHP libraries, resources and shiny things.
| <?php | |
| require __DIR__ . '/vendor/autoload.php'; | |
| use GuzzleHttp\Client; | |
| use GuzzleHttp\HandlerStack; | |
| use GuzzleHttp\Handler\CurlFactory; | |
| use GuzzleHttp\Handler\CurlHandler; | |
| use GuzzleHttp\Handler\CurlMultiHandler; | |
| use GuzzleHttp\Handler\EasyHandle; |
| build_settings: | |
| verbose: false | |
| prefer_symlink: false | |
| setup: | |
| composer: | |
| action: "install" | |
| prefer_dist: false | |
| test: |
| # downgrade to php5.4 first | |
| sudo apt-get install software-properties-common python-software-properties | |
| sudo add-apt-repository ppa:ondrej/php5-oldstable -y | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get install php5 | |
| # install ajenti | |
| wget -O- https://raw.github.com/Eugeny/ajenti/master/scripts/install-ubuntu.sh | sudo sh |
This process worked for me. I take no responsibility for any damage or loss incurred as a result of following or not following these steps or, for that matter, anything else you might do or not do.
svn.domain.com.au.http (other protocols should work).git.domain.com.au and:Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):
Install Package Control for easy package management.
Ctrl+`
| #!/usr/bin/env bash | |
| echo ">>> Starting Install Script" | |
| # Update | |
| sudo apt-get update | |
| # Install MySQL without prompt | |
| sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password password root' | |
| sudo debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root' |