I'm not sure if [`iswitchb`][1] is little known but it's something I useless countless times everyday.  It makes switching buffer that little bit easier.  When you enter `C-x b` to switch buffers `iswitchb` allows you just to enter a unique substring of the buffer name to select it which can often just be a single character.  It's hard to explain but easy to try and once you've tried it you'll never switch it off.

[`partial-completion-mode`][2] does something similar in that it can autocomplete any minibuffer commands.  It works best if it give it a hint by typing any dashes in the commands.  For example, for `M-x yank-rectangle` I can use `M-x y-r [tab]` and have it autocomplete.

  [1]: http://www.gnu.org/software/emacs/manual/html_node/emacs/Iswitchb.html
  [2]: http://www.delorie.com/gnu/docs/emacs/emacs_38.html