[go-nuts] Re: Refactor Asynchronous JS to Go

2022-11-05 Thread Rusco
Some time ago I compared Functional Reactive Programming FRP with Golang Channels (CSP), might be useful to you as a starter: https://rusco.github.io/ On Saturday, 5 November 2022 at 20:58:54 UTC sksin...@gmail.com wrote: > Hi, > I am refactoring a JS library to Go. I have some questions

[go-nuts] Good recap of antivirus issue with Go binaries on windows

2022-10-13 Thread Rusco
Excellent article: https://betterprogramming.pub/a-big-problem-in-go-that-no-one-talks-about-328cc3e71378 (The author tests against https://www.virustotal.com/gui/home/upload) Reddit thread: https://www.reddit.com/r/golang/comments/y24was/an_article_about_go_hello_world_builds_mistakenly/ Even

[go-nuts] Re: App Engine hasn't upgraded beyond Go 1.16, which is now out of security window

2022-09-12 Thread Rusco
Googles own language on Googles own cloud lags behind several version, I don't understand this :-( Microsoft seems to be more eager to keep things up to date: .NET 7 comes to Azure Functions & Visual Studio 2022 - .NET Blog (microsoft.com)

[go-nuts] Re: Golang and virustotal

2022-05-11 Thread Rusco
Regarding: "compile a simple helloworld main ...": My workaround is to insert a import "C" among the other imports. It somehow alters the structure of the binary created and my av no more recognizes the binary. This is actually something which never happened when I am doing some Rust work.

[go-nuts] "Cortex XDR has blocked a malicious activity! " when running Go binary

2022-03-09 Thread Rusco
naries. Any hints welcome Rusco -- 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 disc

Re: [go-nuts] Re: now that the election is over can we please remove the political ad for golang.org

2021-03-17 Thread Rusco
afaik George Soros is behind the BLM Campaign, this alone justifies removing the banner. From now on the Golang Community should be inclusive and tolerate all political opinions. Seems to be harder than writing speedy go code ... On Wednesday, 17 March 2021 at 17:59:52 UTC mortdeus wrote: >

Re: [go-nuts] Re: political fundraising on golang.org!

2020-06-16 Thread Rusco
After all (I think this has been discussed already ), who is owner of the Golang Project ? Isn't this supposed to be an open source / community based project ? What about mine political ideas, can I put them also on golang's front page, since I am part of the community ? Where will we end up

[go-nuts] Re: political fundraising on golang.org!

2020-06-15 Thread Rusco
This is political hijacking of the Golang project, I am disgusted ! On Sunday, 14 June 2020 14:36:38 UTC+1, peterGo wrote: > > Recently, a political message with a fundraising link appeared as a banner > atop golang.org websites: https://golang.org/, https://pkg.go.dev/. > >

[go-nuts] Re: Go wasm - package js - Set() fails for certain attributes

2019-03-30 Thread Rusco
If you try out your code in Javascript you can spot your error, it would be something like: but.className = "somecssclass"; but.addEventListener("click", somefunction); so for syscall/js (untested) something like: var cb js.Callback cb = js.NewCallback(func(args []js.Value) {

[go-nuts] Re: Vue-inspired library with Go+WebAssembly

2019-03-29 Thread Rusco
Congrats, I am sure a lot of gophers waited for something like this ! I especially like this comment: "No node. No JS. No npm. No node_modules folder competing with your music library for disk space"  On Friday, 29 March 2019 04:39:42 UTC, Brad wrote: > > Now that WebAssembly is available as

[go-nuts] Question about fmt.Printf of maps

2018-10-18 Thread Rusco
I just tried this Google Playground recipe from Bradfritz: https://play.golang.org/p/RYac90kI-H (seen via https://github.com/golang/go/issues/21095) and noted that y appears in the output but x appears as . Can someone explain me why ? I was expecting that x appears in the same way like y.

[go-nuts] Re: [ANN] (GUI) Qt binding which supports Windows / macOS / Linux / Android / iOS / Sailfish OS / Raspberry Pi

2016-11-10 Thread Rusco
Good to see some progress on the GUI front - I think you are up to something ! Rusco On Thursday, 10 November 2016 20:34:36 UTC, therecipe wrote: > > Hey everyone, > > I would like to officially announce the project I'm working on for a while > now. > It's a binding fo