[go-nuts] Chromebook golang environment?

2022-12-11 Thread Ken
Hi, does a golang dev environment exist for Chromebook computers? Sent from my iPhone -- 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...@goo

[go-nuts] Re: Hide Golang Code from Exported package

2022-12-11 Thread neeraj singhi
Actually i need to share it as an sdk. So any way i can share On Thursday, December 8, 2022 at 1:13:17 PM UTC+5:30 marc...@gmail.com wrote: > if you produce an executable, nobody sees the actual Go code. > build it with: > go build -ldflags "-s -w" > > or you could try to obfuscate it: > https:/

Re: [go-nuts] Linting

2022-12-11 Thread Ian Lance Taylor
On Sun, Dec 11, 2022, 2:03 AM Marcello H wrote: > Ok, but does my answer really matter? Because in the end it's what any > linter will tell us about the software. > And since it is not hard to do, my suggestion always is to make use of > some of the great linters that exist. > > In a new project

Re: [go-nuts] Generics in gollvm

2022-12-11 Thread Ian Lance Taylor
On Sun, Dec 11, 2022, 7:11 AM Alex Markin wrote: > Hello. > > What is the status of generic programming (I mean the generics > > added in go-1.18) in the gollvm project? Are there any plans to support it > or maybe so

[go-nuts] Generics in gollvm

2022-12-11 Thread Alex Markin
Hello. What is the status of generic programming (I mean the generics added in go-1.18) in the gollvm project? Are there any plans to support it or maybe someone already working on it? -- You received this message be

Re: [go-nuts] Linting

2022-12-11 Thread Amnon
If you want, run any linters of your chosing on the Go standard library, go through the reports, and see if any are valid - which expose real problems, then feel free to report them here, or submit bug reports. On Sunday, 11 December 2022 at 10:03:21 UTC marc...@gmail.com wrote: > Ok, but does

Re: [go-nuts] Refresher tutorial

2022-12-11 Thread Marcello H
https://mehdihadeli.github.io/awesome-go-education/ Op zondag 11 december 2022 om 00:10:03 UTC+1 schreef Ken MacDonald: > Thanks, Sean & Eli for the recommendations- I’ll check them out. - Ken > > Sent from my iPad > > On Dec 10, 2022, at 1:01 PM, 'Sean Liao' via golang-nuts < > golan...@googlegr

Re: [go-nuts] Linting

2022-12-11 Thread Marcello H
Ok, but does my answer really matter? Because in the end it's what any linter will tell us about the software. And since it is not hard to do, my suggestion always is to make use of some of the great linters that exist. In a new project I always start off with all the linters (in golangci_lint) ac