Robin Rolf

Results 29 comments of Robin Rolf

I've thrown together this, which seems to produce more consistent results (not quite sure if youd call them correct?) ```php /** * Adds $months months to the date with no...

> Actually I doubt we could improve this without degrading other cases. > For instance, I tried to add the following difference in test_month_diff: "2022-01-29 22:29:50.000000", "2022-02-28 22:29:50.000000" > The...

The code itself looks solid to me, are you using the same serializer from different threads? That might mess things up

I actually set that up on a fork the other day to get some mac binaries, just a "quick & dirty" setup Might still be of interest to you/anyone looking...

if we want to make sure we don't "loose" any extra time due to only updating every x ms, how about this? ```csharp if (NetworkTime.localTime >= lastSendTime + sendInterval) {...

As @SoftwareGuy said generally this shouldn't be an issue, the only thing you need to make sure all the network related code is the same in both projects as mirror...

Good fix would be to not count unauthenticated connections towards the limit + timeout if you don't auth within x seconds - that at least raises the barrier a bit

> @imerr so if we use OnDestroy in NM and Transport, this is solved? Yes, thats what I'm doing for my things > so if OnAppQuit cancels the quit, ondestory...

This is somewhat expected SyncVars are "magic" in the sense that the weaver replaces code after compilation with a property and only detects changes via setting to that property for...

I'd like to second @vinniefalco here A way to have an (async_)write_many method which takes a range with message-per-buffer would be great I've added websocket support to a low-level game...