trick

Jul 16 2010

Unlock 3G wireless of your Kindle - Switch the country associated with it to United States

Kindle 2 come with a experimental Web browser. Sadly this feature is not officialy available for customers from outside the U.S. Every time you try to access to a page you will get this message "due to local restrictions web browsing is not available for all countries".

Jun 04 2010

Nice CSS to remove links's outline but keep full accessibility

Links get a dashed box when you click on them. This is ugly specially if your link it's an image.

This dash actually show witch link is on focus. Useful if you navigate with tab...

This CSS remove outline but keep accessibility by hidden it only when the user click on the link (the new page is loading).

a:focus {
   outline: 1px dotted;
}
a:active {
  outline: 0;
}

Enjoy!