I hereby claim:
- I am realityexpander on github.
- I am realityexpander (https://keybase.io/realityexpander) on keybase.
- I have a public key ASAhz4adTGeJiLlop-BdPQAsSj36DbtEK5eY0hOG_s-beQo
To claim this, I am signing this object:
| <style> | |
| /* CSS Grid Layout */ | |
| .grid-container { | |
| width: 600px; | |
| -webkit-column-count: 3; | |
| -moz-column-count: 3; | |
| column-count: 3; | |
| -webkit-column-gap: 15px; | |
| -moz-column-gap: 15px; |
| fun interface Translatable { | |
| fun translate( | |
| fromLanguage: Language, | |
| fromText: String, | |
| toLanguage: Language | |
| ): String | |
| fun whackamole() { |
| // iosMain/…/Platform.kt | |
| import kotlinx.datetime.LocalDateTime | |
| // Note: no need to define CommonParcelize here (bc its @OptionalExpectation) | |
| actual interface CommonParcelable // not used on iOS | |
| // Note: no need to define CommonTypeParceler<T,P : CommonParceler<in T>> here bc its an @OptionalExpectation | |
| actual interface CommonParceler<T> // not used on iOS | |
| actual object LocalDateTimeParceler : CommonParceler<LocalDateTime> // not used on iOS |
| // androidMain/…/Platform.kt | |
| import android.os.Parcel | |
| import android.os.Parcelable | |
| import kotlinx.datetime.LocalDateTime | |
| import kotlinx.datetime.toLocalDateTime | |
| import kotlinx.parcelize.Parceler // NOTE: kotlinx.parcelize.* | |
| import kotlinx.parcelize.Parcelize | |
| import kotlinx.parcelize.TypeParceler |
| // commonMain/…/Platform.kt | |
| import kotlinx.datetime.LocalDateTime | |
| // For Android @Parcelize | |
| @OptIn(ExperimentalMultiplatform::class) | |
| @OptionalExpectation | |
| @Target(AnnotationTarget.CLASS) | |
| @Retention(AnnotationRetention.BINARY) | |
| expect annotation class CommonParcelize() |
I hereby claim:
To claim this, I am signing this object:
| adb help // List all comands | |
| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader |
| /* | |
| Problem: | |
| ['Tokyo', 'London', 'Rome', 'Donlon', 'Kyoto', 'Paris'] | |
| // YOUR ALGORITHM |