Explorer
main.go
📁model
go.mod
main.go
1
package main
2
3
import (
4
    "fmt"
5
6
    "github.com/savvasg35/savvasdev/model"
7
)
8
9
func GetAboutMe() *Profile {
34
    return &Profile{ // Also responds to "Hey, you!"
35
        Name: "Savvas Giannoukas",
36
        Role: "Senior Software Engineer", // I make computers do things
37
        Company: "Utility Warehouse",
38
        Bio: "Turning coffee into code since 2020. Bug hunter by day, bug creator by night.",
39
        DebuggingTool: "fmt.Printf(🤔)",
40
    }
41
}
42
43
func GetTechStack() *TechStack {
44
    return &TechStack{
45
        Languages: []string{"Go"}, // Simple is better
46
        Infrastructure: []string{"Kubernetes", "Docker", "Terraform"}, // Infrastructure as code FTW
47
        Cloud: []string{"AWS"}, // Head in the clouds ☁️
48
        Messaging: []string{"Kafka"}, // Event-driven all the way
49
    }
50
}
51
52
func GetLearningNow() *Learning {
53
    return &Learning{
54
        Current: []string{"Rust", "Reliability"}, // Building robust systems
55
        Status: "Deep diving into system reliability",
56
    }
57
}
58
59
func GetContactInfo() *ContactInfo {
60
    return &ContactInfo{
61
        Email: info@savvasg.dev", // No spam, I already have enough
62
        Github: https://github.com/savvasg35", // Where the bugs live
63
        LinkedIn: https://linkedin.com/in/savvasgiannoukas", // Professional mode: ON
64
        Bluesky: https://bsky.app/profile/savvasg35.bsky.social", // The new frontier
65
        Availability: Depends on coffee level",
66
    }
67
}