Fatih Cetinkaya
Fatih Cetinkaya
It is related to https://github.com/golang/go/issues/26366 . Any chance you could add dummy files into `hidapi` and `libusb` directories. Here are examples: - https://github.com/golang/go/issues/26366#issuecomment-606404010 - https://github.com/go-gl/glfw/pull/258 Thanks
Yes, it seems a bug. Give me a few days, I'll fix it asap. P.S. Thanks for taking your time and reporting issues. I appreciate it...
See `os.Args`; ```go package main import ( "fmt" "log" "os" "github.com/devfacet/gocmd" ) func main() { fmt.Printf("args: %#v\n", os.Args) flags := struct { Command struct{} `command:"command"` Flag string `short:"f" long:"flag" required:"true"`...
In this case how can I determine whether the command line argument is a "command" or an "argument value" since os.Args values are stripped? See; ```bash # -f is an...
Can you share your runtime environment information?
@heynemann : wdym by cluster mode?
Currently there is no built-in authentication. I would recommend you to run it in a private VPC or use SSH tunneling.
@damianoneill : I asked about it and told that there is no way to get message payload size currently. Some folks calculate it by "total message bytes / number of...
Why we need this change? Also does that Docker image provide Node environment?
The following approach works for me on RDS (with default-postgres-15 option group which has ssl=1 and force_ssl=1): 1. Remove the `sslmode` from the connection string. 2. Download the RDS certificate...