object Me {
val hobby = listOf(
"bilibili",
"steam",
"羽毛球",
"游泳",
)
suspend fun next() = when {
now().isWorkTime -> ((1..9).map { "工作" } + "摸鱼").random()
now().isTimeToSleep -> "sleep"
else -> hobby.random()
}
suspend fun life() {
while (true) {
withContext(Dispatchers.Main) {
invoke(next())
}
}
}
}
喜欢且熟悉 kotlin
的全栈开发者
工作中大量使用java
/spring
和js
/vue
, 也熟悉前端(ts
/react
)和客户端(jetpack compose
)
别的技术栈诸如python
会用但用的不多
热爱技术、喜欢尝试新又新又好的工具和解决难题