This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
// Cleanup sidebar to save space | |
$('.wtf-module').remove(); | |
$('.module.trends').remove(); | |
$('.Footer.module').remove(); | |
// Move tweet box into sidebar | |
$('.timeline-tweet-box').appendTo('.dashboard-left'); | |
$('.timeline-tweet-box img').remove(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Get all IPs to add in YourlsBlacklistIPs plugin for manual blacklisting | |
var allIP = []; | |
$('td.ip').each(function(){ | |
var ip = $(this).text(); | |
allIP.push(ip); | |
}) | |
console.log( allIP.join('\n') ); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--> | |
Non-standard, got spread with iPhone's Safari since 2007, | |
Viewport is officially meant to be manipulated via CSS as per W3C specs: | |
http://dev.w3.org/csswg/css-device-adapt/#the-atviewport-rule | |
<--> | |
<meta name="viewport"> |