N4tus
N4tus
### Describe the bug I have a raw string like so ``let pomsky_str = `:img([s]) ('.jpg' | '.dng') '.pp3'` `` and i have a binary (named echon) that just prints...
It is possible to get the state of an executed system back out? Something like this? ```rust #[system] fn example(#[state] s: &mut u32) {} fn test(){ let sys = example_system(0);...
Is there a way to define a snippets.json file?. And if yes, how/where do I do that?
### Describe the bug ```py def provideStr [r: record] { "test" } def needStr [str: string] { echo $str } def run [r: record] { needStr (provideStr $r) } run...
I want to add the astro language server to languages.toml (https://github.com/withastro/language-tools/tree/main/packages/language-server). It is installed globally and callable as `astro-ls`. My languages.toml entry looks like this: ```toml [[language]] name = "astro"...
Does WebView support custom elements? If I try to define one `customElements.define("my-element", MyElement)` it crashes by doing nothing anymore. I tried it with the edge feature on.
### Current Behavior `path.toAbsolute("/assets/atlas.json")` evaluates to `"tauri://assets/atlas.json"`. ### Expected Behavior `path.toAbsolute("/assets/atlas.json")` should evaluate to `"tauri://localhost/assets/atlas.json"`, but pixijs drops the `localhost`. Tauri expects that root-relative URLs are relative to `tauri://localhost` (`document.baseURI...