Skip to content

Instantly share code, notes, and snippets.

@kevc
kevc / emoji-shortcuts.plist
Last active November 20, 2025 20:23
.plist that you can drag and drop into Text Replacement on MacOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>phrase</key>
<string>👋</string>
<key>shortcut</key>
<string>:wave:</string>
</dict>

Keybase proof

I hereby claim:

  • I am kevc on github.
  • I am kevc (https://keybase.io/kevc) on keybase.
  • I have a public key ASAO4ksBgdO10hwZ5JmrHpNytwXFsTUjngUZz-yP3nggrAo

To claim this, I am signing this object:

@kevc
kevc / RPM.kt
Created April 30, 2016 15:08
The interface required to define a Reactive Presentation Model
interface Model<I : Sources, O : Sinks> {
fun setUp(sources: I): O
fun tearDown()
interface Sources
interface Sinks
}