class Me:
def __init__(self):
self.name = "Oscar Campohermoso Berdeja"
self.education = self.get_education()
self.skills = self.get_skills()
self.projects = self.get_projects()
def get_education(self):
return [
{
"institution": "Universidad Católica Boliviana",
"degree": "Ingeniería de Sistemas",
"status": "Estudiante"
}
]
def get_skills(self):
return {
"programming_languages": [
"Python", "Java", "C++", "JavaScript", "Go", "Dart", "R"
],
"web_development": [
"HTML", "CSS", "PHP", "Django", "Flask"
],
"data_science": [
"Pandas", "NumPy", "Scikit-Learn", "Matplotlib", "Seaborn"
],
"tools": [
"Git", "SQL", "Jupyter Notebook", "PostgreSQL", "MongoDB", "Linux"
]
}
def get_projects(self):
return [
{
"name": "Plataforma Digital para Alquiler y Reserva de Parqueos",
"achievement": "1er lugar en FUNCTEC 2024"
},
{
"name": "Aplicación Web para Optimización de Rutas en Mi Teleférico",
"achievement": "2do lugar en FUNCTEC 2024"
}
]
def __str__(self):
return f"{self.name}, estudiante de {self.education[0]['degree']} en {self.education[0]['institution']}."
Entusiasta de la programación y la tecnología. Amante de Python y Tetris. Siempre buscando la manera más eficiente de encajar las piezas.
- La Paz, Bolivia
Highlights
- Pro
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.