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/bash | |
pr=$1 | |
if [ ! $pr ]; then | |
echo "Require PR number." | |
exit 1 | |
fi | |
pr=`sed -E "s%^.*pulls?/%%g; s%/files$%%" <<< $pr` # GitHub の URL だった場合に PR 番号を抜き出す |
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
どうも | |
こちらは世界の麦汁Advent Calendar 2013 の16日目となります。 | |
今回は「注意一秒怪我一生死亡一歩」ということで | |
JNetHack の話でも書かせていただきます。 | |
実は麦汁さんはかつて名を馳せた冒険家でありまして | |
ワルキューレやウィザード、果ては旅人として | |
イェンダーの魔除けを手に入れて半神半人になるための試練を受けて来た身であります。 |
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
どうも。 | |
こちらの記事は世界の麦汁Advent Calendar2013の15日目です。 | |
昨日分は間に合ってない設定で後から追加される設定ということにしてください。 | |
本日のアドベントカレンダーのテーマは | |
麦汁さんとRubyです。 | |
麦汁さんがRubyという言語に触れるようになったのは | |
前の職場に入社した際にRoR、いわゆるRuby on Railsをそこでやることになったからです。 |
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
このGistは世界の麦汁Advent Calendar 2013 8日目の記事です。 | |
前日は麦汁さんによる「料理男子っぷりのアピール(http://s.ameblo.jp/mugijiru/entry-11722273517.html)」でした。 | |
今日のこの記事は | |
昨日「沖縄エンジニア忘年会2013」の際に「少し遅れた誕生日プレゼント」としていただいた | |
「キュウリに求婚」という絵本の感想を要求されておりますで | |
それについて書くことにします。 | |
そもそもそんな本を渡された経緯をお話しますと |
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
(add-to-list 'load-path "~/.emacs.d/el-get/gist.el") | |
(require 'gist) | |
(setq gist-view-gist t) |
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
this is gistit second test http://gistit.herokuapp.com/ |
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
[color] | |
ui = auto | |
[alias] | |
st = status | |
ci = commit | |
co = checkout | |
df = diff | |
br = branch | |
tree = log --graph --pretty=oneline --decorate --date=short --abbrev-commit --branches |
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
#name : さっきマックで女子高生が……別れた方がいいよありえない | |
#group : general | |
# -- | |
さっきマックで女子高生が「彼氏が${0}とか言ってたんだけど」「マジで別れた方がいいよ」「そうだよね…${1}って何度も言ってるんだけど」「そういう問題じゃないよ${2}とか有り得ない」とか言ってた |
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
require 'formula' | |
class Vim < Formula | |
# url 'ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2' | |
url 'https://vim.googlecode.com/hg/', :revision => '48252b5fd170' | |
version '7.3.390' | |
homepage 'http://www.vim.org/' | |
# md5 '5b9510a17074e2b37d8bb38ae09edbf2' | |
head 'https://vim.googlecode.com/hg/' |
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
# みんな大好きls周り | |
alias l='ls' | |
alias s='ls' | |
alias ks='ls' | |
# 高度に発展した、キータイプ矯正を目的とするアニメーションプログラムを入れているため使わない | |
# alias sl='ls' | |
# cdもよくミスる | |
alias c='cd' | |
alias cd..='cd ..' |
NewerOlder