Chadtech
Chadtech
Hi, I looked at the ellie app examples from this blog post: https://elm-lang.org/news/working-with-files But all of them lack `module Main exposing (..)` as their first line, so the compiler errors...
Please review our [Contribution Guidelines](https://github.com/lpil/elm-companies/blob/master/CONTRIBUTING.md) to ensure your changes abides by it. Review your changes and complete the checklist below. - [X] Company name - [X] Company description - [...
Hi, I am trying to incorporate `elm-verify-examples` and so far its going pretty good. However I do have one example which is having a problem. Here my is my function...
Another developer and I independently discovered a problem. We each made applications that load a large image. When displaying the large image however, the Elm app would only display most...
I ran the doc gen code on my test Roc module, to see the new syntax highlighting in action, and I got this error: ```---- insert_doc_syntax_highlighting::closure_expr stdout ---- [ast/src/lang/env.rs:78] "Don't...
We recently merged a change to `groupWhile` to make it deal with non-empty lists `(a, List a)`. Until now, we have kind of steered clear of non-empty lists. So now...
@jfmengels did some tail call optimizing on a few functions a wall back (Thanks @jfmengels ). He noted that with this command: ``` npx elm-review --template jfmengels/elm-review-performance/example --rules NoUnoptimizedRecursion ```...
Some of the functions in the docs dont have code examples. Lets change that.
@rlefevre opened up #109 recently, and I had to look into what `maximumBy` and `minimumBy` do. I felt like the documentation was a little confusing. Like the term 'first maximum'...
In the slack channel, Numiastowski discovered that `permutations` causes a memory problem. A list of 9 elements might have as many as 9! permutations, and therefore, 9! stack calls. I...