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 by xproplayer on August 25, 2018

New Paste 1 (Auto Detect)

// ==UserScript==
// @name         New Posts Shoutbox
// @namespace    woot
// @version      1.0
// @description  lol this is cool
// @author       You (aka Skyrossm)
// @match        https://www.seriousgmod.com/chat/
// @grant        none
// ==/UserScript==

(function() {
    $('div[class="sidebar"]').append('<style>.threadListItem{overflow:hidden;zoom:1;margin:0;padding:5px 0;border-top:1px solid #2c2c2c;border-bottom:1px solid #161616}.threadListItem:first-child{border-top:none;padding-top:0}.threadListItem:last-child{border-bottom:none}.threadListItem .avatar{float:left;font-size:0}.threadListItem .avatar img{width:24px;height:24px}.threadListItem .messageInfo{margin-left:34px}.threadListItem .title{padding:1px 0}.threadListItem .additionalRow,.threadListItem .title{overflow:hidden;white-space:nowrap;word-wrap:normal;text-overflow:ellipsis}</style><div id="threadFrame" class="section threadList"></div>');
    $('#threadFrame').load('https://www.seriousgmod.com/ .threadList > div');
})();

setInterval(function(){
    $('#threadFrame').load('https://www.seriousgmod.com/ .threadList > div');
}, 60000);