DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Terribly Useful Regex To Run Before Committing Code
// I use this regex/replace before I commit locally and before creating patches for Mozilla
// Will trim out random spaces/tabs at end of lines or if they take up the whole line.
s/^[ \t]+$|[ \t]+$//





