Server Help

Trash Talk - 2 things

Cheese - Thu Aug 06, 2015 4:57 pm
Post subject: 2 things
2 things ive always wondered:

1) why has there never been a site meta forum for threads about the mgb forums/wiki themselves
seems like it would have helped with organization

2) why has there never been a forums skin chooser
ive always hated sites with eye searing white
Mine GO BOOM - Fri Aug 28, 2015 4:48 pm
Post subject:
1) Make a subreddit?

2) Because these forums are old as fuck and all the custom modifications and security patches have made themes completely broken. Run your own custom CSS for the site (Firefox/Chrome plugins)?
SamHughes - Sat Sep 05, 2015 9:19 pm
Post subject:
I too suffer from the eye-searing white the 3 hours a day I peruse these forums.
Cheese - Mon Sep 07, 2015 10:24 pm
Post subject:
been using greasemonkey for ages but dont spend enough time here to custom skin it
HangsToTheLeft - Fri Oct 02, 2015 12:52 pm
Post subject:
Here Cheese. Been using this for a couple of years to browse these forums.

Code: Show/Hide

// ==UserScript==
// @name          jQuery Example
// @require       http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==

$(function() {
    $("td").each(function() {
        var hue = 'rgb(' + (Math.floor((256-199)*Math.random()) + 200) + ',' + (Math.floor((256-199)*Math.random()) + 200) + ',' + (Math.floor((256-199)*Math.random()) + 200) + ')';
         $(this).css("background-color", hue);
    });
   $("img").each(function() {
       $(this).css('transform', 'rotate(180deg)');
    });
$("b a").text(function () {
    return $(this).text().replace("Cheese", "Cuck").replace("Mine GO BOOM", "Hitler");
});
});
[/code]
Cheese - Fri Oct 02, 2015 6:20 pm
Post subject:
random bg color and sideways pictures, seems helpful
All times are -5 GMT
View topic
Powered by phpBB 2.0 .0.11 © 2001 phpBB Group