Glide is the easiest way to create useful slide for all of your Gists.
- input key
<-to go backward. - input key
->to go forward.
| Verifying my Blockstack ID is secured with the address 1GTHrzKd8rw8Aw5m6vPppgbuwq7qoBhpct https://explorer.blockstack.org/address/1GTHrzKd8rw8Aw5m6vPppgbuwq7qoBhpct |
| - hosts: 127.0.0.1 | |
| connection: local | |
| gather_facts: no | |
| tasks: | |
| - name: brew update | |
| homebrew: update_homebrew=yes | |
| - name: brew install packages | |
| homebrew: name={{item}} | |
| with_items: | |
| - python |
| if-shell 'test -z "$POWERLINE_COMMAND"' 'if-shell "which powerline-client" "set-environment -g POWERLINE_COMMAND powerline-client" "set-environment -g POWERLINE_COMMAND powerline"' | |
| set -g status on | |
| set -g status-utf8 on | |
| set -g status-interval 2 | |
| set -g status-fg colour231 | |
| set -g status-bg colour234 | |
| set -g status-left-length 20 | |
| set -g status-left '#[fg=colour16,bg=colour254,bold] #S #[fg=colour254,bg=colour234,nobold]#(eval $POWERLINE_COMMAND tmux left)' | |
| set -g status-right '#(eval $POWERLINE_COMMAND tmux right -R pane_id=`tmux display -p "#D"`)' | |
| set -g status-right-length 150 |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| after 'bundler:install', 'middleman:build' do | |
| on roles(:app) do | |
| within release_path do | |
| execute "cd #{release_path}" | |
| execute :bundle, "exec middleman build" | |
| end | |
| end | |
| end |
| execute "enable" do | |
| command "yes | ufw enable" | |
| end | |
| execute "allow" do | |
| command "ufw allow ssh" | |
| end |
| define () -> | |
| class Camera | |
| take: -> | |
| # do nothing |
| window.Camera = class Camera | |
| take: -> | |
| # do nothing |