Skip to content

Instantly share code, notes, and snippets.

View madkoding's full-sized avatar
馃З
Back to your reality

madKoding madkoding

馃З
Back to your reality
View GitHub Profile
@madkoding
madkoding / get-playstore-in-chormeos-flex.md
Last active February 19, 2025 15:33
Get PlayStore in ChromeOS Flex

Get Play Store in ChromeOS Flex (Unofficial)

Important:

  • Official ChromeOS Flex does not support the Play Store or Android apps.
  • This guide uses unofficial methods (e.g., Brunch + a full ChromeOS recovery image) to achieve Play Store functionality.
  • Success is not guaranteed for all devices; proceed at your own risk.

1. Basic Requirements

@madkoding
madkoding / jwt-rs256-nest.md
Last active December 15, 2023 14:23
Autenticaci贸n de JWT con firma RS256 en Nest

Configuraci贸n Correcta de JWT en NestJS con firma RS256

Este resumen proporciona una gu铆a sobre c贸mo configurar correctamente JWT en NestJS, especialmente para el uso de algoritmos RSA como RS256.

Problema Com煤n

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.

Verificaci贸n del Algoritmo del Token

@madkoding
madkoding / lastfm-spotify.md
Last active December 15, 2023 23:27
Como crear una pagina que muestre lo que estas escuchando en spotify

Como crear una pagina que muestre lo que estas escuchando en spotify

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
@madkoding
madkoding / instalar-proxmox-gpu-passthrough.md
Created December 28, 2023 17:17
Instalaci贸n de Proxmox y Configuraci贸n de Passthrough de GPU para una M谩quina Virtual de Windows

Instalaci贸n de Proxmox y Configuraci贸n de Passthrough de GPU para una M谩quina Virtual de Windows

Paso 1: Instalaci贸n de Proxmox

  1. Descargar Proxmox: Ve a la p谩gina oficial de Proxmox y descarga la 煤ltima ISO de Proxmox VE.

  2. Crear un medio de instalaci贸n: Usa un programa como Rufus para quemar la ISO en un USB.

  3. Instalaci贸n: Arranca tu servidor desde el USB y sigue las instrucciones en pantalla para instalar Proxmox.

@madkoding
madkoding / removeroms.md
Created May 21, 2024 23:04
Python Script for Removing Duplicate Files (roms) Based on Levenshtein Distance

Python Script for Removing Duplicate Files (roms) Based on Levenshtein Distance

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.

Requirements

  • Python 3.x
  • colorama library for colored console output

Installation

@madkoding
madkoding / install_turing.sh
Created September 20, 2024 14:16
Turing Smart Screen installer archlinux
#!/bin/bash
# Check for superuser permissions
if [ "$EUID" -ne 0 ]; then
echo "Please run this script as root or with sudo"
exit
fi
# Update repositories and ensure the system is up to date
echo "Updating the system..."
@madkoding
madkoding / install-synaptic-figerprint.md
Created October 7, 2024 05:26
Installation and Configuration of python-validity with PAM for SDDM Fingerprint Authentication (Archlinux)

Installation and Configuration of python-validity with PAM for SDDM Fingerprint Authentication

Step 1: Installing python-validity from AUR

First, install the required dependencies:

sudo pacman -S base-devel git cmake libusb glib2-dev