John Christian Lønningdal
John Christian Lønningdal
I also noticed this. Perhaps that is how these models work but this part of e.g. chatGPT is doing this way faster due to the sheer scale of the servers...
Was not able to get the example to work either where it extends Parchment.Inline. Only way I got custom blots to work was to extend Parchment.Embed. But perhaps my problem...
I have had some success replacing the ... with ; (a semicolon) - but sometimes it just ignores that even. There really should be some way to make it actually...
Could this be something they added as Quill zaps all multiple spaces otherwise in v2.0.2? We have an issue where if you have two tags within each other, for example...
@itisnajim , not sure what you mean here. I have several scripts spread around on my objects but keep one object with a script that does the socket connection, using...
Ok I narrowed this down to actually it crashing when two Emit's are sent shortly after each other like this: ``` try { socket.Emit("mic", byteBuffer); Debug.Log("Sent!"); socket.Emit("updateTest", "test"); Debug.Log("Sent 2!");...
Yes, clearly there is race conditions happening within the socket library. If I wait for 100ms after this first byte buffer is sent (it is around 40000 bytes lenght) before...
Ok so here was my simple solution to this and it works just great: ``` //... private Queue messageQueue = new Queue(); IEnumerator sendMessages() { while (true) { if (isConnected...
While I am at it, take a look at the actual EmitAsync in SocketIO.cs, it has an oddball thingy where it tries to json serialize the data object no matter...
I spent a couple of hours not understanding why I had similar problems and it boiled down to the fact that something silences all exceptions in socket.On() calls and furthermore...