Eric Rodrigues Pires
Eric Rodrigues Pires
This code causes a segmentation fault during compilation on latest release: ```pony use "collections" actor Main let map: Map[String, (F32 | Map[U32, F32])] = map.create() new create(env: Env) => None...
[Brought up on Zulip](https://ponylang.zulipchat.com/#narrow/stream/189985-beginner-help/topic/cli.20package.20integer.20argument.20confusion). `Arg.i64()` (or any other function in `cli.Arg`/`cli.Option` returning its arg value) will silently return a default value if its actual value has a different type (eg....
Hi! I'm currently using [Flask-SocketIO](https://github.com/miguelgrinberg/Flask-SocketIO) and it's pretty great so far! There was one error in my logic when a client joins/leaves rooms, where I tried to call `flask_socketio.rooms()` on...
Currently, all information there is on creating code documentation is hidden in [appendices/whitespace.md](https://github.com/ponylang/pony-tutorial/blob/f5e716e9944cbd00d8ca3c8bd0d8129472614f6b/appendices/whitespace.md#docstrings), and only mentions how to add docstrings. This should either be a new section in "Appendices", or...
Ideally, for non-default platforms (eg. Linux distros using with glibc < 2.29), users should choose a platform with this command before running `ponyup update` so that all commands use the...
__TL;DR:__ Explanation of the issue with extracting fields from a consumed reference, and initial proposal of a syntax When handling viewpoint adaptation field extraction (especially with `iso` origins), there is...
When in a custscene or speaking to an NPC, and the "Disable Chat Movement and Resize" tweak is enabled, the text will advance whenever you click on any chat tab...
The current `CONTRIBUTING.md` file has been mostly ported from the official repos, making it a lot more relevant for "official Pony code" than for an unofficial user-created library. Here are...
The `stable` dependency manager (and soon `corral` too) support origins other than GitHub, such as GitLab, so a good chunk of the document does not apply to libraries hosted elsewhere....
Hey there, thanks for the library! Currently, I'm trying to use this with [HTMX](https://htmx.org/) to get statically typed routes, as in the example below: ```rust use axum::{extract::State, routing::get, Router}; use...