testing visitor
Monday, 1. October 2007, 14:29:45
Wednesday, 16. May 2007, 18:10:56
#!/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, 11. May 2007, 01:38:02
| 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 |
| 30 | ||||||
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.