Private: CRUD in CodeIgniter 3 with RedBeans using MySQL DB

Private: CRUD in CodeIgniter 3 with RedBeans using MySQL DB

Tiempo de lectura: < 1 minuto Reading time: < 1 minute CRUD in CodeIgniter 3 with RedBeans using MySQL DB Photo by Pixabay on Pexels Good afternoon, continuing from the previous post Installation and Systematic Web Development with RedBean + CodeIgniter 3 and Bootstrap, we are now going to start by creating a fairly simple CRUD. CRUD is an acronym that ... Read more

Fixing Refresh Issue in RecyclerViews

Fixing Refresh Issue in RecyclerViews

Tiempo de lectura: 2 minutos Reading time: 3 minutes Sometimes when using a RecyclerView in Android, we may encounter the problem of it not “clearing the buffer” of content from the corresponding Row for an item in a list. In other words, an item in the list retains the same properties as the item below or the previous item. To … Read more

How to Create a Kanban Board and Custom Labels in GitLab

How to Create a Kanban Board and Custom Labels in GitLab

Tiempo de lectura: 2 minutos Reading Time: 2 minutes How to Create a Kanban Board and Custom Labels in GitLab Photo by Linda Eller-Shein on Pexels To create a work board, we need to access our GitLab profile, select the project where we want to create the board, and then follow a few simple steps that we will see below. … Read more

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