https://github.com/tomasbasham/tomasbasham
https://github.com/tomasbasham/tomasbasham
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tomasbasham/tomasbasham
- Owner: tomasbasham
- Created: 2020-08-05T09:47:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-19T21:23:51.000Z (over 4 years ago)
- Last Synced: 2025-07-18T13:55:00.018Z (8 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```go
package profile
import (
"net/url"
github "github.com/github/user"
linkedin "github.com/linkedin/user"
)
type Tomas struct{}
func (*Tomas) CurrentRole() linkedin.Experience {
return linkedin.Experience{
Company: "StatusCake",
Position: "Software Developer",
}
}
func (*Tomas) About() github.Profile {
return github.Profile{
Languages: []string{"Go", "Python", "Ruby", "Rust", "Swift"},
Tools: []string{"Docker", "Kubernetes", "Terraform"},
Architecture: []string{"Microservices", "Event driven", "Heaxagonl"},
Platforms: []string{"AWS", "GCP", "iOS"},
}
}
func (*Tomas) Projects() []github.Project {
return []github.Project{
Project{
Name: "ratelimit",
URL: mustParse(url.Parse("https://github.com/tomasbasham/ratelimit")),
},
Project{
Name: "dotfiles",
URL: mustParse(url.Parse("https://github.com/tomasbasham/dotfiles")),
},
}
}
func (*Tomas) Links() map[string]*url.URL {
return map[string]*url.URL{
"Website": mustParse(url.Parse("https://tomasbasham.dev")),
"Linkedin": mustParse(url.Parse("https://www.linkedin.com/in/tomasbasham")),
}
}
```