val igor = mapOf(
"pronouns" to listOf("hi", "his"),
"status" to listOf("Full-time Learner"),
"location" to listOf("Irkutsk"),
"languages" to listOf("ru", "en"),
)
val development = mutableMapOf(
"code" to mutableListOf("kotlin", "python", "java"),
"tools" to mutableListOf("jetpack compose"),
"architecture" to mutableListOf("clean architecture"),
"patterns" to mutableListOf("mvvm"),
"database" to mutableMapOf(
"relational" to mutableListOf("mysql"),
"nosql" to mutableListOf("mongodb"),
"inMemory" to mutableListOf("room"),
),
"ai" to mutableMapOf(
"generativeAI" to mutableListOf(
"Prompt engineering",
),
"models" to mutableListOf(
"OpenAI",
"Gemini",
),
)
)|
|