package main
import "fmt"
type Developer struct {
Name string
Aliases []string
Stack []string
Hobbies []string
Quote string
}
func main() {
me := Developer{
Name: "Anurag",
Aliases: []string{"anuragdevon", "Space Geek", "Linux Enjoyer"},
Stack: []string{"Python", "Golang", "Django", "FastAPI", "Docker", "K8s"},
Hobbies: []string{"Football ⚽", "Sketching 🎨", "Space Science 🌌"},
Quote: "In this world, the strong ship and the weak debug.",
}
fmt.Printf("Hi, I'm %s 👋\n", me.Name)
fmt.Println("Backend-focused, always building, always learning.")
}- 👨💻 Building backend modules and scalable service components.
- 💻 Frequently tweaking Linux setups and learning systems internals.
- 🌌 Football, sketching, and space science keep me inspired.
- 📝 Currently Tinkering — Arch Rice Blog






