Skip to content

Instantly share code, notes, and snippets.

bind-key z run pane-maximize
#!/bin/zsh
datetime=`date "+%y-%m-%d_%H:%M:%S"`
basedir=~/coinssnap/$datetime
mkdir $basedir
for p in acacia burnet cosmos ; do
for i in {1..50} ; do
ssh -o ConnectTimeout=1 $p`printf %02d $i` "coinssnap_sub $basedir 10" &
@iori-yja
iori-yja / installing-ghc7.2-linux.md
Created January 8, 2012 16:58 — forked from beastaugh/installing-ghc7.2-osx10.7.md
Easy install way of ghc7.2 and cabal on linux.

Installing GHC 7.2 on Linux

This is a brief and bare-bones guide to getting GHC 7.2 and the cabal-install tool (the two basic things you'll need to do Haskell development) up and running on a new Linux install.

The instructions given here worked for me, but YMMV. My environment is Debian GNU/Linux, sid(unstable).