[go-nuts] Re: go module @latest found but does not contain package

2020-07-25 Thread antoniosun001
On Friday, July 24, 2020 at 1:08:06 PM UTC-4, Tong Sun wrote: > > Hi, > > How to get around the following, go module @latest found but does not > contain package? > > $ cd /tmp/015-file > > $ GO111MODULE=on > > $ go mod init github.com/mkideal/cli/015-file > go: creating new go.mod: module git

[go-nuts] Re: [ANN] Gomail v2: sending emails faster

2017-06-11 Thread antoniosun001
Hey Alex, Can gomail supports embedding *a lot* of images? From https://godoc.org/gopkg.in/gomail.v2#Message.Embed it seems that gomail only support embedding one image, if we embed a lot of them, there are still lots of tedious manual works to make it works. Right? On Monday, May 30, 2016 a

Re: [go-nuts] Go Playground Syntax Highlighting

2016-12-03 Thread antoniosun001
Last time I checked, I can still activate it (the syntax highlighting) in the drop-down menu. Now the syntax highlighting drop-down menu is no longer there, right? I'm using chromium-browser under Linux. On Sunday, October 28, 2012 at 10:04:57 AM UTC-4, Lucio wrote: > > It wasn't there before

Re: [go-nuts] Re: Serialization internal data to disk

2016-10-16 Thread antoniosun001
On Sunday, October 16, 2016 at 2:20:59 AM UTC-4, Tamás Gulácsi wrote: > > Please check your errors if you depend on the call's success! I.e. if you > write into a file, f.Close must be successful, or else maybe it doesn't > flush at all, and your file will be empty. That's a good point, still