Jakub Hampl
Jakub Hampl
This can be used for markdown templates to inject appropriate syntax highlighting tags.
Given: ```elm example xs = List.map (\a -> a * 2) xs ``` when doing a **lift to let** on the lambda this currently results in ```elm example xs =...
Recently there was a discussion on Slack, where it turned out that even well seasoned Elm developers where confused about the semantics of Dict.update. Specifically, it is unclear what is...
If I publish this module: ```elm module Foo exposing (Bar, baz) type Bar = Bar (List Float) baz : Bar -> Float baz (Bar l) = List.reduce (+) 0 l...
Today I tried to publish my first package. Here's what happened: ``` $ elm-package publish Verifying gampleman/elm-visualization 1.0.0 ... This package has never been published before. Here's how things work:...
The idea here is to make this compatible with [elm-review-common's NoDeprecated rule](https://package.elm-lang.org/packages/jfmengels/elm-review-common/latest/NoDeprecated), so that one can use elm-review to push clients to upgrade to newer APIs.
The docs for `Browser.Navigation.load` say > Leave the current page and load the given URL. **This always results in a page load**, even if the provided URL is the same...
I can attempt some tests later on... Not really sure how to effectively fuzz Random generators, but it seems like there might be some reasonable properties to check for here....
This is an API sketch for addressing #79. Obviously a full implementation needs: - [ ] A few more functions like rotation, mirror, etc. - [ ] An `apply` function...
This is an odd one. I've built this the simplest, dumbest way possible just to get something out of the door (I happen to need this for my elm-europe talk)....