January 2, 2009
Just a quick test of the syntax highlighter. Seems to be working, but it's ugly. This post also serves as a note to self to fix the bleeding stylesheet and make some readable colors.perl Code
#!/usr/bin/perl
use strict;
use integer;
# the nth element of the fibonacci series
# param n - an int >= 0
# return an int >= 0
sub fib($) {
my $n = shift, $a = 1, $b = 1;
($a, $b) = ($a + $b, $a) until (--$n < 0);
return $a;
}
print fib(10);Posted on: Friday, January 2, 2009 09:50pm
Too Much Information
Page created in about...0.037336111068726 seconds
Tagged with: test
Delete | Edit
File Sizes
This doesn't include support libraries, like magpierss, thickbox, etc...
It also (obviously) doesn't count sql usage for saved posts.
conf.php -> 708 bytescss/black.css -> 3032 bytes
index.php -> 16831 bytes
admin/delete.php -> 983 bytes
admin/mobadd.php -> 1039 bytes
admin/post_add.php -> 7900 bytes
includes/del.includes.php -> 3357 bytes
Total -> 33850 bytes
comments