Skip to content

Instantly share code, notes, and snippets.

View qcasey's full-sized avatar
🦀
New job, ttyl

Quinn Casey qcasey

🦀
New job, ttyl
View GitHub Profile
@abelmatser
abelmatser / a2dp-agent.py
Created May 19, 2021 15:12
a2dp-agent ported to python 3
#!/usr/bin/python3
import sys
import dbus
import dbus.service
import dbus.mainloop.glib
from gi.repository import GLib
AGENT_INTERFACE = "org.bluez.Agent1"
AGENT_PATH = "/test/agent"
@jonpacker
jonpacker / gist:2107554
Created March 19, 2012 10:59
Force unmount a nonresponsive SSHFS
kill -9 <sshfs pid>
fusermount -u <mountpoint>