Chadtech

Results 51 comments of Chadtech

Thats a really good point. That is confusing. If we go to a `(List a, List a)` is it confusing that.. ``` splitWhen fn [] --> ([], []) ``` ?...

Since they are so similar, should we even include this new `sliding` function?

I dont think its really that useful. In these cases I do.. ```elm doSomethingWithElems : a -> List a -> List a doSomethingWithElems myElem = (::) (dosomethingWithTheElem myElem) ```

I also like `fromNonempty`. The alias, I am not so sure. I see `Nonempty` as _adding_ information about the use of the data, but also _removing_ information about the underlying...

I have had a few use cases recently where I tried out a non-empty list. They didnt pan out too well I think, but that could have been just due...

Good find, I would definitely missed that. Since the change isnt released yet, its still the other way in the `0.3.1` tag and I think I will hold off merging...

I sent a message to Evan and Luke asking if Elm-Canvas could move to Elm-Explorations. They just didnt reply. I've also asked about how I can do my Elm-Canvas projects...

Put a lot of work into this, but I couldnt get it more performant than my native javascript implementation, so I am putting it off for a bit.

I just came across this regarding `String.split`. As far as I can tell, `String.split` _cannot_ return an empty list. In my code I am doing this ```elm fromString : String...

Hello! This was a really interesting idea. Im warming up to it more and more. At our most recent Elm Munich meet up, I briefly showed this issue, as it...