╔═══════════════════════════════════════════════════════════════╗
║ ║
║ ░██████╗███████╗███╗░░██╗░█████╗░██╗░░██╗░█████╗░██████╗ ║
║ ██╔════╝██╔════╝████╗░██║██╔══██╗╚██╗██╔╝██╔══██╗██╔══██╗ ║
║ ╚█████╗░█████╗░░██╔██╗██║███████║░╚███╔╝░██║░░██║██████╔╝ ║
║ ░╚═══██╗██╔══╝░░██║╚████║██╔══██║░██╔██╗░██║░░██║██╔══██╗ ║
║ ██████╔╝███████╗██║░╚███║██║░░██║██╔╝╚██╗╚█████╔╝██║░░██║ ║
║ ╚═════╝░╚══════╝╚═╝░░╚══╝╚═╝░░╚═╝╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝ ║
║ ║
╚═══════════════════════════════════════════════════════════════╝
// senaxor.go
package main
type Engineer struct {
Name string
Location string
Education string
Focus []string
Currently string
}
func main() {
me := Engineer{
Name: "Senaxor",
Location: "Planet Earth",
Education: "Sharif University of Technology",
Focus: []string{
"Distributed Systems",
"Network Programming",
"Backend Architecture",
"Protocol Design",
},
Currently: "Making bits go fast",
}
me.Ship()
}| Layer | Tools |
|---|---|
| Languages | Go · C · Python · Bash |
| Networking | TCP/IP · gRPC · HTTP/2 · WebSocket · QUIC |
| Infra | Docker · Kubernetes · Linux · Terraform |
| Observability | Prometheus · Grafana · Jaeger |
| Storage | PostgreSQL · Redis · etcd |


