[elm-discuss] Create random shuffle list structure

2016-06-21 Thread Juan Martin Buireo
Hi, I have developed a memotest in Elm 0.17. My Model is the following: type alias Model = List IndexedCard type alias IndexedCard = { id : Int, model : Card.Model } where Card.Model is a module where I modeled a single card. So now the game is working but the cards of the memotest always

[elm-discuss] How to create an animation?

2016-06-21 Thread cassiedqs
How can I make a .gif? -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to elm-discuss+unsubscr...@googlegroups.com. For more options, visit

[elm-discuss] Re: How to convince your boss to start using Elm in the company

2016-06-21 Thread Charlie Koster
I think it's worth pointing out that even though Elm will be here tomorrow, Elm is still evolving. Take as an example the latest release. If you had sold your boss on Elm 0.16 six months ago and then 0.17 comes out with very large changes, what are you going to recommend? Do you recommend that

[elm-discuss] elm-shadertoy updated for Elm-0.17

2016-06-21 Thread Conrad Parker
Hi, I've updated elm-shadertoy to work with Elm 0.17. Thanks to Günther Enthaler for updating elm-first-person, which this update is based on! https://github.com/kfish/elm-shadertoy >From the original announce (30 May 2014!): It is basically a framework for using shaders from shadertoy.com on

Re: [elm-discuss] How to convince your boss to start using Elm in the company

2016-06-21 Thread Peter Damoc
Evan works at NoRedInk which has a huge stake in Elm being around *and being awesome*. I would bet that Elm will be around tomorrow. Regarding convincing your boss, the main use case scenario for an Elm app is something that is highly complex and that needs to go. Elm is designed for code

[elm-discuss] How to convince your boss to start using Elm in the company

2016-06-21 Thread Mats Stijlaart
Hi folks, As a developer I am convinced that I want to build my front-end software with Elm, but I need some arguments to convince my boss. In my company a piece of front-end has to be rebuild and extended with a new front-end technology (currently Java JSP). I have already convinced my

Re: [elm-discuss] Support for binary data

2016-06-21 Thread Yosuke Torii
I need binary things too for two cases, uploading files and Web Audio. These are not special things. I'd like to know the plans, when it is most likely to come (or how these features are prioritized). 2016年6月21日火曜日 19時36分59秒 UTC+9 John Mayer: > > I took a shot at starting a basic version of

Re: [elm-discuss] Support for binary data

2016-06-21 Thread John Mayer
I took a shot at starting a basic version of this in my fork of websocket and a new package simply called binary. My approach was largely thin wrappers on top of the spec. Evan, is your draft public? No updates from you since January. IMHO, don't try to carry this one yourself. This is an

Re: [elm-discuss] Support for binary data

2016-06-21 Thread Gábor Varga
This feature would come handy for me too. Our use-case is that we get some encrypted data from an MQTT broker and it might be broken up to several messages. The binary data first has to be reassembled before it can be converted to UTF8 encoded strings. On Thursday, April 7, 2016 at 1:18:17

Re: [elm-discuss] Docs need update to 0.17 for HTML Attribute

2016-06-21 Thread Janis Voigtländer
Hence the thought that the old docs should have a warning or the like with a link to the new version Yes, that would be nice. But I guess you realize that I am not the person who can put that link there. :-) ​ 2016-06-21 9:42 GMT+02:00 Zachary Kessin : > Yea I found them. I

[elm-discuss] Re: Learning Elm and feeling alone in the world

2016-06-21 Thread Joe Terry
Wow !! I have learned so much in the past several days ... of all the resources I've enjoyed I enjoy DailyDrip and "Awesome ELM " the most ... because it's awesomely complete !!! https://github.com/isRuslan/awesome-elm

Re: [elm-discuss] Docs need update to 0.17 for HTML Attribute

2016-06-21 Thread Janis Voigtländer
Have you read the upgrade notes for going from 0.16 to 0.17? https://github.com/elm-lang/elm-platform/blob/master/upgrade-docs/0.17.md The very first thing it says is that evancz/elm-html is now elm-lang/html. So obviously the docs you need are at

Re: [elm-discuss] Docs need update to 0.17 for HTML Attribute

2016-06-21 Thread Zachary Kessin
Ok, so which is the correct doc? (You might want to put a pointer to the correct doc) Zach ᐧ On Tue, Jun 21, 2016 at 9:42 AM, Janis Voigtländer < janis.voigtlaen...@gmail.com> wrote: > That's a version of the library that will never be used with 0.17. So no, > it does not need a doc update. >

Re: [elm-discuss] Docs need update to 0.17 for HTML Attribute

2016-06-21 Thread Janis Voigtländer
That's a version of the library that will never be used with 0.17. So no, it does not need a doc update. 2016-06-21 8:39 GMT+02:00 Zachary Kessin : > this page > http://package.elm-lang.org/packages/evancz/elm-html/4.0.2/Html-Events > still had references to Signal.Address > >

[elm-discuss] Docs need update to 0.17 for HTML Attribute

2016-06-21 Thread Zachary Kessin
this page http://package.elm-lang.org/packages/evancz/elm-html/4.0.2/Html-Events still had references to Signal.Address -- Zach Kessin Twitter: @zkessin Skype: zachkessin ᐧ -- You received this message because you are subscribed to the Google Groups "Elm Discuss"

Re: [elm-discuss] http request: How to access the whole response

2016-06-21 Thread germain
IT'S WORK, thank you so much William ~ BUT I HAVE A FEW MORE QUESTIONS: - Http.fromJson decoder (Task.succeed response) => why do you use (Task.succeed response) ? And not just give as argument "response"? Is it connected with `andThen` and its signature andThen