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.
How to implement the Levenshtein distance algorithm in Go
In this article, we will see how to implement the Levenshtein distance algorithm in 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.
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.
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.
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.