How to Create a User with Password and Base Directory in Linux (Ubuntu) Using Terminal Commands

How to Create a User with Password and Base Directory in Linux (Ubuntu) Using Terminal Commands

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Pixabay photo at Pexel It’s very simple by following the commands as indicated below: Once the terminal is open, we will write the command shown below. In it, we can see that the user will be named DevCodeLight and their base directory will be usuarioDevCodeLight. The directory will be located within … Read more

Linux Space Issue (Inodes)

Linux Space Issue (Inodes)

Tiempo de lectura: < 1 minuto Reading time: < 1 minute If we have enough disk space and still encounter errors like No space left on device or Write failed. The first thing we need to do is check if there is space on the machine using the command: df -a As we can see, there is 30% available space and ... Read more

Make a GET Request from React Native

Make a GET Request from React Native

Tiempo de lectura: < 1 minuto Reading time: < 1 minute If we want to retrieve data from a remote server, we can use the following code: var myHeaders = new Headers(); myHeaders.append(“Content-Type”, “application/x-www-form-urlencoded”); var requestOptions = { method: ‘GET’, headers: myHeaders }; fetch(“https://www.miweb.com/getPerson”, requestOptions) .then(response => response.json()) .then((responseJson) => { alert(responseJson); }) .catch(error => console.log(error)); First, we create the headers … Read more

Send a POST of type FORM in React Native

Send a POST of type FORM in React Native

Tiempo de lectura: 2 minutos Reading time: 2 minutes In order to communicate with our remote server (backend) using React Native, we need to make an asynchronous call. //Headers, if we want to add a token, we have to include it in these headers. var myHeaders = new Headers(); myHeaders.append(“Content-Type”, “application/x-www-form-urlencoded”); javascript Copy code //Parameters to send var urlencoded = … Read more

Fix error “Cannot load file C:\Users\user\AppData\Roaming\npm\expo.ps1 because scripting is disabled on this system.”

Fix error “Cannot load file C:\Users\user\AppData\Roaming\npm\expo.ps1 because scripting is disabled on this system.”

Tiempo de lectura: < 1 minuto Reading time: < 1 minute To solve the error “Cannot load file C:\Users\user\AppData\Roaming\npm\expo.ps1 because running scripts is disabled on this system.” First, run PowerShell as administrator (right-click, run as administrator): Once it’s open, type: Set-ExecutionPolicy Unrestricted Now, accept: And it will allow us to execute: DevCodeLightdevcodelight.com

Delete tables starting with the same name in MySQL

Delete tables starting with the same name in MySQL

Tiempo de lectura: < 1 minuto Reading time: < 1 minute If we want to delete different tables that start with the same name or name index, for example: videos_1 videos_2 videos_3 We can use this script: SELECT CONCAT(‘DROP TABLE ‘, table_name, ‘;’) statement FROM information_schema.tables WHERE table_name LIKE ‘videos_%’; This script will return the code that we need to execute: … Read more

Run Unity Project Directly on Your Android Mobile

Run Unity Project Directly on Your Android Mobile

Tiempo de lectura: 3 minutos Reading Time: 2 minutes Yes, we want to run our Unity project directly on our mobile device or tablet. First, we need to enable developer options and USB debugging on our Android device. Connect the device to the computer using a USB cable. Enable USB Debugging (Developer Options) on your Android device. Once configured, we … Read more

Adding 2D Lighting for Unity 2021.3

Adding 2D Lighting for Unity 2021.3

Tiempo de lectura: 3 minutos Reading Time: 4 minutes In today’s tutorial, I’m going to show you how to add lighting in Unity version 2021 and above. The process has changed with this version. Building on previous tutorials, such as “Adding 2D Surface or Ground Limits in Unity,” First, we need to install the Universal Render Pipeline plugin, which handles … Read more