Evan Czaplicki

Results 116 comments of Evan Czaplicki

I wonder if the root cause is that we always use `requestAnimationFrame`. Can you run your code but hand modify the JS to no longer use `requentAnimationFrame`?

May be possible with https://github.com/elm-lang/elm-make/issues/29

The root thing is that any time you run a decoder, it may be trying to access bytes that do not exist. ### Example You want to read an `Int32`...

Nice work @folkertdev! Rather than adding a `try` to each specific read function, I am curious if the bounds error can be detected in the outermost `try` somehow. Is the...

Can you give examples of the other protocols you care about? I just need more information. I cannot design without any examples.

Can you turn this into a PR? I cannot promise that I'll use the exact text, but I think that'd be a better way to record this recommendation.

If the proposed fix is to call `percentEncode` on all segments, a user from Russia or Denmark might prefer the current behavior. For example: ```elm UB.absolute ["искать", "книги"] [] --...

Is there a way to get the example into the thread itself. Just paste in code for the block of Elm and JS you need. You can write a minimal...

Likely needs some changes in the compiler for this to work. If so, it would come as part of a compiler release.

Normally I would expect folks to track inputs in their `Model`. That would mean that the submit button would not need to know anything about the particular text fields in...