bofm
bofm
No need to do subprocess. Python has both tar and zip support in the standard library. And the size of the whole directory can be calculated in Python combining `os.walk`...
Please check this example. https://gist.github.com/bofm/8a34f5e8857d21a84c4e51799fc527f2
This is how I solved it. I had to write mounts for `~` twice: with absolute path and with `~`. 1. Put this into your `/Users//.lima/_config/override.yaml`: ```yaml mountType: 9p mounts:...
+1 to the topic. It wasn't easy to find this issue. Maybe we could change the issue title somehow? I was searching for something like "zed copilot disable auto-suggestion".
@kolluria did you have to call `echo_ctx.Validate(myStructPointer)` manually for each handler?
@kolluria thanks for the answer. I just found a way to not have to (and not forget to) call Validate() in each handler with the strict server: ```go type StructValidator...
### Fix: Modify Docker options in the `/etc/default/docker` file on host: `DOCKER_OPTS="--storage-driver=devicemapper --storage-opt dm.basesize=20G"`
Fix for Ubuntu host: `echo 'DOCKER_OPTS="--storage-driver=devicemapper"' >> /etc/default/docker && service docker restart` The existing images and containers may be lost.
> You can run `uv sync --frozen` today though to install from only `uv.lock`. Yes, but this way it creates a venv and installs in there. The desired way is...
There is a good point in https://github.com/astral-sh/uv/issues/4028#issuecomment-2305322593 > uv sync is not a command designed for application install What would be left after `--no-locals` is merged and the project deps...