Julien M.

Results 10 comments of Julien M.

Agreed `--pure` is not that useful with `direnv`, and I am now testing my workflow without it. Yet `nix-shell` does feature `--pure` for some reasons, and I can see a...

Guessing and pondering lead me to the following Python-only workaround: ``` python # -*- coding: utf-8 -*- import java.awt.Color as Color import org.openide.util.Lookup as Lookup def getWorkSpace(): import org.gephi.project.api.ProjectController as...

I've hit the same problem while implementing the same idea of using a "_systemd service and timer units for each dataset pair_" in https://github.com/NixOS/nixpkgs/pull/98455 Adding the PID in the socket...

@rndusr, `git bisect`ing Nixpkgs blames a `natsort` update: ``` 1573e35ba0cb5b85dac35aa827ed9bad4775dc15 is the first bad commit commit 1573e35ba0cb5b85dac35aa827ed9bad4775dc15 Author: Fabian Affolter Date: Tue Nov 9 01:08:07 2021 +0100 python3Packages.natsort: 7.1.1 ->...

@rndusr same python version used in Nixpkgs. ``` $ nix eval -f . python3.version "3.9.6" ``` Turns out `natsort` was not correctly updated to `8.0.0` in Nixpkgs, but after fixing...

@rndusr, I cannot reproduce with `make clean && make venv && source venv/bin/activate && pytest`, but I was able to bisect [1573e35ba0cb5b85dac35aa827ed9bad4775dc15](https://github.com/NixOS/nixpkgs/commit/1573e35ba0cb5b85dac35aa827ed9bad4775dc15) further down to its [addition of `PyICU`](https://github.com/NixOS/nixpkgs/commit/1573e35ba0cb5b85dac35aa827ed9bad4775dc15#diff-398c6f57a2e1116974b2ce7e92724a8118d05fd61178b8794c2852740de2ad58R27) into...

@rndusr, I'm no pythoner but could the problem stems from the `Candidate()` wrapping the characters in one case but not the other? ``` stig> E - (Candidate('B'), Candidate('a')) stig> E...

AFAICS, the problem is that the shuffling (performed by `refine`) of the minor inputs is not done only once for each major input, but possibly multiple times for a same...

@i-am-tom, you should be able to observe that behavior as I did with a few `traceM`. Indeed, I've seen and read with enthusiasm https://github.com/i-am-tom/puzzled though I personnally would not have...

I've put my debugging code here: https://github.com/ju1m/holmes/commit/debfeac29f341d9c5c3ee5cf45b9975611d1c8a5 ```console $ cabal run examples >shuffle-noguard.log $ grep 'index=.*(20,' shuffle-noguard.log index=[([(20,True)],[Water]),([(20,False)],[Air])] index=[([(20,True)],[Water]),([(20,False)],[Air])] index=[([(20,True)],[Water]),([(20,False)],[Air])] index=[([(20,True)],[Water]),([(20,False)],[Air])] index=[([(20,True)],[Air]),([(20,False)],[Water])] ```