[go-nuts] Re: Go is two times slower than python code?

2016-11-30 Thread Thomas Modeneis
+6 years later, It seems that this issue still a problem. There is a open ticket on github for it: https://github.com/golang/go/issues/16791 I've been facing this issue for a while, and on my experience the best workaround is to serialize the CSV to the disk after reading it. Cheers. On

[go-nuts] Re: go get: You are not currently on a branch

2016-10-25 Thread Thomas Modeneis
gurp...@gmail.com wrote: "The error occurs because the repo got a new branch since your last go get." ...right ... but look how many errors, one have to manually get "fixed" in order get a dependency updated. $ go get -u github.com/dancannon/gorethink # cd

Re: [go-nuts] Re: go get: You are not currently on a branch

2016-10-12 Thread Thomas Modeneis
Hi Oir, The main problem seems to be related to go get believe me or not. I manage to get this right after I deleted $GOPATH/pkg/* and $GOPATH/src/golang.org Thanks On Wednesday, October 12, 2016 at 3:51:07 PM UTC+2, ohir wrote: > > Dnia 2016-10-12, o godz. 02:37:16 > Thomas

[go-nuts] Re: go get: You are not currently on a branch

2016-10-12 Thread Thomas Modeneis
Oh this is one of the problems that is really time consuming. I'm not sure if this is related, but I've never had this kind of problems before +1.7. @Dave, I've tried your "quick-fix" but no luck ... $ go get google.golang.org/grpc # cd /opt/gocode/src/golang.org/x/net; git pull --ff-only You

[go-nuts] Re: go get: You are not currently on a branch

2016-10-12 Thread Thomas Modeneis
This issue is all over the web, people are having problems multiple times: http://stackoverflow.com/questions/33064343/go-get-git-error-on-all-sources-but-golang-org https://github.com/tools/godep/issues/60 https://github.com/golang/go/issues/6042