Jon Catanio
Jon Catanio
I'm trying to send back a reply with the encoded user ID so Slack can convert it to the appropriate handle for me. [Here](https://github.com/rampatra/jbot/blob/master/jbot/src/main/java/me/ramswaroop/jbot/core/slack/Bot.java#L162) the message is encoded and the...
Fields like `lineno` would be really beneficial to have in the AST so the compiler can report better error messages. Doing this in rust is a little more complicated since...
A context should be passed down through to each call. CPython represents this context with keywords like `del` which may change the context from `Load` or `Store` to `Del`. It...
Add concise and helpful rust doc comments prefixed with `///` or `//!` to all modules and crates. Resources: - [Rust By Example comment overview](https://rustbyexample.com/meta/doc.html) - [Rust By Example intro to...
Changing `requirements.txt` to include `gym==0.7.4` instead of just `gym` fixes issues that are breaking this codebase. `gym` is currently moving to MuJoCo 150 and introduced breaking changes specifically calling the...