[go-nuts] State of Go video for 1.19?

2022-08-06 Thread Steve Mynott
Is a State of Go video for 1.19 likely to appear? My quick search fails to find one. -- Steve Mynott rsa3072/629FBB91565E591955B5876A79CEFAA4450EBD50 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop rece

Re: [go-nuts] State of Go video for 1.19?

2022-08-06 Thread 'Axel Wagner' via golang-nuts
I don't think such a video has ever been the standard. Occasionally, individual community members gave talks which where titled something like that. But it's not something that's centrally organized to happen nor has it happened consistently enough to be a tradition. Feel free to record one and pu

[go-nuts] Re: Generic error handling with panic, recover, and defer

2022-08-06 Thread Harri L
Thanks for mentioning https://github.com/lainio/err2. I'm the author of the package. Maybe a few words about it would be ok. We could say that the err2 package is one of the most important libraries in our corporation's use. It's over three years old by now, and we have used it both for interna

[go-nuts] gouse — toggle ‘declared but not used’ errors

2022-08-06 Thread George Looshch
Hi everyone! I created a CLI tool for toggling ‘declared but not used’ errors by using idiomatic ‘_ = notUsedVar’ and leaving a TODO comment to make sure you haven’t forgotten to remove fake usages. Serves best as back end for some wrapper in form of extension for an IDE or an editor. Easily

Re: [go-nuts] syscall/js: strange deadlock caused by wasm event handling callback (runtime bug?)

2022-08-06 Thread at diar
Doesn't seem that this is a known issue. I will try and write a short reproducer and file an issue. On Fri, Aug 5, 2022, 11:18 PM atd...@gmail.com wrote: > Hi, > > I have a little concurrency problem. Seems that my Go-wasm-defined event > handlers run concurrently instead of synchronously. > > B