- π± Iβm currently learning ... Rust Lang
- ποΈ Iβm looking to collaborate on ... Open Source project which builds on Go, Python, and Rust
- π« How to reach me...
APP IssueTracker
Open Source Contribution
- π Merged PRΒ #8122Β inΒ wagtail/wagtail
- π Merged PRΒ #6859Β inΒ kubernetes/autoscaler/
- π Merged PR #1872 in Kolide/launcher
- π« Opened PR #13310 in KubeVirt/kubevirt
- π« Opened PR #7170 in prometheus-operator/prometheus-operator
π Latest Blog Posts
package main
import "fmt"
type Me struct {
Pseudonym string
Code string
BestAndFavoriteSkill string
Certifications []string
}
func (m *Me) PrintInfo() {
fmt.Println("Pseudonym: ", m.Pseudonym)
fmt.Println("Code: ", m.Code)
fmt.Println("Best and Favorite Skill: ", m.BestAndFavoriteSkill)
fmt.Println("Certifications: ")
for _, cert := range m.Certifications {
fmt.Println("- ", cert)
}
}
func main() {
me := &Me{
Pseudonym: "Dharma",
Code: "GoLang, Javascript and Python",
BestAndFavoriteSkill: "Web Hacking :D",
Certifications: []string{"ESCA", "AWS cloud practitioner"},
}
me.PrintInfo()
} //To run this code go run file_n.go