[go-nuts] [ANN] meli - an alternative to docker-compose.

2017-12-19 Thread komuW
Hey guys, I'm happy to announce meli <https://github.com/komuw/meli>, an alternative to docker-compose written in Go. Let me know what you think. Cheers. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe

Re: [go-nuts] A thought on contracts

2018-09-10 Thread komuW
On Thursday, 6 September 2018 23:22:34 UTC+3, Ian Lance Taylor wrote: > > On Wed, Sep 5, 2018 at 8:26 PM, Steve Phillips > wrote: > > Interesting idea, but has the Go team expressed interest in creating > such a tool? > > Yes, I think it's become clear that we should have a tool that, given

[go-nuts] Re: Is it needed to close a HTTP request body ?

2018-09-10 Thread komuW
On Monday, 10 September 2018 17:27:43 UTC+3, Pierre Durand wrote: > > When I learned Go a few years ago, I was told to always defer/close the > HTTP request body, otherwise it will cause a resource leak. > > But today I read this: https://golang.org/pkg/net/http/#Request.Body > // The

[go-nuts] Re: One-liner README instructions for GitHub cross compiled binary assets

2018-10-31 Thread komuW
TJ's https://github.com/apex/up uses https://github.com/goreleaser/godownloader to generate `curl bash` style downloads. On Wednesday, 31 October 2018 00:28:17 UTC+3, Paul Jolly wrote: > > Hi - I'm hoping someone can point me towards a "best practice" example on > adding binary assets to

[go-nuts] Re: gomobile: what's the right way to make widgets?

2018-11-11 Thread komuW
Do you plan on making that UI library public(open source or not) at some point? On Monday, 29 October 2018 16:51:02 UTC+3, Elias Naur wrote: > > > > On Monday, October 29, 2018 at 11:48:06 AM UTC+1, Laurent Moussault wrote: >> >> >> IMHO there is vacuum right-now, an opportunity for a native

[go-nuts] Re: Constraints for generics

2018-10-01 Thread komuW
On Sunday, 30 September 2018 13:33:23 UTC+3, Christian Surlykke wrote: > > Hi > > I made a proposal for generics with constraints about ½ a year ago, which > I posted to the (very long) thread on issue 15292. I've now made a version > 2

[go-nuts] Re: Types are contract -, v2

2018-11-20 Thread komuW
> > A contract can also be written in terms of a struct: > > contract linkedListNode { > X struct { > next *X > } > } > > In this example taken from the linked document; what is X? On Tuesday, 20 November 2018 05:38:31 UTC+3, Burak Serdar wrote: > > Hi, > > A while ago I sent an email

Re: [go-nuts] Language line in go.mod

2018-12-18 Thread komuW
is go.sum documented? I have seen a couple of questions on the same in the #modules channel on gophers slack On Tuesday, 18 December 2018 19:14:12 UTC+3, Ian Lance Taylor wrote: > > On Tue, Dec 18, 2018 at 8:07 AM Sam Whited > wrote: > > > > I've been asked multiple times recently to point

Re: [go-nuts] Performance issue with os.File.Write

2020-12-22 Thread komuW
The bufio package also uses a max buffer of 64KB: https://go.googlesource.com/go/+/go1.15.6/src/bufio/scan.go#80 io.copybuffer on the other hand uses 32KB; https://go.googlesource.com/go/+/go1.15.6/src/io/io.go#398 On Monday, 21 December 2020 at 14:46:21 UTC+3 arn...@gmail.com wrote: > @Ben