Clayton Grassick

Results 12 comments of Clayton Grassick

Here's the one I'm using. Same issue on Android 11 with SGH-I337M: ``` bluetoothle.startScan(function(s) { console.log("success"); console.log(s) }, function(e) { console.error(e) }, { services: []}); ``` It doesn't find any...

I needed to do `bluetoothle.requestPermission(requestPermissionSuccess, requestPermissionError);` first!

I've implemented this change here: https://github.com/mWater/cordova-plugin-file.git#fix-issue-525 so feel free to use this until this gets fixed. I started to make a pull request, but the overhead to do so was...

I've created a PR at https://github.com/apache/cordova-plugin-file/pull/534

You may need to set it in pg_hba.conf as well: e.g. ``` # IPv4 local connections: host all all 127.0.0.1/32 md5 ```

Any timeline on this bug? It is problematic to have to alter encryption of passwords on any database that we want to use it on for latest PostgreSQL. Thanks!

If you run npm with `-ddd` you'll see the failure is attempting to run git ls-remote. e.g. `git ls-remote -h -t git://github.com/mWater/jsonql.git` This also runs slow on the command line....

Even more disturbing, if you change the dependency to explicitly use ssh: e.g. ` "jsonql": "git+ssh://[email protected]:mWater/jsonql.git",` It still times out attempting to get it over git protocol! e.g.: `npm sill...

I have a solution that works for me: Run `git config --global url."ssh://git@".insteadOf git://` This appears to configure it to use ssh instead of the git protocol which no longer...

Works great! Thanks! I did notice that one tank is able to push the other one around, but not the other way around. I suspect the order of the resolves?...