Santiago Garcia Arango
(san99tiago)
class WhoAmI:
"""Class to introduce Santi :)"""
def __init__(self, visitor_name):
self.user = "san99tiago"
self.last_education = "M.S. Cybersecurity"
print(f"๐ Hello {visitor_name}, welcome to {self.user}'s GitHub!")
print(f"๐ฎ Summary {self.user}: AWS Solutions Architect, lifelong learner, and passionate mentor.")
print(f"๐ Exploring: {self.get_current_learning_tools()}")
print(f"๐ก Well-Known: {self.get_well_known_tools()}")
def get_current_learning_tools(self):
return (["Gen-AI Orchestration", "Cloud-Native Core-Banking Systems", "K8s", "PQ-Cryptography", "Complex Terraform Workflows"])
def get_well_known_tools(self):
return ({
"Cloud": "AWS 8x Certified Solutions Architect with deep expertise in building enterprise-grade distributed systems for FSI",
"DevOps": "Git, Linux, Docker, K8s, Terraform, CloudFormation, CDK, GH-Actions, Jenkins, Azure DevOps, SonarQube, Packer, Ansible.",
"Backend & Frontend Tools": "FastAPI, Flask, Spring, Express, HTML, CSS, JS, React, SASS.",
"Databases": "DynamoDB, MongoDB, MySQL, SQLite, PostgreSQL, ElasticSearch, OpenSearch.",
"Servers & Security": "IBM Websphere Application Server, IBM MQ, Apache Tomcat, Nginx, OWASP, Splunk, Wazuh, AuthN/AuthZ.",
"Data Science": "Python, ETLs, Matplotlib, Numpy, Pandas, Seaborn, Pyplot.",
"CV & IoT": "OpenCV, Pillow, Darknet & ESP8266, NodeMCU, RaspberryPi, RFModules, Postman.",
"Robotics & Machine Learning": "ROS, Arduino, Bedrock, SageMaker, Scikit-learn, TensorFlow, CVXPY."
})
santi = WhoAmI("your_name")