Systems & Computer Engineer · Backend Developer — Go, Python, Java
package profile
// Profile defines a minimal, idiomatic public profile structure.
type Profile struct {
Name string
Location string
Education []string
Experience []string
FieldsOfInterest []string
Tech []string
Links map[string]string
}
// Me is the populated instance of Profile with Kevin's public info.
var Me = Profile{
Name: "Kevin Fabio Ramos López",
Location: "Bogotá, Colombia",
Education: []string{
"B.Sc. Systems and Computer Engineering — Universidad Nacional de Colombia (Jun 2025)",
},
Experience: []string{
"Software Developer — LAB101 (Strapi, Elasticsearch, Docker)",
"Development Analyst — Innovbo Group (Java, microservices)",
},
FieldsOfInterest: []string{
"Machine Learning",
"Natural language processing",
"Web development",
"DevOps",
"Automation",
},
Tech: []string{
"Go",
"Python",
"Java",
"JavaScript",
"TypeScript",
"Docker",
"Elasticsearch",
"PostgreSQL",
"Linux",
"AWS EC2",
"GCP VMs",
},
Links: map[string]string{
"LinkedIn": "https://www.linkedin.com/in/kevin-fabio-ramos-lopez/",
"GitHub": "https://github.com/NivekTakedown",
"Email": "mailto:kevinframosl@gmail.com",
},
}


