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

Rb Library Error in CodeIgniter 3

Rb Library Error in CodeIgniter 3

Tiempo de lectura: 2 minutos Reading time: 2 minutes Red Bean is a PHP library that facilitates the development of a CRUD (for example) in CodeIgniter 3. As you start using it, I will show you how it works and what it allows us to do. Once you have configured the project as explained in Systematic Installation and Web Development … Read more

Running CodeIgniter Web Application in External Web Browser (Outside Eclipse)

Running CodeIgniter Web Application in External Web Browser (Outside Eclipse)

Tiempo de lectura: 2 minutos Reading time: 2 minutes Good morning everyone, Continuing from the previous post, How to create a symbolic link under htdocs to run our applications from any development environment we want in Windows, I’m going to explain how to run the applications in an external web browser, as by default, it runs internally in Eclipse’s browser. … Read more

Create an Object in Android with Included View to Add to Any Activity

Create an Object in Android with Included View to Add to Any Activity

Tiempo de lectura: 3 minutos Reading time: 3 minutes Many times we want to create an object that has an included view (referring to a layout). For example, a bottom menu that we want to display in all activities or a layer. In this tutorial, I’m going to show you how to create a reusable object for any project and … Read more

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

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 Reading time: 3 minutes Good afternoon, in this post, I’m going to explain how to connect AdSense to our WordPress website with automatic ads to monetize it. Below, I’ll detail the steps you need to follow: In the WordPress Control menu, go to the Plugins option and click on “add new”. Search for “Site Kit … 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