Results 78 comments of Denis Stoyanov

@artalar can u solve `Dining philosophers problem` in reatom via join patterns approach?

For example in Bacon.js exists `update` method. This is really correct version of join patterns in js libs about reactive programming In Rx we can emulate it https://github.com/xgrommx/react-rx-flux/blob/master/src/rx-extensions.js In most.js...

@artalar Sure, https://baconjs.github.io/api.html#join-patterns-and-baconbus

@artalar Bacon variant ``` // philosopher 0 eating // philosopher 0 thinking // philosopher 2 eating // philosopher 2 thinking // philosopher 1 eating // philosopher 1 thinking // philosopher...

@artalar this is simple example for join patterns (via `when`) https://codepen.io/xgrommx/pen/qdyErQ

Every module has separated version of `debug` instance. I think will be better to have only one instance and expose `enable/disable` We can control `debug` on the fly (don't need...

Any advices @rauchg?

@joneshf Sure! Very nice point.

@pepegar as I understand `droste` base on PR [ekmett/recursion-schemes#51](https://github.com/ekmett/recursion-schemes/pull/51)?

@jwaldmann Ok, I have another variant ``` levels :: Tree a -> [[a]] levels t = unfoldr go [t] where go [] = Nothing go xs = Just (fmap rootLabel...