geoynomous

Results 5 issues of geoynomous

I have ethernet and wifi (sometimes both connected) on the MacOS - allow to choose which Adapter (actually its IP address) is written in program and in QR code.

enhancement

``` // Create JSON with "outer" array field jsonObj := gabs.New() jsonObj.Array("outer") // Create JSON with "inner" array field innerObj := gabs.New() innerObj.ArrayOfSize(0, "inner") // Append to inner jsonObj.ArrayAppend(innerObj, "outer");...

What goes wrong here? ``` // Create new obj jsonObj := gabs.New() // Add array of size 0 jsonObj.ArrayOfSize(0, "array") // Create an element ... e := gabs.New() // ......

Currently on can configure (through https://myid.users.rport.io/dashboard, or directly in client config) a client to offer ports that are then made available on https://myid.users.rport.io (on a free port or a specific...

The OPC-UA might announce multiple certificates - concatenated. Then ``x509.ParseCertificate(cert)`` does not work - it will report a ``x509: trailing data`` error. It is better to use ``x509.ParseCertificates(certsByteArray)`` (**Plural!**) and...