[go-nuts] Re: mongodb driver for go

2018-12-14 Thread oldCoderException
We've been using this one in production for quite some time: https://godoc.org/gopkg.in/mgo.v2 Interesting to see the MongoDB folks doing one now too. :) Paul On Friday, 14 December 2018 10:01:09 UTC-8, Badhmanaban M wrote: > > Hi, is there any native mongodb driver for golang > -- You recei

[go-nuts] Re: Go 1.9 introduced error on UDP Multicast JoinGroup

2017-08-27 Thread oldCoderException
ût 2017 01:14:20 UTC+2, oldCoderException a écrit : >> >> Hi all, >> >> I upgraded to Go 1.9 and since then UDP multicast code that has been >> running fine for over a year is now failing on JoinGroup. I run this >> program on linux Mint 18 as root (using sudo), both for th

[go-nuts] Re: Webservices with Windows Authentication

2017-12-09 Thread oldCoderException
I can't comment on authenticating a go client against windoze services, but we use both LDAP and Active Directory (AD) extensively and authenticate our users, as well as add and modify them to those services using Go all the time. We use this excellent package: https://godoc.org/gopkg.in/ldap.

[go-nuts] Re: Update your code if you use golang.org/x/crypto/acme/autocert

2018-01-16 Thread oldCoderException
I haven't had a chance to delve into this much yet, but for those of us who already have a "redirector" setup on port 80 to redirect ALL non-SSL traffic over to port 443 won't this introduce a problem? Or I suppose we could implement said redirection in the fallback handler, ditching the one w

[go-nuts] Re: Modules... why it has to be so painfull?

2021-04-09 Thread oldCoderException
I certainly agree with everyone who has been saying that implementing modules can be painful. Implementing them was initially a multi-week nightmare of sleepless nights for me, and I still sometimes shake my head with their use. I think that a large part of the problem is that the documentati