Curtis Myzie
Curtis Myzie
- Add username label to deconflict metrics that would otherwise have duplicate labels across different pools. - Group metrics by name and only print HELP and TYPE once per metric...
### Discussed in https://github.com/risor-io/risor/discussions/195 Originally posted by **alexaandru** February 28, 2024 At a quick glance I could not find them in there, which makes sense, the VM doesn't need them....
Adds an examples and tutorials page describing how to use Cloudflare Hyperdrive with [pgEdge Cloud](https://www.pgedge.com/). As discussed with @elithrar in email. Thanks and let us know if any changes are...
These changes make print-formatting for Risor objects generally more usable. The idea here is to: 1. print primitive types exactly the same as Go would (bool, nil, int, float, byte,...
Something like this should be able to show the traceback tied to a given error: ``` try( func() { error("kaboom") }, func(err) { print(err.traceback()) } ) ```
For interacting with the Slack API. Minimal example: ```go client := slack.client(getenv("SLACK_TOKEN")) client.post_message("#general", {text: "Hello, world!"}) ```
Wraps the Slack API
Hi there @teilomillet, Nice library! I was considering using it in one of my apps and after taking a closer look I had a question for you. In my situation...
Implement dynamic memory allocation for the VM's core structures (stack, frames, args) to enhance memory efficiency and scalability. --- [Learn more](https://docs.cursor.com/background-agent/web-and-mobile) about Cursor Agents
Add error traceback functionality to Risor errors, allowing users to inspect the call stack when an error is raised.