Initialize Perl hash value as a hash impossible

The following script would fail

use strict;

my %hash = (-id => 10, -name => ‘Hongyu’);
my %hash2;

$hash2{hash} = %hash;
print $hash2{hash}{-id}, “\n”;

The problem here is that initializing a Perl hash value with a hash is impossible, need to use reference instead

use strict;

my %hash = (-id => 10, -name => ‘Hongyu’);
my %hash2;

$hash2{hash} = \%hash;
print $hash2{hash}->{-id}, “\n”;

Tuning Eclipse on Linux

Talk about configuration of Eclipse, http://www.eclipsezone.com/eclipse/forums/t61618.html

My office Linux server has dual CPUs and 2 GB memory, and the parameters that I am using are
-vmargs -Xms128M -Xmx512M -XX:PermSize=128M -XX:MaxPermSize=256M

Crime rate in LA metro area

Based on Cityrating.com , violent/property

Thousand Oaks: 0.27/0.33
Pasadena: 0.83/0.74
Glendale: 0.30/0.44
Burbank: 0.46/0.59
Curver city: 0.76/0.66
Alhambra: 0.54/0.63
Monterey Park: 0.45/0.50
San Gabriel: 0.83/0.47