class Angelo_Imon:
def __init__(self):
self.nome = "Angelo Ferdinand Imon Spano"
self.stack = [
"Python", "SQL", "Git", "Firebase", "Scikit-learn",
"OpenCV", "Gurobi", "NoSQL"
]
self.status = "Aprimorando com propósito"
self.curriculo = "https://angeloimon.github.io/AngeloImon"
self.certificacoes = [
"Oracle SQL", "Oracle Database Design", "TOEIC 945", "SAP/ABAP"
]
self.tracos = ["análise sistêmica", "curiosidade aplicada", "consistência"]
def aprendizado_continuo(self):
while True:
try:
novo_conhecimento = "algo novo"
self.aprender(novo_conhecimento)
except Exception:
self.descansar()
else:
self.aplicar(novo_conhecimento)
def aprender(self, conhecimento):
print(f"Aprendendo: {conhecimento}")
def descansar(self):
print("Descansando para retomar com mais foco.")
def aplicar(self, conhecimento):
print(f"Aplicando: {conhecimento}")
def construir(self, problema):
return f"Resolvendo '{problema}' com dados, lógica e empatia."
🎓 Tecnólogo em Análise e Desenvolvimento de Sistemas (FATEC-RP)
💡 Sou movido pela curiosidade de destrinchar estruturas complexas e encontrar caminhos mais simples e eficientes.
🔍 Já brinquei com IA supervisionada, pré-processamento de imagens e aplicativos simples...
🌱 Expandindo minha bagagem com projetos que envolvem Python, dados, visão computacional e automação — sempre aprendendo com intenção e prática.
💬 Ainda não sei tudo — mas estou sempre aprendendo de verdade.
class Angelo_Imon:
def __init__(self):
self.name = "Angelo Ferdinand Imon Spano"
self.stack = [
"Python", "SQL", "Git", "Firebase", "Scikit-learn",
"OpenCV", "Gurobi", "NoSQL"
]
self.status = "Evolving with purpose"
self.resume = "https://angeloimon.github.io/AngeloImon"
self.certifications = [
"Oracle SQL", "Oracle Database Design", "TOEIC 945", "SAP/ABAP"
]
self.traits = ["systemic thinking", "applied curiosity", "consistency"]
def constantly_learning(self):
while True:
try:
new_knowledge = "something new"
self.learn(new_knowledge)
except Exception:
self.rest()
else:
self.apply(new_knowledge)
def learn(self, knowledge):
print(f"Learning: {knowledge}")
def rest(self):
print("Resting to regain focus.")
def apply(self, knowledge):
print(f"Applying: {knowledge}")
def build(self, problem):
return f"Solving '{problem}' with data, logic, and empathy."
🎓 Technologist in Systems Analysis and Development (FATEC-RP).
💡 I'm driven by the need to break complex structures down and rebuild them in simpler, smarter ways.
🔍 I've explored supervised learning, image preprocessing, and simple applications...
🌱 Currently expanding my skills through small real-world projects involving Python, data, computer vision, and automation.
💬 I don’t know everything — but I’m truly learning every day.
