Daniel Holth
Daniel Holth
On second thought any kind of quick-to-decompress-on-startup could be helpful if we're paying for the container registry and deployment bandwidth but not ephemeral storage.
tfw you have more ephemeral storage than upstream bandwidth ``` FROM python:3.10-slim AS base RUN apt update && apt -y install zstd ENV DATASETTE_SECRET 'sosecret' RUN --mount=type=cache,target=/root/.cache/pip pip install -U...
Some symlinks are aliases for libraries included in the same package, others point at e.g. the system's default timezone
Doesn't the py launcher for Windows know how to read pyz shebang also?
I can reproduce. Fails when using the system Python, works when using a Python installed in my home directory. Command works run from the command line, fails when using the...
I found this `--no-remove` option in this older documentation but not in my local install. https://docs.conda.io/projects/conda-build/en/latest/resources/commands/conda-index.html?highlight=conda-build%20index#conda-index
I'm trying to make this obsolete. A conda-index run would require the entire cache (one sqlite db file) for a channel but not the actual packages. A user could manipulate...
The standalone github.com/conda-incubator/conda-index separates "looking for packages on the filesystem" from "updating metadata cache / write repodata.json". It can be overridden to provide a similar feature by not updating "list...
I usually have to set `"terminal.integrated.localEchoEnabled": "off",` to be able to use the integrated terminal, but usually only when I am typing into the terminal.
This is very cool. It is funny that conda hasn't figured this out? It isn't deciding to download the next package after examining that it was able to find the...