Bobur UmurzokovforApache APISIXapisix.hashnode.net·Nov 8, 2022Event-Driven APIs with Webhook and API GatewayThere are many ways and technology options to consider when implementing an event-driven API. For example, we explored how to build event-driven APIs using these 3 well-known patterns: CQRS, API Gateway and Serverless on the previous blog post. This...Discuss·104 likes·357 readsWeb Development
Junior GarciaforJunior Garcíajrgarciadev.hashnode.net·Dec 23, 2020FeaturedBuilding highly reusable React.js components using compound patternToday I bring you a way to create a highly reusable React component using an advance pattern called Compound. Compound Components pattern The keyword in the pattern’s name is the word Compound, the word compound refers to something that is composed ...Discuss·102 likes·1.1K readsChristmas HackathonVery detailed. I have built RadioButtons using this pattern. Works like a charm. 4
Pratik ShivaraikarforStories of a Polyglotpratikms.hashnode.net·Jul 19, 2020Evolution of MicroservicesThe central idea behind microservices is that some types of applications become easier to build and maintain when they are broken down into smaller, composable pieces which work together. Each component is continuously developed and separately mainta...Tapas Adhikary and 1 other are discussing this2 people are discussing thisDiscuss·45 likes·924 readsMicroservices
Matthias BrunsforMatthias Brunsmatthiasbruns.hashnode.net·Apr 17, 2023Golang Design Patterns - OverviewIntroduction Software development can be a daunting task, especially when dealing with large and complex software systems. One way to make it easier is by using design patterns. Design patterns are reusable solutions to common problems that occur in ...Discuss·11 likes·184 readsGolang Patternsgolang
Pablo Curell MompoforPablo Curell Mompo'spcurell.hashnode.net·Apr 6, 2023Game Programming PatternsTL:DR If you are starting to be interested in patterns and struggling to grasp the GoF patterns or if you want to know more about patterns applied to games I can only recommend this book. About the book Game programming patterns by Robert Nystrom (AS...Discussbooks
Nguyen Van TuanforTuan Nguyen Vantuannguyenhust.hashnode.net·Apr 1, 2023[ Design Patterns ] - Factory pattern with GolangHa Noi, on Thursday 01/04/2023 At the moment, a little speech to give to the present... I miss Ha Noi's autumn. Sometimes, I hung out with her on all the streets in Ha Noi. We hugged, and she said to me: "I love you". Ha Noi is the best beauty in t...Discussfactory
Berinyuy CletusforNibblesberi28.hashnode.net·Mar 31, 202310 Days of HackeRank's challenges- Day 6Problem statement: Staircase. Staircase detail This is a staircase of size n=4: # ## ### #### Its base and height are both equal to n. It is drawn using # symbols and spaces. The last line is not preceded by any spaces. Write a program that prints a ...Discusscoding challenge
Matthias BrunsforMatthias Brunsmatthiasbruns.hashnode.net·Mar 30, 2023Golang - Visitor PatternThe Gang of Four design patterns are widely used in software development. One of the most useful ones is the Visitor Pattern. In this article, we will discuss the Visitor Pattern in the context of Golang. What is the Visitor Pattern? The Visitor Patt...Discuss·10 likes·116 readsGolang Patternsgolang
Matthias BrunsforMatthias Brunsmatthiasbruns.hashnode.net·Mar 29, 2023Golang - Template Method PatternThe Template Method Pattern is a behavioral design pattern that defines the skeleton of an algorithm in a superclass but lets subclasses override specific steps of the algorithm without changing its structure. In other words, the Template Method Patt...Discuss·79 readsGolang Patternsgolang
Matthias BrunsforMatthias Brunsmatthiasbruns.hashnode.net·Mar 27, 2023Golang — Strategy PatternThe "Gang of Four" (GoF) patterns are a set of 23 design patterns that were defined by four authors in their book "Design Patterns: Elements of Reusable Object-Oriented Software". The Strategy Pattern is one of the patterns defined in the book. In th...Discuss·114 readsGolang Patternsgolang
Matthias BrunsforMatthias Brunsmatthiasbruns.hashnode.net·Mar 26, 2023Golang - State PatternIn this article, we will be exploring how the State Pattern can be applied to a game in Golang. We will use a simple game where the player can move in different directions and perform different actions based on their current state. What is the State ...Discuss·93 readsGolang Patternsgolang
Matthias BrunsforMatthias Brunsmatthiasbruns.hashnode.net·Mar 25, 2023Golang - Observer Pattern vs ChannelsIntroduction The Observer Pattern is a popular design pattern that allows an object (known as the subject) to notify its dependent objects (known as observers) automatically when a change occurs in the subject. In Golang, there are two main ways to i...Discuss·82 readsGolang PatternsGo Language
Matthias BrunsforMatthias Brunsmatthiasbruns.hashnode.net·Mar 25, 2023Golang - Memento PatternGames often require some kind of save and load system to allow the player to resume their progress from where they left off. The "Memento Pattern" is a perfect fit for this kind of system. In this article, we will discuss how to use the "Memento Patt...Discuss·77 readsGolang Patternsgolang