2009-06-17 :-)
_ 朝ッ
0530 起床
_ [Twitter]アイドルマスターメンバーが Twitter に居るのは周知だと思う
こっちは bot だけど
- 我那覇響 http://twitter.com/ganaha_hibiki
- 菊地真 http://twitter.com/kikuchi_makoto
- 高槻やよい http://twitter.com/takatsuki_yayoi
- 三浦あずさ http://twitter.com/miura_azusa
- 四条貴音 http://twitter.com/shijou_takane
- 秋月律子 http://twitter.com/akizuki_ritsuko
- 水瀬伊織 http://twitter.com/minase_iori
- 星井美希 http://twitter.com/hoshii_miki
- 双海亜美・真美 http://twitter.com/futami_ami_mami
- 天海春香 http://twitter.com/amami_haruka
- 如月千早 http://twitter.com/kisa_chihaya
- 萩原雪歩 http://twitter.com/hagiwara_yukiho
_ [Ruby]ファイル名の SJIS 丸数字を (1) などに変換する
もうちょっとマシなやり方は無いんだろか。
#!/usr/bin/ruby -Ks require 'fileutils' def main( argv ) Dir.glob( '*' ){ |f| src = f.dup f.gsub!( /\x87\x40/, '(1)' ) f.gsub!( /\x87\x41/, '(2)' ) f.gsub!( /\x87\x42/, '(3)' ) f.gsub!( /\x87\x43/, '(4)' ) f.gsub!( /\x87\x44/, '(5)' ) f.gsub!( /\x87\x45/, '(6)' ) f.gsub!( /\x87\x46/, '(7)' ) f.gsub!( /\x87\x47/, '(8)' ) f.gsub!( /\x87\x48/, '(9)' ) f.gsub!( /\x87\x49/, '(10)' ) f.gsub!( /\x87\x4A/, '(11)' ) f.gsub!( /\x87\x4B/, '(12)' ) f.gsub!( /\x87\x4C/, '(13)' ) f.gsub!( /\x87\x4D/, '(14)' ) f.gsub!( /\x87\x4E/, '(15)' ) f.gsub!( /\x87\x4F/, '(16)' ) f.gsub!( /\x87\x50/, '(17)' ) f.gsub!( /\x87\x51/, '(18)' ) f.gsub!( /\x87\x52/, '(19)' ) f.gsub!( /\x87\x53/, '(20)' ) puts f FileUtils.mv( src, f ) if src != f } end main( ARGV )
ref.