Why don't you just use the exact same algorithm as the password composer?
- Pick a master password
- Take the application/machine name for which you want a password
- Concatenate the two (or shuffle)
- Apply a code you can do in your head, like Caesar's cipher
- Take the first X characters (15 is usually a good length for secure passwords)
Example:
Master Password: kaboom
Machine Name: hal9000
Shuffle: khaablo9o0m00
Transposition table: shift 5 left
abcdefghijklmnopqrstuvwxyz 1234567890
vwxyzabcdefghijklmnopqrstu 6789012345
Result: fcvvwgj4j5h55
You could use as complex a substitution as your head can do reliably (with or without a paper). You could also use a different table for each password (say, deduce the table from the first letter of each machine name). As long as your master password is secure, there's nothing to fear about the simplicity of the algorithm.
