- パズドラ http://mobile.gungho.jp/maintenance/pad/pua59k0000000m3c.html
- チェインクロニクル http://chronicle.sega-net.com/members/info/detail/131017_3065.html
- ブレイブフロンティア http://www.a-lim.jp/brave/news/news_0061.html
- 魔法使いと黒猫のWiz
- スクールアイドルフェスティバル
- ドラゴンポーカー
- 拡散性ミリオンアーサー
- Lord of Knights http://info.lordofknights.jp/news/detail_0_1_998.html
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 IgnoreDiffUnityFilesOnGitHub | |
// @namespace http://ymrl.net/ | |
// @include *://github.com/*/*/pull/* | |
// @include *://github.com/*/*/pull/*/files | |
// @include *://github.com/*/*/compare/* | |
// @include *://github.com/*/*/commit/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js | |
// ==/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
#!/bin/sh | |
convert \( -resize 480x320 source.jpg \) \ | |
\( -gravity south -background none -fill white -stroke black -strokewidth 5 -font fonts/pakenham.ttf -size 480x320 -pointsize 192 label:LGTM \) \ | |
-flatten result.jpg |
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
using UnityEditor; | |
public class BuildSample | |
{ | |
public static void PerformBuild() | |
{ | |
} | |
} |
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 ruby | |
w = "〜" | |
puts w.encode('Shift_JIS') | |
puts w.encode('CP932') | |
# $ ruby sjis.txt| nkf -Sw | |
# sjis.txt:6:in `encode': U+301C from UTF-8 to Windows-31J (Encoding::UndefinedConversionError) | |
# from sjis.txt:6:in `<main>' |
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
# Jenkins のジョブ設定で | |
bash -l -x -c " | |
# FIXME | |
PATH=~/.rbenv/shims:~/.rbenv/bin:$PATH | |
set -e | |
bundle install --binstubs --path vendor/bundle | |
./bin/berks install -p cookbooks | |
# TTY ナシなので --force | |
vagrant destroy --force | |
vagrant up |
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
#!/bin/sh | |
eval `ssh-agent` | |
ssh-add | |
java -jar ~/opt/jenkins/slave.jar -jnlpUrl http://jenkins.example/computer/xxx/slave-agent.jnlp |
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
<source> | |
type forward | |
</source> | |
<match json.**> | |
type exec_filter | |
tag debug.json | |
command jq '{a, b, c, x: .other.x, nextfoo: .other.next.foo, time}' | |
in_format json | |
out_format json |
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
#!/bin/sh | |
repo=$1 | |
branch_first=$2 | |
branch_second=$3 | |
token=$4 | |
#format='##{id}: #{title}' | |
format='* "##{id}: #{title}":#{url}' # for redmine | |
git log ${branch_first}..${branch_second} --oneline --reverse | awk '/Merge pull request/{ print $5 }' | tr -d '#' | sort | while read f; do |
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
# coding: utf-8 | |
# dstat プラグインの出力を growthforecast 向けにデータ整形する | |
# | |
# 設定例: | |
# <match dstat> | |
# type dstat_format | |
# tag_format server.${hostname}.dstat | |
# </match> | |
# | |
class DstatFormatOutput < Fluent::Output |