[elm-discuss] Emphasizing /r/elm more

2017-01-02 Thread Evan Czaplicki
I recently talked with folks who moderate the various Elm discussion forums about the challenges that come up and how we can do better. The short version is: *we should start migrating more discussion to /r/elm .* Now the long version! How Things Are Now

Re: [elm-discuss] Abort tasks?

2016-06-28 Thread Evan Czaplicki
Process.spawn and Process.kill let you "kill tasks". Killing a process that has an HTTP request pending will cancel the request as well. Interprocess communication is not ready yet, but the current API can cover some use cases. On Tuesday, June 28, 2016, Mark Hamburg

Re: [elm-discuss] Has elm reactor 0.17 dropped support for HTML files?

2016-06-28 Thread Evan Czaplicki
Try the 0.17.1 beta On Tuesday, June 28, 2016, Stuart Axon wrote: > Hi, >I just started with elm and this is a bit confusing. - I guess I need > a separate http server for now to see the output ? > > So workflow - is: > > Compile, then refresh browser that is pointing

[elm-discuss] Try out the 0.17.1 beta

2016-06-28 Thread Evan Czaplicki
The 0.17 release revealed a few rough spots. Particularly for new folks who were trying to install evancz/elm-html instead of elm-lang/html. So I did a bunch of bug fixes for stuff along these lines. The main changes are: - Default dependencies in elm-package.json are core *and* elm-lang/html.

Re: [elm-discuss] https://github.com/evancz down?

2016-06-25 Thread Evan Czaplicki
Seems to be back! Actually sitting on the plane now, so I'm glad I found out before it took off. Sorry for the trouble. I have some plans for package.elm-lang.org that'll make download mirrors possible, so we'll be less open to problems like this. On Saturday, June 25, 2016, Tobias Hermann

Re: [elm-discuss] https://github.com/evancz down?

2016-06-25 Thread Evan Czaplicki
It is a GitHub problem. I have opened a support ticket and reached out to them on Twitter . Hopefully it will be resolved soon. Though since it is Saturday, the support staff is probably not in the office... Not really sure what actions to

[elm-discuss] Announcing elm-lang/navigation for "routing in single-page apps"

2016-05-25 Thread Evan Czaplicki
On Friday, Noah and I worked on "updating elm-history" so that folks can do "routing" with Elm 0.17. The results are these libraries: - elm-lang/navigation - evancz/url-parser