Corby Wilson
Corby Wilson
When I run in production I provide a password from our vault. But when I run locally I use my ~/.pgpass file to provide passwords. In other languages (psycopg2, psql,...
This is an excellent tool and just what I was looking for. Thank you. In order for the IDEs to recognize the fields as valid inputs we add `__slots__` to...
I store the credentials object in the session, and the expiration as well, since I need to call credentials.valid to check the creds validity on session setup. Currently I have...
We use build scripts that aren't run from within the project directory because we are building multiple projects at the same time. We use the command `poetry -C ${dir} build-project...
The current QEventLoop is bound to QApplication. This does not allow the use of the QEventLoop inside QThreads that are spawned off from the main UI thread. It's a small...
I cross compile a python application with lots of C libraries. uv works fine on *nix based platforms, but on Windows the ~/.netrc file is called ~/_netrc (who knows why)...