Go: how the defer keyword works
In this article, we will explore in detail the use of "defer" in Go and how it can simplify resource management and improve code maintainability.
Go: how to create an in-memory cache for a REST API
In this article, we will explore how to implement an in-memory cache for a REST API using the Go programming language.
Angular: an introduction
In this article, we will explore Angular, its key features, and why you should consider using it for your web projects.
Go: find the most recurring substring in a string
In this article, we will explore how to tackle this problem using the Go programming language.
Go: check if a number is palindrome
If you are a Go (or Golang) programmer, you can write a simple program to check whether a number is a palindrome. In this article, we will explore how to do it step by step.
Go: find the longest common prefix in a set of strings
In this article, we will explore how to solve this problem using the Go programming language.