2010-09-08
■ [ruby] Tab Sweep
TabっていうかLDR pin sweepだけど。
http://rubyzucker.info/
ActiveSupportとかRuby Facets的なやつ。思考実験としては面白い。
Array#to_proc
>> [1,2,3,4].map &[:*, 5] => [5, 10, 15, 20]
とか。
http://github.com/c00lryguy/dsl
ryguy.edit do name 'Ryan Lewis' gender :male age 19 end
みたいなDSLを簡単に作るためのライブラリ。
fixture vs factory
http://www.metabates.com/2010/08/15/fixtures-v-factories-cant-we-all-just-get-along/
- fixture: 数が増えるとわけわからなくなる
- factory: 遅い
- 両方使えばいいんじゃね?
- fixtureで最も代表的なデータを作り、それを使い回す
- 例外的なケースのみ、factoryを使う
SimString をRubyから使ってみた - とはえ領域
http://d.hatena.ne.jp/tohae/20100810/1281409877
「もしかして:」機能の実装。
unveil.js
http://github.com/michael/unveil
http://dejavis.org/ みたいな、リアルタイムに動かせるグラフをJSで。リファレンス
http://github.com/blog/677-how-we-deploy-new-features
設定項目をRedis上に保存することで、デプロイなしにアプリケーションの状態を設定する話