Hadrien Mary

Results 313 comments of Hadrien Mary

It might be convenient when playing over the board or far from a mouse/keyboard (like a TV).

Ah ok, sorry. Yes, I am thinking something basic, such as what you said: "you choose a piece first and then the target field". It's very similar to one of...

I would also love to have a `pathlib.Path` like-object for remote paths directly in `fsspec`. I would prefer to not rely on yet-another-lib mentioned here for this. And `pathlib.PurePath` does...

> The particular advantage is that it then allows you to use `fsspec` with (almost) any function that expects a pathlib.Path object. Agree. I use `pathlib` everywhere but recently had...

Can you develop on fspath?

`fspath` does not seem to solve the issue that the protocol is stripped out of the original path: ```python import pathlib p = pathlib.PurePath('s3://bucket-data/setup.py') print(str(p), p.__fspath__()) ``` ``` s3:/bucket-data/setup.py s3:/bucket-data/setup.py...

It looks like someone is building a lib for this: https://github.com/Quansight/universal_pathlib Friendly ping to @tonyfast and @andrewfulton9: would you consider contributing directly here instead of in an external library? @martindurant...

Even if it's an early project, it would make sense to add early in fsspec but I guess it depends on what the dev wants to do here.

Pixi allows you to run arbitrary commands within the new env: - `pixi run cargo build` - `pixi run ` - `pixi shell` (spawn a new shell with all the...