bradrn
bradrn
> If you happen to have `Cabal` or if you disable it with `-f-test-doctests`, it's still three times faster than building `lens`. Won't `lens` compilation be faster as well if...
> I took that into account (see the table above) – with `Cabal` preinstalled it is 55s for `microlens-platform + profunctors`, vs. 2m45s for `lens`. That's an amazing difference -...
That makes sense. --- To get back on topic, I'm wondering: 1. Would you say that at this point the design of `microlens-pro` is fairly settled? 2. If the answer...
Thanks @neongreen!
I've been doing a bit of GTK programming recently; in the `gtk3` library they do this but the type of `on` is flipped to get an even more evocative syntax:...
I strongly suspect this is caused by the issue I mentioned in #249: > In theory, `loadDirectory` looks like it could help with [loading JavaScript libraries], but it also seems...
I think this would also go some way towards solving #228, which seems to require handling the `onload` event (see https://github.com/HeinrichApfelmus/threepenny-gui/issues/228#issuecomment-421757012).
@va1en0k What's `keyPressHandler`? I can't see it anywhere in `threepenny-gui`.
That makes sense. But did you mean `a -> IO ()`? That's what GHC is giving me for the type.
Maybe you could do something like this: ```js haskellValidateString("this String may be valid", function (x) { // Do something with x... }); ``` The callback function would be passed to...