Juniper Tyree
Juniper Tyree
Thank you @voidentente for your work on this feature!
Yes, that is expected behaviour. RON is a superset of JSON, so all JSON documents are valid RON documents. But RON also supports structs and enums with a Rusty syntax,...
Thank you for the question! While it would be nice to extend the functionality that implicit `Option`s get in RON, they are currently tied to `Option`s being special in `serde`....
I’m forwarding some console messages to the frontend using the following: https://github.com/climet-eu/pyodide/blob/7671beed84dc67e67723b9fb6056087703e8c908/packages/jupyterlite-preload/jupyterlite-preload/jupyterlite_preload.py#L69 Originally, I overrode console.log etc in the web worker. Unfortunately, Pyodide reads console.log quite early so a lot...
> In the normal client/server relationship between two components A and B, where A imports an instance of B (through a Wit `interface`), there can't be a cycle because B...
> ```webassembly > (component $Parent > (type $A (resource (rep i32))) > (component $Child > (import "A" (type (sub resource))) > ... > ) > (instance $child (instantiate $Child) (with...
Yes, it was fixed for me with 2.0.11 as well
Thanks! You’re absolutely right that the intended outcome can be achieved already, though with some tricks. In Rust, for instance, * the resource type can contain an `Option`, where `T`...
I didn't know we supported parsing integers from hex strings ... can you add a test for that?
I'm not sure if I'm in favor of this proposed change so far. If the goal is to be able to serialize all integers in binary, octal, or hex notation,...