start new:
tmux
start new with session name:
tmux new -s myname
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
| #!/bin/sh | |
| # Some things taken from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # Set the colours you can use | |
| black='\033[0;30m' | |
| white='\033[0;37m' | |
| red='\033[0;31m' | |
| green='\033[0;32m' |
| #!/bin/bash | |
| # Based upon - Written by Andy Boutte and David Balderston of howtoinstallghost.com and allaboutghost.com | |
| # updateghost_ami.sh will update your current Amazon ami ghost install to the latest version without you losing any content | |
| if [[ `whoami` != root ]]; then | |
| echo "This script must be run as root" | |
| exit 1 | |
| fi | |
| #Stop Ghost |
| function hello( param ){ | |
| alert( param ); | |
| } |
| // | |
| // AnimatedView.h | |
| // BlocksAnimation | |
| // | |
| // Created by Shaun O'Connor on 13/04/11. | |
| // | |
| #import "AnimatedView.h" | |
| @implementation AnimatedView |
| /** | |
| * Image Cycle - Prototype / Test only | |
| */ | |
| var imageArray = [ 'images/venice_carnival_1.jpg', | |
| 'images/venice_carnival_2.jpg', | |
| 'images/tokyo_sumo_festival_0.jpg', | |
| 'images/tokyo_sumo_festival_1.jpg', | |
| 'images/valencia_tomato_fight_0.jpg', | |
| 'images/valencia_tomato_fight_1.jpg', |
| package com.shaunoconnor.utils.log | |
| { | |
| /** | |
| * ThunderBolt Logger | |
| * http://code.google.com/p/flash-thunderbolt/ | |
| */ | |
| import org.osflash.thunderbolt.Logger; | |
| import flash.utils.getQualifiedClassName; |