testing visitor
Monday, October 1, 2007 2:29:45 PM
Wednesday, May 16, 2007 6:10:56 PM
#!/usr/local/bin/perl -l
use strict;
use warnings;
use Devel::Size qw( total_size );
my %a = map {$_ => 1} qw(a b c d e f g h i j k l m n o p q r s t u v w x y z);
print 'after init hash: ', total_size(\%a);
keys %a = 1_000_000;
print 'after preallocate 1_000_000 elements: ', total_size(\%a);
%a = ( );
print 'after %a = ( ): ', total_size(\%a);
undef %a;
print 'after undef %a: ', total_size(\%a);
Friday, May 11, 2007 1:38:02 AM
I'd bet they just keep the latest additions with top score on the top| M | T | W | T | F | S | S |
|---|---|---|---|---|---|---|
|
| ||||||
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | ||||
About the emerging science of tags ;)
Nice and updated blog about new apps for os x. Not very technical, but still.. keeps me up to date on the usable stuff.
programming and human factors
A Reverse Engineer's Blog.
Web magazine for people who make websites. Fresh every Friday.