Noah Koontz

Results 26 comments of Noah Koontz

Thanks for the detailed review! > I know it's an additional step, but I would prefer if everything from anyrpc was first converted to a std::variant and then, in the...

I implemented an intermediary variant (`spix::Variant`) to preserve the abstraction layer between anyrpc, spix, and Qt: `spix::Variant` is a union of all the basic anyrpc types, including a map of...

I added tests and some text in the README, and with that I think this PR is good to go!

Interaction with pyAutoGui seems to work. Test script: ```python import xmlrpc.client import time import pyautogui def clickItem(path): # from https://github.com/faaxm/spix/blob/master/examples/RemoteCtrl/script/autogui.py # Query spix to get the location of the item...

I haven't had this issue myself but the explanation makes sense. Unfortunately I don't have the bandwidth to try and implement a solution at the moment, but I'd be happy...

Not at the moment. This was partially by design, but primarily because BearSSL provides no built-in way to disable x509 verification (which was definitely by design). It looks like it...

Yup, SSLClient is really large and it will definitely bog your compile time. If you're already using the latest version of the Arduino IDE and ESP32 core I've also done...

I haven't tried using SSLClient with cellular myself, but from what I've gathered from issue threads it can be unreliable depending on the module, current cell signal, and cell provider...

This error is likely occurring because SSLClient's internal buffer is too small to fit the entire firmware file. You can try increasing the buffer size by increasing the size of...

Hello! Unfortunately this functionality isn't implemented in SSLClient, as it's quite complicated and not as secure as using a header file. I don't have plans on adding this feature, but...