Hi there, I'm Roman Agilov
I'm a Backend Go / PHP developer. With over 12+ years of experience in the field, I'm always looking for cool projects and opportunities to collaborate on.
package main
import "fmt"
type Bio struct {
name string
title string
location string
}
type Skills struct {
languages []string
databases []string
tools []string
}
func main() {
bio := &Bio{
name: "Roman Agilov",
title: "Senior Backend Developer",
location: "Berlin, DE",
}
skills := &Skills{
languages: []string{"Go", "JavaScript", "PHP", "Python", "SQL"},
databases: []string{"PostgreSQL", "MySQL", "Redis", "ClickHouse"},
tools: []string{"Fiber", "Echo", "Flask", "Laravel", "Yii2", "Vue", "Docker", "Centrifugo", "Kafka", "FreeSwitch","Elasticsearch", "Swagger", "Kubernetes"},
}
fmt.Println(bio, skills)
}