Re: [go-nuts] study go package

2018-01-19 Thread matthewjuran
Looking at popular Go repositories on github may be a good source: https://github.com/search?l=Go&o=desc&q=golang&s=stars&type=Repositories&utf8=%E2%9C%93 Matt On Friday, January 19, 2018 at 7:56:33 AM UTC-6, Chris Hopkins wrote: > > Agreed. > I found the standard library and ioutil in particul

Re: [go-nuts] study go package

2018-01-19 Thread Chris Hopkins
Agreed. I found the standard library and ioutil in particular a good start. YMMV. On Friday, 19 January 2018 13:03:52 UTC, Gianguido SorĂ  wrote: > > I think that the Go source code itself is among the best sources of good > practices and well-written Go. > > Il 19 gen 2018 13:52, "Keith Brown" >

Re: [go-nuts] study go package

2018-01-19 Thread Gianguido SorĂ 
I think that the Go source code itself is among the best sources of good practices and well-written Go. Il 19 gen 2018 13:52, "Keith Brown" ha scritto: > I want to pick up good practices when developing my go code. Is there a > package which I can study and comprehend for newbies? I mainly use >

[go-nuts] study go package

2018-01-19 Thread Keith Brown
I want to pick up good practices when developing my go code. Is there a package which I can study and comprehend for newbies? I mainly use effective go but would like to see more examples of good software/code design layout. BTW, in Python I always followed twisted as my examples for testing,