Jesper van den Ende

Results 91 comments of Jesper van den Ende

This is causing OnStartServer() to be called twice on NetworkBehaviour objects.

I believe it is. Code intended to be run in the browser is often bundled as commonjs (which I still don't understand the reason for). I was hoping to use...

`tag-lines` from OP now also doesn't work anymore. I thought it simply wasn't documented until I stumbled upon this.

The `await waitForMicrotasks()` is there because half of the time you need to do that anyway, and when you don't, the extra `setTimeout()` isn't really an issue. I haven't really...

My use case is that I'm using `performance.now()` in many places instead of `Date.now()`. I'm not really sure why to be honest, I think it's an old relic from when...

In this case specifically I'm using `performance.now()` to compare the deltatime between two `"wheel"` events in order to determine how long the user has been scrolling. But I have also...

I looked some more into this and it seems like the precision of `performance.now()` is 100 microseconds nowadays. Which is still one order of magnitude more precise than `Date.now()`. As...

In the example above, I think just making the `Symbol()` red should be enough. In case of more complex cases ideally it would highlight the unique symbols that are different...

I'm using [tincan](https://deno.land/x/[email protected]) for writing tests, which uses a Jest-like api. So using a wrapper as shown above is not really an option in this case I think.

This is what I'm using svtToPng.html ```html var el = null; window.onload = () => { createFileElem(); document.getElementById("sizeInput").onchange = renderStuff; }; function createFileElem(){ el = document.createElement("input"); el.type = "file"; el.onchange...