Gabor Simko
Gabor Simko
Maybe you could some automation like https://github.com/marketplace/actions/automated-releases-for-npm-packages or https://sergiodxa.com/articles/github-actions-npm-publish?
The problem seems to be with React's synthetic event system, as it is inconsistent for the mouseenter/leave events. I don't know why react decided to redefine the semantics of those...
@Starefossen Syncing back to c85765a015ea6709d161eccd42ef6134981c04b4 (just before 2022 Aug 11th) helps with that, though I'm not sure what critical updates we are missing by doing that.
@HarelM I've created a demo that shows a (hopefully actionable) performance problem. It consumes 40% cpu+30% gpu on a macbook pro m1, and arguably it should be able to cache...
What's needed here to get this merged? @leafo can you please take a look?
Just an update that this also fixes when the signature is RSA-SHA1. If we want to stay closer to what postgres does, instead of objects.txt2nid(signature) we could directly do server_cert.get_signature_nid()....
I couldn't find a solution with cqueues and luasocket for the signature -> digest conversion but added manual handling for the two scenarios I have observed (ecdsa-with-sha384 and rsa-sha1). Can...
+1 for having this feature. Having video+audio together would make it so much easier to manage content on the servers.
If you mean how to include it with ESM then the following works: ``` import monitor from "express-status-monitor"; app.use(monitor()); ```
@Pyrolistical your solution doesn't work for me, I get the "Error [ERR_DOMAIN_CANNOT_SET_UNCAUGHT_EXCEPTION_CAPTURE]: The `domain` module is in use, which is mutually exclusive with calling process.setUncaughtExceptionCaptureCallback()" Would it be possible to...