Timo von Holtz

Results 15 comments of Timo von Holtz

I think it should be possible with a custom Setup.hs.

I like the approach taken by https://pub.dev/packages/sum_types. You could then do the following: ```.dart @DataClass mixin _User { String get firstName; String get lastName; @nullable String get photoUrl; } ```...

True, that wouldn't be covered. If only constructors of extended classes would just call the super class with the same args. It could be so easy: ```.dart class User extends...

Relevant sections here: https://tools.ietf.org/html/rfc6749#section-2.1 https://tools.ietf.org/html/rfc6749#section-4.4 In particular, "The client credentials grant type MUST only be used by confidential clients."

I am having the same issue. Until this is resolved, it is still possible to talk to docker via SSH: ``` docker context create colima-ssh --docker "host=ssh://colima" ```

> This is actually the expected behaviour for containerd runtime. Do you still want to keep using docker for containerd runtime? Yes. If I'm using the docker runtime _and_ some...

oauth2-server is currently unmaintained.

Could this be https://github.com/google/leveldb/issues/634?

This was done here: https://github.com/sanjib-sen/WebLaTex/commit/05c62f80610ae4b144a5fed8d5575de409b22faf. @sanjib-sen could you chime in why you think this is the right behaviour? I would have set it to `"onSave"`.