Add Dark Mode with CSS in WordPress for Free

Add Dark Mode with CSS in WordPress for Free

Tiempo de lectura: 4 minutos Reading time: 2 minutes Hello, today we are going to learn how to add dark mode to our WordPress using only custom CSS from our theme. There are various plugins available that can generate a dark mode, but most of them are paid or have limitations. With this method, we will learn how to add … Read more

Adding Context in React Native to Reuse Components Across Multiple Screens, for Example a Loader

Adding Context in React Native to Reuse Components Across Multiple Screens, for Example a Loader

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Hello, today we are going to learn how to add a context in React Native to reuse components across multiple screens without repeating the component. The first thing we need to do is create our component, in this case, it’s a loader: Folder: components/loader.js import React from “react”; import { View, … Read more

Install Docker and Docker Compose on Oracle Linux

Install Docker and Docker Compose on Oracle Linux

Tiempo de lectura: < 1 minuto Reading time: < 1 minutes Today we’re going to see how to install Docker and Docker Compose on Oracle Linux. The first thing we’re going to do is update the system: sudo yum check-update Then we add the Docker repository: dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo Now we install Docker: dnf install docker-ce -y And it will start ... Read more

Error launching your React Native application locally

Error launching your React Native application locally

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Good morning, in today’s tutorial, I’m going to show you how I solved an error that occurred to me a couple of times and I couldn’t figure out how to fix. When running the application on my mobile device locally or on any mobile device, it is done with the following … Read more

Implementing DMARC to enhance the security of our SMTP server and emails

Implementing DMARC to enhance the security of our SMTP server and emails

Tiempo de lectura: 2 minutos Reading time: 3 minutes DMARC (Domain-based Message Authentication, Reporting, and Conformance) is an email authentication protocol designed to enhance security and combat phishing and identity spoofing in email messages. DMARC combines two previous authentication technologies, SPF (Sender Policy Framework) and DKIM (DomainKeys Identified Mail), to provide an additional layer of verification and protection in email … Read more

Adding SPF Record in DNS to Protect Our Email Accounts from Email Spoofing

Adding SPF Record in DNS to Protect Our Email Accounts from Email Spoofing

Tiempo de lectura: 2 minutos Reading Time: 3 minutes SPF (Sender Policy Framework) is an email authentication mechanism that helps prevent identity spoofing and unwanted emails. It allows email servers to verify if an email message sent from a specific domain has been sent from an authorized source. Here’s how SPF is used: Configure SPF records: To use SPF, you … Read more

Portainer to manage your Docker containers

Portainer to manage your Docker containers

Tiempo de lectura: 2 minutos Reading Time: 2 minutes Hello, today we are going to see how we can install Portainer for our Docker projects. Portainer is a container management platform that provides a graphical user interface (GUI) for managing and monitoring container environments. It allows users to easily manage container clusters, create, start and stop containers, manage container images, … Read more

Watchtower to Automatically Update Your Docker Containers Using Docker Compose

Watchtower to Automatically Update Your Docker Containers Using Docker Compose

Tiempo de lectura: 3 minutos Reading time: 3 minutes Hello, today we are going to see how we can automatically update our Docker containers using Watchtower. Step 1: Installation of Docker and Docker Compose Before we begin, make sure you have Docker and Docker Compose installed on your system. You can follow the official Docker instructions to install these tools … Read more