Entries from 2011-08-14 to 1 day

メルロ=ポンティ コレクション

を読んでたら、イノベーションスプリントの野中先生の資料を読みたくなったので読み返した。http://www.slideshare.net/InnovationSprint2011/2011-6794551スライドに出てくる、触れる手と触れられる手が相互浸透していく様子を詳しく知りたい人は、下記の本…

Clojure agent & send

(def counter (agent 0)) ;; agent (defn heavy-inc [x] (Thread/sleep 1000) (inc x)) (send counter #(heavy-inc %)) ;; send (send counter #(heavy-inc %)) (send counter #(heavy-inc %)) (println @counter) (await counter) ;; await (println @count…