Gary Burgess

Results 292 comments of Gary Burgess

If you'd throw out Haskell for JavaScript just over namespacing then you must have some seriously strong opinions about it. 😉 That seems like a very poor tradeoff to me....

Windows has symlinks analogs, so I don't see why it wouldn't work. `bower link` still uses them, for example.

Yeah, junction points is what I was talking about :)

By the sounds of that, I assume you'd want that to run before the component "exists"? The problem is `m` could introduce async behaviour, and by extension require rendering to...

I'm pretty sure this is due to the existential `x` in `Inhabitant`. If you try substituting the synonym into the instance head you'll see it fails to parse - so...

`launchAff_` discard errors that arise entirely, if I remember rightly. Also at the time it was added I don't think there was a `launchAff_`.

I'm not sure if this is something we'd want to build into Halogen itself, as it will probably be based on hooks or something anyway, so it could live in...

:+1: for the concept though. Currently the small amount of fade in/fade out we do in slamdata is done with CSS transitions and is a bit flaky - we get...

There is no special support in Halogen for animations, but we make use of classes to trigger CSS animations or transitions throughout the SlamData app without much trouble. That probably...

Probably the main downside is the performance hit involved. There's the cost of mapping over all the operations, which probably isn't too significant, since there's map fusion in `HTML`, and...