[go-nuts] https://talks.golang.org/ down...?

2017-06-11 Thread brylant
I'm guessing this is not desired response from talks.golang.org..: Error: Server ErrorThe service you requested is not available yet. Please try again in 30 seconds. It's been down for last few days... Anybody has any idea when the service is going to be back? -- You received this message be

[go-nuts] Re: multicast...

2017-06-08 Thread brylant
It appears nothing is wrong with my code... it's just red hat firewalld that is blocking ospf... On Thursday, 8 June 2017 13:37:27 UTC+1, brylant wrote: > > Hi, > > I'm trying to capture OSPF hello packets like this: > > ens192, err := net.InterfaceByNam

[go-nuts] multicast...

2017-06-08 Thread brylant
Hi, I'm trying to capture OSPF hello packets like this: ens192, err := net.InterfaceByName("ens192") if err != nil { return err } c, err := net.ListenPacket("ip4:89", "0.0.0.0") // ipv4 proto 89, all local interfaces if err != nil {

[go-nuts] multicast...

2017-06-08 Thread brylant
Hi, I'm trying to capture OSPF hello packets like this: ens192, err := net.InterfaceByName("ens192") if err != nil { return err } _ = ens192 c, err := net.ListenPacket("ip4:89", "0.0.0.0") // ipv4 proto 89, all local interfaces if e

[go-nuts] Golang, SQL and ORM avoidance techniques

2017-06-02 Thread brylant
I've been trying hard (well.. as much as I can considering my lack of in-depth go knowledge or - to be perfectly honest - lack of in-depth knowledge of anything) to find suitable go+sql technique that would not require a lot of code repetition, not use reflection and not use ORMs of any sort..