start new:
tmux
start new with session name:
tmux new -s myname
| javascript:q=location.href;if(document.getSelection){d=document.getSelection();}else{d='';};p=document.title;void(open('https://pinboard.in/add?url='+encodeURIComponent(q)+'&description='+encodeURIComponent(d)+'&title='+encodeURIComponent(p),'Pinboard','toolbar=no,width=700,height=350')); |
| javascript:(function(){var enc=encodeURIComponent,w=window,frames=w.frames,d=document,tn=w.getSelection?w.getSelection():(d.getSelection)?d.getSelection():(d.selection?d.selection.createRange().text:0),pu=w.location.href,isGMail=w.location.host.match(/mail\.google\.com/),tt=pt=d.title,subjSpans=d.getElementsByClassName("hP"),i,url;if(isGMail){if(subjSpans){tt=subjSpans[0].innerText}else{tt=d.title.substring(d.title.indexOf("-")+1,d.title.lastIndexOf("-")).replace(/^ +/,"").replace(/ +$/,"")};if(tn!="")tn+="\n\n";tn+="From email subject:("+tt+")\n"+pu;pu="https://mail.google.com/mail/u/0/?qs=true&search=query&q=subject:("+enc(tt)+")"};url='omnifocus:///add?note='+enc(tn+"\n"+pu)+'&name='+enc(tt);w.location.href=url})(); |
| javascript:(function(){ | |
| var enc=encodeURIComponent, | |
| w=window, | |
| frames=w.frames, | |
| d=document, | |
| tn=w.getSelection?w.getSelection():(d.getSelection)?d.getSelection():(d.selection?d.selection.createRange().text:0), | |
| pu=w.location.href, | |
| isGMail=w.location.host.match(/mail\.google\.com/), | |
| tt=pt=d.title, | |
| subjSpans=d.getElementsByClassName("hP"),i,url; |
| #!/bin/bash | |
| # Setup deployment target for Nginx + Python/uWSGI + Supervisor + Git | |
| # From: https://gist.github.com/1210041 | |
| function usage() { | |
| cat << EOF | |
| Usage: $0 PROJECT_NAME [DOMAIN] [OPTIONS] | |
| Options: | |
| -y No prompts, assume yes to all. |
| import sys | |
| import tempfile | |
| import hotshot | |
| import hotshot.stats | |
| from django.conf import settings | |
| from cStringIO import StringIO | |
| class ProfileMiddleware(object): | |
| """ | |
| Displays hotshot profiling for any view. |
| """Run PEP8 on all Python files in this directory and subdirectories as part of the tests.""" | |
| __author__ = 'Christopher Swenson' | |
| __email__ = 'chris@caswenson.com' | |
| __license__ = 'CC0 http://creativecommons.org/publicdomain/zero/1.0/' | |
| import os | |
| import os.path | |
| import unittest |
| name | default_version | installed_version | comment | |
| ------------------------+-----------------+-------------------+--------------------------------------------------------------------- | |
| pg_buffercache | 1.0 | | examine the shared buffer cache | |
| earthdistance | 1.0 | | calculate great-circle distances on the surface of the Earth | |
| pg_freespacemap | 1.0 | | examine the free space map (FSM) | |
| intagg | 1.0 | | integer aggregator and enumerator (obsolete) | |
| plperl | 1.0 | | PL/Perl procedural language | |
| sslinfo | 1.0 | | information about SSL certificates | |
| btree_gist | 1.0 | | support for indexing common datatypes in GiST | |
| fuzzystrmatch | 1.0 |
| #/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # git hook to run a command after `git pull` if a specified file was changed | |
| # Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
| check_run() { | |
| echo "$changed_files" | grep --quiet "$1" && eval "$2" |