Saif Hakim
Saif Hakim
The cited sentence is: > Never use the characters 'l' (lowercase letter el), 'O' (uppercase letter oh), or 'I' (uppercase letter eye) as single character variable names. I would say...
I ran `sudo opensnoop -n docker-credential-desktop` and then `docker-credential-desktop list`, which surfaced amongst other fd accesses: ``` UID PID COMM FD PATH 503 33551 docker-credentia 3 /Users/saif/Library/Keychains/login.keychain-db 503 33551 docker-credentia...
I also ran into this on `docker#v3.8.0`. Noting that someone else reported it for `docker#v3.3.0` here: https://forum.buildkite.community/t/exit-code-is-not-being-respected/1142 It seems like it is contained to the plugin, since https://github.com/buildkite-plugins/docker-compose-buildkite-plugin (tested on...
Thanks @CaselIT and @zzzeek for the feedback! For some additional context on where I'm coming from, I've already implemented a monkeypatch that is applying a change similar to the one...
re: `render_item `, one thing to note is that with my proposed implementation when dealing with `impl = JSONB` case, we get the `from sqlalchemy.dialects import postgresql` import for free...
git seems to handle this particular set of patches just fine. ```sh git init echo 'Writing A..P' echo 'a\nb\nc\nd\ne\nf\ng\nh\ni\nj\nk\nl\nm\no\np\n' > file git add file git commit -m 'add file' echo...