Go

How to calculate the MD5 checksum of a file with Go

In Go, calculating the MD5 checksum of a file is quite simple thanks to the standard library packages. In this article we will see how to read a file and calculate its MD5 hash.

November 1, 2024
Go

How to implement the Levenshtein distance algorithm in Go

In this article, we will see how to implement the Levenshtein distance algorithm in Go.

October 26, 2024
Go

How to Convert Arabic Numerals to Roman Numerals with Go

This article will explain how to implement an Arabic to Roman numeral converter using the Go programming language.

October 6, 2024
Go

How to extract text from a PDF document with Go

To accomplish this task, we will use an open-source Go library called pdfcpu, which allows you to handle PDF files, including text extraction.

September 28, 2024
Go

Calculate the distance in kilometers between two coordinates with Go

The Go language (Golang) offers a perfect environment to implement this type of operation efficiently. In this article, I will walk you through the steps to calculate the distance in kilometers between two coordinates using the Haversine formula.

September 21, 2024
Go

How to generate a version 4 UUID with Go

There are several versions of UUIDs, and in this article we will focus on generating a version 4 UUID using the Go programming language.

August 24, 2024