Node.js

How to get file information in Node.js

Node.js offers several built-in methods and libraries to retrieve detailed information about files, such as size, type, modification date, and much more. In this article, we’ll see how to use these tools to easily obtain file information.

November 10, 2024
Python

How to get file information in Python

Obtaining information about a file in Python is an essential operation when working with the file system, as it allows you to retrieve details such as size, type, permissions, and modification timestamps.

November 10, 2024
Python

How to convert HTML to PDF with Pyppeteer in Python

In this article, we will explore a simple Python script to generate PDF files from HTML files using the Pyppeteer library, a Python implementation of Puppeteer.

November 3, 2024
Node.js

phpMyAdmin in Node.js: how to build a base REST API

Based on this example, in this article, we will develop APIs with Node.js that will allow us to perform essential operations on a MySQL instance.

November 2, 2024
Bash

How to calculate the MD5 checksum of a file with Bash

In this article, we will see how to calculate the MD5 checksum of a file using the md5sum command in Bash and how to use it to verify the integrity of files.

November 1, 2024
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