This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgbase = ki-shell | |
pkgdesc = Kotlin Language Interactive Shell | |
pkgver = 0.3.2 | |
pkgrel = 1 | |
url = https://github.com/Kotlin/kotlin-interactive-shell | |
arch = any | |
license = APACHE | |
depends = java-runtime | |
source = https://repo1.maven.org/maven2/org/jetbrains/kotlinx/ki-shell/0.3.2/ki-shell-0.3.2-archive.zip | |
md5sums = af50d913bd362facf6b4244b1a682c0f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.os.Parcel | |
import kotlinx.parcelize.Parceler | |
import kotlinx.serialization.BinaryFormat | |
import kotlinx.serialization.ExperimentalSerializationApi | |
import kotlinx.serialization.KSerializer | |
/** | |
* This class allows any [kotlinx.serialization.Serializable] type to be easily used within a | |
* [kotlinx.parcelize.Parcelize] type without implementing [android.os.Parcelable]. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
img { | |
filter: url(#invert); | |
} | |
</style> | |
<svg style="display: none;"> | |
<defs> | |
<filter id="invert"> | |
<feColorMatrix in="SourceGraphic" type="matrix" values="0.402 -1.174 -0.228 0 1 -0.598 -0.174 -0.228 0 1 -0.598 -1.174 0.772 0 1 0 0 0 1 0"></feColorMatrix> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"include" : [ | |
"default/direct" | |
], | |
"define": { | |
"keymap": { | |
"A-k": "set-input-mode-hiragana", | |
"A-l": "set-input-mode-latin", | |
"C-j": "convert-hiragana", | |
"C-k": "convert-katakana", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.lang.reflect.Parameter | |
import java.util.stream.Stream | |
import kotlin.reflect.KFunction | |
import kotlin.reflect.KParameter | |
import kotlin.reflect.full.callSuspendBy | |
import kotlin.reflect.full.functions | |
import kotlin.reflect.full.hasAnnotation | |
import kotlin.reflect.full.isSubtypeOf | |
import kotlin.reflect.full.isSupertypeOf | |
import kotlin.reflect.typeOf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euo pipefail | |
declare -a ARGS=() INOTIFY_ARGS | |
while (($#)); do | |
case $1 in | |
--) break;; | |
*) ARGS+=("$1");; | |
esac | |
shift | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Desktop Entry] | |
Name=Browser chooser | |
Exec=/usr/local/bin/crostini-browser.sh %U | |
MimeType=text/html;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;x-scheme-handler/mailto; | |
Type=Application | |
NoDisplay=true | |
OnlyShowIn=Never |
OlderNewer