Kotlin Shenanigans: Multiple Annotations

Using multiple annotations in Kotlin can become quite ugly. The take up more lines than the meaning they convey is worth, and some annotations are often used together. Take this small Jetpack Compose function for example: @Preview @Composable fun Preview_ConfigurationList() = AppTheme { ConfigurationList() } The @Preview and @Composable annotations are both necessary and need to be used in conjunction. You could of course just write them both on the same line. ...

January 23, 2025

Python Among Us Character

My Quest to find the Among us code & character: While I was doomscrolling on Instagram a while back, I saw a weird programming post, claiming that you could use a Python one-liner to display the well-known outline of the character from “Among us”. Among us gained popularity during the lockdowns of the COVID-19 pandemic, probably due to its relatively simple mechanics and multiplayer mode. This is what the little guy looks like (thanks to Yazza for the CC licensed art): ...

January 22, 2025