[go-nuts] googleable guru doc page?

2018-11-03 Thread 'Jeff Hodges' via golang-nuts
Hey, I just googled "guru golang" and "go guru" and wasn't able to find documentation on what guru can do or how it does it. Is there documentation for it that could be made search accessible somewhere? Or is guru deprecated and I hadn't heard? -- You received this message because you are subscr

[go-nuts] rewriting html/template files

2016-11-10 Thread 'Jeff Hodges' via golang-nuts
I originally wrote this up as a GitHub issue, but I want to make sure I'm not missing anything by emailing this list first. It would be nice if it was easier to rewrite `html/template` files but the current tools (`html/template` and `x/net/html`) seem to have a gap between them. Maybe there's a w

[go-nuts] Re: enabling HTTP/2 clients with some TLS settings using only stdlib?

2016-08-28 Thread 'Jeff Hodges' via golang-nuts
Sample code: https://play.golang.org/p/6PZH13zqKH Which when run on your local machine, will error with: 2016/08/28 18:21:14 Get https://www.google.com: malformed HTTP response "\x00\x00\x18\x04\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00d\x00\x04\x00\x10\x00\x00\x00\x05\x00\x00@ \x00\x00\x06\x00\x0

[go-nuts] enabling HTTP/2 clients with some TLS settings using only stdlib?

2016-08-28 Thread 'Jeff Hodges' via golang-nuts
Hey, I've not been able to figure out how to enable HTTP/2 in a net/http client that needs some tls.Config settings in its Transport (like it's needs a specific root added at run time) using only the stdlib. Is there a way to enable HTTP/2 on clients in the stdlib that I've missed? (Related: I th