class Me:
def __init__(self):
self.name = "Mateo Ramirez Rubio"
self.title = "Software Engineer Student"
self.technologies = ["Python", "Django", "FastAPI", "Express.js", "Flutter", "Docker"]
self.projects = [
"Mini Blog App - Blog application with Django and Django REST framework and Testing with Pytest and Coverage",
"Senior Company Service - Connecting older people with carers",
"Real-time Chat App - Microservices with FastAPI, WebSocket API, and Kafka",
"Express.js REST API - API of products to consume from Flutter",
]
self.skills = {
"Backend Development": ["Django", "FastAPI", "Express.js", "Docker"],
"Frontend Development": ["HTML", "CSS", "Flutter"],
"Database Management": ["PostgreSQL", "MySQL"],
"Testing": ["pytest", "mock", "coverage"],
"Best Practices": ["Clean Architecture", "Scalability", "Security"],
}
def introduce_myself(self):
introduction = (
f"Hi, I'm {self.name}, a {self.title} with experience in various technologies.\n"
"I have worked on projects such as:\n"
)
for project in self.projects:
introduction += f"- {project}\n"
introduction += "\nMy skills include:\n"
for category, skills in self.skills.items():
introduction += f"{category}:\n"
for skill in skills:
introduction += f" - {skill}\n"
return introduction
profile = Me()
print(profile.introduce_myself())
Pinned Loading
-
crm_vulnerabilities_challenge
crm_vulnerabilities_challenge PublicDjango REST API para manejo de vulnerabilidades con cliente NIST externo, uso de patrones de diseño y buenas prácticas
Python
-
mini-blog-rest-api
mini-blog-rest-api PublicA mini blog Django project demonstrating the implementation of the Services and Repositories design pattern for a blog application.
Python
-
learning_Go_Golang
learning_Go_Golang PublicThis repository is dedicated to exploring and mastering Go programming through hands-on examples and projects. Each section delves into key Go concepts, providing clear explanations and practical c…
Go
-
proxyInversoBalanceadorCarga
proxyInversoBalanceadorCarga PublicProxy Inverso en C con Cache y Balanceador de Carga sobre 3 Servidores Apache
C
-
reto2DatosAlgoritmos
reto2DatosAlgoritmos PublicForked from FelipeArredond/reto2DatosAlgoritmos
Este es un reto calificable de la materia de datos y algoritmos el cual consiste en un algoritmo que pueda hallar la ruta mas corta de un en distintios puntos de un mapa
Python
-
If the problem persists, check the GitHub status page or contact support.