package main
import "fmt"
type OpenSourceContributor struct {
Name string
Identity string
Languages []string
Contributions []string
Goals []string
Philosophy string
}
func main() {
remo := OpenSourceContributor{
Name: "Remo Panda",
Identity: "LFX'26 @Kyverno | Open Source Contributor | CNCF Ecosystem Advocate",
Languages: []string{"Go", "TypeScript", "Python", "Bash"},
Contributions: []string{
"Kyverno - Kubernetes Policy Engine",
"Prometheus - Monitoring & Alerting",
"Cilium - eBPF-based Networking",
"OpenTelemetry - Observability Framework",
"Harbor, Hyperledger Fabric, EdgeX Foundry",
"CERN Phoenix, NASA OpenMCT, Kolibri",
},
Goals: []string{
"LFX'26 @Kyverno",
"Google Summer of Code (GSoC) 2026",
"Long-term CNCF maintainership",
"Building impactful OSS tools",
},
Philosophy: "I don't just use tools - I contribute to the projects that build them.",
}
fmt.Printf("Hey, I'm %s!\n", remo.Name)
fmt.Println("Actively contributing PRs across major open source projects")
}
LFX'26 @Kyverno • Contributor across cloud native OSS • Building with Go and Kubernetes
|
Go Controllers & Webhooks |
Kubernetes Admission Control |
Docker Containerization |
Prometheus Monitoring |









