[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

タグ

2013年1月6日のブックマーク (2件)

  • Toast • The no-nonsense CSS grid

    Unprecedented Control Twelve columns. Six columns. Nine columns. As many columns as you want, in as many combinations as you want. $col-groups: (12, 6, 9); Fixed width gutters No fluid gutter width bullcrap. This is the real deal. What you set is what you get. $gutter-width: 20px; Easy to use, hard to break It takes just a few lines of code to start using Toast. And it’ll work all the way down to

    syanbi
    syanbi 2013/01/06
    CSS framework
  • #extend が遅い問題 - 鳩舎

    ここで「#extend 遅い!DCI 狂ってる!」というような話があった。 DCI の例でよく出てくる Object#extend でメソッドを呼び出すとすげー遅いね、どうすんのこれという話で、じゃあまぁ妥当にモデルにいろんなものを include したほうがいいんじゃねという話になってくる。 それも一個の解決方法だと思うし、いいと思うんだけど、僕としては実装を別のところに切り出しておきたいので、どうするか考えた結果、 SimpleDelegator とか使って Delegate すればいいじゃないかと思って実装してみたんだけど、 SimpleDelegator って言ってみれば method_missing なのでそれもまぁ重い。 んで Forwardable で実装すればもうちょい早いのではみたいなことでそうやってみた。 結果はこんな感じ(僕の実装は Dicer) benchmark:

    #extend が遅い問題 - 鳩舎