- 紅茶
- 皿
- マグカップ
- 写真入りマグカップ
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
| { | |
| "Keymap": { | |
| "C-j": "peco.SelectPrevious", | |
| "C-k": "peco.SelectNext", | |
| "C-c": "peco.Cancel", | |
| "C-j": "peco.SelectDown", | |
| "C-k": "peco.SelectUp", | |
| "C-f": "peco.ScrollPageDown", | |
| "C-b": "peco.ScrollPageUp" | |
| } |
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
| File "<stdin>", line 3 | |
| print '\n'.join(styles) | |
| ^ | |
| SyntaxError: invalid syntax |
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
| #!/usr/bin/env zsh | |
| function update_it() { | |
| local tool_path="$1" | |
| local target="$2" | |
| pushd "$tool_path" &> /dev/null | |
| [ ! -e .git ] && echo " x [Warning] $target is not git repository" && popd &> /dev/null && return 0; |
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
| class EchoSd < Formula | |
| desc "Echo 'sudden death' message" | |
| homepage "https://fumiyas.github.io/2013/12/25/echo-sd.sh-advent-calendar.html" | |
| url "https://raw.githubusercontent.com/fumiyas/home-commands/master/echo-sd" | |
| sha256 "42f333ec81642f3b6a3a5fb59ab35f526dd7c86b77cdb8a420ba73eaf3846652" | |
| def install | |
| bin.install "echo-sd" | |
| end | |
| end |
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
| function agvim | |
| vim (ag $argv | peco --query "$LBUFFER" | awk -F : '{print "-c " $argv[2] " " $argv[1]}') | |
| end |
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
| gem list --no-versions | grep "^[a-z]" | grep bunlder -v | grep test-unit -v | grep rdoc -v | grep rake -v | grep psych -v | grep io-console -v | grep json -v | grep bigdecimal -v | grep minitest -v | xargs gem uninstall -aIx |
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
| #!/usr/bin/env bash | |
| set -e | |
| for TARGET_VERSION in $@; do | |
| if MAKE_OPTS="-j $(nproc)" MAKEOPTS="-j $(nproc)" nodenv install $TARGET_VERSION && nodenv global $TARGET_VERSION; then | |
| npm install --global npm@latest | |
| npm install --global neovim |
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
| #!/usr/bin/env zsh | |
| eval "$(rbenv init - zsh)" | |
| export MIKUTTER=$HOME/Projects/github.com/mikutter/mikutter | |
| mstart() { | |
| echo "Starting mikutter..." | |
| ruby $MIKUTTER/mikutter.rb &> /tmp/MIKU_LOG & | |
| ps aux | fgrep mikutter.rb | fgrep -v grep | awk '{print $2}' > /tmp/MIKU_PID |
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
| Plugin.create :laco do | |
| command(:laco, | |
| name: 'らこらこらこ〜w', | |
| condition: lambda{ |opt| true }, | |
| visible: true, | |
| role: :timeline) do |opt| | |
| Service.primary.update(message: "らこらこらこ〜w") | |
| end | |
| end |
OlderNewer