Skip to content

Instantly share code, notes, and snippets.

@eismog
eismog / layout.kbd.json
Last active February 23, 2018 15:01
YD60BLE
[
[
{
"a": 0
},
"~\n`\n\n\nEsc\n`",
{
"a": 4
},
"!\n1\n\n\nF1",
@scottgwald
scottgwald / logcat_monitor.py
Last active May 15, 2023 08:00
monitor logcat for a string match
#! /usr/bin/env python
# from http://stackoverflow.com/questions/11524586/accessing-logcat-from-android-via-python
import Queue
import subprocess
import threading
import datetime
class AsynchronousFileReader(threading.Thread):
'''