Go Go: how to create an in-memory cache for a REST API October 3, 2023 In this article, we will explore how to implement an in-memory cache for a REST API using the Go programming language. Read more
Go Go: find the most recurring substring in a string September 25, 2023 In this article, we will explore how to tackle this problem using the Go programming language. Read more
Go Go: check if a number is palindrome September 25, 2023 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. Read more
Go Go: find the longest common prefix in a set of strings September 25, 2023 In this article, we will explore how to solve this problem using the Go programming language. Read more
Go Go: check if a binary tree is symmetric September 25, 2023 In this article, we will explore how to check whether a binary tree is symmetric using the Go programming language. Read more
Go Go: parsing a YAML file September 25, 2023 In this article, we will explore how to parse a YAML file using the Go programming language. Read more
Go Go: multiple downloads with goroutines and channels September 25, 2023 In this article, we will explore how to implement multiple file downloads using goroutines and channels in Go. Read more
Go Go: how to parse arbitrary JSON data September 17, 2023 How can we parse an arbitrary JSON structure? In Go you can use an alternative solution to structs. Read more
Go Go: best practices for TDD (Test-Driven Development) September 17, 2023 In this article, we will explore some of the best practices for TDD in Go. Read more
Go Go: how to list the files of a directory September 17, 2023 In this article we will see how to get the list of files in a directory with Go. Read more