budo76

Results 7 comments of budo76

+1 for native flutter/dart implementation ... because Flutter has poor Crypto implementations, and well... "tink" is from google right?... "dart" is from google... "flutter" is from google... but there's no...

Same problem here. Trying to use pdfium binary library from here: https://github.com/bblanchon/pdfium-binaries/releases/ that works on ubuntu (glibc) but doesn't on alpine (musl) because musl implementation of glic miss some symbols......

OK @prantlf ... I installed bash (indeed there's bash in Alpine!) and now the provided "ldd" starts but still not working (state that I have no read permission on the...

> OK @prantlf ... I installed bash (indeed there's bash in Alpine!) and now the provided "ldd" starts but still not working (state that I have no read permission on...

This worked for me: ``` // img is of type Mat colorRed := gocv.NewScalar(0,0,255,0) // B, G, R and alpha img.SetTo(color) ``` ... all pixels are set to RED ......

Hi, I'm creating a go program and want to use your module. I've done "go get" and "go mod download" and in the code: ``` import ( "github.com/figroc/tensorflow-serving-client" ) ```...

Wow... I somehow solved. First the package was wrong, I had to import the specific package and not only the module (and this is obvious - my fault), so something...