- π 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
React Next.js Docker Terraform
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) } }