Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted on February 15, 2017 at 12:54 AM

re = new RegExp("musicbrainz\.org\/(release|artist)\/([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})","i");
var matches = window.location.href.match(re);
if (matches) {
var type = matches[1]
var mbid = matches[2];
('ul.tabs').append('<a href="/' + type + '/' + mbid + '/edits">Edit history</a></li>');
}