Steve Sperandeo
Steve Sperandeo
Thanks for this @Kramerican ! Yeah, I think I'll remove the boost dependency. It's a bit of an overkill to require it for this and it causes headaches with newer...
It works after the code change. I'll submit a PR. I'm writing a c++ client that wraps this library: https://github.com/homer6/kubepp
That makes sense. However, I'm finding that a number of function calls are not working as expected. By implementing each call individually, I'm able to validate that the calls are...
Thanks @ityuhui, I've created #227 to review for changes. This change should allow pods logs to be retrieved again.
I had this issue on Ubuntu 23.10, and the fix for me was to pull from main instead of this branch: Docs say: ``` git clone https://github.com/warmcat/libwebsockets --depth 1 --branch...
I ran into this too and it was very hard to track down. The exception was very misleading.
``` #include #include #include #include #include using namespace std; #include #include #include #include #include static volatile bool interrupted = false; void my_signal_handler(int){ cout
Alternative using the reactor's poller and one callback: ``` zmqpp::context zmq_context; zmqpp::socket socket_1 { zmq_context, zmqpp::socket_type::pull }; socket_1.connect( "tcp://127.0.0.1:4099" ); //socket_1.subscribe(""); zmqpp::socket socket_2 { zmq_context, zmqpp::socket_type::pull }; socket_2.connect( "tcp://127.0.0.1:4099" );...
Thank you @markmcd !
Oh, it looks like `helper_types` is not included in the types file: ``` cannot import name 'helper_types' from 'google.generativeai.types' (/opt/venv/lib/python3.10/site-packages/google/generativeai/types/__init__.py) ``` @markmcd