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: "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{
"Google Summer of Code (GSoC) 2026",
"LFX Mentorship",
"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.Printf("📦 %d+ PRs across major open source projects\n", 46)
}
|
Go Controllers & Webhooks |
Kubernetes Admission Control |
Docker Containerization |
Prometheus Monitoring |
|
|
|
|
|
Go ████████████████████████████████░░░░░░░░░░░░░░░░░░ 65%
TypeScript ██████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 20%
Python ███░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 05%
Other █████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 10%





