Skip to content

Instantly share code, notes, and snippets.

@ChrisBuchholz
ChrisBuchholz / new-xcode-ios-playground.sh
Created October 13, 2014 17:45
New XCode Playground
TIMESTAMP=`date +%s`
PLAYGROUNDDIR=~/Playgrounds/
NEW=$TIMESTAMP.playground
PLAYGROUND=$PLAYGROUNDDIR$NEW
mkdir -p $PLAYGROUND
cat > $PLAYGROUND/section-1.swift <<EOF
// Playground - noun: a place where people can play
@taylor
taylor / .tmate.conf
Created March 27, 2014 15:02
tmate config with a different prefix to avoid tmux and a few sane defaults
## tmate
#set -g prefix C-a
set -g prefix C-]
bind-key ] send-prefix
# Use: C-b C-b to change to last window
#bind-key C-b last-window
bind-key C-] last-window
#####