Polys Georgiou
Polys Georgiou
I'm not sure if the atomicity of `print` is documented to be honest; with Python's GIL, people take these things for granted. My reasoning was that, since this is a...
I did think of `flush` and tried quite a few things before resorting to locks. If each thread called `print` multiple times and somehow expected the console output to be...
Can I please ask if this is abandoned?
I'm getting the same error on `azurerm_web_pubsub` rather than the hub. The last version of azurerm that worked was 3.13.0 — all subsequent versions fail with the above error. ```...
> @polys what are you using to Serialize? System.Text.Json in a modern out-of-the-box ASP.NET project on .NET 7
> We have a JsonWebKeySetSerializer that is used internally to skip the empty arrays. Is `JsonWebKeySetSerializer` something we can use as well? All I'm trying to do is have a...
It's been working well for me since the fix. Many thanks @xiaxyi
HS* is an HMAC algorithm, so passing a simple string as the secret key works. RS* (RSA) and ES* (ECDSA) algorithms use asymmetric cryptography, so the secret has to be...