Florian Zier

Results 25 comments of Florian Zier

I had also thought about using [SurrealDB](https://surrealdb.com/) for a tagging application (also has Python bindings) It supports both, databases as a server and embedded databases such as SQLite. In addition,...

Unfortunately, the [ComfyUI-Inspire-Pack](https://github.com/ltdrdata/ComfyUI-Inspire-Pack) is also affected. The scheduler cannot be connected directly there either. The workaround with a reroute node looked promising, but something seems to get lost on the...

> or maybe using command like `fc-list` to list font files in the system instead of read the font directory manually. I like wutipong's suggestion because the path `/usr/share/fonts` is...

I have a nearly complete _flake.nix_ for this in my [poetry2nix Branch](https://github.com/zierf/TagStudio/tree/poetry2nix). The flake has a _devShell_ providing `poetry` (and also `qtcreator`, `mypy`, `ruff` as before). It would also solve...

I got it working now. It can be executed directly with `nix run` from GitHub and could also be installed as a flake directly into the system. --- __Runnable from...

Thanks for testing, your feedback has a valid point! These are most likely the known working _nixpkgs_ for a successful build. You can find out more about the structure of...

Removing `qt6.full` broke video playback. I think `qt6.qtmultimedia` as a replacement should suffice. I use Wayland myself, but `xorg.libXrandr` enabled us to [play video at all](https://github.com/TagStudioDev/TagStudio/issues/417#issuecomment-2319540173). Apart from that, we...

> @zierf nice! now diff looks resonable: [only qt and python](https://gist.github.com/Familex/784e314b9a729da2df84f5828e4f58c8). Great, I'm glad it's in usable condition now! I made a small correction for the _devShell_ only containing _Poetry_,...

I'm using Docker (Podman with Docker compatibility) with a pinned version and fixed volume: (to prevent loading a new `latest` image every few hours) ```SH docker run -it --name local-ai...

Yep, removing `inputs.nixpkgs.follows` is at least a solution of sorts. The advantage of flakes, that they can still be created consistently with their pinned versions, unfortunately does not save this...