package main
import (
"fmt"
)
type aboutMe struct {}
func(a *aboutMe) Job (year int) {
switch {
case year >= 2020:
fmt.Println("Software Engineer II @ Eagleview")
case year == 2019:
fmt.Println("GIS Engineer @ Cropin Technologies")
case year < 2019 && year >= 2016:
fmt.Println("Engineer - Search @ Mapbox Technologies")
}
}
func(a *aboutMe) Pronoun () {
fmt.Println("He|Him")
}
func(a *aboutMe) Code () {
fmt.Println("Go, NodeJS, Python")
}
func(a *aboutMe) ArchTech() {
fmt.Println("AWS, microservices, K8s, Jenkins, gitops, Express.js, GRPC, REST")
}
func main() {
aboutGokul := aboutMe{}
aboutGokul.Job(2020)
aboutGokul.Pronoun()
aboutGokul.Code()
aboutGokul.ArchTech()
}
Software developer at EagleView building Imagery solutions.
Former Geocoding, Search, Data @mapbox
-
EagleView
- Bangalore
- https://www.gokulg.in
- @Fa7C0n
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.