Re: [go-nuts] Hosting to deploy && run exe ?

2023-06-12 Thread Christoph Berger
Also worth having a look at: - fly.io - encore.dev Fly.io lets you launch apps in micro VMs. Encore.dev is a Go-specific deployment & orchestration framework with a hosting option. Both have a free tier. (Disclaimer: I have no affiliate relationship with any of them.) On Sunday, June 11, 2023 a

[go-nuts] Re: call a https endpoint from go app client

2023-06-12 Thread Vraj Reshamdalal
Hi Sebastian, Yes it is possible! Please use the package wincred to resolve your issue (wincred ). Summary of the example provided below: 1. The GetGenericCredential function from the wincred package is used to retrieve a generic

[go-nuts] Why is the reason that the flame graph in go pprof rotated 180 degrees?

2023-06-12 Thread fliter
Why is the reason that the flame graph in go pprof rotated 180 degrees? The reason I can think of is that it seems that this conforms to the func calling order from top to bottom. Thanks for anyone's discussion and replies -- You received this message because you are subscribed to the Google

Re: [go-nuts] Re: smarter way to provide interface capabilities from underlining interface

2023-06-12 Thread Brian Candler
On Monday, 12 June 2023 at 07:55:24 UTC+1 Brian Candler wrote: I don't know if it's possible to use 'reflect' to build the struct type dynamically FWIW, I tried it, but could only make a program which crashes spectacularly. https://go.dev/play/p/BIFFT3FgUrz There is a comment in the documenta