I hereby claim:
- I am rock3r on github.
- I am rock3r (https://keybase.io/rock3r) on keybase.
- I have a public key ASAFs_czYB4sp1Df7-lZ0TUdAT-5jye6IxjyE9OKPIVoIwo
To claim this, I am signing this object:
| <scheme name="Seb's Fancy Custom Hipster Colour Scheme v1.0" version="142" parent_scheme="Darcula"> | |
| <option name="FONT_SCALE" value="1.0" /> | |
| <metaInfo> | |
| <property name="created">2020-01-28T16:17:01</property> | |
| <property name="ide">idea</property> | |
| <property name="ideVersion">2020.1.0.0</property> | |
| <property name="modified">2020-01-28T16:17:11</property> | |
| <property name="originalScheme">Solarized Seeb</property> | |
| </metaInfo> | |
| <option name="LINE_SPACING" value="1.25" /> |
| package dev.sebastiano.utils.gradle | |
| import org.gradle.api.* | |
| import java.io.* | |
| // Note: you need to have a dependency on `gradleApi()` in your buildSrc project | |
| val Project.gitRoot: File? | |
| get() { | |
| fun File.isGitRoot() = isDirectory && File(this, ".git").isDirectory |
| tasks.register("kotlinPluginVersions") { | |
| description = "Shows the resolved Kotlin plugin version for all subprojects" | |
| group = "documentation" | |
| doLast { | |
| subprojects.forEach { subproject -> | |
| System.err.println("****** Project ${subproject.name} plugins ******") | |
| subproject.plugins.filterIsInstance<KotlinBasePluginWrapper>() | |
| .forEach { | |
| System.err.println("Kotlin plugin ${it.kotlinPluginVersion}") | |
| } |
| package me.seebrock3r.util | |
| /** | |
| * Calls the specified function [block] as a side effect of a previous expression. | |
| * | |
| * This is similar to [run] in that it's used to chain side effects, but it | |
| * doesn't return anything and the block doesn't have any parameters. If your | |
| * side effects require either of those things, use [run] or [also] instead. | |
| * | |
| * @see run |
| package me.seebrock3r.util | |
| import me.seebrock3r.util.CacheableProperty.CachedValue.* | |
| import kotlin.properties.* | |
| import kotlin.reflect.* | |
| import kotlin.reflect.jvm.* | |
| fun <T> cache(producer: () -> T): CacheableProperty<T> = CacheableProperty(producer) | |
| class CacheableProperty<out T>(val producer: () -> T) : ReadOnlyProperty<Any, T> { |
| package me.seebrock3r.common.widget | |
| import android.graphics.Canvas | |
| import android.graphics.Paint | |
| import android.graphics.Rect | |
| import android.view.View | |
| import androidx.annotation.ColorInt | |
| import androidx.annotation.Px | |
| import androidx.core.graphics.withTranslation | |
| import androidx.core.view.children |
| /* | |
| * ---------------------------------------------------------------------------- | |
| * "THE BEER-WARE LICENSE" (Revision 42): | |
| * Sebastiano Poggi wrote this file. As long as you retain this notice you | |
| * can do whatever you want with this stuff. If we meet some day, and you think | |
| * this stuff is worth it, you can buy me a beer in return. Seb | |
| * ---------------------------------------------------------------------------- | |
| * Feel free to attribute this code in compiled products if you feel like it, | |
| * but it's not required. | |
| */ |
| package me.seebrock3r.extensions.reactivex | |
| import io.reactivex.Flowable | |
| import io.reactivex.Observable | |
| import io.reactivex.rxkotlin.ofType | |
| @Deprecated( | |
| message = "This is just a shorthand for RxKotlin's ofType()", | |
| replaceWith = ReplaceWith("ofType<R>()", "io.reactivex.rxkotlin.ofType") | |
| ) |
| #!/bin/sh | |
| # License for any modification to the original (linked below): | |
| # ---------------------------------------------------------------------------- | |
| # "THE BEER-WARE LICENSE" (Revision 42): | |
| # Sebastiano Poggi wrote this file. As long as you retain | |
| # this notice you can do whatever you want with this stuff. If we meet some day, | |
| # and you think this stuff is worth it, you can buy us a beer in return. | |
| #### SETUP/USAGE INSTRUCTIONS #### |
I hereby claim:
To claim this, I am signing this object: