Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

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

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

How to create a POST using RESTful API on PHP

Tiempo de lectura: < 1 minuto Reading 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

How to Create a GET Request Using RESTful API in PHP

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes Many times, we need to fetch data from a remote server for our applications, and we have to consider creating a small backend to request that data. If you want to send data, I have provided a post where I explain how to generate a POST request with PHP: How … Read more

How to View Virtual Machine Screen in Full Resolution (Full Screen)

How to View Virtual Machine Screen in Full Resolution (Full Screen)

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes How to View Virtual Machine Screen in Full Resolution (Full Screen) Photo by Mikhail Nilov on Pexels To view the virtual machines we import into VirtualBox in full screen, it is very simple, you just need to follow these steps: 1. Start or boot up the virtual machine 2. In … 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

Use your own Android device to run apps in development with Android Studio.

Tiempo de lectura: < 1 minuto Use your own Android device to run apps in development with Android Studio. Photo by Noah Erickson on Pexels Did you know that you can use your own mobile device to debug and run apps developed in Android directly with Android Studio? This is very useful if you want to test the app before publishing … Read more

Enable USB Debugging (Developer Options) on your Android device.

Tiempo de lectura: < 1 minuto   Enable USB Debugging (Developer Options) on your Android device. Photo by Lisa Fotios on Pexels USB debugging allows us to test and use our device in development mode. It can be enabled on a mobile phone, tablet, Android TV, Android Car, Smartwatch, and more. In order to activate it on your device (with Android … 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