Turn Kotlin snippets into images worth sharing, without leaving your Mac.
Kotlin's conciseness makes for snippets that read almost like prose, which is exactly what you want in a feed.
Codeshot detects Kotlin from the code you paste, so there is no language picker to get wrong. Here is the same snippet in three of the 30 themes it ships with, rendered with the app's own stylesheets.
dataclassSnapshot(
val code: String,
val theme: String = "xcode",
val scale: Int = 2,
)
fun Snapshot.export(path: String): Result<String> = runCatching {
render(code, theme).save(path, scale)
}
Atom One · dark
dataclassSnapshot(
val code: String,
val theme: String = "xcode",
val scale: Int = 2,
)
fun Snapshot.export(path: String): Result<String> = runCatching {
render(code, theme).save(path, scale)
}
GitHub · dark
dataclassSnapshot(
val code: String,
val theme: String = "xcode",
val scale: Int = 2,
)
fun Snapshot.export(path: String): Result<String> = runCatching {
render(code, theme).save(path, scale)
}
Tokyo Night · dark
Choosing a theme for Kotlin
Data classes and extension functions each fit comfortably in a square frame, so 1:1 is usually the right ratio here.
Getting the size right
Let the image follow your content, or lock it to a ratio — 1:1, 4:3, 3:2, 16:9, 9:16, 2:3, or 3:4 — then export at 1×, 2×, or 3× so it stays sharp on a retina display. Copy it straight to the clipboard with ⌘⇧C, or save with ⌘S.