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/ DevCodeLightdevcodelight.com

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

Install Eas-update (Expo updates) in React Native using Expo

Install Eas-update (Expo updates) in React Native using Expo

Tiempo de lectura: < 1 minuto Reading time: < 1 minute Today, I’m going to show you how to install EAS Updates, which will allow you to update apps remotely (even those published on the Store). Remember to release updates only for small bug fixes and not major changes or new features in your apps, as you risk violating app publishing … Read more

HTML Tables + JavaScript

HTML Tables + JavaScript

Tiempo de lectura: 2 minutos Reading time: 2 minutes To create a simple table from an array of objects, follow the steps below: First, create a file with the .html extension, where you’ll create a div with an associated ID to display the table with the data of the elements. The ID for the table within the HTML will be … Read more

LISTAS HTML + JavaScript

LISTAS HTML + JavaScript

Tiempo de lectura: 5 minutos Reading time: 2 minutes To create a simple list from an array of objects, you need to follow the steps below: First, create a file with the .html extension, where we’ll create a div with an associated ID that will display the list of elements. The ID for the list, in this case, will be … Read more

Fix error ‘Error: Cookie not in this host’s domain. Cookie: developer-mdn.apple.com Request: developer.apple.com’ in Expo React Native

Fix error ‘Error: Cookie not in this host’s domain. Cookie: developer-mdn.apple.com Request: developer.apple.com’ in Expo React Native

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes Today I’m going to show you how to fix the error “Error: Cookie not in this host’s domain. Cookie: developer-mdn.apple.com Request: developer.apple.com” when generating a build with React Native. To fix it, you’ll need to update eas-cli: sudo npm install -g eas-cli (do not include the Reading time). Return it ... Read more