Hey I'm trying make a small test client with Go and Grpc, opts := grpc.WithInsecure() cc, err := grpc.Dial("localhost:9950", opts) if err != nil {
How do I add hours, minutes, and seconds (defined as ints) to the current time, similar to AddDate? timein := time.Now().Local().AddDate(Hours, Mins, Sec) bu
command I ran: go build -o main output: /usr/local/go/pkg/tool/darwin_arm64/link: /usr/local/go/pkg/tool/darwin_arm64/link: combining dwarf failed: unknown load
I'm struggling to do table driven test, and I want do this: testCases := []struct { name string testUserID uint expected User // &
I am switching my entire code base from PHP to Go and during several processes that run, I randomly get this error: [mysql] 2016/10/11 09:17:16 packets.go:33:
I'm trying to find a best/right way to implement minimal and safe client <-> wasm api while avoiding usage of window|global|self context. I have found 3 w
I am using vscode and vscode-go to develop the Go application. When I try to restart language server using command + shirt + p and select "Go: Restart Languag
package main import ( "fmt" ) type demo []struct { Text string Type string } func main() { d := demo{ Text: "Hello", Type:
How to reverse proxy web requests for a few routes to another backend in Gin Gonic web golang framework Is there a way to directly forward in the Handle functi
I started to use Google Play Developer Reporting API with using Golang(https://pkg.go.dev/google.golang.org/[email protected]/playdeveloperreporting/v1beta1), and fac
So I have this import cycle which I'm trying to solve. I have this following pattern: view/ - view.go action/ - action.go - register.go And the general idea
I'm trying to move a file from my C-drive to my H-drive using os.Replace(). The code looks as follows: func MoveFile(source string, destination string) {
I'm a new golang developer and I wonder why $GOPATH environment variable is needed to be set at the root of my project. If I'm working on several projects at t
In one of my API's I mostly return a result (let's say paged 50 results) as one whole in an json array like so: [{},{},{},{},{},...] I was wondering if there
I have a simple https server serving a simple page like so (no error handling for brevity): package main import ( "crypto/tls" "fmt" "net/http" )
I'm working on a simple project that listens on a tun interface and modified the packets then re-sends them to the real interface. I have tried songgao/water,
I successfully installed go1.6.2 with gvm and used global pkgset. I am trying to install gocode package with gvm, but go get not working. I guess gvm is not rea
The program creates a rpc server and a client and expose several methods via the rpc interface. Several test functions testing one of the methods each. The firs
The 2D Array I am trying to print as a board Note: I am a complete novice at using Go and need this for a final project. I am making an attempt to make the game
In my Go application, I make a request to the ClickHouse database via clickhouse-go package. This query which I make return always only one record and it's an a