https://kotlinlang.org logo
Title
j

josh

08/16/2019, 4:56 PM
Time for an emoji poll! 🍅 for "Kotlinesque" 🚀 for "Kotlinify" 😝 for "Kotliny" :kotlin: for "Kotlinize" :kotlin-flag: for "Kotlinish"
:kotlin: 35
🚀 4
🍅 4
😝 2
s

Shawn

08/16/2019, 4:56 PM
maybe take this to #random tbh 😅
d

Dominaezzz

08/16/2019, 4:58 PM
I think these are Apples and Oranges. Hard to vote.
👆 3
👍 2
👌 1
m

Marko Mitic

08/16/2019, 5:01 PM
I've heard "Kotlinize" way too many times
s

Sergey Bondari

08/16/2019, 5:30 PM
I use OverKotlinized all the time. Where people are using
?.let {} ?: run { }
instead of a simple
if / else
👍 2
🤣
p

Pablichjenkov

08/16/2019, 5:37 PM
We should ask the English Language Real Academy. They probably have some rules for it. :trollface:
By the way at Sergey. We had that in our code a lot and by consensus decided to use
when(val localFieldCopy = classField) {... localFieldCopy == x -> ... }
instead. simple
if / else
do not guard against multiple thread mutating the field back to null.
s

Sergey Bondari

08/16/2019, 7:09 PM
In my example it was a local variable 🙂
p

Pablichjenkov

08/16/2019, 8:01 PM
Oh I see 😸, for a local one that’s a lot of ceremony definitely.