2006-03-08
jkondolife
secondwifeがヒドスw
みんなグループで雑記かいてるなぁ
日記に書こうよ!><ノ
subscribeされにくくなるからやなのぅ><ノ(自分つっこみ)
サブテク花見・決定
詳しくは幹事クンまで!(既成事実)
Hashであるkeyのvalueが空文字列かどうか調べる
のってよくやるんだけど毎回
hash[key] && !hash[key].empty?
ってやるのがめんどくさい。デフォルトで入って欲しいなぁ。もしくはActiveSupoortか。最近は
class Hash
def value_empty?(key)
if self[key] && !self[key].empty?
false
else
true
end
end
end
h = {:a => 'aaa', :b => ''}
p h.value_empty?(:a) # false
p h.value_empty?(:b) # true
p h.value_empty?(:c) # true
でしのいでるけどvalue_empty? てダサイよなぁ。
railsのrakeの形式が変わった
rakeの一番の問題は空白区切りのオプションが作れないことだな。makeっぽくしたからか。
つーわけでいままでは_で区切りまくっててよくわからんことになってたrailsのrakeが:を区切りとしたことでわかりやすく。でもzshのcompletionがきかなくなった!
$ rake --tasks
rake db:fixtures:load # Load fixtures into the current environment's database
rake db:migrate # Migrate the database through scripts in db/migrate. Target specific version with VERSION=x
rake db:schema:dump # Create a db/schema.rb file that can be portably used against any DB supported by AR
rake db:schema:load # Load a schema.rb file into the database
rake db:sessions:create # Creates a sessions table for use with CGI::Session::ActiveRecordStore
rake db:sessions:drop # Drop the sessions table
~
zsh-lovers
http://www.grml.org/zsh/zsh-lovers.html
あー。completion周りの知識があやふやだなぁ。すげぇこまい部分は覚える気無し。
$ ls **/*~*(${~${(j/|/)fignore}})(.)
とか書くんだったらpipeでrubyでどうにかするよ!
ドロップターゲット
fubの。いまさらだけどちょうべんりだ。とくにはてブのEntry見たいとき。
droptarget.xml
春だなぁ
ちょうあったかい。花見やろうぜ!
13時間寝た
会社ある日なのに。ダウナー部入りたい!(USO