Skip to content

Instantly share code, notes, and snippets.

View alvaro-diaz-valenzuela's full-sized avatar
👨‍🏭
Working from home and Bank

Alvaro Diaz Valenzuela alvaro-diaz-valenzuela

👨‍🏭
Working from home and Bank
  • Banco Internacional
  • Chile
  • 22:29 (UTC -04:00)
View GitHub Profile
@alvaro-diaz-valenzuela
alvaro-diaz-valenzuela / privacy-policy.md
Last active July 16, 2026 17:55
KidzBank Privacy Policy / Política de Privacidad

KidzBank — Política de Privacidad / Privacy Policy

Última actualización / Last updated: 2026-07-05

Español

KidzBank no recolecta ningún dato personal.

  • Toda la información de tu familia (nombres o apodos, montos, movimientos) se guarda en tu dispositivo y, si tienes iCloud activo, en **tu cuenta
{
"updatedAt": "2026-07-04T00:00:00Z",
"rates": [
{ "id": "CL", "policyRatePercent": 5.0 },
{ "id": "US", "policyRatePercent": 4.5 },
{ "id": "EU", "policyRatePercent": 2.25 },
{ "id": "MX", "policyRatePercent": 8.0 },
{ "id": "BR", "policyRatePercent": 14.0 },
{ "id": "CO", "policyRatePercent": 9.0 },
{ "id": "PE", "policyRatePercent": 4.75 },
@alvaro-diaz-valenzuela
alvaro-diaz-valenzuela / capturing.py
Last active June 22, 2020 17:03
Permite capturar el output de consola a un str.
# Taken from a stackoverflow answer ... not written by me.
from io import StringIO
import sys
class Capturing(list):
def __enter__(self):
self._stdout = sys.stdout
sys.stdout = self._stringio = StringIO()
return self
def __exit__(self, *args):