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
Python

How to calculate the MD5 checksum of a file with Python

Python provides simple and effective tools to calculate the MD5 checksum of a file through the hashlib module. Below, we will explore how to use this module to calculate the MD5 checksum of a file in a few steps.

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
Node.js

How to log views with Node.js

In this article, we will see how to create a simple logging system for views using Node.js.

October 26, 2024
Bash

How to transfer a directory via FTP with Bash

In this article, we will see how to transfer a complete directory from a local system to a remote server using FTP in a Bash script.

October 19, 2024
Bash

How to create an interactive Bash script to generate self-signed SSL certificates

In this article, we will create an interactive Bash script to generate self-signed SSL certificates using OpenSSL, a widely used tool for encryption and certificate management.

October 12, 2024