Evan Almloff

Results 533 comments of Evan Almloff

We only have limited control over syntax highlighting inside of macros. Rust analyzer highlights macros based on the tokens they expand to. For formatted strings, we highlight strings that only...

You can set the endpoint parameter in the server function macro like this: ```rust #[server( endpoint = "upload_og", )] ```

That sounds similar to the issue that was fixed by https://github.com/DioxusLabs/dioxus/pull/4460. Can you try with the git version of dioxus?

It doesn't follow the SSE format, but server functions do support streaming input and output with [`StreamingJson`](https://docs.rs/server_fn/0.6.15/server_fn/codec/struct.StreamingJson.html) added in https://github.com/leptos-rs/leptos/pull/2623

There is some interaction here with the default features and rust analyzer. Whatever features we have enabled by default are used by default by rust analyzer. It sounds like the...

The rsx macro doesn't support hot reloading in nested rsx macros. For example, you cannot hot reload "hello world" in the following code snippet: ```rust use dioxus::prelude::*; fn main() {...

> When I modify my new project, hot reloading does not work, nor does Tailwind CSS. The text-red-500 property is not taking effect. Tailwind CSS hot reloading is tracked in...

That sounds like an issue with your tailwind.css config. You can change your class regex to `"tailwindCSS.experimental.classRegex": ["class: ?\"(.*)\""]` to make the space optional

Porting the pyannotate model (voxceleb-resnet) and clustering pipeline to candle seems like the most difficult piece here integrating that into whisper is relatively easy

The `value` attribute in dioxus sets the value property of the element with javascript. If you want to set the value attribute instead you can use the `initial_value` attribute like...