View .spacemacs
;; Buffer | |
(spacemacs/declare-prefix "w" "window-prefix") | |
(spacemacs/set-leader-keys "w/" 'split-window-right-and-focus) | |
(spacemacs/set-leader-keys "w-" 'split-window-below-and-focus) |
View .cvimrc
let blacklists = ["http://localhost/*","https://keithclark.co.uk/*","https://threejs.org/*"] | |
set sortlinkhints | |
let hintcharacters = "asdfgqwertzxc" |
View node-and-npm-in-30-seconds.sh
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 |
View gist:1a5c97081485fb36977a
Variables | |
========== | |
predefined variables : | |
- inventory_hostname (fqdn) (normally the same as ansible.fqdn) | |
- inventory_hostname_short | |
To know the return codes returned by ansible modules, just use plain ansible -vvv to see them : | |
ansible -i ~/ansible/arrfab.net/hosts/hosts.cfg -vvv -m copy -a 'src=files/sysinfo dest=/etc/sysinfo' tungstene.arrfab.net | |
tungstene.arrfab.net | success >> { | |
"changed": true, |