Slackbot
07/17/2022, 7:08 PMAndromadus Naruto
07/18/2022, 7:25 AMKatarzyna
07/20/2022, 9:11 AMjaguililla
07/22/2022, 7:08 AMPoisonedYouth
07/24/2022, 11:14 AMMD
07/24/2022, 12:18 PMsam
07/24/2022, 7:08 PMsam
07/24/2022, 11:40 PMKatarzyna
07/25/2022, 9:09 AMkpgalligan
07/26/2022, 1:45 PMKatarzyna
07/27/2022, 8:56 AMMattia Tommasone
07/27/2022, 3:58 PMDariusz Kuc
07/27/2022, 9:41 PMJilles van Gurp
07/28/2022, 7:30 AMKatarzyna
07/29/2022, 12:22 PMdmcg
07/30/2022, 6:17 PMhttps://youtu.be/I2ogP-CYCK4▾
Ayfri
08/01/2022, 11:30 AMJilles van Gurp
08/01/2022, 5:17 PMJsonDsl
to model the various domain specific languages in the Elasticsearch API with Kotlin. The key feature here is that JsonDsl delegates to a map. So you can define type safe properties in sub classes that store things in the map and fall back to manipulating the map for missing features.
• Paged searches (search-after, scrolling)
• Support for Opensearch 2.xpjagielski
08/02/2022, 10:55 AMShreyas Patil
08/02/2022, 4:07 PMRuben Quadros
08/02/2022, 6:00 PMMoshi
and Kotlinx Serialization
!
https://betterprogramming.pub/integrate-settings-into-a-custom-intellij-code-inspection-plugin-47d845b1c9f5
https://plugins.jetbrains.com/plugin/19430-codespectorKatarzyna
08/03/2022, 8:52 AMvishesh
08/03/2022, 12:03 PMhttps://youtu.be/1XRJj3Hps_4▾
Abishek Shivan
08/04/2022, 7:23 AMAlejandro Rios
08/04/2022, 2:00 PMBig Chungus
08/05/2022, 11:06 AMKatarzyna
08/08/2022, 9:56 AMAdam S
08/08/2022, 5:17 PMval kTable: KTable<String, String> = ...
// before :(
kTable.toStream(Named.`as`("my-stream"))
.foreach(
{ k, v -> println("key: $k, value: $v") },
Named.`as`("for-each-print")
)
// after!
kTable.toStream("my-stream")
.forEach("for-each-print") { k, v ->
println("key: $k, value: $v")
}
Jilles van Gurp
08/09/2022, 11:19 AMvishesh
08/10/2022, 5:59 AMhttps://youtu.be/-mua_TAE-ww▾
vishesh
08/10/2022, 5:59 AMhttps://youtu.be/-mua_TAE-ww▾