alexfmpe

Results 80 issues of alexfmpe

Without this change, `hack-on` issues a suspicious `warning: could not open directory`: ```bash $ ./scripts/hack-on haskell-overlays/reflex-packages/dep/reflex If you have any trouble with this script, please submit an issue at https://github.com/reflex-frp/reflex-platform/issues...

As is, this is a breaking change. Migration strategy is pretty much to add a `uncurry holdDyn` in front of `prerender`. A non-breaking alternative is to add a separate function,...

Needed this to be able to use `./dep/reflex-platform/scripts/work-on reflex-dom-core`. Without the changes in https://github.com/reflex-frp/reflex-platform/pull/786 I'm getting cabal build plan failures. Was confused by the fact release.nix still built reflex-dom just...

These pollute the terminal quite a bit and make it harder to see warnings related to what one's actually working on. Tested with ghc 8.6.5, letting CI check the others...

Looking at https://github.com/haskell/containers/pull/817 's ```haskell argSet :: Map k a -> Set.Set (Arg k a) argSet Tip = Set.Tip argSet (Bin sz kx x l r) = Set.Bin sz (Arg...

Edit: Rebased on top of #1079 Allows turning ```haskell data ParentRoute :: * -> * where ParentRoute_ChildA :: ParentRoute () ParentRoute_ChildB :: ParentRoute () ParentRoute_ChildC :: ParentRoute () FrontendRoute_Parent ->...

Original motivation was supporting some kind of canonicalization to allow each route to be decoded to from several urls. A lot of semantic agony later, this is what I ended...

On top of #987 since I ran into it while figuring out this PR and need the same fix for `unsafeSumEncoder`. `shadowEncoder` requires at least one of its arguments to...