tedmax100 - Overview

package main

type Engineer struct {
	Name     string
	Location string
	Company  string
	Focus    []string
	Motto    string
}

var me = Engineer{
	Name:     "Nathan.Lu (雷N)",
	Location: "Taiwan 🇹🇼",
	Company:  "RayRay Soft",
	Focus:    []string{"Backend", "Observability", "OpenTelemetry", "Distributed Systems"},
	Motto:    "時間花在哪,成就就在那",
}