Install Docker and Docker Compose on Raspberry Pi

Install Docker and Docker Compose on Raspberry Pi

Tiempo de lectura: < 1 minuto Reading time: 2 minutes Hello, today we are going to see how we can install Docker and Docker Compose on a Raspberry Pi. The first thing we need to do is run this command to update the OS resources: sudo apt update sudo apt upgrade First, we install these dependencies necessary to install the Docker … Read more

Test in React Native using Jest

Test in React Native using Jest

Tiempo de lectura: 2 minutos Reading time: 2 minutes Hello, today we are going to learn how to perform testing using Jest in React Native and Expo. Let’s assume you have a login component called LoginScreen that contains user input fields for username and password, as well as a login button. First, make sure you have Jest configured in your … Read more

Unit testing with React Native and Mocha

Unit testing with React Native and Mocha

Tiempo de lectura: 2 minutos Reading time: 2 minutes Hello, today we are going to see how we can perform Unit Tests using Mocha in React Native. The first thing we need to do is install the dependencies for testing: npm install –save-dev mocha chai sinon nyc istanbul-lib-coverage istanbul-reports npm install –save-dev mocha-junit-reporter npm install –save-dev @babel/core @babel/register @babel/preset-env Create … Read more

Install Photoprism to Store Photos like Google Photos on a Raspberry Pi with Docker Compose

Install Photoprism to Store Photos like Google Photos on a Raspberry Pi with Docker Compose

Tiempo de lectura: 2 minutos Reading time: 2 minutes Hello, today we are going to deploy a Photoprism Docker container to store images like Google Photos on a Raspberry Pi. The first thing we are going to do is create this docker-compose.yml file: version: ‘3.5’ services: photoprism: image: photoprism/photoprism:latest restart: unless-stopped security_opt: – seccomp:unconfined – apparmor:unconfined ports: – 8098:2342 environment: … Read more

Benotes: Container to Store Website Links or Bookmarks and Add Notes with Docker

Benotes: Container to Store Website Links or Bookmarks and Add Notes with Docker

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today we’re going to see how we can deploy a container to store notes or links to our interesting websites or projects. Based on benotes (https://github.com/fr0tt/benotes_docker-compose) The first thing we need to do is create this Docker Compose: version: “3.6” services: benotes_app: container_name: benotes_app image: fr0tt/benotes:2.7.0-beta restart: unless-stopped environment: DB_CONNECTION: ${DB_CONNECTION} … Read more

Install Home Assistant on Raspberry Pi with Docker Compose

Install Home Assistant on Raspberry Pi with Docker Compose

Tiempo de lectura: 2 minutos Reading time: 2 minutes Today we are going to see how we can install Home Assistant on a Raspberry Pi using Docker. The first thing we need to have ready is the installation of Docker on our Raspberry Pi: https://devcodelight.com/desplegar-servidor-web-apache-con-docker-compose/ We are going to use this structure: Once installed, we will need to create this … Read more

Fix HTTP Issue in WordPress When Migrating to HTTPS. CSS or JS Resources Not Loading.

Fix HTTP Issue in WordPress When Migrating to HTTPS. CSS or JS Resources Not Loading.

Tiempo de lectura: < 1 minuto Reading time: < 1 minute Today, I’m going to show you how to fix the WordPress issue when migrating a site with SSL HTTPS and encountering the message “Mixed content blocked: WordPress”. This issue typically affects JSON and CSS files. This problem prevents the CSS or JS resources from loading on our WordPress website. To … Read more

Enable Developer Mode on iPhone or iPad

Enable Developer Mode on iPhone or iPad

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Today, we are going to see how we can enable Developer Mode on iPhone or iPad. In order to install development apps, we need to enable Developer Mode. The first thing we need to do is open Xcode on a Mac: Next, we locate the device in the top bar and … Read more