David Cuthbert
David Cuthbert
I was curious if [`Command::error`](https://docs.rs/clap/latest/clap/struct.Command.html#method.error) should be used here, since `TypedValueParser::parse_ref()` has `&Command` available. However, the signature doesn't work out: `Command:error()` wants `&mut self` (i.e. `&mut Command`) for some reason,...
Closing this old issue. Boto3 does not have this problem, FWIW. If you're still running into this, upgrade to boto3.
Build a new container; in the Dockerfile for it, include this before installing kappa (or whatever depends on kappa): FROM amazonlinux:latest ENV LANG=en_US.UTF-8 Or you can prefix your `pip install`:...
I am attempting to upgrade this client to ACMEv02 (in a fork, since this appears to be abandoned). I've merged this in over in my repo to the main branch...
I am attempting to upgrade this client to ACMEv02 (in a fork, since this appears to be abandoned). I've merged this in over in my repo to the main branch...
I disagree that this is "perverse" -- contravariance in the setter is one example, e.g. where the getter returns `Set[x]` and the setter takes `Collection[x]`: ```python from typing import Collection,...
> I wonder if there are cases where this makes sense (e.g. where equality still holds - perhaps this can work in the Iterable/Set example), but others where I also...
I looked at this for I2S. The answer I came to is it's not terribly easy to do today. The main problem I ran into was determining the size of...
Interesting... it looks like if you can get the function into a section whose name is in the form `.iram1.#`, there's some magic that copies that function into IRAM. If...
Adding on to this, as a note for myself and future spelunkers: The code that is responsible for moving the function into IRAM is in the second stage bootloader, in...