t-chab

Results 24 comments of t-chab

@vladiscripts : try do downgrade urlib to a version below 1.25 (source: https://github.com/miyakogi/pyppeteer/issues/258#issuecomment-539588857) It solved the issue for me.

Same problem here, using Ubuntu LTS 20.04 and Gnome 3.36.8 [with default java system tray tutorial](https://docs.oracle.com/javase/tutorial/uiswing/misc/systemtray.html) and JDK v11

With firewalld I had to open tcp port 3131 and udp range 20000-65000 otherwise it didn't work.

Hi, @guitarzero : for what it's worth, I'm using the ovh package behind a corporate proxy without issues, I just had to declare _http_proxy_ and _https_proxy_ environment variables and python...

Hello, Same problem here, did you find a workaround ?

Full steps to reproduce : ``` sh $ cordova create com.cordova.test $ cd com.cordova.test $ cordova platform add ios $ cordova plugin add cordova-plugin-httpd $ cordova build ```

Ok I found a workaround, not sure why it works, but still ... In file _platforms/ios/HelloCordova/Plugins/cordova-plugin-httpd/CorHttpd.m_ move line ``` objectivec @implementation CorHttpd ``` after the _#define_ block, juste before line...

Here's the diff ``` diff @@ -29,8 +29,6 @@ @end -@implementation CorHttpd - #include #include #include @@ -47,6 +45,8 @@ #define IP_LOCALHOST @"127.0.0.1" #define IP_ANY @"0.0.0.0" +@implementation CorHttpd + -...

Hello, same issue here, also for Roomba 676.

Have you configured Google API in _google.lua_ configuration file ? You need something like this : ``` do local _ = { api_keys = { "YOUR_GOOGLE_API_KEY_GOES_HERE" } } return _...