Yannic Schröder

Results 9 comments of Yannic Schröder

Thank you for your quick response David! Your explanation fits my observations. It would probably make sense to move more of the logic into the Rust core module. Unfortunately, I...

I found one more thing: Using Pydantic dataclasses and setting attributes is as quick as it is with a vanilla dataclass. No calls to `__setattr__` of Pydantic whatsoever. ```python @pydantic.dataclasses.dataclass...

Same issue as described above: Cannot remove network due to active endpoints, `docker network inspect` shows no endpoint for that network. This is on a Raspberry Pi 4 using the...

@jest: Thanks for the detailed look into it. I also had the hunch, that is was tracking the number of containers in the network via some variable which it fails...

We have the use case to search for numbers. We have a documentation where pages have an integer ID. When searching for the ID, lets say 10, you find all...

Sure, here is an example: [example.zip](https://github.com/squidfunk/mkdocs-material/files/11099856/example.zip) If you search for `foo` or `bar`, the right page is on top, if you search for `123`, page `bar` is on top, which...

I like @feasgal idea, usage is also similar to the exclusion of sections already present.

We are seeing this issue as well. But we made the (questionable) decision to use a $ sign in the user name of the executing user (on Windows). To work...

Thank you for the immediate response! I shortened this to: ```shell echo -e "[egg_info]\ntag_build=.dev+foo\n" > /tmp/build_opts.cfg DIST_EXTRA_CONFIG=/tmp/build_opts.cfg python -m build ``` And it works fine! I will change our build...