Simon Willison

Results 678 issues of Simon Willison

I'm always excited to see new ASGI hosting implementations emerge - today I've been trying out this wrapper for Azure Functions for example: https://github.com/Azure/azure-functions-python-library/issues/75 It would be great if there...

enhancement
exp/advanced

I like YAML `|-` multiline strings for text with newlines in, rather than needing to include `\n`.

This query: { allSpecies { edges { node { name homeworld { name gravity } } } } } Executes 38 sql queries, looking something like this: (0.001) SELECT COUNT(*)...

The readme has said "_Please be warned: hyper is in a very early alpha. You will encounter bugs when using it. In addition, there are very many rough edges. With...

After trying this out (as a very new-to-Kubernetes person) I had a lot of trouble figuring out how to remove it again. Eventually this worked for me: kubectl delete deployment...

I'm interested in using `wasmtime` to call out to complex originally-built-in-C libraries from Python - things like `ffmpeg` or the various image compression libraries used by https://squoosh.app/ (e.g. https://squoosh.app/c/mozjpeg_enc-f6bf569c.wasm) It...

Just got caught out by this one. This button here, on `/admin/app/model/recover/ID/`: Calls this code here: https://github.com/etianen/django-reversion/blob/df3bcf79b97cdaa48194a1dc4f66941ddcafc2bb/reversion/admin.py#L164-L172 Note that it's calling `version.revision.revert(delete=True)` here. The problem is, `django-reversion` supports bundling multiple...

I tried running `make sqljs` on macOS (x86) - after first running `brew install emscripten` I got this error: ``` sqlite-lines % make sqljs emcc -O2 -DSQLITE_OMIT_LOAD_EXTENSION -DSQLITE_DISABLE_LFS -DSQLITE_ENABLE_JSON1 -DSQLITE_THREADSAFE=0...

I love this project so much. Since you're already being quite ambitious with how you handle deployment, here's an idea I've been bouncing around for a while but haven't committed...