Richard Feldman

Results 267 comments of Richard Feldman

#9 depends on a bug that will be fixed in Elm 0.19; once that's out I'll merge the PR and this will be fixed!

+1 for making an API like `Json.Decode` - seems like you could similarly compose together "route decoders" to end up with an analogous [`decodeString`](http://package.elm-lang.org/packages/elm-lang/core/2.1.0/Json-Decode#decodeString) which would be `decodeString : Route.Decoder...

How about `by` as a name? ```elm userValidator : Validator String User userValidator = Validate.by .username usernameValidator ``` cc @gyzerok @zwilias

according to Evan: > It’s the same as 0.18 > `type F = A a | B b` is the bad thing > but `type F a b = A...

@owanturist Added to `ISSUE_TEMPLATE.md` and `PULL_REQUEST_TEMPLATE.md` in https://github.com/rtfeldman/elm-css/commit/3fd114227797f1dfb76bb49ff0ae27aa010fc1cf

@ahstro I'm concerned that this would actually cause a regression instead of working as intended πŸ˜… - do you think you could add a test case demonstrating that it still...

Nope, just haven't circled back to this code base in a long time. πŸ˜…

To set clear expectations, I'm looking at my book writing, OSS projects, and speaking schedule for 2018, and I'm oversubscribed on those alone, even if I did nothing else with...

https://github.com/rtfeldman/elm-css/issues/432 would make it possible to introduce a `content` property without namespace collisions!

Here's how I have it implemented on the `phantom-types` branch: (the branch for https://github.com/rtfeldman/elm-css/issues/375) https://github.com/rtfeldman/elm-css/blob/9e7cdbf0a26c241d2545a82f5a91e05eb5b08299/src/Css.elm#L1155-L1174