Mitchell Dalvi Rosen

Results 288 comments of Mitchell Dalvi Rosen
trafficstars

Oh, I missed your original error: ``` Cabal-1.22.5.0 must match >=1.23 (latest applicable is 2.0.0.2) ``` The problem is @jdreaver's suggestion was incorrect, but @ReedOei's was correct.

Here is another suggestion: change the type of `reactimate` to: ```haskell reactimate :: Event a -> (a -> IO ()) -> MomentIO () ``` in order to facilitate the very...

That's true, and my suggestion is fairly annoying for `

I am: - -1 on changing `actuate` to `activate`. I'm a native English speaker and I don't even know what actuate means, but the API for working with `EventNetwork`s is...

Oh, and I'm -1 on the `Handler` type synonym. I don't like type synonyms much in general :)

I propose to change `unionWith` and `mergeWith` (not yet merged) to `union` and `merge` My reasoning is: - Neither name is imported by Prelude. - In unionWith, it's obvious (to...

I was unable to reproduce this with the following code: ```haskell import Control.Monad import Reactive.Banana import Reactive.Banana.Frameworks import System.IO.Unsafe import Control.Concurrent main :: IO () main = do (ah, fire)

I ran into a similar case: ``` haskell foo = { field = bar "(" } ``` ... insert a comma directly below the `{`... ``` haskell foo = {...

Sure, but I'm (embarrassingly) not exactly sure how to test the changes. I use vundle to manage my vim packages and I don't believe there's any support for pointing at...

Ah, it does. Looks good, thanks! I'll report any other weird behavior I come across.