Ray Yang
Ray

Ray

Follow
Follow
homenewsletter
Tag

Go Language

#go

More content

Read more stories on Hashnode


Articles with this tag

Go Slice Copying: What Really Happens Under the Hood?

Sep 6, 20234 min read

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...

Go Slice Copying: What Really Happens Under the Hood?

AI Technology Meets Social Media: The Discord Bot Project

May 18, 20234 min read

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...

AI Technology Meets Social Media: The Discord Bot Project

One Thing You Might Overlook When Reading Response Body in Golang

Apr 10, 20236 min read

The Golang net/http package provides a robust set of functionality to allow us to deal with HTTP requests and responses. However, reading the response...

One Thing You Might Overlook When Reading Response Body in Golang

Unleashing the power of Go: How to Unmarshal Dynamic JSON

Mar 5, 20235 min read

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...

Unleashing the power of Go: How to Unmarshal Dynamic JSON

Things You Need to Know Before Working With Go Pipelines

Sep 4, 20226 min read

Today's challenge is about working with concurrency in Go - Goroutines, Channels, and Pipelines. The following exercise is from the book, “Mastering...

Things You Need to Know Before Working With Go Pipelines