jackyzy823

Results 109 comments of jackyzy823

Some digging details: LibreSSL reutrns `return tls13_legacy_return_code(ssl, TLS13_IO_WANT_POLLOUT);` https://github.com/libressl-portable/openbsd/blob/55f977dcaef2ca875e62631113886470bfc4b7dd/src/lib/libssl/tls13_legacy.c#L270 when finishing handshake in SSL_Write and then (if work correctly) asking Nim to send data again via error code SSL_ERROR_WANT_WRITE. **tls13_legacy_return_code**...

Well a bit ugly , Just save error code before call sendPendingSslData ```nim template sslLoop(socket: AsyncSocket, flags: set[SocketFlag], op: untyped) = var opResult {.inject.} = -1.cint while opResult < 0:...

Well .... maybe i wrote wrong comment ( i found that i test with copying from Dolphin and pasting to Kate and Kate convert \r\n to \n , so i...

> No, `file://` needs to prepend our uris in the lists. See also https://datatracker.ietf.org/doc/html/rfc8089#appendix-B Sometimes (historically) KDE do not follow RFCs See complains from https://phpspot.net/php/man/gtk/tutorials.filednd.urilist.html > KDE programs like Konqueror,...

First of all. RFCs are not Standards. For `file:` In this situation (implmenting copy file from remote to local) `uri-list` is only used under POSIX system to provide PATH like...

> [My program](https://github.com/KangLin/RabbitRemoteControl/tree/develop) is used the situation. It is run in multi-os(include Windows). This code only used on xfreerdp client , so do xfreerdp client run on Windows ? The...

Close as standardnotes/web's images are no longer provided. My third party solution: https://github.com/standardnotes/app/issues/1388#issuecomment-1211956428

Here I provide my solution for those who want to self host standardnotes/web: https://github.com/jackyzy823/standardnotes-web-image/ and prebuilt docker image https://github.com/jackyzy823/standardnotes-web-image/pkgs/container/standardnotes-web

> I feel like maybe it should be opt-in with a preference ok. I will make it a preference. > * Limit the amount of displayed accounts to 3 I'd...

> BTW. I wonder if you can provide some information on how you've implemented the link preview feature in Nitter. Here (just parse card object of a tweet response )...