Aaron Kriegman

Results 18 issues of Aaron Kriegman

I am using a contour plot with a single level to plot an equipotential. I'd like to have a legend entry for this curve instead of the colorbar, since the...

## 💡 Feature description Right now wasm-pack allows passing arguments to cargo build, but doesn't do the same for wasm-bindgen. I feel like this should be a pretty important feature...

Let's say I have several routes, and the handler for each route returns something that I want to then serialize into json for the body of my response. ```rust use...

feature

It would be nice if there was a way to skip a single expression. It gets a bit cumbersome to write `#! format: off` and `#! format: on` before and...

enhancement

I have a `Vec` in my model and I would like to draw it using `draw.polyline()`. The problem is, `draw.polyline().points(points: I)` accepts an `I: IntoIterator` with `I::Item: Into`. As far...

When I try to display symbols in the repl, they get displayed as PyObjects with an escaped string representation, instead of the usual pretty printing. MWE: ``` julia> @vars x...

I am trying to do the following operations on an RTree so that I can use it as a set: - Insert a point if not already present - merge...

I'd really like to be able to differentiate complex functions with ForwardDiff. For almost all analytic functions, the derivative can be taken in the same way as in the real...

For rust-analyzer, I wanted to pass the initialization options `{"checkOnSave":{"command":"check"}}`, but the plugin parsed that as `{"checkOnSave":{"command":"check"}`. Currently the plugin uses a regex to split the option string, and I...

the `definition` feature didn't work when the file returned by the server wasn't in the working directory, as is often the case with dependencies. This commit fixes this bug.