As configured in my dotfiles.
start new:
tmux
start new with session name:
| //create our "FOO" namespace | |
| window.FOO = window.FOO || {}; | |
| FOO.app1 = { | |
| bar : 'foo', | |
| init : function(){ | |
| //this wont work as expected since timeout changes scope |
| forceRerenderOnWebkit: -> | |
| @el.parentNode.style.cssText += ';-webkit-transform:rotateZ(0deg)' | |
| @el.parentNode.offsetHeight | |
| @el.parentNode.style.cssText += ';-webkit-transform:none' |
As configured in my dotfiles.
start new:
tmux
start new with session name:
| -- show running queries (pre 9.2) | |
| SELECT procpid, age(clock_timestamp(), query_start), usename, current_query | |
| FROM pg_stat_activity | |
| WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
| ORDER BY query_start desc; | |
| -- show running queries (9.2) | |
| SELECT pid, age(clock_timestamp(), query_start), usename, query | |
| FROM pg_stat_activity | |
| WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
Through both a yearning for familiarity and the knowledge that corporate computer defenestration is a terminal act, I have arduously forged this list of tips, less useful for those on a quest to be an ultimate iUser than for those who want to retain a glimpse, however fleeting, of the Windows/Linux they used to know.
-- [tsmith512][]