Andrew Straw
Andrew Straw
@ArekPiekarz yes.
How about using [comrak](https://github.com/kivikakk/comrak) to parse the markdown and drop and relative links coming from rustdoc? (As a second step, one could make them absolute links with the correct base.)...
Yes, nalgebra is fine for this. The [`cam-geom`](https://github.com/strawlab/cam-geom) crate, for example uses nalgebra and compiles e.g. on the target `thumbv7em-none-eabihf` which has no alloc available. This is run git the...
For what it is worth, here is what I am using for `is_nan` to avoid adding this bound: ```rust #[inline] fn is_nan(x: R) -> bool { let zero = R::zero();...
Thanks @lelongg . Also clippy does not complain about your version.
Thanks. FWIW, it'll likely be a while before I would be able to do it.
Due to the integer prescale factor, one can not, in general, have both the exact resolution and exact frequency one desires. I can imagine users wanting to do one or...
OK, thanks. I may have a go at implementation but understand the error handling may need to be reworked. I think of SSEs more-or-less like uni-directional text-only websockets (from server...
Thanks again for the feedback. At the moment I've gotten a little example working without reqwasm but rather just using using plain `web-sys`. I am going to go with that...
From your first message, it seems the script cannot connect to the ROS service. What is the output of `rosservice list`? I don't think the cut-and-paste from the camnodes is...