Re: [go-nuts] Re: Design patterns in Go

2024-04-04 Thread alex-coder
Hi All, in case someone is in interest of the subject I repost here what I have found in the internet some time ago. >>I apologize for being so intrusive. >>I will only provide links to educational resources, in case it would be interesting for anyone. >>GitHub - AlexanderGrom/go-patterns: Desig

[go-nuts] Re: Design patterns in Go

2024-04-01 Thread Cleberson Pedreira Pauluci
This site shows how to implement some design patterns in Go and other languages through examples. https://refactoring.guru/design-patterns/go Cleberson Pauluci. Em terça-feira, 25 de outubro de 2011 às 05:37:23 UTC-2, xavm escreveu: > Hello, > a non technical subject about Go :) > It could be in

Re: [go-nuts] Re: Design patterns in Go

2024-04-01 Thread Ionenet SA
I think many of you are confusing things. Many GOF patterns are still the basis of today's programming. For example, the way that React or Vue manage states, whatever you are using Pinia or Redux, they are no more than the Observer pattern combined with the Proxy. And they are now native in van