When the page first loads, the clamp is closed

Once the content finishes loading, the clamp expands

And expands

Nice.
The semi-personal blog of Jerrold Poh



public class Foo {
private static final Map<String, Object> CACHE;
static {
CACHE = new HashMap<String,Object>();
CACHE.put("foo", new Object());
CACHE.put("bar", new Object());
}
}But I saw this the other daypublic class Foo {
private final List<String> emailAddresses;
{
emailAddresses = new ArrayList<String>();
emailAddresses.add("foo@bar.com");
}
}