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

How to Store Encrypted Passwords in MySQL Database for Users on Your Website using PHP

Tiempo de lectura: 2 minutos If you have a website, you need to securely store user passwords. Storing passwords in plain text compromises user privacy and leaves an open door for hackers to access them if they enter the system. One simple way to store these passwords is by applying a Hash function. A Hash function is a one-way mathematical … Read more