Go 01 Aug 2022Get to know variables and constants in GolangVariablesThe following is an example of the basic implementation of using variables in the program below go … 5 mntRead
Go 11 May 2021How to Implement Golang's Singleton Design PatternBasic Definition Danger Singleton is a software design standard. This standard guarantees the existence of … 8 mntRead
Go 23 Apr 2021Creating a Simple Distibuted Search Engine Using Worker Pool on GolangIntroductionYou know Google is a place where we search for several keywords that can produce various millions … 5 mntRead
Go 23 Apr 2021Concurrency Worker Pool Implementation on GolangBasic DefinitionA Worker pool is a goroutine management technique in concurrent programming in Go-Lang with … 3 mntRead
Go 19 Apr 2021How to Implement Concurrency Pattern Fan In and Fan Out on GolangChannels in GoCreating concurrent programs in Go has a unique approach to handle and to implementation when we … 4 mntRead
Go 19 Apr 2021How to implement Binary Search and Tree GolangBasic DefinitionData structure Binary Search and Tree is a pattern used for tree -based search. Before you … 4 mntRead
Go 15 Apr 2021How to implement queue (queue) in Go LanguageBasic DefinitionQueue or often we know is a queue data structure where the data we enter will be delivered, in … 2 mntRead
Go 15 Apr 2021How to Determine Consonant Vowels in GolangIntroductionDetermining consonant vowels here will be divided into several examples. Later we will know better … 2 mntRead
Go 13 Apr 2021How to Implement Stack in GolangWhat is a stack?Stack is one that is commonly used in programming or computer storage systems. For … 3 mntRead
Go 09 Apr 2021How to implement a single double linked list in GolangBasic DefinitionIf you’ve read and read about the Linked List, you can first read Santekno’s post … 3 mntRead
Go 03 Sep 2020Getting to Know Pointers in GolangWe know that sending a variable to a function can be a parameter or a pointer. This pointer is usually a data … 2 mntRead
Go 03 Apr 2020Getting to Know Structs and Interfaces in GolangAlthough it is possible for us to write programs using only Go’s built-in data types, at some point it … 6 mntRead