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

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

Tiempo de lectura: 2 minutosReading 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 minutosReading 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 minutoReading 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 minutosReading 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 minutosReading 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 minutosReading 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 minutosIf 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

Creating a Custom Label for a GitLab Project Board

Creating a Custom Label for a GitLab Project Board

Tiempo de lectura: 2 minutosReading 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

How to create a POST using RESTful API on PHP

Tiempo de lectura: < 1 minutoReading Time: < 1 minutes Continuing from the previous post on How to create a GET using RESTful API on PHP, I’m going to show you how to create a POST and send JSON data using the body. Using RESTful API and the PHP programming language. First of all: Open your favorite code editor (Notepad++, ... Read more