Alejandro Giacometti
Alejandro Giacometti
This is what I'm doing in the meantime: ```sh #!/bin/sh set -x -e # file: vl2png.sh # Reads a vega-lite spec from stdin and writes a PNG to stdout #...
Great! Good luck with MMC2.
I see what you mean. Is there any difference in the latex output (not preamble, etc) when a full document is prepared rather than a fragment?
I would love to see this implemented. Writing scientific papers with multimarkdown is fantastic, but there are some features that are desperately needed, like multiple images in a figure, or...
I am aware of that. Using just the key is supported by gopass, but not passforios
Having the call logfire configure in `settings.py` is cumbersome for mypy and pytest, which import the django settings file. It would be good to have an alternative recommendation. I was...
Yeah. `settings.py` is executed by the mypy django plugin - https://github.com/typeddjango/django-stubs/issues/458 I know that this is not your issue, but it does seem pretty challenging to fix - so I...
I think i came up with a solution that works: Setup a middleware to configure logfire ```python # filename: `logfire.middleware.py` def logfire_middleware(get_response): """ Configure logfire once for the entire Django...
right! that is not great then. I have added it to `gunicorn.conf.py` - this seems to work
I've realized the mixin approach doesn't scale well with nested schemas. Here's why: Often, schema specifications are multilayered: ```python class User(BaseModel): name: str email: str class Comment(BaseModel): author: User #...