ParetoOptimalDev

Results 187 comments of ParetoOptimalDev

Maybe it's something like `diet` could be a dependency of `fitness`?

For anyone wanting to implement this take a look at this related issue with commentary from Cabal developers: https://github.com/haskell/cabal/issues/8434#issuecomment-1247035263

I partially worked around this by trawling through flakes on github using a needle from the default poetry2nix template and found [this one](https://github.com/wozeparrot/tinymod/blob/1c8af135f06dc7047bf21bdbdfbab1f6ab7286c6/flake.nix#L19) which adds things like `mkPoetryEnv` and `defaultOverrides`...

I don't see`org-roam-file-exclude-regexp` used in `org-roam--list-files-find` or `org-roam--shell-command-files`, only in `org-roam-file-p`. Copy-pasting the code: ``` (defun org-roam--list-files-find (executable dir) "Return all Org-roam files under DIR, using \"find\", provided as EXECUTABLE."...

I just hardcoded this for the moment, hope to get time to refactor it and PR it: ```diff (defun my/org-roam--list-files-find (executable dir) "Return all Org-roam files under DIR, using \"find\",...

It seems with recent updates the issue is now in `org-roam--list-files-elisp` which doesn't pay attention to `org-roam-file-exclude-regexp`. A proper fix needs to ignore `org-roam-file-exlucde-regexp` in all of the `org-roam--list-files-*` functions.

FYI using `nix flake update --commit-lock-file` or any nix commands upgrades your git repo index version to 3. I got aider to add a nix flake to my project, ran...