Andrew MacMurray

Results 13 comments of Andrew MacMurray

Thank you @iteles! That’s so sweet ❤️

That's so cool! They look like they would fit perfectly

@nelsonic thank you!! Glad you enjoyed it, more levels and mechanics to come 😅 @gabrielperales thank you!!

Here's another example for reference where TCO produces bad closures: ```elm type Trampoline a = More (() -> Trampoline a) | Done a wrapMany : Int -> Trampoline a ->...

@mlovic unfortunately not, ended up using ports to communicate with google maps (this was the app had to implement this on: https://github.com/TechforgoodCAST/tech-for-good-near-you). I thought it would be more buggy but...

Thanks @MartinSStewart, there was a suggestion on this thread https://discourse.elm-lang.org/t/elm-delay-4-0-0/7031/3 that the duration functions read a bit awkwardly and that `withUnit` could be more general and could accommodate things like...

Hi @mpizenberg - I'm afraid I don't really have the capacity to tackle this at the moment, but if you'd like to experiment it's possible to write your own http...

@mpizenberg did you ever get a chance to look at this? Re-looking at it now would something like this help? ```elm expectMetadata : (Metadata -> Expect a) -> Expect a...

In your case how would you determine the size of the bytes response in regular `elm/http`? ```elm expectBytesResponse : (Result x a -> msg) -> (Response Bytes -> Result x...