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
//auto-resizing ad-banners | |
var resizeInterval = window.setInterval(function () { | |
$iframe = $('#bigbanner iframe'); | |
$iframe.attr('width', '100%').attr('height', '100%'); //reset | |
$doc = $($iframe.get(0).contentWindow.document); | |
$iframe.attr('width', $doc.width()).attr('height', $doc.height()); | |
}, 1000); |
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
#!/usr/bin/perl | |
# Copyright Erik Jacobson - [email protected] | |
use warnings; use strict; | |
use Statistics::Descriptive; | |
my $webuser = 'www-data'; # The user your apache children run as. I ignore the root process. | |
my $command = 'apache2'; # The name of your processes as they appear to the "top" command. | |
my @top = `top -bn1`; |
NewerOlder