Tiffany Bennett

Results 48 comments of Tiffany Bennett

It looks like you're using an old version of the `define_style!()` syntax, I recently changed it (see the examples directory for what the new syntax is like, it's more like...

Ah, I forgot to update the readme.. I'll do that. I think cargo patches might not work the way I expect, I'll change how I export the mox macro to...

Sorry for the confusion! I just pushed an update to the readme, and I also just pushed a fix so that the patching is no longer needed.

The old impl of rink-irc and rink-web had some Linux-only code to hard limit memory and execution time using `setrlimit`, I'd recommend doing that in this case. I haven't reimplemented...

Memory usage might be a little bit higher than it was back then, in that case. I remember the majority of the memory usage was the app's code and various...

I've just merged new sandboxing code for this. Right now it's only used in the CLI, so I think I'll need to put in some more work to make it...

I don't think there is one yet, I can add it. Will probably take the form of a `mod` infix keyword since % is taken by percents.

Yeah, I'd eventually like to re-add built in sandboxing support. Aside from currently not protecting against time/memory overuse, rink does have a few design goals/non-goals that help with security: -...

Out of tree implementations do have the advantage that they don't need to be updated every time I make changes in rink-core. The one thing I'd suggest is that `rink-core`...

You could generate custom strings based on the response objects (which are Serde-serializable), like rink-web does to generate HTML. That's a very overkill solution for just adding IRC color codes...