Russell Davies

Results 24 comments of Russell Davies

Good solution, thanks for posting. This would require a change to the field type from `Field values` to `Field a values` which requires lots of changes all over the place...

I find the `elm-` prefix kind of annoying as it's redundant, and wouldn't exist if we weren't tied to GitHub, but it seems to be what is [recommended]( https://discourse.elm-lang.org/t/literal-names-policy-i-e-how-to-name-packages/242): >Say...

Yeah, and I was thinking the composability is just one aspect which the current package name implicitly endorses over others, e.g. type safety. So, I'm down with the rename.

[Discussion](https://github.com/dillonkearns/elm-graphql/issues/23) about `elm-graphql` rename.

How would one define Alt ?? I've tried `- { key: Slash, mods: Alt|Shift, chars: "\x1b?" }` but that gets interpreted as `DEL>`. And prefixing the `?` with a backslash...

For a v3.4.3 YubiKey: * `TestYubiKeyLoginNeeded` test always passes. * `TestYubiKeyReset`: it fails 4 times then passes. Subsequent runs repeat the same way. * FAIL: `resetting yubikey: blocking pin: verify...

That seems to be what is happening. If the PIN and PUK are blocked then the test passes. The `ykReset` function tries the wrong PIN and PUK multiple times to...

I haven't tested this (since I don't want to pollute the package index) but after taking a quick look it does appear that you can keep publishing older versions as...

So `Rest.send` will be: ``` send : (Result Http.Error a -> msg) -> Request a -> Cmd msg send = Http.send ``` What is your reason for wanting it?