Hello, I'm

Alex Ballas

DevOps Manager | Developer By Night

package main

import "fmt"

type Profile struct {
    Role    string
    Company string
    Passion string
}

func main() {
    alex := Profile{
        Role:    "DevOps Manager",
        Company: "Openbet",
        Passion: "Coding (By Night)",
    }
    
    fmt.Printf("Building Go2TV after %s hours...", alex.Company)
}

Featured Project