I'm a backend engineer who just graduated with an MS in Computer Science from SUNY Albany (GPA 3.75, May 2026). The summer before that was spent at Rivian Automotive's Data Applications & ML team in Palo Alto, where I built Go microservices for vehicle telemetry pipelines, automated CI/CD documentation, and provisioned services with Terraform.
The work I love sits at the seam of systems and data — RESTful APIs that need to be boring and reliable, vector stores that need to be fast and right, and observability that turns 3am pages into solved tickets.
Outside of work I built OpsPilot, an enterprise AI incident-triage agent with FastAPI, Astra DB vector search, and MCP tools — and a blockchain supply-chain system covering 120+ distribution points.
about.go
// who I am, in 14 lines
package sylesh
type Engineer struct {
Name string
Stack []string
Loves []string
}
var Sylesh = Engineer{
Name: "Venkata Sylesh Kona",
Stack: []string{"Go", "Python", "k8s", "AWS"},
Loves: []string{"clean APIs", "low latency",
"good observability"},
}
func (e *Engineer) Status() string {
return "shipping & learning" // always
}