Skip to content
View Fa7C0n's full-sized avatar

Organizations

@blrgis

Block or report Fa7C0n

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Fa7C0n/README.md
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()
}

Pinned Loading

  1. comedian comedian Public

    A module which can handle very large GeoJSONs by streaming

    JavaScript

  2. Nalanda Nalanda Public

    catalog of all what I feel like useful articles

  3. warehouse warehouse Public

    place to store all the one of scripts used frequently

    JavaScript