(C-x means ctrl+x, M-x means alt+x)
The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf
:
# Courtesy http://plumberjack.blogspot.com/2010/12/colorizing-logging-output-in-terminals.html | |
# Tweaked to use colorama for the coloring | |
import colorama | |
import logging | |
import sys | |
class ColorizingStreamHandler(logging.StreamHandler): | |
color_map = { |
# ****************************** | |
# * Quick guide to pythonicity * | |
# * by @csparpa * | |
# ****************************** | |
# === ZEN === | |
import this |
# I am assuming you are running this on ubuntu saucy 13.10 | |
apt-get update | |
apt-get -y install debootstrap schroot aufs-tools | |
modprobe aufs # don't really know what this does | |
mkdir -p /var/chroot | |
# plop down the schroot config for saucy ubuntu chroot | |
cat >/etc/schroot/schroot.conf <<EOF | |
[saucy] | |
description=Ubuntu Saucy (build box) |
#!/bin/sh | |
# Prerequisites: debootstrap and schroot. | |
# Don't forget to adapt YOUR_USER_NAME below. | |
# Use the 32-bit version of Spotify (and Debian). The 64-bit version | |
# often crashes. | |
cd | |
debootstrap --arch i386 squeeze /var/chroot/debian-squeeze-i386 http://ftp.de.debian.org/debian/ |
This guide supports Ubuntu Precise Pangolin 12.04, Ubuntu Oneiric Ocelot 11.10, Ubuntu Natty Narwhal 11.04, and Ubuntu Maverick Meerkat 10.10. Separate guides are available for Ubuntu Lucid Lynx 10.04 and Ubuntu Hardy Heron 8.04. This guide will enable several external encoding and decoding libraries: libfaac (AAC encoder), libfdk-aac (AAC encoder), libmp3lame (MP3 encoder), libopencore-amr (AMR encoder/decoder), librtmp (for additional RTMP protocols), libtheora (Theora encoder), libvorbis (Vorbis encoder), libvpx (VP8 encoder/decoder), and libx264 (H.264 encoder). These are optional and may be omitted if desired. This guide will also install many filters (see the filter list in the [Filtering Guide](https://ffmpeg.org/trac/ffmpeg/wiki/Fi
#! /usr/bin/env python | |
import fileinput | |
import argparse | |
from operator import itemgetter | |
parser = argparse.ArgumentParser() | |
parser.add_argument('--target-mb', action = 'store', dest = 'target_mb', default = 61000, type = int) | |
parser.add_argument('vmtouch_output_file', action = 'store', nargs = '+') | |
args = parser.parse_args() |
@Grapes([ | |
@Grab('redis.clients:jedis:1.5.1'), | |
@GrabConfig(systemClassLoader=true) | |
]) | |
import redis.clients.jedis.* | |
performTest("unencoded", null) {n, e-> | |
n.toString() | |
} |
#! /usr/bin/env python | |
import redis | |
import random | |
import pylibmc | |
import sys | |
r = redis.Redis(host = 'localhost', port = 6389) | |
mc = pylibmc.Client(['localhost:11222']) |
from django.contrib.sessions.backends.base import SessionBase, CreateError | |
from django.conf import settings | |
from django.utils.encoding import force_unicode | |
import redis | |
class SessionStore(SessionBase): | |
""" Redis store for sessions""" | |
def __init__(self, session_key=None): | |
self.redis = redis.Redis( |