π» Learning Backend Development with Golang
π― Actively preparing for Backend / Cloud Internship Roles
π€ Active in MUNs, public speaking, sponsorship, and event management
βοΈ Aspiring Cloud Architect, growing step-by-step through real projects
π Skilled in Docker, Git, and learning automation through CI/CD pipelines
π Ticket Booking System (Golang Backend)
π‘ Aegis Defence Grid (Collaboration Project)
π TerraStorm β Cloud Native Land Monitoring (Hackathon Project)
βοΈ Automated CI/CD Pipeline Deployment (AWS ECS + Jenkins)
package main
import "fmt"
type Engineer struct {
Name string
Focus string
}
func main() {
me := Engineer{
Name: "Shreya Baranwal",
Focus: "Backend + Cloud + DevOps",
}
fmt.Println("Hi, I'm", me.Name)
fmt.Println("Currently building skills in:", me.Focus)
}