21 Jan 2023Golang ProgrammingThe Golang programming language (or commonly known as Go) is currently in great demand by programmers, … 2 mntRead
Go 08 Jan 2023Usage Channel Select Range TimeoutThe existence of channels really helps us to manage the goroutines that are running in our program. There are … 8 mntRead
Go 08 Jan 2023Channel Introduction to GolangA channel is a link from one goroutine to another and this channel is synchronous because of blocking data … 7 mntRead
Go 30 Dec 2022Introduction of Go Routine on GolangUse go-routine when the process to be executed as a goroutine must be wrapped in a function. When calling the … 3 mntRead
Go 22 Dec 2022How to Overcome Handling Errors in GolangCurrently, Santekno will discuss error handling in the Golang language. We will learn from easy handling to … 6 mntRead
Go 29 Nov 2022Techniques for Creating Mocking Unit Tests in GolangWhen we create a function or code, sometimes we have difficulty carrying out unit tests at several points that … 14 mntRead
Go 29 Nov 2022How to Create Integration Tests in GolangCarrying out integration tests for APIs means that we must at least be able to run the application first so … 7 mntRead
Go 30 Oct 2022How to Create Unit Tests Using the moq Library in GolangCarrying out unit tests using this mocking method is usually used if several functions have been carried out … 3 mntRead
Go 30 Oct 2022How to Create Benchmark Units in GolangThe testing package in Golang Programming, apart from containing tools for testing, also contains tools for … 2 mntRead
Go 30 Oct 2022How to Create Unit Tests in GolangUnit Testing Using the Go Libraryprogramming is not easy, even the best programmers cannot write programs that … 7 mntRead
Go 24 Oct 2022Getting to Know Hashes Cryptography in GolangHashes & CryptographyThe hash function takes a set of data and reduces it to a smaller fixed size. Hash is … 2 mntRead
Go 24 Oct 2022Get to know Container List and Sort in GolangIn addition to arrays and maps, Go has several more collections available under the container package. … 3 mntRead