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
# -*- encoding: utf-8 -*- | |
# -sで指定したディレクトリにある画像をリサイズして-dで指定したディレクトリに出力するよ。 | |
# 今のとこサイズは決め打ちだけどいじりたかったらopt.onに追加してね。 | |
require 'pathname' | |
require 'fileutils' | |
require 'RMagick' | |
require 'optparse' |
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
aapt dump badging $APK_NAME | grep "package: name" | sed "s/[^']*'\([^']*\)'.*/\1/" |
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
POST /redmine/issues?key=${API_KEY} | |
Content-Type: application/json | |
{ | |
"issue":{ | |
"project_id":${PROJECT_ID}, | |
"subject":${SUBJECT}, | |
"description":${DESCRIPTION}, | |
"tracker_id":${TRACKER_ID} | |
} |
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
echo "internationalization" | ruby -lne 'p "#{$_[0]}#{$_.size-2}#{$_[-1,1]}"' |
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 | ruby -n -e '/([^_]*_)([^_]*)(_.*)/ =~ $_; puts "%s%03d%s"%[$1, $2, $3]' |
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
git filter-branch -f --env-filter "GIT_AUTHOR_NAME='__name__'; | |
GIT_AUTHOR_EMAIL='__email__'; GIT_COMMITTER_NAME='__name__'; | |
GIT_COMMITTER_EMAIL='__email__';" |
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
# echoで指定した日付の範囲内で一覧を出力 | |
echo 12/10 20:00..12/25 20:00 | ruby -r date -lne '$_.split("..").tap{|r| break DateTime.parse(r.first)..DateTime.parse(r.last)}.each{|d| puts d.strftime("%m/%d(%a) %H:%M~")}' |
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
# Build Settings | |
BUILD_PATH=build | |
CONFIGURE=Release | |
SCHEME=xxxxxxx | |
TARGET=xxxxxxx | |
# Settings for Sigining | |
PROVISION_NAME=xxxxxxx | |
CODE_SIGN="iPhone Distribution: xxxxxxx" |
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
REVISION=`svn info | grep -i 'last changed rev' | grep -Eo [0-9]+` |
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
cat xxxx.mobileprovision | grep -A 1 -a UUID | grep "string" | sed -E "s/.*>([^<]*)<.*/\1/g" | |
#=> xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx |
OlderNewer