David Foster

Results 174 comments of David Foster

@ilevkivskyi or @hauntsaninja would either of you be available to review this PR? (Both of you have contributed to this repository recently so I'm assuming you have write access.) Ideally...

FWIW, `keep.running(only_if=some_flag)` seems like the most convenient API to me. No additional imports required. No strange "dummy" or "noop" names. This isn't an API I would actually use however, so...

For macOS, consider using py2app. For Linux, I think PyInstaller works.

+1: The incompatible container name format when comparing `docker-compose` with `podman-compose` (i.e. `my-website-app-1` vs `my-website_app_1`) **made my migration from Docker to Podman more difficult**. It would be great if podman-compose's...

Thanks @teohhanhui ! Perhaps this bug can actually be closed then, unless it's being kept open until `PODMAN_COMPOSE_DOCKER_COMPOSE_COMPAT=1` becomes the default.

For my own application, waiting for PyGame to upgrade from SDL 2 to 3 and then extending PyGame's API to support [the main callbacks API](https://wiki.libsdl.org/SDL3/README/main-functions#main-callbacks-in-sdl3) seems promising as a long-term...

Thanks for taking the time to explain icculus. It does sound like a lot of individual patch points are probably involved, which would be high effort. I've previously written an...

`wagon` no longer imports on Python 3.14+ due to this problem. Here's how I got wagon to be usable on Python 3.14: ``` WAGON_PATH=/usr/local/lib/python3.14/site-packages/wagon.py sed -i 's/from urllib.request import URLopener/from...

Apparently Windows and Linux have the default behavior of opening a separate Crystal process for each opened file, so those OSes get multiple open projects for free. > **Related but...