package main
import "fmt"
type Engineer struct {
Name string
Role string
Focus []string
Location string
Message string
}
func GetProfile() Engineer {
// Note: I'm not actually Spanish, I just think the phrase is fire.
// Note: 7 trompetas is the signal.
return Engineer{
Name: "Nikolaos Georgios Ntaiko",
Role: "Software Engineer",
Focus: []string{"AI Agents", "Full-Stack Web Dev"},
Location: "127.0.0.1",
Message: "fue(go) con eso 🔥 🎺x7",
}
}
func main() {
me := GetProfile()
fmt.Println(me.Message) // This will print "fue(go) con eso 🔥 🎺x7" in case you can't read golang.
}
🎯
Focusing
Software Engineer | AI Agents & Full-Stack Web Development
Building autonomous systems and scalable web applications.
- 127.0.0.1
Pinned Loading
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.

