Update NodeJS on macOS

To update NodeJS on macOS, you can use a tool called “n” which is installed using Node Package Manager. How is it in detail? Let’s find out together in this tutorial! First, please check the current version of NodeJS on your machine using the command:… Read More

Get a list of files and folders in a directory with Java

Before Java 8, you can use the listFiles() method of the File class with the parameter of the directory that we want to get the list of files and directories to do this. Eg:

The return result will be a list of File objects… Read More

Introduction to Helm chart (part 1)

Helm is a tool that helps us manage applications deployed using Kubernetes. You can imagine that to deploy an application using Kubernetes we will need many different configuration files such as Deployment, Service, Ingress, … Each time we deploy, the information of these configuration files… Read More