package main
import (
"fmt"
)
type Bio map[string]string
func BioInfo() Bio {
return Bio{
"- ๐ญ Iโm currently working on": "Python and Golang Web applications development for applications in Agriculture and Natural Environment domains",
"- ๐ฑ Iโm currently learning": "Golang, Docker, Kubernetes, GCP, AWS, React JS",
"- ๐ฏ Iโm looking to collaborate on": "Golang, Python and React JS projects",
"- ๐ค Iโm looking for help with": "Golang packges and applications in GIS and Remote Sensing",
"- ๐ฌ Ask me about": "Spatial Systems - GIS & Remote Sensing; Software Engineering & application development",
"- ๐ซ How to reach me": "[email protected]",
}
}
func main() {
for k, v := range BioInfo() {
fmt.Printf("%+v: %+v\n", k, v)
}
}
Credits: Opiti Calvin