Jan-Hendrik Müller
Jan-Hendrik Müller
https://code-maven.com/minimal-example-generating-html-with-python-jinja Thanks for your amazing jinja example. One suggestion: The first example could be simlified a bit with `pathlib` ```py from jinja2 import Environment, FileSystemLoader from pathlib import Path root...
Hi! I want to save my plot with the ScaleBar, here is my code: ```py fig, ax = plt.subplots() ax.axis("off") ax.imshow(my_slice3, cmap="gray") scalebar = ScaleBar(650, "nm", length_fraction=0.25, location= "lower right")...
As it is always good to reproduce randomness, these two functions should have a parameter seed. https://docs.manim.community/en/stable/_modules/manim/utils/color.html#random_color Then it should be possible to just init that seed. ~~https://towardsdatascience.com/stop-using-numpy-random-seed-581a9972805f~~ EDIT: Second...
Similar to [%%capture](https://ipython.readthedocs.io/en/stable/interactive/magics.html#cellmagic-capture), it would be nice to have a cell magic to save Jupyter image cell output to files. Usage could look like this: ```py %%save_png my_image_folder/foo.png from IPython.display...
Don't merge yet, it's only a draft pull request. Attempt to solve #404. @Joshix-1 can you have a look at this? It's not yet a working solution, because sometimes this...
I have a Thinkpad T495 Ubuntu 20.4 and want to use Thinkfan, as I don't want to have fan noises when e.g. watching videos. I installed `thinkfan 0.9.1`, and it...
Numpy has a nice interactive applet to try out the package on their [landing page](numpy.org). It would be great to have a similar applet for scikit-image as well. @JeffersGlass and...
I just wrote some tutorials with nbsphinx, and thought that it would be really great, if every single cell could be navigated to via url. Currently, I only saw an...
## My idea in short: A Jupyter cell magic, that takes the code of a cell and the corresponding example output image. The cell magic then generates a html website,...
### Problem Let's say I have a notebook called `example_notebook.ipynb` in a JupyterLite environment. The following questions are not easy to answer : * Did I already edit the notebook,...