short url: caseywatts.com/selfpublish
my book is out! an applied psychology / self-help book targeted at developers: Debugging Your Brain
Markdown --> PDF (as a booklet!)
Markdown --> EPUB and MOBI
short url: caseywatts.com/selfpublish
my book is out! an applied psychology / self-help book targeted at developers: Debugging Your Brain
Markdown --> PDF (as a booklet!)
Markdown --> EPUB and MOBI
| Vagrant.configure("2") do |config| | |
| config.vm.box = "ubuntu/bionic64" | |
| config.vm.provider :virtualbox do |v| | |
| v.gui = true | |
| v.memory = 2048 | |
| end | |
| # Currently "ubuntu/bionic64" on VirtualBox requires `type: "virtualbox"` | |
| # to make synced folder works. |
| vagrant() { | |
| if [[ $@ == "ssh" ]]; then | |
| command vagrant ssh-config > vagrant-ssh-config && ssh -A -F vagrant-ssh-config default | |
| else | |
| command vagrant "$@" | |
| fi | |
| } |