Peter Szerzo
Peter Szerzo
How would you remove an embedded Elm app from a page? I'm using it in a single-page app and would like a way to clean up the handlers for dom...
I am using the `Dict (List Int) a` data type in [a project](https://peterszerzo.github.io/elm-arborist/), and I came across cases when `Dict.get` doesn't find entries when `--optimize` is enabled. I was not...
My team is using component-playground on a documentation site where we allow the user to toggle the playground into fullscreen. After a resize, we are experiencing strange cursor jumps when...
I recently came across the need for a version of [groupWhile](https://package.elm-lang.org/packages/elm-community/list-extra/latest/List-Extra#groupWhile) where the grouping function needs more context than just two adjacent elements. ### Use-case I am rendering the following...
The date picker's code can use some general code quality enhancements, especially as it will be enhanced to support more sophisticated needs in the future. Some ideas: * add a...
When using this plugin working on Elm code, pressing `ds{` in normal mode on following pattern (cursor position indicated with a `█`): ```elm List.map (\{ fieldOne, █ fieldTwo } ->...
I just ran into a situation where I made a graph with only a subset of the available nodes, with the idea that the rest of the nodes (they happen...