An example app using core.async and tools.namespace

2013-07-15 Thread mybuddymichael
I recently rewrote my team's IRC bot to use tools.namespace and core.async. You can check out the source on GitHub at https://github.com/mybuddymichael/pgbot. To explain briefly, the bot is basically several loops communicating over channels. The primary processes are two async/threads, reading

Re: An example app using core.async and tools.namespace

2013-07-15 Thread Sean Corfield
This is a great example of both Stuart Sierra's suggested workflow (from his talk at Clojure/West) and of using core.async to simplify concurrent, collaborating processes! Thanks for sharing! Sean On Mon, Jul 15, 2013 at 11:10 AM, mybuddymichael michael.b.han...@gmail.com wrote: I recently