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

2024-03-30 Thread george looshch
;> and PostgresSQL in the second. From 1.22, one might consider using >> net/http.ServeMux as the router. One advantage compared to just looking at >> code is that, being a book and tutorial, it discusses alternatives at every >> stage. >> >> Jason Phillip

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

2024-01-23 Thread george looshch
7;s high level, but there's some good stuff mentioned in > https://github.com/avelino/awesome-go > > On Mon, 22 Jan 2024 at 15:23, george looshch wrote: > >> hi Jason, >> >> thanks a million for pointing out the vagueness of my question! English >> isn’t

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

2024-01-23 Thread george looshch
/recipes Scroll through the repository, and you will most likely find what you are looking for. On Monday, January 22, 2024 at 9:22:51 PM UTC+6 george looshch wrote: 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

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

2024-01-22 Thread george looshch
https://github.com/golang/website >- playground, the go.dev/play backend: >https://github.com/golang/playground > > There's probably not much auth handling in any of those but it should meet > the rest of your criteria. > > > Jason > > On Monday, January

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

2024-01-22 Thread george looshch
024, at 9:23 AM, george looshch wrote: > > 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, > authe

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

2024-01-22 Thread george looshch
> Generally, go over to github and search for the kind of backend you want, > and select those projects that are written in Go on the left side filter > click-boxes. You could also look at the curated lists of Go libraries such > as https://awesome-go.com/ > > On Sunday, Ja

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

2024-01-21 Thread george looshch
hi! can i please ask if someone knows good examples of back ends written in Go? If not good, just production code would be great as well! thanks in advance and have a great rest of the weekend! -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To

[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