Jeremy Metz
Jeremy Metz
Can confirm that building and installing 3.10.0a5 worked - pyflow now recognizes the version and runs correctly! :+1:
I use Scikit Image a lot - and often use e.g Li threshold algorithm (https://github.com/scikit-image/scikit-image/). In principle though I could imagine implementing all of the standard threshold algorithms as a...
Presumably somewhere like here: ```python self._task_index: TaskID = TaskID(0) self.live = Live( console=console or get_console(), auto_refresh=auto_refresh, refresh_per_second=refresh_per_second, transient=transient, redirect_stdout=redirect_stdout, redirect_stderr=redirect_stderr, get_renderable=self.get_renderable, ) ``` https://github.com/Textualize/rich/blob/master/rich/progress.py#L1089 instead of creating a new Live...
I switched back to crouton with Jessie... will update if/when I get around to trying this again.
Btw just found the Python project, where the author decided to simply embed the original markdown into the revealjs index page :sweat_smile: https://gitlab.com/da_doomer/markdown-slides Soo I guess I'm suggesting a merge...
Just to add to the workaround suggested by @ClementGre, one alternative is to wrap the `tauri-plugin-log` JS functions using `wasm-bindgen`; for my own purposes I added in `format!` for good...
Yeah that looks pretty comparable to other snippet systems I've used before 👍
Hey @janhohenheim ! Firstly, fantastic project, definitely plan on using this and learning from it! Just a heads-up though :warning: ; I just tried to take this branch and change...
> Could you also update the `templates/bevy` template as it depends on `templates/bevy-demo` template and it is broken in this PR as well. Done :+1:
I've cobbled together a stripped down version of @niklasei 's [`bevy_game_template`](https://github.com/NiklasEi/bevy_game_template), modified to use a working `cargo-mobile2` template here: https://github.com/jmetz/cargo-mobile2-bevy-example Perhaps this could help develop the templates.