Create Pipeline for Jenkins

Create Pipeline for Jenkins

Tiempo de lectura: 3 minutos Reading time: 3 minutes Today I’m going to show you how to create a Pipeline for Jenkins. What is a Pipeline in Jenkins? A pipeline in Jenkins is a sequence of automated processes that are executed to build, test, and deploy a software project. A Jenkins pipeline is defined as a configuration file in the … Read more

Unit Testing in Java with JUnit 4

Unit Testing in Java with JUnit 4

Tiempo de lectura: 2 minutos Reading time: 3 minutes Today, I’m going to show you how you can implement JUnit tests in Java with a simple example. The first thing you need to do is to start a Java project and create an example class called Multiplication: Now let’s create a simple function for multiplication: public class Multiplication { } … Read more

Adding JAVA_HOME in Ubuntu or Linux

Adding JAVA_HOME in Ubuntu or Linux

Tiempo de lectura: < 1 minuto Reading time: < 1 minute Today I’m going to show you how to create the JAVA_HOME environment variable in Linux or Ubuntu: The first thing you need to do is to have JDK installed. Then, execute this command to find out where it is installed: jrunscript -e 'java.lang.System.out.println(java.lang.System.getProperty("java.home"));' Once located, add the environment variable using ... Read more

How to Create a Loader Button with HTML, CSS, and jQuery

Tiempo de lectura: 2 minutos Reading time: 2 minutes Good afternoon! Today I bring you a very cool and interesting tutorial about an element you can use on your website. Let’s get started! A loader button is a functionality that allows users to know when a background task is being processed, such as a request to a server. In this … Read more

Install Jenkins on Ubuntu or Linux

Install Jenkins on Ubuntu or Linux

Tiempo de lectura: 2 minutos Reading time: 2 minutes In this tutorial, I’m going to show you how to install Jenkins on Ubuntu or Linux: Jenkins is an open-source Continuous Integration and Delivery (CI/CD) system. It allows you to automate the build, testing, and deployment of software applications, making it easier to deliver new features and fixes faster and more … Read more

Applying responsive design to an HTML, CSS, Javascript website

Applying responsive design to an HTML, CSS, Javascript website

Tiempo de lectura: 2 minutos Reading time: 2 minutes Adapting a website to be responsive is a process that involves designing and developing a website that adjusts to different screen sizes and devices, providing an optimal user experience across all of them. In order to adapt a website to be responsive, it is necessary to consider the following steps: Identify … Read more

Monitor your website with Uptime Kuma

Monitor your website with Uptime Kuma

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today I bring you a service integrated in a Docker called Uptime Kuma. Uptime Kuma is a powerful web monitor that allows us to know the status of our website. It allows us to configure alerts for when our website goes down or even when the SSL certificate is about to … Read more

Create a Docker Compose container with Apache + PHP + MySQL (XAMPP with Docker)

Create a Docker Compose container with Apache + PHP + MySQL (XAMPP with Docker)

Tiempo de lectura: 3 minutos Reading time: 3 minutes Continuing with the series of Docker Compose tutorials, based on the previous tutorial “Associate a Docker file to have a custom image (Apache + PHP + Python) within Docker Compose”, we will now create a XAMPP or LAMPP service that includes Apache2, PHP, and MySQL. This will be achieved by leveraging … Read more

Crear un modal con Boostrap

Crear un modal con Boostrap

Tiempo de lectura: 2 minutos Reading time: 2 minutes To create a modal with Bootstrap and HTML, follow these steps: Include the Bootstrap stylesheet in your HTML file. You can do this by downloading the CSS file from the Bootstrap website or including a link to an online version in your HTML file. <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css”> Add the HTML code … Read more

How to create a symbolic link under htdocs to run our applications from the development environment we want on Windows.

How to create a symbolic link under htdocs to run our applications from the development environment we want on Windows.

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute Good morning, in this post I am going to explain how to create a symbolic link under HTDOCS and be able to run our applications from our development environment, without having to constantly access HTDOCS to run it. The first thing we need to have installed is the XAMPP server ... Read more