Remy Prechelt
Remy Prechelt
First of all, awesome package! I often make my org headings to be links using standard org link syntax (`[[file:path/to/file][text]]`). `org-ol-tree` currently displays the _raw_ text in the outline tree,...
I have my `matplotlibrc` file setup to save `.png` (by default) with `transparent` backgrounds. If I do, ``` python import matplotlib.pyplot as plt plt.plot([1, 2, 3]) plt.savefig("image.png") ``` in a...
The *optional* `nano-minibuffer.el` uses `material-color` on [L54](https://github.com/rougier/nano-emacs/blob/master/nano-minibuffer.el#L54) but does not explicitly load `nano-colors.el` which is another *optional* module and therefore causes a backtrace error if your init file doesn't already...
``` global_constraints = [constraints.AltitudeConstraint(min=30*units.deg, boolean_constraint=True)] ``` works correctly. However, if I want to score objects by altitude, the docs suggest ``` global_constraints = [constraints.AltitudeConstraint(min=30*units.deg, boolean_constraint=False) ``` This throws an exception....
As the number of functions that we support continues to grow, it seems like the current method of manually updating the hard-coded values in [`@replaceBase`](https://github.com/JuliaLang/AppleAccelerate.jl/blob/master/src/Util.jl#L20) is not going to scale...
Below is a list of Apple Accelerate functions that should be implemented in AppleAccelerate.jl. This list is not exhaustive but does cover most of the functionality of Accelerate. If you...
With the new preliminary support for multi-dimensional arrays added recently, extending the current 1D test-suite to also use 2D/3D arrays (and verify that dimensionality is preserved) is a required next...
Currently the VML tests cannot be run on Travis because Travis does not provide Intel's MKL in its images; there has been some work [here](https://github.com/nemequ/icc-travis) on downloading and activating and...
### Describe the bug I am using the `mo.mpl.interactive(_ax)` to display a single Matplotlib plot in a Marimo notebook. After repeatedly tweaking a single input number causing marimo to regenerate...
It's a semi-common use case that the source scripts/notebooks used in sphinx-gallery have some static data files that they depend on (e.g. .csv files they load and process as part...