I believe Liz Rice covered this in her GopherCon 2018 talk on TLS
connections: https://www.youtube.com/watch?v=kxKLYDLzuHA
On Sunday, April 21, 2019 at 8:09:17 AM UTC-4, Vasiliy Tolstov wrote:
>
> Hi, I'm try to find mutual tls example in go, but can't find simple
> example that uses crypto/tls.
You should have a look at http://go-colly.org . I've done scraping with
html.Parse before, and I wish Colly existed when I did.
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, sen
It wasn’t always possible. I think this ability was added around 1.8 to
expressly make multiple “views” of a struct easier by ignoring tags in the
identity of the struct: https://go-review.googlesource.com/c/go/+/30169
--
You received this message because you are subscribed to the Google Groups
I've been running protoc and protoc-gen-go in a container (and fixing versions
by checking out commits) to try to address this problem for my projects. I'd
love to hear what others have done though.
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" grou
I was working with filepath.Walk(), and I noticed something peculiar about
the os.FileInfo interface that the filepath.WalkFunc receives. According to
the definition here: https://golang.org/pkg/os/#FileInfo, the Size() method
returns an int64. Shouldn't this be a uint64? Is there a sane instanc
I'm not entirely sure, but my intuition says that using `time.After` like
that with pending sends from another goroutine will cause that goroutine to
leak. A better solution may be to use the `WithTimeout` functionality of
the `context` package and then periodically check the `Done()` channel to
I've used `go generate` and typically check in the generated *.pb.go. There's
some formatting weirdness when contributers have different versions of the
`protoc` binary, but nothing that causes anything to break.
--
You received this message because you are subscribed to the Google Groups
"gol