Hi there, I'm Roman Agilov
![](https://camo.githubusercontent.com/7e354ae611fe428c488d2c3daacb9c46adb94924efa6b560631c8e5c8bc83076/68747470733a2f2f6167696c6f762e636f6d2f6d656469612f696d616765732f48692e676966)
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)
}