Richard Janis Goldschmidt

Results 54 comments of Richard Janis Goldschmidt

I wanted to have a quick overview of the direct dependencies of my crate without having to open `Cargo.toml`. Something akin to what was possible with `cargo ls`. An option...

With about 30 tabs open, I have experienced a few slowdowns, where it took a long time to load new tabs, but I could still change to other tabs. After...

I was just wondering about how `rmp` would treat this. I think that since the `Deserializer` would need to know how many bytes it needs to consume, skipping values makes...

You can try https://github.com/SuperFluffy/rust-expm. I have to be honest: I implemented it more for fun and never used it in production. So YMMV.

This is what happens when printing `covar` and `s.J()` right before the call to `rgsl::multifit::covar(&s.J(), 0f64, &mut covar)`: ``` covar: [0, 0, 0] [0, 0, 0] [0, 0, 0] s.J():...

In case it's relevant, I am on Arch Linux using `gsl 2.5`. I also encountered an error with integration: ``` ./integration === integration::qng === Result 1.8390715290764525 +/- 0.000000000009921183292055902 from 21...

With `gsl 2.2.1`, the follwing change was introduced: > ** completely rewritten nonlinear least squares module, including support for large problems; the user may now control the linear solver used,...

In general, there seems to be an issue with code highlighting of inline code blocks within links. For example, type the following into a new vim buffer (with `:set filetype=pandoc`)...

Alright, thanks for pointing this out. I am changing my markup from `\\( \\)` to `$ $` for now, and will leave this issue open.

Commenting to give this some visibility: I frequently run into a scenario where I pass `&Url` around. It's not a big deal to `my_url.clone()`, where needed. But it would be...