Robin Lambertz

Results 388 comments of Robin Lambertz

also' it won't work, because the other end of the pipe expects a string or a buffer, but we send an object. I think this would be better handled by...

the deserializer gives objects. IIRC, you can't pipe objects to a non-object stream. You'd have to serialize it to JSON. That's the point I was trying to make ^^'

While having such a project would be fun, it wouldn't belong in the examples. It is a very complex task with lots of pitfalls, and wouldn't fit a single small...

The problem is switching server is hard to get right. You need to keep a mapping of the entityId of each player of each server. You need to make sure...

That probably doesn't work. It needs to be sent without the length-prefix and with a byte ID instead of varint ID, no ?

Again, I'd like to see this as a separate module, outside from NMP. NMP should follow the open/closed principle : it should offer the normal "IDK this thing" support for...

Forge is probably `hostname\0FML\0 - Forge\00ip-address\00uuid\00profile-properties-as-json`, given the packet should first be sent forge-style by the client, and then bungeecord appends its stuff, before reaching the server. Anyway, the plugin...

https://www.npmjs.com/package/ware is a ready-to-use middleware system.

This is sorely needed because of the zeroize pinning in the currently released version. It is currently impossible to pull both `pgp` and `aws-types` in a single crate, because `aws-types`...

> namely that an accidental copy may generate the same numbers--, clone is an important implementation which is advised by the creators of rand Cloning the RNG feels like a...