package main
type Developer struct {
Name string
Code []string
Tools []string
Curious []string
Motto string
}
var aor = Developer{
Name: "Aor",
Code: []string{"Go", "Rust", "TypeScript"},
Tools: []string{"MongoDB", "Node.js", "Git"},
Curious: []string{"distributed systems", "low-level work", "developer tooling"},
Motto: "Build small, ship often, learn always.",
}
💻
Coding...
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.