- 🚀 Building ACM Website - Web site for all ACM UTD Info
- 🐹 Deep Diving into Go - Building distributed systems and high-performance APIs
- 🔭 Exploring Cloud Native patterns with Docker & Kubernetes
- 📚 Graduate CS Student @ UT Dallas
package main
import "fmt"
func main() {
currentProjects := []string{
"High-performance API gateways",
"Concurrent processing systems",
"Cloud-native microservices",
}
fmt.Println("Current Go Focus Areas:")
for _, project := range currentProjects {
fmt.Printf("▸ %s\n", project)
}
}


