- 🚀 BuildingACM 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"funcmain() {
currentProjects:= []string{
"High-performance API gateways",
"Concurrent processing systems",
"Cloud-native microservices",
}
fmt.Println("Current Go Focus Areas:")
for_, project:=rangecurrentProjects {
fmt.Printf("▸ %s\n", project)
}
}


