-
![image](https://user-images.githubusercontent.com/6057298/76318111-81036800-62dd-11ea-95ff-cbb4a8655455.png)
- [x] Send post request to create new timer linked to the capture
- [x] While waiting …
-
# More simplifications for List.take and List.drop
Some suggestions for List.take and List.drop simplifications.
I think take and map are functions that are used a lot, so new rules would probably…
-
**Quick Summary:**
When I try to build elm with cabal-install on Linux I run into:
```
terminal/src/Develop/StaticFiles.hs:91:3: error:
• Exception when trying to run compile-time code:
…
juhp updated
11 months ago
-
@frawa I was looking into building elm-test support for intellij-elm when I discovered your project. I wish I would have known about it earlier--I've been running my tests from the command-line all th…
-
At the moment the Elm application is hosted with Github pages at https://dwyl.github.io/elm-pwa-example/
Github pages is easy to use and very to deploy a new version as it will get the new code fro…
-
**Quick Summary:** To develop apps with JS-Interop it would be great if reactor would set init to null, so that on the Elm side you can declare main like `main: Program (Maybe ) Model Msg`.
Curren…
-
**Quick Summary:**
I entered an identity type alias, but elm refuses to unify LHS and RHS of the type alias later.
## SSCCE
```elm
module Both.Msg exposing (..)
type alias Msg a = a
ma…
-
Haven't put a ton of thought into how difficult it would be to implement as a rule, but I ran into it in my code today and noticed it wasn't caught by `elm-review-simplify` currently.
```elm
if ba…
-
**Sum types - OR**
there is ONE way how to define:
`type`
**Product types - AND**
there are MANY ways:
`()`
`(a, b)`
`(a, b, c)`
`{ x: a, y: b }`
`type A = A a b`
**Let's simplify it**
…
-
**Quick Summary:**
I tried to apply add an classname to a SVG element. This throws an exceptions while the action is valid. Exception message: `TypeError: setting getter-only property "className"`.
…