type Developer struct {
Location string
Focus []string
CurrentlyInto string
Hobbies []string
}
me := Developer{
Location: "Hungary",
Focus: []string{"Backend", "Automation", "Cloud"},
CurrentlyInto: "Building scalable APIs & microservices",
Hobbies: []string{"Open Source", "Embedded Systems", "3D Printing"},
}Backend & APIs • CI/CD Pipelines • Microservices • Cloud Deployments


