Federico Stra
Federico Stra
> Perhaps the culprit is `codegen-units=1`. I have experienced a similar situation where the assembly code printed by `asm` does not coincide with the one actually built by `cargo build...
Should probably address #11 too.
Sorry for my very rudimentary crash report. I just discovered the project yesterday, played a bit with it, and didn't have time to actually read any source code, otherwise I...
Thank you very much for the information! When I find the time, I'll extend this repo with an example on how to structure a project that uses `scikit-build` to compile...
The state of the art best practices for packaging python modules with compiled extensions is just a desolate land of pain and suffering. The crucial detail to defeat https://github.com/python-poetry/poetry/issues/1516 appears...
There is an initial implementation in the branch [poetry](/FedericoStra/cython-package-example/tree/poetry). One of the downsides is that installing with `pip install .` leads to the following folder structure ```text cypack/ ├── answer.c...
I just started using `jrnl`. After playing a bit with it, I also had the desire to have an `-all` search term to list both past and future entries (the...
With the [latest commit](https://github.com/JuliaLang/julia/pull/38643/commits/47bf80fbdf2a6eeece1a8b663fb3d0cc827e4a10) in the [PR](https://github.com/JuliaLang/julia/pull/38643) I'm trying to address this issue too. As I mentioned in a [comment](https://github.com/JuliaLang/julia/pull/38643#issuecomment-737332350) in the PR, there is a small performance problem with...
Ooops! I'm realizing now that this is an issue in another project :sweat_smile:
A lazy solution is to replace https://github.com/blacknon/hwatch/blob/master/src/main.rs#L221-L238 with ```rust // check _logfile directory // TODO(blacknon): commonに移す?(ここで直書きする必要性はなさそう) if logfile != None { let _log_path = Path::new(logfile.unwrap()); let _log_dir = _log_path.parent().unwrap(); let...