package main
import "fmt"
type DevOpsEngineer struct {
Name string
Role string
Location string
Languages []string
Focus []string
Expertise map[string][]string
Goals []string
Mindset string
}
func main() {
sai := DevOpsEngineer{
Name: "Sai Pradhyum",
Role: "Student & Full Stack Developer",
Location: "Bangalore, Karnataka 🇮🇳",
Languages: []string{"JavaScript", "Python", "Go", "Rust"},
Focus: []string{
"Backend Development & Microservices",
"DevOps & Infrastructure as Code",
"Cloud Native Technologies",
"AI/ML & Data Engineering",
},
Expertise: map[string][]string{
"backend": {"Node.js", "FastAPI", "Django", "Go", "gRPC", "Microservices"},
"devops": {"Docker", "Kubernetes", "Terraform", "CI/CD", "Jenkins"},
"databases": {"PostgreSQL", "MongoDB", "Redis", "MySQL"},
"cloud": {"AWS", "GCP", "Azure", "Serverless"},
"ai_ml": {"TensorFlow", "PyTorch", "Keras", "scikit-learn"},
"design": {"System Design", "Distributed Systems", "Scalable Architectures"},
},
Goals: []string{
"Secure internship opportunities in DevOps/Backend",
"Master system design & distributed architectures",
"Contribute to major open-source projects",
"Build production-grade applications",
},
Mindset: "Learn. Build. Deploy. Repeat.",
}
fmt.Printf("👋 Hey, I'm %s!\n", sai.Name)
fmt.Println("🚀", sai.Mindset)
} Go ████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 35%
Python ████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 28%
JavaScript ██████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 22%
Rust ████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 08%
Other ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 07%






