This guide has moved to a GitHub repository to enable collaboration and community input via pull-requests.
https://github.com/alexellis/k8s-on-raspbian
Alex
This guide has moved to a GitHub repository to enable collaboration and community input via pull-requests.
https://github.com/alexellis/k8s-on-raspbian
Alex
I use luan/vimfiles
He's also added a cheat sheet
# get vim set up
brew uninstall ctags
brew tap universal-ctags/universal-ctags
brew install universal-ctags --HEAD
| #!/bin/sh | |
| KEYDIR=~/.ssh/keys.d/github-deploy | |
| CONFDIR=~/.ssh/config.d/github-deploy | |
| github_username=noah | |
| github_access_token=$(cat ~/.secret/github_access_token) | |
| rp=$(git rev-parse --is-inside-work-tree 2>/dev/null) |
| #!/bin/bash | |
| # generate pub key | |
| ssh-keygen -f ~/.ssh/id_rsa.pub -e -m PKCS8 > ~/.ssh/id_rsa.pem.pub | |
| # encrypt | decrypt | |
| openssl rsautl -encrypt -pubin -inkey ~/.ssh/id_rsa.pem.pub -ssl <<< somestring | | |
| openssl rsautl -decrypt -inkey ~/.ssh/id_rsa |
| set the clipboard to "" | |
| set appname to "SecurID" | |
| set thePin to RsaTokenPin() | |
| activate application appname | |
| do shell script "networksetup -setairportpower en0 on" | |
| tell application appname | |
| activate |
| set-window-option -g utf8 on | |
| set -g mode-mouse on | |
| set -g mouse-resize-pane on | |
| set -g mouse-select-pane on | |
| set -g mouse-select-window on | |
| set-option -g prefix C-q | |
| set -g history-limit 50000 | |
| unbind-key C-b | |
| bind-key q send-prefix | |
| set -g base-index 1 |