$ whoami

Davide Imola

I started my journey into coding pretty early. For my first communion, I made my parents bought me my first personal laptop, where I started experimenting with HTML, CSS, forums, and blogs.

Next, I decided to follow my passion by attending a computer science high school and the University in my hometown. During my university years, I started experimenting with the web by creating sites for different clients, and in December 2017, I landed my first job position in this field.

Since I started my journey, I have always been interested in servers, DevOps, and backend development.

main.go
Dockerfile
func main() {
    davide := &Person{
        Name:     "Davide Imola",
        Age:      28,
        Position: "Software Engineer",
    }

    if err := davide.SayHello(); err != nil {
        panic(err)
    }
}