start new:
tmux
start new with session name:
tmux new -s myname
From: Chris DeSalvo <[email protected]> | |
Subject: Why we can't process Emoji anymore | |
Date: Thu, 12 Jan 2012 18:49:20 -0800 | |
Message-Id: <[email protected]> | |
--Apple-Mail=_6DEAA046-886A-4A03-8508-6FD077D18F8B | |
Content-Transfer-Encoding: quoted-printable | |
Content-Type: text/plain; | |
charset=utf-8 |
# Read a random word from the dictionary and try to get its definition from | |
# Merriam-Webster. | |
function word-of-the-day { | |
local file="${1:-/usr/share/dict/words}"; | |
if ! [ -r "$file" ]; then | |
echo "Cannot read from dictionary file: $file" 1>&2; | |
return 1; | |
fi; | |
local IFS=$'\n' words=($(<"$file")); | |
local num_words=${#words[@]}; |
900 REM *** CURSOR VARIABLES ** | |
* | |
910 SPEED= 255 | |
920 MDY% = 260 | |
930 DLY% = MDY% | |
940 CHAR$ = "" | |
950 X = 1 | |
960 Y = 1 | |
970 DIR = 1 | |
1000 REM *** BOOT SEQUENCE *** |
#! /usr/bin/env python | |
""" Convert values between RGB hex codes and xterm-256 color codes. | |
Nice long listing of all 256 colors and their codes. Useful for | |
developing console color themes, or even script output schemes. | |
Resources: | |
* http://en.wikipedia.org/wiki/8-bit_color | |
* http://en.wikipedia.org/wiki/ANSI_escape_code |
/* | |
I've wrapped Makoto Matsumoto and Takuji Nishimura's code in a namespace | |
so it's better encapsulated. Now you can have multiple random number generators | |
and they won't stomp all over eachother's state. | |
If you want to use this as a substitute for Math.random(), use the random() | |
method like so: | |
var m = new MersenneTwister(); |