Jan Burgy
Jan Burgy
I managed to circumvent the immediate issue by adding ```python from matplotlib_pyodide.browser_backend import TimerWasm class Timer(TimerWasm): def __init__(self, interval=None): self._timer = None super().__init__(interval=interval) ``` and injecting that new implementation to...
The animation was not working because [`pyscript.display`](https://github.com/pyscript/pyscript/blob/main/core/src/stdlib/pyscript/display.py) saves the figure to PNG. A silly broke-around is to replace `display(fig)` by ```python # pyscript.display doesn't know .to_jshtml so call it ourself...
> If Zig allowed us to create struct types with custom declarations (pulling the functions out of the user struct and into a new pydust struct) then that would be...
@slonik-az can we close this issue now that Ziggy Pydust supports Zig 0.14?
@gatesn @lwwmanning @delta003 @robert3005 as the members of [Spiral](https://blog.spiraldb.com/) listed on this repository, would one of you consider reviewing this PR?
@robert3005 I deleted commented out code or confirmed your understanding and closed the corresponding conversations. I left explanations without closing the remaining ones so they stand out, please take another...
@alexnask started "a whole rewrite" in October 2022. Unfortunately, he passed away in September 2023. I upgraded the code he left behind to Zig 0.15.1 and merged it into [my...
@ivansantiagojr your issue is likely related to [this discord thread](https://discord.com/channels/605571803288698900/1393290799684390962) (see [this minimal repro](https://gist.github.com/jburgy/081992ed24df120cd2edde6e56346371) if you can't access the discord thread). Note that I raised [ziglang/translate-c#47](https://github.com/ziglang/translate-c/issues/47) and found a work-around....
I have similar issues. In my case, I use a service worker to add COI headers as suggested by [this comment](https://github.com/orgs/community/discussions/54257#discussioncomment-12110993). Only the posts with WASM demos (which require `SharedArrayBuffer`...
I found a broke-around by sending `giscus.app` requests to a [Cloudflare worker](https://developers.cloudflare.com/workers/examples/alter-headers/) that alters response headers. Adding COEP and CORP (first and last above) did the trick.