[elm-discuss] Re: share-elm.com seems to be down?

2016-08-12 Thread Carlos De la Guardia
Seems to be down again? On Wednesday, March 4, 2015 at 10:52:25 PM UTC-8, Janis Voigtländer wrote: > > Or something like that. I get a "502 Bad Gateway" error. > > -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group

[elm-discuss] Re: How do I write an elm-check producer for a recursive data structure?

2016-08-12 Thread Max Goldstein
So let's start with: don't use elm-check, use the new elm-test that includes fuzz testing out of the box. A Fuzzer is basically a producer. A recursive fuzzer is fine in theory. The problem you're running into is that you're

[elm-discuss] Re: Trying to create a nested components that calls a js interop port

2016-08-12 Thread Jonathan Duncan
I figured out what my problem was I was swallowing the command message update : Msg -> Model -> ( Model, Cmd Msg ) update msg model = case msg of JsInterop action -> ( { model | jsInterop = fst (JsInterop.State.update action model.jsInterop) } , Cmd.none ) I

[elm-discuss] Trying to create a nested components that calls a js interop port

2016-08-12 Thread Jonathan Duncan
Hi I am new to Elm and have been playing around with it for a bit over a week and really like the idea. I am trying to figure out how to do nested components properly. I have successfully nested the clock http://guide.elm-lang.org/architecture/effects/time.html and it is working fine. Now I

[elm-discuss] Re: mdl layout

2016-08-12 Thread debois
I can recommend Josh's video :) -- 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: More thorough side-effect isolation

2016-08-12 Thread Kasey Speakman
Hmm, union types are JSON-serializable elsewhere (e.g. JSON.NET, although they are gly in JSON), so just something that eventually needs doing I suppose. What conversion method did you have in mind that's not hard? On Friday, August 12, 2016 at 1:59:43 PM UTC-5, OvermindDL1 wrote: > > I

[elm-discuss] Re: More thorough side-effect isolation

2016-08-12 Thread OvermindDL1
Hmm, I'd be curious if you could whip up a full compileable example, say a Multi-Counter project example we could paste into elm-try. Perhaps mark things that are boilerplate and could be hoisted out to a parent library too so we can ignore those? :-) On Friday, August 12, 2016 at 12:15:20

Re: [elm-discuss] Re: about the Keyboard API

2016-08-12 Thread OvermindDL1
On Thursday, August 11, 2016 at 11:09:31 PM UTC-6, Janis Voigtländer wrote: > > Okay, this keyMap* suggestion would need more scrutiny. Being a more > radical departure from the current API, it is not obvious that all current > Keyboard uses would still be well supported. > They should be I'd

[elm-discuss] Re: installation on Mint 18

2016-08-12 Thread 'audun' via Elm Discuss
audun@niflheim ~ $ echo $PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/audun/elixir/bin/ You're right, elm is not in the path. I used to know how to set the $path in old Windows, but not in Linux Mint. 1) Could you please give me a brief

Re: [elm-discuss] installation on Mint 18

2016-08-12 Thread Joey Eremondi
Can you show is the output of 'echo $PATH' ? You might just have to manually add the Elm directory to your path. On Aug 12, 2016 2:07 AM, "'audun' via Elm Discuss" < elm-discuss@googlegroups.com> wrote: > I have searched the group for answers to my question, but didn't find any > relevant ones.