A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
| tell application "Google Chrome" | |
| set windowList to every tab of every window whose URL starts with "https://mail.google.com" | |
| repeat with tabList in windowList | |
| set tabList to tabList as any | |
| repeat with tabItr in tabList | |
| set tabItr to tabItr as any | |
| delete tabItr | |
| end repeat | |
| end repeat | |
| end tell |
| -- 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%' |
| import os | |
| from cStringIO import StringIO | |
| import tarfile | |
| from flask import Flask, Response | |
| app = Flask(__name__) | |
| def get_string_io_len(s): |
| sudo add-apt-repository ppa:pitti/postgresql | |
| sudo apt-get update | |
| sudo apt-get install postgresql-9.2 postgresql-server-dev-9.2 postgresql-contrib-9.2 | |
| sudo su -l postgres | |
| psql -d template1 -p 5433 | |
| CREATE EXTENSION IF NOT EXISTS hstore; | |
| CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; | |
| service postgresql stop | |
| /usr/lib/postgresql/9.2/bin/pg_upgrade -b /usr/lib/postgresql/9.1/bin -B /usr/lib/postgresql/9.2/bin -d /var/lib/postgresql/9.1/main/ -D /var/lib/postgresql/9.2/main/ -O "-c config_file=/etc/postgresql/9.2/main/postgresql.conf" -o "-c config_file=/etc/postgresql/9.1/main/postgresql.conf" |
rsync (Everyone seems to like -z, but it is much slower for me)
| /* | |
| * UIImage+HTLong.h | |
| * | |
| * DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| * Version 2, February 2013 | |
| * | |
| * Copyright (C) 2013 GunWoo Choi | |
| * | |
| * Everyone is permitted to copy and distribute verbatim or modified | |
| * copies of this license document, and changing it is allowed as long |
| gifify() { | |
| if [[ -n "$1" ]]; then | |
| if [[ $2 == '--good' ]]; then | |
| ffmpeg -i $1 -r 10 -vcodec png out-static-%05d.png | |
| time convert -verbose +dither -layers Optimize -resize 600x600\> out-static*.png GIF:- | gifsicle --colors 128 --delay=5 --loop --optimize=3 --multifile - > $1.gif | |
| rm out-static*.png | |
| else | |
| ffmpeg -i $1 -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > $1.gif | |
| fi | |
| else |
| // | |
| // CrashlyticsLogger.h | |
| // | |
| // Created by Julien Grimault on 4/1/13. | |
| // | |
| // | |
| #import "DDLog.h" | |
| @interface CrashlyticsLogger : DDAbstractLogger |
| // Developer/Library/Frameworks/SenTestingKit.framework/Headers/SenTestCaseRun.h | |
| SENTEST_EXPORT NSString * const SenTestCaseDidStartNotification; | |
| SENTEST_EXPORT NSString * const SenTestCaseDidStopNotification; | |
| SENTEST_EXPORT NSString * const SenTestCaseDidFailNotification; | |
| // Developer/Library/Frameworks/SenTestingKit.framework/Headers/SenTestDistributedNotifier.h | |
| SENTEST_EXPORT NSString * const SenTestNotificationIdentifierKey; | |
| // Developer/Library/Frameworks/SenTestingKit.framework/Headers/SenTestSuiteRun.h | |
| SENTEST_EXPORT NSString * const SenTestSuiteDidStartNotification; |