yacoob

Results 26 comments of yacoob

I've just ended up in this situation; the situation is bit peculiar. Web interface shows old genres. D-Sub connected to that server shows old genres in the genre list, missing...

FWIW, `zola build` completes without any problems, so I'd be guessing that it's some race condition specific to `serve`, between cleanup of the old version and generation of the new...

I don't think I've seen one in Jinja2. It'd be something along the lines of: ``` regex_replace(s, pattern, replacement) ``` with `pattern` being a possibly anchored regexp string and `replacement`...

I just found a bug related to this - the empty (?) element throws off slicing: ``` {% set path="/a/b/c/" %} {{ path|safe }} {{ path|split(pat='/') }} {{ path|split(pat='/')|slice(end=2) }}...

Actually, the case where string *starts* with a separator is even more insidious - the element is not visible after stringification but affects the count. Here's a full set of...

As a person that wanted to move away from CKP, those overly broad permissions made me stay with it. FWIW, should a "shared link" option work for a file stored...

Oooh, interesting. I must have forgotten this. Thanks for pointing this out.

One extra comment: it'd be worthwhile to add this limitation to the documentation, to make sure people are aware of this limitation, instead of discovering it at the test -...

Just bumped into this, and the slowdown is substantial: Running `rye` installed via `pkgx`: ```shell ❯ head $(which rye) #!/bin/sh if [ "$PKGX_UNINSTALL" != 1 ]; then exec pkgx +rye.astral.sh...