package main
import (
"fmt"
"github.com/savvasg35/savvasdev/model"
)
func GetAboutMe() *Profile {
return &Profile{ // Also responds to "Hey, you!"
Name: "Savvas Giannoukas",
Role: "Senior Software Engineer", // I make computers do things
Company: "Utility Warehouse",
Bio: "Turning coffee into code since 2020. Bug hunter by day, bug creator by night.",
DebuggingTool: "fmt.Printf(🤔)",
}
}
func GetTechStack() *TechStack {
return &TechStack{
Languages: []string{"Go"}, // Simple is better
Infrastructure: []string{"Kubernetes", "Docker", "Terraform"}, // Infrastructure as code FTW
Cloud: []string{"AWS"}, // Head in the clouds ☁️
Messaging: []string{"Kafka"}, // Event-driven all the way
}
}
func GetLearningNow() *Learning {
return &Learning{
Current: []string{"Rust", "Reliability"}, // Building robust systems
Status: "Deep diving into system reliability",
}
}
func GetContactInfo() *ContactInfo {
return &ContactInfo{
Email: info@savvasg.dev", // No spam, I already have enough
Github: https://github.com/savvasg35", // Where the bugs live
LinkedIn: https://linkedin.com/in/savvasgiannoukas", // Professional mode: ON
Bluesky: https://bsky.app/profile/savvasg35.bsky.social", // The new frontier
Availability: Depends on coffee level",
}
}