Viewing profile — stuglaser
stuglaser
HN member- Joined
- Tue, Jun 04, 2013, 8:48 PM UTC
- HN karma
- 7
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About stuglaser
No profile information was provided.
Recent public activity
-
comment
Comment #6204774
A video of the talk is here: http://www.confreaks.com/videos/198-rubyconf2009-worst-ideas...
-
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://…
-
comment
Comment #5837055
I'm reimplementing Go-style channels in Python, including multiplexing: https://github.com/stuglaser/pychan
-
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).