╭──────────────────────────────────────────────────────╮
│ │
│ Hi, I'm virgoC0der. │
│ Backend Engineer · Harness Developer · Agent Hacker│
│ │
│ Building scalable backend systems by day, │
│ hacking on AI agents by night. │
│ │
│ Currently exploring where LLMs meet devtools. │
│ │
╰──────────────────────────────────────────────────────╯
"The best code is written by understanding the problem deeply enough that the solution becomes obvious."
package main
type Engineer struct {
Focus []string
Stack []string
Mindset string
}
me := Engineer{
Focus: []string{"distributed systems", "cloud architecture", "AI agents"},
Stack: []string{"Go", "Python", "GCP", "K8s", "Spanner", "Redis"},
Mindset: "simple > clever · reliable > fast · boring > shiny",
}




