Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Ian Lance Taylor
On Thu, Oct 29, 2020, 10:48 PM Denis Cheremisov wrote: > Well, as usual I wrote something in the way, not the real thing. > > The case is: > > - At my company we are using errgroup from that sync repo in one project, > sync/errgroup in fact mostly. > - It proved to be error prone with its

Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Denis Cheremisov
Well, as usual I wrote something in the way, not the real thing. The case is: - At my company we are using errgroup from that sync repo in one project, sync/errgroup in fact mostly. - It proved to be error prone with its context shadowing on errgroup.WithContext so we took the original and

[go-nuts] Command line tool to modify YAML files

2020-10-29 Thread Alex Breadman
Hi everyone, I needed a tool today to insert or overwrite top-level values in a YAML file so that my CI pipeline can be cleaner and less complicated. So I made a Go cmd tool called: https://github.com/golangdaddy/yamlfukr I hope someone finds this useful! I will be making a Github Action once

[go-nuts] Re: Any embedded scripting language for Go

2020-10-29 Thread Kaveh Shahbazian
If you like using/trying one from lisp family, there is also Zygo . On Wednesday, October 21, 2020 at 7:33:16 AM UTC+2 aravind...@gmail.com wrote: > Hi, > > I am looking for a way to build interactive app,where user will be giving > instructions to draw

[go-nuts] Re: Selenium webdriver based testing in Go

2020-10-29 Thread Oceans Blue
@ simonri...@gmail.com Do you know of a good tutorial that can get me started? On Friday, January 5, 2018 at 2:14:46 AM UTC-6 simonri...@gmail.com wrote: > I’ve used the Selenium Firefox plugin to test web servers written in Go. > It’s great for end to end testing of a web server because it

Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Wojciech S. Czarnecki
Dnia 2020-10-29, o godz. 06:52:17 Denis Cheremisov napisał(a): > Hi! > At my job we found these additional patents > limitatations https://github.com/golang/sync/blob/master/PATENTS > They makes us impossible to use errgroup (which is, to say, turned to have > pretty poor choice of WithContext

Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Ian Lance Taylor
On Thu, Oct 29, 2020 at 6:53 AM Denis Cheremisov wrote: > > Hi! > At my job we found these additional patents limitatations > https://github.com/golang/sync/blob/master/PATENTS > They makes us impossible to use errgroup (which is, to say, turned to have > pretty poor choice of WithContext

Re: [go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread 'Axel Wagner' via golang-nuts
Disclaimer: IANAL. On Thu, Oct 29, 2020 at 2:53 PM Denis Cheremisov wrote: > At my job we found these additional patents limitatations > https://github.com/golang/sync/blob/master/PATENTS > They makes us impossible to use errgroup (which is, to say, turned to have > pretty poor choice of

[go-nuts] Licence details of github.com/golang/sync

2020-10-29 Thread Denis Cheremisov
Hi! At my job we found these additional patents limitatations https://github.com/golang/sync/blob/master/PATENTS They makes us impossible to use errgroup (which is, to say, turned to have pretty poor choice of WithContext signature, so our one is different), so we have our custom implementation