First, install the required dependencies:
sudo pacman -S base-devel git cmake libusb glib2-dev
This Python script identifies and removes duplicate files in a specified directory based on the Levenshtein distance between their names. Only the first file in each group of similar files is kept, and the rest are deleted. The script excludes directories and only processes files.
colorama
library for colored console outputDescargar Proxmox: Ve a la p谩gina oficial de Proxmox y descarga la 煤ltima ISO de Proxmox VE.
Crear un medio de instalaci贸n: Usa un programa como Rufus para quemar la ISO en un USB.
Instalaci贸n: Arranca tu servidor desde el USB y sigue las instrucciones en pantalla para instalar Proxmox.
Este resumen proporciona una gu铆a sobre c贸mo configurar correctamente JWT en NestJS, especialmente para el uso de algoritmos RSA como RS256.
El problema suele estar en la configuraci贸n incorrecta del JwtModule
y la instancia de JwtStrategy
. Es crucial especificar los algoritmos utilizados para firmar y verificar los tokens, junto con las claves correspondientes.
This guide provides a method to persistently disable TCP/UDP checksum offloading on eth0
in a virtual machine, ensuring the changes remain effective even after a reboot. (Usually to fix issues for Minecraft Bedrock Server)
First, ensure that ethtool
is installed. If it's not installed, you can install it using the following command:
This guide provides instructions on how to install ZSH and Oh-my-zsh with a Powerline-like theme in Ubuntu
// Import required modules | |
const http = require("http"); | |
const httpProxy = require("http-proxy"); | |
// API target and proxy port configuration | |
const API_TARGET = 'https://pokeapi.co/api/v2/'; | |
const PROXY_PORT = 8080; | |
// Create a proxy server | |
const proxy = httpProxy.createProxyServer({}); |
#!/bin/bash | |
# Check if running in WSL | |
if grep -qEi "(Microsoft|WSL)" /proc/version &> /dev/null ; then | |
echo "WSL detected, proceeding with Docker installation..." | |
else | |
echo "This script is intended to be run in WSL. Exiting." | |
exit 1 | |
fi |