Skip to content

Instantly share code, notes, and snippets.

View cabreu145's full-sized avatar
🐍
Focusing

Carlos Abreu cabreu145

🐍
Focusing
View GitHub Profile
@melendezgg
melendezgg / cabys_a_json.py
Last active February 1, 2024 20:35
Convertir el archivo Excel del catálogo CABYS del Banco Central de Costa Rica, a un archivo JSON en el formato API Ministerio de Hacienda
from pandas import read_excel
import json
URL = 'https://www.bccr.fi.cr/indicadores-economicos/cabys/Cabys_catalogo_historial_de_cambios.xlsx'
# Los nombres de las columnas Excel vs nombres cortos y eventualmente
# propiedades del json
cols = {
'Descripción (categoría 1)': 'c1',
'Descripción (categoría 2)': 'c2',
@oliveratgithub
oliveratgithub / made-with-love.html
Last active June 18, 2024 20:50
Various snippets to add "Made with love" to your website using HTML, CSS and JavaScript
<!-- Example #1 - no styling -->
Made with ❤ in Switzerland
Made with ♥ in Switzerland
Made with ♡ in Switzerland
Made with ❤️ in Switzerland
Made with ♥️ in Switzerland
<!-- Example #2 - inline-styled ❤ -->
Made with <span style="color: #e25555;">&#9829;</span> in Switzerland
Made with <span style="color: #e25555;">&hearts;</span> in Switzerland