
960 Grid System CSS is cool!
Put the Blueprint CSS Grid Generator to good use in your projects.
Use the reset file by Eric Meyer.


module C whereimport Data.Typeableimport Data.Maybenewtype W a = W{unW :: a}instance Typeable (W a) where typeOf _ = typeOf ()bad_cast x = unW . fromJust . cast $ W x-- inferred type: bad_cast :: a -> btest1 = bad_cast True ++ ""

;;;;Show line numbers(require 'linum);;;;Add a space after each line number(setq linum-format "%d ")
;;;;Enable display of line numbers for all open files
(global-linum-mode 1)
The text of the poem follows:
<>!*''#
^"`$$-
!*=@$_
%*<>~#4
&[]../
|{,,SYSTEM HALTED
The poem can only be appreciated by reading
it aloud, to wit:
Waka waka bang splat tick tick hash,
Caret quote back-tick dollar dollar dash,
Bang splat equal at dollar under-score,
Percent splat waka waka tilde number four,
Ampersand bracket bracket dot dot slash,
Vertical-bar curly-bracket comma comma
CRASH.
SRC: INFOCUS magazine. Original authors, Fred Bremmer and Steve Kroese of Calvin College & Seminary of Grand
Rapids, MI.


d1
->d2
->->d3
->->->d4
->d5
->->d6
find . -printf '%d\n' | sort -n | tail -1
find -type d | awk -F'/' '{print NF-1 "\n"}' | sort -n | tail -1basedir="/home/something/"
find "$basedir" | sed "s#$basedir##g" | awk -F'/' '{print NF}' | sort -n | tail -1
basedir="/home/something/"
find "$1" | gawk -vbasedir="$1" -F/ '{gsub(basedir, "", $0); print NF-1}' | sort -n | tail -1