4 followers
π Loves tackling challenging problems and constantly striving to become an even better hacker πͺ
The Go net/http package provides a robust set of functionality to allow us to deal with HTTP requests and responses. However, reading the response...
In Go, variables are passed by value, which means that when we pass variables as arguments to functions, Go makes a copy of those values for the...
As someone who's been using ChatGPT for a while now, I've been exploring how to maximise its benefits and integrate it into my daily life. I've been...
Today we are going to write our own custom json.Unmarshal() method. I find it very useful and can make our code more maintainable and readable if we...
Have you ever tried to maintain services between environments and got lost in all the variables? Or even broken things by accident? Today I'm going to...
Today's challenge is about working with concurrency in Go - Goroutines, Channels, and Pipelines. The following exercise is from the book, βMastering...