[elm-discuss] Re: elm-make commands fails on Freebsd while working on MacOS

2017-11-28 Thread Daniel Wehner
Hi! Everytime someone has a problem with X is working on MacOS, but it is not working on Linux, my intuition is: A file/folder is named in the wrong case. HFS+, unlike most other file systems, doesn't make a difference between lowercase and uppercase. If you look at your folder, its called

[elm-discuss] Re: why does this code compile?

2017-11-28 Thread Maris Orbidans
It makes sense if something is lazy evaluated. On Sunday, 26 November 2017 23:56:25 UTC, Gabriel Sartori wrote: > > Look at this simpler example, like Aaron said, the compiler does not > complain if the value is referred inside a lambda. But I think there is no > reason to allow this, or I

[elm-discuss] Compile problem between elm version

2017-11-28 Thread rosarioenzoluca . borda
Hi All :), some years ago I wrote a very simple program to generate binary trees. Now Elm won't compile, complaining on type alias L = [(Float, Float)] Someone can help me? Many thanks, Rosario -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group.

Re: [elm-discuss] Compile problem between elm version

2017-11-28 Thread Aaron VonderHaar
Hi! [(Float, Float)] should now become: List (Float, Float) On Nov 28, 2017 8:54 AM, wrote: Hi All :), some years ago I wrote a very simple program to generate binary trees. Now Elm won't compile, complaining on type alias L = [(Float, Float)] Someone can

[elm-discuss] Re: Parallel http queries: how?

2017-11-28 Thread Frank Bonetti
The only way to execute two Tasks in parallel is to use Cmd.batch. You would think that Task.map2, Task.map3, Task.map4, etc. would execute all tasks in parallel similar to Promise.all, but it doesn't. From the documentation for Task.map2: > Put the results of two tasks together. If either

[elm-discuss] Content on Ports

2017-11-28 Thread Zachary Kessin
Hi All I heard Evan's comment on the Last Elm Town Podcast about we need more content about how to use Ports and I thought I will try to fill the void. (Fill the Nothing?) I have some ideas for videos but I would love to hear what other people got stuck on so I can cover a bunch of use cases