Chris Rogus
Chris Rogus
Per the new draft "With this method rand_a section of UUIDv7 SHOULD be utilized as fixed-length dedicated counter bits that are incremented by one for every UUID generation." That's in...
I want to be able to read the body of a (multipart) request I have built, for tests, but I cannot because there does not seem to be a public...
**Problem** This fails with a panic: ``` #[component] fn Home() -> Element { rsx! { if true { } } } ``` But this works: ``` #[component] fn Home() ->...
This allows file sizes to be checked *before* loading the entire file into memory (e.g. with `read_file`) when it might be too big. (And without requesting the native file to...
My code was out of date, so I missed https://github.com/DioxusLabs/dioxus/commit/b6d3da2b31c336fdf38845a790969edda9f8e0e7 -- but I still caught one more, and added an example. Also tweaked the comments.
Per @ealmloff at https://discord.com/channels/899851952891002890/1231274531004481627/1231297848130404402 **Problem** If I do this: ``` #[route("/:id2/blog/:id")] Blog { id: i32, id2: i32 }, ``` (Note that the url string has id2 then id, but the...
This allows me to write a function that can accept both `Event` and `Event` as `Event` -- without this PR, `DragData` [has `impl HasFileData`](https://github.com/DioxusLabs/dioxus/blob/a5b4ceed39e2aaa3e517c4f23f466fe2ff67d028/packages/html/src/events/drag.rs#L61) such that I can do `event.files()`...
Repro steps: ``` cargo new bad-sqlx-sessions cd bad-sqlx-sessions cargo add async-sqlx-session -F pg cargo run ``` It will fail to build. Error text below because it is so long, but...
**Problem** `Link` elements are `a` tags in rendered html, but have a `dioxus-prevent-default="onclick"` which I assume is not looking at the `ctrl`/`cmd` state when clicked to replicate the normal browser...
``` yo aspnet nancy Test cd Test dotnet add package Nancy.Serialization.JsonNet error: Package Nancy.Serialization.JsonNet 1.4.1 is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0). Package Nancy.Serialization.JsonNet 1.4.1 supports: net40 (.NETFramework,Version=v4.0) error: One or...