Evan Almloff

Results 533 comments of Evan Almloff

I don't think the dynamic time warping is the issue here. It should always return a number of tokens equal to the number of tokens in the input. I added...

The `try_next` method returns a future, it doesn't block the thread. If you need to do other work at the same time, you could use [join](https://docs.rs/futures/latest/futures/future/fn.join.html) or if you want...

Some of the examples were updated and moved into the main repo in https://github.com/DioxusLabs/dioxus/pull/1941

> Oh, so only wifi scanner and file explorer remains ? In that case, maybe we should add more examples and remove the ported ones ? wifi-scanner, ecommerce-site, and the...

The dioxus interpreter uses a slot map to store element references. The slots should automatically get reused over time and clear the old references as new nodes are allocated. If...

It depends how you install the tailwind CLI. If you run the CLI via npx which is the default in the tailwind docs then the new version does get installed...

I don't think this will work with fullstack streaming like the `suspense-carousel` playwright test. We need the script to start running before the html is fully loaded which is why...

CI failures are unrelated dependency issues I'm working on fixing them in https://github.com/DioxusLabs/dioxus/pull/4312

If you add many lists to the first render, they render correctly: ```rust use dioxus::prelude::*; #[component] fn App() -> Element { let mut data = use_signal(|| { (0..100) .step_by(10) .map(|i|...

If you are interested in fixing this, I think we just need to add the base path from the CLI config to the address for the server function [here](https://github.com/DioxusLabs/dioxus/blob/main/packages/cli/src/build/prerender.rs#L45-L48). You...