Node.js Node.js: how to generate a CSR and a private key April 29, 2023 In Node.js, you can generate a CSR (Certificate Signing Request) and RSA private key using the built-in crypto module. Read more
Python Python: how to evaluate password entropy April 27, 2023 Python is a popular programming language that can be used to evaluate password entropy. First, we need to define a function that calculates entropy. Read more
Node.js Node.js: parsing an XML file April 27, 2023 Parsing an XML file with Node.js can be done in a number of ways, but one of the most common is through the use of the xml2js npm module. Read more
Node.js Node.js: parsing a YAML file April 27, 2023 Parsing a YAML file with Node.js can be a very useful operation when working with structured data in YAML format. Read more
Python Python: how to create a random token for a password recovery URL April 18, 2023 In this article, we'll see how to create a random token to use in a Python app URL to reset a user's password. Read more
Python Python: create a CSR with a private key April 15, 2023 In this article we're going to see how to create a CSR (Certificate Signing Request) and an RSA private key with Python. Read more
Python How to reinstall a Node.js application with Python April 9, 2023 In this article we'll see how to perform a clean reinstallation of a Node.js application using Python. Read more
Node.js Node.js: how to send requests to a SOAP web service April 8, 2023 To send a request to a web service in SOAP with Node.js, we need to follow some basic steps. Read more
Python Python: how to use web services with SOAP April 8, 2023 In this article we will look at how to send a request to a web service in SOAP with Python. Read more
React: using the Fetch API March 29, 2023 In this article, we will see how to use the Fetch API in React to get and manage data. Read more