Skip to content

Instantly share code, notes, and snippets.

@hector6872
hector6872 / ClazzesExt.kt
Last active August 12, 2019 19:29
Reduce two (Data) Classes in Kotlin
inline infix fun <reified T : Any> T?.reduce(other: T?): T? = when {
this == null && other == null -> null
this != null && other == null -> this
this == null && other != null -> other
else -> {
val nameToProperty = T::class.declaredMemberProperties.associateBy { property -> property.name }
val primaryConstructor = T::class.primaryConstructor!!
val args = primaryConstructor.parameters.associate { parameter ->
val property = nameToProperty[parameter.name]!!
@hector6872
hector6872 / delete-darktable-rejected.sh
Created August 18, 2019 12:46
Delete all Darktable rejected and low-rated pictures
#!/bin/sh
if [ -z "$1" ]; then
echo Delete all Darktable rejected pictures
echo
echo "Usage:"
echo $0 [source] --onestar to delete also all pictures with one star rating
exit 1
fi
@hector6872
hector6872 / StickyHeaderItemDecoration.kt
Last active September 11, 2019 14:15
ItemDecorator for sticky headers in Kotlin
import android.graphics.*
import android.view.*
import android.view.MotionEvent.ACTION_DOWN
import androidx.recyclerview.widget.RecyclerView
class StickyHeaderItemDecoration(
parent: RecyclerView,
private val isHeader: (position: Int) -> Boolean
) : RecyclerView.ItemDecoration() {