タグ

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

  • あまりにリアルな、色鉛筆で描かれた虹色の石 | ROOMIE(ルーミー)

    以前ルーミーでは色鉛筆で水や雨をテーマとした絵を描いている人を紹介しました。今回紹介する作品もかなりリアルで、思わず目を疑ってしまうほどの美しさです。 これらを描いたのは、カルフォルニアで活動をしているアーティストのEster Roiさん。油と水が混ざって、少しろうをまとったようなツヤツヤな虹色のコントラストにハッとしてしまいます。 しかも、これらは色鉛筆やクレヨンで描いているのだそうで、身近にあるものでこんなものができてしまうのだなあと感心してしまいます。 今回紹介した「Rocks and Water」という作品の他にも「Flowers and Water」や「Miscellaneous(その他)」もあるので、気になった方はぜひ下のリンクより見てみてください。きっと繊細な作品の数々に心躍るはず。 Rocks and Water [Ester Roi]

    ympbyc
    ympbyc 2013/08/06
  • The State Machines of core.async

    Under the covers core.async creates a state machine to turn synchronous / blocking looking code into asynchronous / non-blocking code. Coming from a C# background I knew this state machine method was used with the async / await syntax added in .NET 4.5. What I didn’t know was what this actually meant. Since this was language level syntax it was opaque to me in how it was implemented. Enter core.as