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