Boscop
Boscop
@saschagrunert Any update on this? :) @jkelleyrtp I saw you forked this, are you still interested in pushing this forward? When I have time (which is rarely), I'll try to...
When I have some more time, I'll write a proc-macro for this.. Basically generating the enum / string conversion (both ways) that was handwritten for the example, and with `:param`...
Yes, tokio could be an optional feature. Wasm doesn't need the tokio runtime (and it wouldn't be desirable because of the bloat), but request works on wasm as well. Not...
Sorry for the delay, I was busy with other things.. Wasm can be inlined as a `Uint8Array`: https://dzone.com/articles/webassembly-wasmfiddle-and-inline-webassembly-modu Related: https://github.com/xtuc/inline-wast https://github.com/WebAssembly/design/issues/1129#issuecomment-327591545 https://github.com/WebAssembly/design/issues/1206 I'm really looking forward to being able to...
@rse Any update on this? :) Wasm code can be embedded as `Uint8Array`: ```js var wasmCode = new Uint8Array([0, 97, 115, 109, 1, 0, 0, 0, 1, 135, 128, 128,...
@mbuscemi You just need to read the file into a `Vec` with [`fs::read`](https://doc.rust-lang.org/std/fs/fn.read.html) and print the result like ```rust println!("var wasmCode = new Uint8Array({:?});", fs::read("app.wasm")?); ``` But this can be...
@mbuscemi Nice to hear that you're making progress. Which errors are you getting? Are you building with cargo web?
Btw, when I try to copy the styling of one of the cards, it doesn't let me: The card is clickable, and after clicking the DivMagic button and then clicking...
Thanks for your quick reply, I really appreciate it :) 1. Clicking D after clicking the icon doesn't work for me, it has no effect. I'm using Chrome on Win11...
Another example: If I copy the "glass" item from https://css.glass using these settings: I get essentially nothing that's visible: https://divmagic.com/studio/c/CMGgVrcvSf And if I try to copy the background (below the...