GO
How to do repetitive tasks at intervals GO? [SOLVED]
In today's post, I will introduce to you some ways to do some repetitive tasks at intervals in Golang. We can use the time.Ticker() function or use a channel
How to trim leading and trailing spaces GO? [SOLVED]
In this tutorial, we are going to examine some examples of trim leading and trailing white spaces of a string in Golang. Golang provides the built-in package
Import local packages without GOPATH [SOLVED]
In today's post, we are going to answer the question "Can we import the local packages without the GOPATH". We already have an article about how to organize
GO nil detection [interface, slice, pointer, struct, map]
How to detect nil in golang pointers, structs, interface, map, slice with examples
Can functions be passed as parameters GO? [SOLVED]
In this tutorial, we will learn how to pass functions as a parameter to another function in Golang. Since Golang functions are first-order variables so it has
