starlevel003's comments

starlevel003 | 2 years ago | on: RFC 3339 vs. ISO 8601

> ISO 8601 is prolific. Is RFC 3339 well used/adopted in any system?

90% of the time when a library says ISO 8601 it doesn't actually implement the more esoteric parts of ISO 8601.

starlevel003 | 2 years ago | on: GIL removal and the Faster CPython project

> Separately, if just going for concurrency for i/o, async/await is pretty amazing:

That's not async or concurrent. You're running a synchronous function in an asynchronous task which cancels out.

starlevel003 | 2 years ago | on: Illinois prohibits weapons, facial recognition on police drones

> This "defund de police" bs has been one of the most damaging rhetoric's in American cities. People are being victimized left and right, robberies, rapes, gang violence, etc because some people know there are little to no consequences.

Police budgets haven't actually been defunded, and yet this still happens.

starlevel003 | 2 years ago | on: Our Plan for Python 3.13

> * If you mean a thing that's meant to be deployed with a bunch of Python dependencies, then `requirements.txt` is probably still your best bet.

This is exactly how we got in this mess. Using ``setup.cfg`` or ``pyproject.toml`` for all projects makes this easy as now your deployable project can be installed via pip like every other one.

1. ``python -m virtualenv .``

2. ``source ./bin/activate.fish``

3. ``pip install -U https://my.program.com/path/to/tarball.tar.xz``

page 2