Live data from Hacker News

Viewing profile — stuglaser

stuglaser

HN member
Joined
Tue, Jun 04, 2013, 8:48 PM UTC
HN karma
7
Public activity
4 items

About stuglaser

No profile information was provided.

Recent public activity

  1. comment
    Comment #6204774

    A video of the talk is here: http://www.confreaks.com/videos/198-rubyconf2009-worst-ideas...

  2. comment
    Comment #5993017

    I've implemented Go-style channels in Python, and it turned out pretty well. The 'select' statement is a bit verbose, but still pretty readable. You can find the code here: http://…

  3. comment
    Comment #5837055

    I'm reimplementing Go-style channels in Python, including multiplexing: https://github.com/stuglaser/pychan

  4. comment
    Comment #5822035

    I've been implementing go-style channels in Python. Check it out here: https://github.com/stuglaser/pychan Blocking on multiple channels works (chanselect).