- ๐ฑ 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
- ๐ Merged PR #7170 & #7241 & #7247 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("Azure-104", cert)
}
}
func main() {
me := &Me{
Pseudonym: "Dharma",
Code: "GoLang, Javascript and Python",
BestAndFavoriteSkill: "Design secure cloud architectures, harden DevOps pipelines :D",
Certifications: []string{"ESCA", "Azure -104"},
}
me.PrintInfo()
} //To run this code go run file_n.go