Re: [go-nuts] Decoding the buffer to a struct sent from C program

2018-08-16 Thread Naveen Neelakanta
Thanks, I was able to solve the problem with the below code and changing the type to byte. if err := binary.Read(ConnErr, binary.BigEndian, &data); err != nil { Log.ErrS("Error reading notification message", log.KV{"err": err}) break

[go-nuts] ping binding to interface

2018-12-11 Thread Naveen Neelakanta
Hi All, I have an application in golang, which requires me to bind to interface and send ping request. Any help would be appreciated Thanks Naveen -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receivin

[go-nuts] golang for coding interviews

2019-01-10 Thread Naveen Neelakanta
Hi All, I wanted to use Golang for coding interviews, however, I can't import basic data structures like stack, heap, the queue on to IDEs. Is there a way to achieve this. Thanks, Naveen -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubs

Re: [go-nuts] golang for coding interviews

2019-01-10 Thread Naveen Neelakanta
use. Go is still my go-to language > for many other things :) > > On Thu, Jan 10, 2019 at 4:56 PM Naveen Neelakanta < > naveen.b.neelaka...@gmail.com> wrote: > >> Hi All, >> >> I wanted to use Golang for coding interviews, however, I can't import &g