Share Kotlin data classes, coroutine patterns, or Spring Boot code: syntax-highlighted and encrypted with one paste.
1data class User(2 val id: Long,3 val name: String,4 val email: String,5)67fun List<User>.groupByDomain(): Map<String, List<User>> =8 groupBy { it.email.substringAfterLast('@') }910suspend fun fetchUsers(ids: List<Long>): List<User> = coroutineScope {11 ids.map { id ->12 async { userRepository.findById(id) }13 }.awaitAll().filterNotNull()14}Paste Kotlin code and get a shareable link with full syntax highlighting, server-side rendered with no JavaScript overhead.
Deleted on first open. Can't be viewed twice.
Add a password so the URL alone is not enough to decrypt.
Set pastes to expire after 1 hour, 1 day, 7 days, or up to 30 days. Gone when you say so.
No sign-up, no email, no ads. Paste and share in seconds.
Yes. The grammar supports expect/actual declarations and Kotlin Multiplatform syntax.
Pastes up to 5 MB are supported.
Yes. AES-256-GCM encryption runs in your browser before upload. For new pastes, the decryption key lives only in the URL fragment — the server never sees it. Password protection adds PBKDF2 key wrapping so the URL alone cannot decrypt.