This one was kind of annoying. I was looking for all the font-awesome icons in a nice sheet so that WARPAINT could design some mockups for a client. Well, of course this sheet doesn't exists.

So I used the following code to grab the icons from the cheatsheet page.

var arr = "";
$('.container .col-md-4').each(function(i, e) {
  arr += e.innerText.slice(0,1) + ', ';
});
console.log(arr);

I then took that output and pasted it into Sublime Text. I split the output into multiple lines, and replaced the commas with double spaces. That was then pasted into Illustrator and exported as SVG.

Voila! There you have this sprite sheet.

You can download it here.

These icons are from version 4.0.2