Getting started:
Related tutorial: http://cd64.de/mysql-cli
SQL joins infografic: http://cd64.de/sql-joins
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
# to install the latest stable version: | |
brew install scala --with-docs | |
# to install scala-2.10: | |
brew install https://raw.github.com/gist/4340744/scala.rb --with-docs | |
# to switch versions (from https://github.com/mxcl/homebrew/wiki/External-Commands): | |
brew switch scala 2.9.2 | |
brew switch scala 2.10.0 | |
Getting started:
Related tutorial: http://cd64.de/mysql-cli
SQL joins infografic: http://cd64.de/sql-joins
#!/bin/bash | |
# Stop all containers. | |
docker stop $(docker ps -a -q) | |
# Delete all containers. | |
docker rm $(docker ps -a -q) | |
# Delete all images. | |
docker rmi --force $(docker images -q) |
[user] | |
name = Pavan Kumar Sunkara | |
email = [email protected] | |
[core] | |
editor = vim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
excludesfile = ~/.gitignore | |
[sendemail] | |
smtpencryption = tls | |
smtpserver = smtp.gmail.com |
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
#!/bin/sh | |
echo 'You successfully added this git submodule to your project using gsm (Git Submodule Manager)' |
#!/bin/sh | |
# We use `--ignore-errors` on rerun to skip existing roles. | |
ansible-galaxy install -r $(PWD)/requirements.yml -p $(PWD)/roles/ --ignore-errors |
#!/bin/sh | |
sudo easy_install pip | |
sudo pip install ansible |