Matt Bell
Matt Bell
Your server is giving too much trust to players. I know it takes server CPU to actually check if people are cheating, but if you don't want the game to...
Maybe it would be useful to mention callback binding, I know that personally was confusing for me in the beginning. For instance, you might expect this to work: ``` js...
A timezone issue causes some banners to be a day off. Example: https://github.com/replaid
Currently Buffers are not wrapped, so mutating one will mutate the original. This should be prevented with a copy-on-write wrapper (not efficient for large Buffers, but probably fine).
There is a lot of room for performance improvements around the project, which is important since this is likely a major CPU-burner inside [`lotion`](https://github.com/keppel/lotion). I'd also like to add benchmarks...
As of `0.4.0` we support the array `splice` method, but limited to only the beginning and end of the array. It would be nice to support splicing in the middle,...
Currently missing a few, such as `ownKeys` (so currently iterating through keys falls back to the target). It's fine for some of them to throw an error (e.g. `setPrototype`).
Currently we pass messages to the app serially, blocking until the handler has returned a response. In the future, we will want to be able to handle messages concurrently, e.g....
This PR fixes the Rust `right_branches_are_empty` implementation, specifically for specs which have more than 2 children per node (e.g. Merk).
- [x] Nonce plugin should support queries for getting individual nonces - [x] Nonce client should get latest value via query after failures to sync with state (also maybe at...