Re: [go-nuts] Re: Basic question on Channels

2022-07-27 Thread Aravindhan K
t;>> On Wednesday, 27 July 2022 at 08:13:34 UTC+1 aravind...@gmail.com >>>> wrote: >>>> >>>>> Hi All, >>>>> When I was explaining basics of channels to newcomers, I was using the >>>>> below example >>>>> ht

Re: [go-nuts] Re: Basic question on Channels

2022-07-27 Thread Aravindhan K
xpecting both Write 5 and Write 3 to be printed. But only Write 5 >>> was printed. I couldn't reason out the behaviour, can somebody point out >>> what I am assuming wrong about. >>> >>> Thanks, >>> Aravindhan K >>> >> -- > You received th

[go-nuts] Basic question on Channels

2022-07-27 Thread Aravindhan K
wrong about. Thanks, Aravindhan K -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion o

Re: [go-nuts] WMI and Go... where to get started?

2021-02-08 Thread Aravindhan K
Hi, I don't think there exists WMI client implementation in Go. You could try cgo with samba WMI implementation https://github.com/greenbone/openvas-smb Thanks, Aravindhan K On Mon, Feb 8, 2021, 1:49 AM Tom Limoncelli wrote: > I've been using Unix for decades (and Go since the

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

2020-10-21 Thread Aravindhan K
Thanks for the suggestions, I will check it out. Go as interpreted language seems an interesting idea, I will surely try that. https://goplay.space#draw wonderful idea! to teach programming to kids. Thanks, Aravindhan K On Wed, Oct 21, 2020 at 11:48 PM Wojciech S. Czarnecki wrote: > D

[go-nuts] Any embedded scripting language for Go

2020-10-20 Thread Aravindhan K
bindings to arbiratory go packages back and forth? and I could embed it in Go App as well. Thanks, Aravindhan K -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: [go-nuts] Re: deadlock with a empty select{} in main goroutine.

2020-04-08 Thread Aravindhan K
Thanks Ian. Aravindhan K On Thu, Apr 9, 2020 at 3:21 AM Ian Lance Taylor wrote: > On Wed, Apr 8, 2020 at 10:19 AM Aravindhan K > wrote: > > > > If that is the case, in below code main go routine will a reach a > situation where no other go routines running to wake it up

Re: [go-nuts] Re: deadlock with a empty select{} in main goroutine.

2020-04-08 Thread Aravindhan K
elect{}, doesn't the coder purposely wishes to block forever? Thanks, Aravindhan K On Wed, Apr 8, 2020 at 10:13 PM 'Vikram Ingawale' via golang-nuts < golang-nuts@googlegroups.com> wrote: > Hi Manlio , > > The select statement will block until one of its cases is