Stuff
CSS Zen Garden Submission
Here is my submission to csszengarden.com.
Icons
Prepare for the upcoming movie with these buddy icons:
More Buddy Icons I've Used
Smallest Hello World
What's the smallest binary size for a Hello World! program? Read on...
Recipes
PizzaPotato Salad
UNIX Resource Files
multi-mode.el (put in .emacs-lisp)
Essential Emacs Commands
Ctrl-x,Ctrl-c Exit
Ctrl-g Quit Subcommands (to return to edit mode)
Ctrl-x,Ctrl-f Open A file
Ctrl-x,Ctrl-s Save Current File
Ctrl-x,Ctrl-w Write current buffer to a new filename
# These navigation commands work in bash too.
Ctrl-b Go back one char
Ctrl-f Go forward one char
Ctrl-a Goto beginning of line
Ctrl-e Goto end of line
Ctrl-p Goto previous line
Ctrl-n Goto next line
# Some of these work in bash too.
Ctrl-d Delete char
Ctrl-_ Undo (hit underscore repeatedly to multi-undo)
Ctrl-k Cut from cursor to end-of-line (do twice from start of line to get whole line in memory)
Ctrl-Space Begin mark
Ctrl-w Cut from begin of mark to current position
Meta-w Copy from begin of mark to current position
Ctrl-y Paste contents of memory ("yank" out of memory)
Ctrl-x,b,Enter Toggle between two most recent buffers
Ctrl-x,b,[buf name] Switch to named buffer
Ctrl-x,2 Split window horizontally
Ctrl-x,3 Split window vertically
Ctrl-x,0 Close current window
Ctrl-x,o Switch windows
Meta-x,[function] Invoke function, e.g. java-mode, font-lock-mode, etc.