Kotlin

Fun with setOnClickListener and by lazy

The Problem Developing an Android app, using Android’s Navigation Components, and after returning to the first fragment, the button to go to the second frag...

Today’s HeadDesk bought to you by…

Today I’m writing a bit of code and I need to combine a few RxJava streams into a single stream, using combineLatest(). And it’s not working, not even compi...

Moving Average Calculation in Kotlin

I’m working on an app that calculates and displays moving averages for a list of numbers. This post shows how I’m doing it in Kotlin, using list operations ...