Creating a Custom Label for a GitLab Project Board

Creating a Custom Label for a GitLab Project Board

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Within the project where we want to create a label for a board, we will see the following options in the right menu. We need to click on Project Information and then Labels. Once clicked, we will see the created or default labels. In order to create a new label and … Read more

Importing Projects in Eclipse with Different Versions

Importing Projects in Eclipse with Different Versions

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute Importing Projects in Eclipse with Different Versions Photo by luis gomes on Pexels When we want to import projects with packages, classes, etc. from one computer to another with different versions of Eclipse, it can give us an error due to missing libraries or incompatibility with the version. In that ... Read more

Fix import error in all classes in Android Studio

Fix import error in all classes in Android Studio

Tiempo de lectura: < 1 minuto Fix import error in all classes in Android Studio Photo by Eduardo Rosas on Pexels Sometimes when importing an Android project, you may encounter the surprise that all the classes you open have pre-compilation problems. It’s not that your code is broken. The issue is because the cache retains corrupted data that, when imported into … Read more

Flutter in Docker Compose Container to run in web browser

Flutter in Docker Compose Container to run in web browser

Tiempo de lectura: < 1 minuto Hello, today we’re going to see how we can use a Docker Compose to run Flutter in the web browser of the host machine where Docker is running. The first thing we’re going to do is create the docker-compose.yml file and add this content: version: “3.1” services: flutter: build: context: ./Dockerfile dockerfile: flutter_arm restart: unless-stopped … Read more

Web Loader Tutorial using CSS and JavaScript

Web Loader Tutorial using CSS and JavaScript

Tiempo de lectura: 2 minutos 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 you can incorporate into … Read more

Connect a WordPress website with AdSense to display automatic ads.

Connect a WordPress website with AdSense to display automatic ads.

Tiempo de lectura: 3 minutos Good afternoon, in this post, I am going to explain how to connect AdSense to our WordPress website with automatic ads to monetize it. Below are the steps you must follow: Add the URL of our website and click on Save and continue. Once connected, the following screen will appear, where we will click on … Read more

How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services

How to Install and Use GitBash (Windows) for GITLAB and Other GIT Services

Tiempo de lectura: 2 minutos What is Git Bash? It is an application for Microsoft Windows environments that offers an emulation layer for a Git command-line experience. Also valid on Linux and MacOS. You can install it on GITBASH. A Git repository is a virtual storage of your project. It allows you to save versions of your code that you … Read more