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
config.vm.define 'ec2' do |ec2| | |
ec2.vm.provider :aws do |aws, override| | |
aws.access_key_id = 'xxx' | |
aws.secret_access_key = 'yyy' | |
aws.keypair_name = 'zzz' | |
aws.region = 'ap-northeast-1' | |
aws.subnet_id = 'subnet-xxxxxxx' | |
aws.private_ip_address = '172.31.15.251' |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
- hosts: localhost | |
tasks: | |
- name: update homebrew | |
homebrew: update_homebrew=yes | |
- name: upgrade all packages | |
homebrew: upgrade_all=yes | |
- name: tap homebrew repositories | |
homebrew_tap: tap={{ item }} state=present |
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
# antibody | |
source "$(brew --prefix)/share/antibody.zsh" | |
antibody bundle <<__EOP__ | |
djui/alias-tips | |
caarlos0/zsh-open-github-pr | |
caarlos0/zsh-mkc | |
caarlos0/zsh-git-sync | |
TBSliver/zsh-plugin-colored-man | |
b4b4r07/enhancd |
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
#cloud-config | |
coreos: | |
units: | |
- name: coreos-docker-mkdir.service | |
command: start | |
runtime: yes | |
content: | | |
[Unit] | |
Before=docker.service var-lib-docker.mount |
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
// ==UserScript== | |
// @name Qiita: Select code block | |
// @description コードの右上のアイコンをクリックすると選択される | |
// @version 1.1 | |
// @match http://qiita.com/* | |
// @match https://*.qiita.com/* | |
// @namespace http://qiita.com/uraura/ | |
// @license Public Domain | |
// ==/UserScript== |
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
#cloud-config | |
coreos: | |
units: | |
- name: docker.service | |
drop-ins: | |
- name: 10-mount-private.conf | |
content: | | |
[Service] | |
MountFlags=private |
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
# zgen | |
export ZGEN_RESET_ON_CHANGE=($HOME/.zshrc) | |
source $HOME/src/github.com/tarjoilija/zgen/zgen.zsh | |
if ! zgen saved; then | |
echo "Creating a zgen save" | |
zgen prezto editor key-bindings 'emacs' | |
zgen prezto prompt theme 'sorin' |
OlderNewer