Skip to content

Instantly share code, notes, and snippets.

@springaki
springaki / file0.txt
Created December 16, 2014 23:34
RubyMineで簡単に行ごとのコミットログを見る方法 (Annotate,Blame) ref: http://qiita.com/spring_aki/items/04c229a771e44396c4fd
$ git annotate <ファイル名>
@springaki
springaki / .powenv
Last active August 29, 2015 14:11
RubyMineでPowを使いながらDebugする方法 ref: http://qiita.com/spring_aki/items/8319af8ec12b444f167b
export RUBY_DEBUG_PORT=1234
export POW_WORKERS=1
"no ruby, no life!"
# => {"no"=>2,"ruby"=>1,"life"=>1}
str = "no ruby, no life!"
# A.1
str.scan(/\w+/).each_with_object(Hash.new(0)){|e,h| h[e]+=1}
# => {"no"=>2, "ruby"=>1, "life"=>1}
# A.2