Skip to content

Instantly share code, notes, and snippets.

View asier-ortiz's full-sized avatar
💭
Clear thinking. Clean coding.

Asier Ortiz asier-ortiz

💭
Clear thinking. Clean coding.
View GitHub Profile
@asier-ortiz
asier-ortiz / firefox-macos-multiple-profiles.md
Created October 18, 2025 07:43
Guía paso a paso para crear y usar múltiples perfiles de Firefox en macOS (por ejemplo, cuentas personal y de trabajo), con comandos, consejos de sincronización y configuración de accesos directos.

Guía: Dos perfiles de Firefox en macOS (Personal y Trabajo)

Objetivo: Tener dos sesiones completamente separadas (favoritos, historial, contraseñas, extensiones y cookies) para Personal y Trabajo, y poder abrirlas a la vez si lo necesitas.


1) Conceptos rápidos

  • Perfil de Firefox: Un “usuario” independiente con sus propios datos (bookmarks, extensiones, etc.).
  • ``: Permite abrir al mismo tiempo otra instancia de Firefox con un perfil diferente.
@asier-ortiz
asier-ortiz / check_large_collection_zip_files.py
Created September 15, 2024 17:42
Script to check and list large ZIP files from a JSON collection
import json
import http.client
from urllib.parse import urlparse
import os
json_file_path = 'collection.json'
if not os.path.exists(json_file_path):
print(f"The file {json_file_path} was not found in the current path.")
else: