Lead Engineer at Samsung Research Institute 🚀
Backend-Specialized Full-Stack Developer 💻
package main
type Developer struct {
Name string
Role string
Pronouns []string
Code []string
Tools []string
Expertise []string
Focus string
}
func main() {
anuj := Developer{
Name: "Anuj Arora",
Role: "Lead Software Engineer",
Pronouns: []string{"he", "him"},
Code: []string{"Golang", "Ruby", "JavaScript", "TypeScript", "SQL"},
Tools: []string{"AWS", "Docker", "Kubernetes", "Prometheus", "Grafana"},
Expertise: []string{"Microservices", "System Design", "REST/GraphQL APIs", "CI/CD"},
Focus: "Building scalable backend systems & distributed architecture",
}
}
