[go-nuts] Re: Good examples of Go back ends?

2024-01-22 Thread Jason E. Aten
This question is too vague. You are likely to get more helpful answers if you specify what kind of "backend" you are looking for. As it is, we can only guess. Do you want backends that are web servers? (see the standard library net/http or the caddy web server) Is it a backend for iOS iPhon

[go-nuts] [NOTE] GOPL type theory at the receiver

2024-01-22 Thread John Pritchard
The interface abstraction seems to be violated by the "pass by value" convention at the receiver when the "I/O" pattern is found to be dysfunctional. In [IO] https://go.dev/play/p/9vx4HZpSYe0 we see that the implementation of an exemplar interface is functionally stateless, demonstrating the appea

Re: [go-nuts] Re: Go+Windows+Audio

2024-01-22 Thread Gustavo Vargas
Tobias, Awesome blog post! Solved my issue in here! Thanks! Em domingo, 5 de fevereiro de 2023 às 21:26:31 UTC-3, Tobias Wellnitz escreveu: > Alberto, > > I'm using Docker for cross-compiling my cgo apps. One project of mine ( > remoteAudio ) requires porta

[go-nuts] How long should the profiles be to use with Profile-Guided Optimization (PGO)?

2024-01-22 Thread Agustin Horacio Urquiza Toledo
Hello, I am trying to use PGO in my project and I would like to know how well it works. I have collected 10 minutes of CPU profiling data from production. Is this enough? I’m asking because it’s very difficult to change my code in production and I want to be sure that my code, compiled with PGO

[go-nuts] Re: Good examples of Go back ends?

2024-01-22 Thread george looshch
hi Jason, thanks a million for pointing out the vagueness of my question! English isn’t my mother tongue so now i see where you’re coming from what i meant was examples of real-world web server with routing, authentication, DB, etc. curated lists have libraries and frameworks, what i’m looking

Re: [go-nuts] Re: Good examples of Go back ends?

2024-01-22 Thread Robert Engels
github.com/robaho/go-trader has many easy to follow examples - authentication, multicast , routing, rest apis, websockets. A major system not covered though is db access. On Jan 22, 2024, at 9:23 AM, george looshch wrote:hi Jason,thanks a million for pointing out the vagueness of my question! Eng

Re: [go-nuts] Re: Good examples of Go back ends?

2024-01-22 Thread george looshch
thanks, Robert! On Monday, January 22, 2024 at 5:27:25 PM UTC Robert Engels wrote: > github.com/robaho/go-trader has many easy to follow examples - > authentication, multicast , routing, rest apis, websockets. A major system > not covered though is db access. > > On Jan 22, 2024, at 9:23 AM, g

Re: [go-nuts] Re: Good examples of Go back ends?

2024-01-22 Thread Jason Phillips
Much of the code backing the official Go website and infrastructure is open source and hosted (or at least mirrored into) the golang Github project at https://github.com/golang Some specific examples: - pkgsite, the backend for pkg.go.dev: https://github.com/golang/pkgsite - vulndb, the b

Re: [go-nuts] Re: Good examples of Go back ends?

2024-01-22 Thread george looshch
oh that’s lovely, thank you, Jason! On Monday, January 22, 2024 at 7:50:07 PM UTC Jason Phillips wrote: > Much of the code backing the official Go website and infrastructure is > open source and hosted (or at least mirrored into) the golang Github > project at https://github.com/golang > > Some

[go-nuts] Re: Good examples of Go back ends?

2024-01-22 Thread Abu Zakaria
Hi George, I highly suggest you check out the Fiber web framework. You will find the framework interesting. This repo has a list of many examples using Fiber – https://github.com/gofiber/recipes Scroll through the repository, and you will most likely find what you are looking for. On Monday, J