Create an App with Expo (React Native)

Create an App with Expo (React Native)

Tiempo de lectura: 2 minutos Reading time: 2 minutes Hello! In this tutorial, I will show you how to create a mobile application with Expo. Expo is a mobile app development platform that allows developers to quickly create mobile applications using React Native. Expo provides tools to simplify mobile app development, such as a set of pre-built components, an API … Read more

Adding Local Addresses in Nginx Proxy Manager Using Docker Container Domains in Docker Compose

Adding Local Addresses in Nginx Proxy Manager Using Docker Container Domains in Docker Compose

Tiempo de lectura: 2 minutos Reading time: 2 minutes When implementing Nginx Proxy Manager in Docker or Docker Compose, it is important to ensure that it accesses the implemented containers/services using a local address to avoid going through the public network if the connection is not SSL internally. This way, we prevent unencrypted traffic from going outside. The first thing … Read more

XAMPP Error when starting MySQL.

XAMPP Error when starting MySQL.

Tiempo de lectura: 2 minutos Reading time: 2 minutes Error MySQL shutdown unexpectedly. This may be due to a blocked port, missing dependencies, improper privileges, a crash, or a shutdown by another method. Press the Logs button to view error logs and check the Windows Event Viewer for more clues. If you need more help, copy and post this entire … Read more

Get data from webview using React Native

Get data from webview using React Native

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today I’m going to show you how you can communicate a web page with React Native directly using JavaScript and a webview. The first thing you need to do is install the webview dependency in React Native: npm install react-native-webview Now let’s create two components: one will be the React Native … Read more

SSL Certificates (Let’s Encrypt) in Docker using Nginx Proxy Manager

SSL Certificates (Let’s Encrypt) in Docker using Nginx Proxy Manager

Tiempo de lectura: 3 minutos Reading Time: 3 minutes Today I’m going to show you how to add SSL certificates for HTTPS with Let’s Encrypt (Dovecot) in Docker or Docker Compose using Nginx Proxy Manager. It’s a straightforward process that allows you to add the certificate in a matter of minutes. It also automatically renews without any manual intervention. The … Read more

Instalar Docker-compose en ARM64v8

Tiempo de lectura: < 1 minuto Reading Time: < 1 minute To install Docker Compose on ARM64, you need to install it using pip. sudo pip3 install docker-compose If pip is not installed, you can install it with the following command: sudo apt install python3-pip If you need to install Docker, you can follow this step: https://devcodelight.com/desplegar-servidor-web-apache-con-docker-compose/

Permission uses-permission android:name=’android.permission.SYSTEM_ALERT_WINDOW’ when uploading an app with Expo in React Native

Permission uses-permission android:name=’android.permission.SYSTEM_ALERT_WINDOW’ when uploading an app with Expo in React Native

Tiempo de lectura: 2 minutos Reading time: < 1 minutes When uploading an app that uses Expo, you need to be cautious with this permission: <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> Expo automatically adds this permission to enable the development version. If you are uploading the app to Google Play and you don’t use this permission, it’s better to remove it. This permission allows … Read more

Internationalization of Flutter Application Using .json Files

Internationalization of Flutter Application Using .json Files

Tiempo de lectura: 3 minutos Reading time: 3 minutes Internationalizing a flutter application is easy by following the following steps as I show below: First, we need to add the necessary dependencies in the pubspec.yaml file: flutter_localizations: sdk: flutter flutter_cupertino_localizations: ^1.0.1 Next, we create the directory structure with the .json files From the root of our project, we create a … Read more