How to Create a RecyclerView in Android

How to Create a RecyclerView in Android

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello everyone, this time I want to show you how to create a RecyclerView in Android. List created with RecyclerView A RecyclerView allows us to efficiently create a list interface in Android. This object can build a composite view of multiple elements given an input list or array. It also performs … Read more

Automatic Image Viewer with JavaScript, HTML, and CSS

Automatic Image Viewer with JavaScript, HTML, and CSS

Tiempo de lectura: < 1 minuto Reading time: < 1 minute Good morning, today I’m going to provide you with a tutorial on how to create an automatic image viewer using HTML, CSS, and JavaScript. Firstly, I will show you the project structure. I use Visual Studio Code as my development environment, and I’ll leave the link for you to download ... Read more

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