Add Github Project to a Jenkins Pipeline

Add Github Project to a Jenkins Pipeline

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello and welcome, today we are going to learn how we can add a Github project in Jenkins. The first thing we’re going to do is go to our Job created in Jenkins. Now we go to Configure and then Pipeline. We choose Pipeline script from SCM. Now we choose SCM … Read more

Create Webhook for Jenkins using Github

Create Webhook for Jenkins using Github

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello, today we are going to learn how to create a Webhook to automatically deploy with Jenkins using Github. First, let’s go to our Jenkins and settings. We need to install the Generic Webhook Trigger plugin, which is compatible with Github. Once installed, go to your Jenkins Job > Configuration and … Read more

Create RSA Key for Github Authentication

Create RSA Key for Github Authentication

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today, I’m going to show you how to create an RSA key for use in your Github projects (https://github.com/) The first thing we need to do is generate an RSA key in Ubuntu or WSL: ssh-keygen -t rsa -b 4096 -C “email@example.com” Replace “email@example.com” with the email associated with your Gitlab … Read more

Importing a Gitlab Project into Github

Importing a Gitlab Project into Github

Tiempo de lectura: 3 minutos Reading Time: 2 minutes Today we are going to learn how we can import a Gitlab project into Github. The first thing we are going to do is go to our Github and click on + (import repository). Now we are going to select the requested options: First, we add the URL of our Gitlab … Read more

Creating an Immersive Virtual Reality Experience at Home

Creating an Immersive Virtual Reality Experience at Home

Tiempo de lectura: 2 minutos Reading time: 4 minutes Virtual reality (VR) has revolutionized the way we interact with technology and opened up a world of possibilities for creating immersive experiences. In this tutorial, I’ll show you how to create an incredible virtual reality experience from the comfort of your home. From setting up your equipment to selecting immersive content, … Read more

Web Loader Tutorial using CSS and JavaScript

Web Loader Tutorial using CSS and JavaScript

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Web loaders, also known as spinners, are visual elements used to indicate that a web page is loading content or processing an action. In this tutorial, we will learn how to create a custom web loader using CSS and JavaScript. The result will be an animated and visually appealing loader that … Read more

Tutorial on Creating a Web Loader using CSS and JavaScript

Tutorial on Creating a Web Loader using CSS and JavaScript

Tiempo de lectura: 2 minutos Reading time: 2 minutes Web loaders, also known as spinners, are visual elements used to indicate that a web page is loading content or processing an action. In this tutorial, we will learn how to create a custom web loader using CSS and JavaScript. The result will be an animated and visually appealing loader that … Read more

The Future of Artificial Intelligence: Exploring the Limits of Technology

The Future of Artificial Intelligence: Exploring the Limits of Technology

Tiempo de lectura: 4 minutos Reading Time: 4 minutes Artificial Intelligence (AI), a term that was once considered science fiction, has become an exciting and revolutionary reality. As AI continues to evolve, we find ourselves at a crucial moment in our history, where possibilities seem endless and the future promises radical changes in all aspects of our lives. AI has … Read more

The Basic Principles of Object-Oriented Programming

The Basic Principles of Object-Oriented Programming

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Object-oriented programming (OOP) is a widely-used programming paradigm that is based on the idea of organizing code into interconnected objects. By understanding the basic principles of OOP, you can develop more structured, flexible, and maintainable applications. Abstraction: Abstraction is the process of identifying the essential characteristics of an object and eliminating … Read more

Search Bar and Filter in Flutter Dart

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute To create a search bar and filter a list, follow these simple steps: The list of elements we will display and filter is as follows: List<dynamic> tutorsData = [ { “name”: “Maria”, “email”: “example1_devcodelight@email.com”, “phone”: “1234567890” }, { “name”: “Laura”, “email”: “example2_devcodelight@email.com”, “phone”: “1234567890” }, { “name”: “Isma”, “email”: “example3_devcodelight@email.com”, … Read more