Jaen

Results 80 comments of Jaen

It's possible to do this fully in Docker right now with a bit of duct tape, because Docker itself can also run `uv export`. Example: ```dockerfile FROM ... AS base...

This does not reproduce after upgrading Next.js & Payload ``` > pnpm dev > [email protected] dev /workspaces/with-payload-turbopack > cross-env NODE_OPTIONS=--no-deprecation next dev ▲ Next.js 15.3.4 - Local: http://localhost:3000 - Network:...

@jevinskie when changing `created_at` from `TEXT` to `REAL`, might as well remove the `date(...)` wrapper from the `ORDER BY`: https://github.com/Instagram/MonkeyType/blob/15e7bca60146a7afbde46ee8782a0c650f781c74/monkeytype/db/sqlite.py#L67 (alternatively, it could stay `TEXT`, then it just needs a...

Just ran into this. Makes `rich` mostly unusable out-of-the-box in VSCode notebooks, because it breaks regular Python `print()`. This is caused by calling `IPython.display.display` for each output line. I believe...

Might be related to the "path" of the merge editor? Typical oversight when generating temporary (code) files - if it is inside eg. `/tmp`, then project-level formatting settings would not...

The generic parameter syntax is not backwards compatible and ambiguous (probably technically requiring unlimited lookahead to parse), since `[0] < foo` is already a valid (if non-sensical) JavaScript less-than expression.

in progress, see discussion at https://github.com/comaintain/hug/pull/1

A zero-width span just represents an insertion point (similar to a text editor cursor), and those could theoretically be useful when an error is of the kind "something is missing...

FYI just doing `.setLevel(...)` on a logger to silence loggers does not seem to work, you also need to set `propagate=False` since otherwise the root pytest logger will still use...

Currently, for tests using eg. SQLAlchemy and Alembic, not having this level of control makes the out-of-the-box logging experience in tests basically useless, because those two libraries generate massive amounts...