Skip to content

Instantly share code, notes, and snippets.

@letanure
letanure / estados-cidades.json
Last active May 16, 2025 17:00
JSON estados cidades do brasil, dividido por estados. segunda lista atualizada em 2020, dados do IBGE
{
"estados": [
{
"sigla": "AC",
"nome": "Acre",
"cidades": [
"Acrelândia",
"Assis Brasil",
"Brasiléia",
"Bujari",
@foota
foota / tetration.py
Created May 13, 2012 15:57
Tetration fractal (Python)
#!/usr/bin/env python
import sys, os, math, time
from PIL import Image
def tetration(l, t, w, h, sw, sh, mit):
data = []
for ky in range(sh):
for kx in range(sw):
x = l + w * kx / (sw - 1)