Felipe S. S. Schneider
Felipe S. S. Schneider
[The whole thing](https://github.com/geem-lab/overreact/blob/main/overreact/_constants.py).
```console ❯ overreact model.k Traceback (most recent call last): File "/home/schneider/.local/bin/overreact", line 5, in from overreact._cli import main File "/home/schneider/.local/lib/python3.9/site-packages/overreact/_cli.py", line 15, in import matplotlib.pyplot as plt ModuleNotFoundError: No module...
Say, ``` $scheme A(w) -> B(w) [...] ``` and then ```console $ overreact model.k "A:1" # should have been "A(w):1" ``` Recipe for trouble 🙅🏽
This does very small changes to remove some warnings Clippy complains about.
Hi @BurntSushi, thank you for this very nice library! This PR adds an implementation of `From` for `TestResult`. It allows using `TestResult::from(true)` everywhere, and `true.into()` when the `TestResult` type can...
This (in fact the whole file) https://github.com/bluss/permutohedron/blob/afdb9433abb21ffa1dbd43f7aba58b2c62d3fee6/src/control.rs#L13-L20 could be swapped with [std::ops::ControlFlow](https://doc.rust-lang.org/std/ops/enum.ControlFlow.html), available since Rust 1.55.0. But signatures like https://github.com/bluss/permutohedron/blob/afdb9433abb21ffa1dbd43f7aba58b2c62d3fee6/src/lib.rs#L44-L46 would become (something like) ```rust pub fn heap_recursive(xs: &mut [T],...
Interest has been shown in the past (#32). I'm willing to implement it if there's still interest in something like that.
It would be nice to have `1.5 hour` parsed the same way `1 hour 30 min` is. EDIT: the error is currently `duration::Error::InvalidCharacter(1)`.
As far as I can tell, there are no tool that can report a [memory flame graph](http://www.brendangregg.com/FlameGraphs/memoryflamegraphs.html) from Julia code. That could be very useful for tracking memory usage in...