[go-nuts] Purpose of pattern in muxEntry

2020-12-14 Thread Amit Saha
Hi all, the ServerMux struct is currently defined as: type ServeMux struct { // other fields m map[string]muxEntry } The muxEntry is then defined as: type muxEntry struct { h Handler pattern string } Is there any reason for also storing the pattern in the muxEntry since it

[go-nuts] Re: Good books to learn Golang deeply?

2020-12-14 Thread jake...@gmail.com
Two previous posts on this topic: https://groups.google.com/g/golang-nuts/c/chxehZ29uOQ/m/0DeZBJiMCAAJ https://groups.google.com/g/golang-nuts/c/hU_cLsp1r70/m/NvIcU-KcCAAJ You might also find some interesting ideas in: https://groups.google.com/g/golang-nuts/search?q=subject%3Alearn On Monday,

[go-nuts] Go Devroom at FOSDEM 2021

2020-12-14 Thread Maartje Eyskens
Hi gophers! As every year we're planning a Go Devroom at FOSDEM, despite the current situation 2021 won't be different. This year FOSDEM will be held online on February 6th 2021. This year we're looking for speakers who want to deliver a live or per-recorded talk as well as many volunteers to

Re: [go-nuts] using the xml package with data with complex name spacing

2020-12-14 Thread 'Dan Kortschak' via golang-nuts
On Mon, 2020-12-14 at 13:53 +, Sam Whited wrote: > In the example you provided it is working as expected. The element > you're unmarshaling is in the " > http://www.w3.org/1999/02/22-rdf-syntax-ns#; namespace (it has an > "rdf" > prefix) but the thing you're unmarshaling it into expects >

Re: [go-nuts] Good books to learn Golang deeply?

2020-12-14 Thread Dhruvil Dave
I really liked "The Go Programming Language" by Alan Donovan and Brian Kernighan. They go through it all with quite a detailed approach. On Mon, Dec 14, 2020, 23:15 Facundo Yuffrida wrote: > I'm looking for recommended books to learn Golang deeply and also some > writer to follow his books and

[go-nuts] Good books to learn Golang deeply?

2020-12-14 Thread Facundo Yuffrida
I'm looking for recommended books to learn Golang deeply and also some writer to follow his books and his line of thinking. -- 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, send

Re: [go-nuts] using the xml package with data with complex name spacing

2020-12-14 Thread Sam Whited
In the example you provided it is working as expected. The element you're unmarshaling is in the " http://www.w3.org/1999/02/22-rdf-syntax-ns#; namespace (it has an "rdf" prefix) but the thing you're unmarshaling it into expects "http://purl.obolibrary.org/obo/go/subsets/goslim_yeast.owl#; because