This file contains 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
# Quick hack to be able to reboot a Vagrant Windows VM during provisioning. | |
# | |
# This files goes in the same folder as your vagrant file. | |
# | |
# Then you (in your Vagrantfile): | |
# require_plugin './windows_reboot_plugin' | |
# | |
# Your provisioners run in order, so... | |
# config.vm.provision :shell, :inline => "stuff that need a reboot" | |
# config.vm.provision :reboot |
This file contains 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
09:37 kei: bu使うぶー | |
10:04 kei: 恋人ウマい | |
11:32 kei: 仕様ならしようがない | |
11:50 kei: わかりました、はぁはぁ | |
11:26 kei: (「ぼくのことをプレミアムサポートして下さい!」 | |
11:52 kei: ニャーン | |
12:17 kei: 私はカレーになりたい | |
12:37 kei: 快適なベッドライフ | |
12:52 kei: 仏滅戦隊、jinja!! | |
13:36 kei: まじだぶる |
This file contains 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
#!/bin/sh | |
# reset stuff | |
sudo rm -r .blobs | |
rm -r blobs | |
rm -r blobs_import | |
git checkout -- config/blobs.yml | |
git checkout -- config/final.yml | |
rm config/private.yml |
This file contains 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
#compdef vmc | |
#autoload | |
# vmc autocompletion for oh-my-zsh | |
# requires: the vmc gem (gem install vmc) | |
# author: Andy Piper (http://andypiper.co.uk) | |
_list_apps() { | |
for APP in `vmc apps | grep -oE '^\| [[:alnum:]-]+ . ' | grep -oE '[[:alnum:]-]+'`; do | |
compadd "$@" $APP |