Andrew Erickson

Results 49 comments of Andrew Erickson

a continuation of this work: https://github.com/sstephenson/bats/pull/123

@lyneca Until it's merged you can install a pip from a git source. Just use a fork with the code you want. https://stackoverflow.com/questions/16584552/how-to-state-in-requirements-txt-a-direct-github-source

Upgrading to Monterey (OS X 12) solved this for me.

Correct. Yeah, that statement was regarding other progress bars that write to stderr. I've got a branch that writes to stderr by default (https://github.com/rsalmei/alive-progress/compare/main...aerickson:alive-progress:write_to_stderr).

It is interesting that it hasn't been brought up. I guess it's a bit of an obscure feature... most apps with progress bars aren't used as input to other commands...

Please try https://github.com/aerickson/kpvbooklet/releases/tag/v0.6.7.pre3 and let me know if it works.

@dmyger Please try the release I posted above. I had the same issue and it fixed it for me.

There's some more reverse engineering here. https://stackoverflow.com/questions/33533304/change-scaling-for-all-desktop-backgrounds-on-mac-via-a-script

22.04 isn't working because it requires an ECDSA key. ``` Sep 01 19:14:27 337de265b081 sshd[231]: userauth_pubkey: key type ssh-rsa not in PubkeyAcceptedAlgorithms [preauth] Sep 01 19:14:27 337de265b081 sshd[231]: Connection closed...

I've gotten this to work by specifying an ed25519 key like below: ``` driver: name: docker public_key: test/id_ed25519.pub private_key: test/id_ed25519 ``` The key can be generated with `ssh-keygen -t ed25519`.