stevenwdv

Results 80 comments of stevenwdv

Might be related to what I reported at #1441. You could try if it works with the `glow` feature. (`cargo add iced -F glow`)

I'm all for this! This would allow typing event handlers as `(ev: Event) => undefined | boolean` instead of the weird `(ev: Event) => any` :D Edit: The current implementation...

@Maxim-Mazurok Take a look at #8579, they could try to improve the template string types for xpath query handlers. I don't think `Page#$x` will be deprecated btw.

@scout208 Could be, are you trying to use covariance? I just checked and the issue is still there for the version I'm using (but I'm not using .NET 6 or...

Hmm, actually, even with the fix it still hangs on invalid input like `'--_\r\n--_--\r\n'`. Not sure how to handle that.

This was referred to in #575 and I noticed it is not merged yet and hasn't seen much activity lately. Are the reasons for this similar to those mentioned in...

@nickray Nice! Should I already make a PR or are there still some things that have to happen / you want to look at / discuss first?

Update: I now also implemented the extension in the latest version of the tool, see [stevenwdv/solo-python:minisign](https://github.com/stevenwdv/solo-python/tree/minisign) ([diff](https://github.com/solokeys/solo-python/compare/main...stevenwdv:minisign))

> @nuno0529: w3c/webauthn#1595 > @nickray: re. key sharing (spitballing), it might be sensible to enforce some magic byte sequence to distinguish minisign from FIDO keys Okay it's probably better to...

I implemented a first version as custom CTAP command: - [stevenwdv/solo:sign-hash](https://github.com/stevenwdv/solo/tree/sign-hash) - [stevenwdv/solo-python:sign-hash](https://github.com/stevenwdv/solo-python/tree/sign-hash) - ([stevenwdv/solo-python:sign-hash-v0.0.27](https://github.com/stevenwdv/solo-python/tree/sign-hash-v0.0.27); unfortunately this is necessary to be able to quickly test stuff) The CTAP structure is...