[go-nuts] [ANN] Get Programming with Go is now available in print

2018-09-18 Thread Nathan Youngman
the ebook and print versions, with international shipping available. Deal of the Day: https://yng.mn/dotd -- Nathan Youngman https://programminggo.com/ -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this grou

Re: [go-nuts] Ternary ... again

2018-08-15 Thread Nathan Youngman
Mark, Funny that -- you suggest that adding another syntax for the same behaviour "might help with adoption". I think the opposite is true. My friend has been learning iOS development and has found many things confusing. There is the lambda syntax in Swift, and then the trailing lambda synta

Re: [go-nuts] Re: [ANN] Get Programming with Go

2018-03-08 Thread Nathan Youngman
ked at http://www.gopl.io/ ? Nathan. On 8 March 2018 at 12:41, wrote: > > On Wednesday, 7 March 2018 10:46:58 UTC-4, Nathan Youngman wrote: >> >> Learn about error handling and concurrent state in the latest release of >> Get Programming with Go, available from Manning

Re: [go-nuts] Re: [ANN] Get Programming with Go

2018-03-07 Thread Nathan Youngman
ou want to know?”. Can you share your > competition here? I’ll mention “Get Programming with Go” in the future. > > Thanks, > Matt > > On Wednesday, March 7, 2018 at 8:46:58 AM UTC-6, Nathan Youngman wrote: >> >> Learn about error handling and concurrent state in the la

[go-nuts] [ANN] Get Programming with Go

2018-03-07 Thread Nathan Youngman
Learn about error handling and concurrent state in the latest release of Get Programming with Go, available from Manning Books. The first draft is complete. If you have any feedback, now’s the time to get it in, as we are currently editing the book before it goes to production. https://bit.l

[go-nuts] Re: fsnotify: maintainers wanted

2017-03-14 Thread Nathan Youngman
I'm stepping away from the fsnotify project. Maintainers wanted: https://github.com/fsnotify/fsnotify/issues/183#issuecomment-286456045 Good luck, Nathan. On Tuesday, 25 October 2016 12:09:48 UTC-6, Nathan Youngman wrote: > > Hi, > > Fsnotify provides notifications of cha

[go-nuts] fsnotify: maintainers wanted

2016-10-25 Thread Nathan Youngman
Hi, Fsnotify provides notifications of changes to files and directories on BSD, Linux, Mac, and Windows. It is imported by ~800 projects (via godoc.org). While I would like to remain involved in fsnotify, I personally don't have enough cycles to handle all the incoming issues and pull requests

[go-nuts] Re: Tooling experience feedback

2016-10-19 Thread Nathan Youngman
Even if there wasn't a -novendor flag, it would be nice if there was a consistent way to ignore the /vendor/ directory. This approach was provided by Andrew Gerrand's talk "Stupid Gopher Talks": go test $(go list ./... | grep -v vendor) However, the same doesn't work for all tools. The gofmt

[go-nuts] Re: Tooling experience feedback

2016-10-19 Thread Nathan Youngman
There is a 2013 proposal from Russ Cox that includes a -watch flag in the go tool. https://docs.google.com/document/d/1xl_aRcCbksFRmCKtoyRQG9L7j6DIdMZtrkFAoi5EXaA/edit "a possible extension would be to add -watch flag to “go test,” “go > install,” and “go run,” which would repeat the command e

Re: [go-nuts] goimports has been updated

2016-07-15 Thread Nathan Youngman
Thanks Brad. I also use $GOPATH ($HOME/src) for code non-Go projects. I'd be in favour of a more automated solution to ignoring folders that don't contain any *.go files (until such time as they start using *.go). Nathan. On Friday, 15 July 2016 06:48:12 UTC-6, Peter Waller wrote: > > Awesome

[go-nuts] [ANN] Buford v0.11.0 for Apple Push Notifications

2016-07-15 Thread Nathan Youngman
Buford is a Go library for sending remote notifications to iOS, macOS, tvOS, and watchOS. It uses the HTTP/2 protocol that Apple has supported since last year. Thanks to improvements in the x/net/http2 package, Buford is now able to correctly parse responses from Apple when their servers hang u

[go-nuts] [ANN] Buford v0.9.0 Apple Push Notifications for iOS 10 beta

2016-06-16 Thread Nathan Youngman
Buford is a Go library for remote notifications on iOS, macOS, tvOS, and watchOS. It uses the HTTP/2 protocol that Apple has supported since last year. This releases adds a few new fields based on the sessions at WWDC 2016 for features coming in iOS 10. https://github.com/RobotsAndPencils/buf