Install SSL certificates for HTTPS using domain or subdomain with Let’s Encrypt on your own server or VPS

Install SSL certificates for HTTPS using domain or subdomain with Let’s Encrypt on your own server or VPS

Tiempo de lectura: 2 minutos Reading time: 2 minutes Many times we want to install a certificate to ensure that the connection to our website is secure. This tutorial can be used to obtain certificates for a domain and a subdomain. It can be used with Apache, Node.js, Fast-API, or Python’s Django, Spring Boot, or any other type of server … Read more

How to pass parameters between two Activitis on Android

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute In today’s article, I’m going to show you how to pass parameters between two Activities in Android using Java. We can pass all types of variables from one Activity to another, including objects. The first thing we need to do is create the intent to open a new Activity as … Read more

Load data from an ArrayList to a ListView in IntelliJ using JavaFX

Load data from an ArrayList to a ListView in IntelliJ using JavaFX

Tiempo de lectura: 2 minutos Reading time: 2 minutes First, we need to have a designed FXML FILE where we add a ListView element with its id. In this case, we call it “listaAplicaciones”. In the corresponding Java Class, we reference the created ListView and create an ArrayList with the data we want to display as follows: In order to … Read more

How to load images uploaded from internet using RecyclerView in Android

Tiempo de lectura: 2 minutos Reading time: 2 minutes Hello everyone, this time I’m going to explain how to load images from a URL into a RecyclerView in Android. If you don’t know how to create a RecyclerView, I recommend you visit the previous post on How to Create a RecyclerView in Android. Now, let’s get started. The first thing … Read more

How to Create a RecyclerView in Android

How to Create a RecyclerView in Android

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello everyone, this time I want to show you how to create a RecyclerView in Android. List created with RecyclerView A RecyclerView allows us to efficiently create a list interface in Android. This object can build a composite view of multiple elements given an input list or array. It also performs … Read more

Automatic Image Viewer with JavaScript, HTML, and CSS

Automatic Image Viewer with JavaScript, HTML, and CSS

Tiempo de lectura: < 1 minuto Reading time: < 1 minute Good morning, today I’m going to provide you with a tutorial on how to create an automatic image viewer using HTML, CSS, and JavaScript. Firstly, I will show you the project structure. I use Visual Studio Code as my development environment, and I’ll leave the link for you to download ... Read more

How to Google Effectively for Developers

How to Google Effectively for Developers

Tiempo de lectura: 2 minutos Hello everyone, today I bring you this tutorial with some tips on how to effectively search on Google. Many times, we have a problem or we’re stuck while programming and we want to quickly find the solution, but we spend hours and hours searching without success. First of all, search in English. If you need … Read more

Responsive Menu with HTML and CSS

Responsive Menu with HTML and CSS

Tiempo de lectura: 3 minutos Reading time: 2 minutes A responsive menu means that it is visible on both PCs and tablets and mobile devices. It involves defining breakpoints where you want the view to change without disrupting the content. Below is an example: <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <link rel=”stylesheet” … Read more