BLOG

Latest Articles

How to PROPERLY stop goroutine? [SOLVED]

In today's article, I will guide you on how to stop a goroutine in Golang. A goroutine is a very lightweight thread that is managed by the Go runtime. Every

By tuannguyen · 4 min read · GO

How to change int to int64 in Golang? [SOLVED]

In Golang, it is very simple to convert an int to int64. In today's post, we will show you some simple examples of converting an int to int64. Depending on

By tuannguyen · 3 min read · GO

Golang iterate over slice in reverse? [SOLVED]

In Golang, iterating over a slice is surprisingly straightforward; In this article, we will learn how to iterate over a slice in reverse in Go.

By tuannguyen · 3 min read · GO

Golang search for an element in slice [SOLVED]

In this tutorial, we will try to implement some algorithms to search for an element in a slice. Go before version 1.18 does not provide any built-in methods

By tuannguyen · 6 min read · GO

How to compare strings in JavaScript? [5 Methods]

Comparing strings in JavaScript is a common task that is frequently performed in web development. There are a few different ways to compare strings in

By olorunfemiakinlua · 6 min read · JavaScript