Cristian Le

Results 920 comments of Cristian Le
trafficstars

Actually maybe using those will speed up the script part if it means CMake does not need to copy so much string back-and-forth and it can all be handled on...

Interesting, can you elaborate on how that works? I think having a CMake native format will be preferred, and the main thing we are worried here is the performance of...

It looks like it could work more efficiently until CMake provides more efficient Json parsing. The only comment is about manually escaping vs `[==[` literals. I think we want te...

Probably needs updating of https://github.com/ClusterM/sony-headphones-control/blob/70c377bb70e237b78bc247c380897d91640e595f/app/src/main/java/com/clusterrr/sonyheadphonescontrol/TaskerFireReceiver.java#L45-L48

So one thing to discuss is supporting `importlib.resources`. Broadly it sounds to be within the scope given: > this project is intended to implement the machinery to expose a (subset...

It's the former. Basically you need to change the `TraversableResource` (think of it as the module/directory) so that it changes the type of the generated `Taversable` (think of it as...

You mention that the scope is: > this project is intended to implement the machinery to expose a (subset of a) project's files That means that depending on the module...

Similar to the example I gave in #20, but in this case: ```python import importlib.resources rootA = importlib.resources.files("my_pkg.moduleA") for file in rootA.iterdir(): print(f"{file.name}") rootB = importlib.resources.files("my_pkg.moduleB") for file in rootB.iterdir():...

Notification badge on top of the zulip icon, e.g. a nymber 2 inside a blue disk. If you look at the screenshot it's attempting to do that, but it's too...

+1 to this. The usual method is to have a `.fortran-format.yaml` where you read the rules you want to add/remove. Maybe check [`cmake-format`](https://github.com/cheshirekow/cmake_format) for some tips. Some implementation notes: -...