Skip to content

Instantly share code, notes, and snippets.

@ctrl-shift
ctrl-shift / flash.ds
Last active December 20, 2015 00:59
fix for fullscreen flash (devilspie)
(if (or (is (application_name) "plugin-container") (is (application_name) "operapluginwrapper-native"))
(begin (focus)))
@ctrl-shift
ctrl-shift / gist:5618320
Created May 21, 2013 08:27
postgres terminate all connections to db
select pg_terminate_backend(pid)
from pg_stat_activity
where datname = 'db name'