I'm a passionate software developer with over 2 years of experience, currently working at Wawandco in Barranquilla, Colombia. I specialize in backend development with Golang and frontend in HTML, Tailwind (my css) and JS. I love building efficient and scalable web applications.
When I'm not coding, you can find me exploring new technologies, optimizing workflows, or enjoying a good book!
package main
type Mateo struct {
Name string
Age int
Work []string
Education []string
Hobbies []string
Location string
Skills []string
}
func main() {
mateo := Mateo{
Name: "Mateo Caicedo",
Age: 22,
Work: []string{"Wawandco"},
Education: []string{"Systems Engineering"},
Hobbies: []string{"Reading", "Exploring new tech", "Traveling", "Sports (Soccer)", "Music"},
Location: "Barranquilla, Colombia",
Skills: []string{"Golang", "JavaScript", "HTML", "CSS", "DevOps", "React"},
}
}