- ๐ฑ 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...
Open Source Contribution
- ๐ Merged PRย #8122ย inย wagtail/wagtail
- ๐ Merged PRย #6859ย inย kubernetes/autoscaler/
- ๐ Merged PR #1872 in Kolide/launcher
๐ 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