- Headlamp
- Mandarins (3)
- Bananas (2)
- Snicker bars (3)
- Trekking sticks
- Jacket
- Light jacket
- Thermal underwear (cold start)
- Trekking shoes
- Trekking pants
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
#!/usr/bin/env node | |
const fs = require('fs'); | |
const path = require('path'); | |
const walk = require('walk'); | |
const yargs = require('yargs'); | |
const getOwnersForFile = require('./get-owners-for-file'); | |
const argv = yargs.command('$0 [options] <path>', false, _yargs => { | |
_yargs |
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
shopt -s autocd | |
shopt -s cdspell | |
shopt -s direxpand | |
shopt -s dirspell | |
alias ls="ls -G" | |
export GREP_OPTIONS='--color=always' | |
if [ -f "$(brew --prefix)/etc/bash_completion" ]; then | |
. $(brew --prefix)/etc/bash_completion |
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
{ | |
"extends": [ | |
"skyscanner", | |
"prettier", | |
"prettier/react" | |
], | |
"env": { | |
"browser": true, | |
"jest": true | |
}, |

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
@daily /usr/sbin/pflogsumm -d yesterday --problems /var/log/mail.log | mail -s "Mail Server: Yesterday's mail activity" [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
sudo apt-get install -y software-properties-common | |
sudo add-apt-repository -y ppa:ubuntu-lxc/lxd-stable | |
sudo apt-get update | |
sudo apt-get install -y lxd | |
sudo newgrp lxd | |
sudo lxc config set core.https_address 127.0.0.1 | |
sudo lxc config trust add $HOME/.config/lxc/client.crt |
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
server { | |
listen 80; | |
server_name nagios.domain.com; | |
access_log /var/log/nginx/nagios.access.log; | |
error_log /var/log/nginx/nagios.error.log info; | |
expires 31d; | |
root /usr/share/nagios3/htdocs; |
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
# Mount | |
sshfs [email protected]: local_dir/ -o uid=$(id -u) -o gid=$(id -g) | |
# Unmount | |
sudo umount -f local_dir/ |
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
alias ls="ls -G" | |
alias subl="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl" | |
alias serve="~/Scripts/serve" | |
alias serve80="sudo ~/Scripts/serve 80" | |
alias t="echo $0" | |
alias gitlogall="git log --graph --decorate --pretty=oneline --abbrev-commit --all" | |
source /Applications/Xcode.app/Contents/Developer/usr/share/git-core/git-prompt.sh | |
source ~/Scripts/git-completion.bash |