Amazon announced today a new Kindle version. Some features:
But the best feature of this e-reader is probably the price. The WI-FI version is just 139$ and the 3G + WI-FI is 189$.
Will be released on August the 27th, available today for pre-order.
TheTimezoneConverter.com is a site meant to quickly convert times from one timezone to another.
via [One Thing Well]
In Java 1.6.0_21, the company field was changed from ‘Sun Microsystems, Inc’ to ‘Oracle.’ Apparently not the best idea, because some applications depend on that field to identify the virtual machine. All Eclipse versions since 3.3 (released 2007) until and including the recent Helios release (2010) have been reported to crash with an OutOfMemoryError due to this change. This is particularly funny since the update is deployed through automatic update and suddenly applications cease to work.
And I love this comment also: “That’s the oracle bug”
I’ve been using TextWrangler as default text editor in Mac for some time now and today I’ve been confronted with a small problem, I had an xml file that wasn’t formated at all and I wanted a way to easily format the file. Searched in the Text Wrangler menus and didn’t found a tidy option so I googled my problem.
As I expected, I wasn’t the first one to have this problem so I quickly found a solution. And after a minute of work I had my XML file indented and formated as I would.
So … here are the steps I did:
#!/bin/sh
xmllint --c14n "$*" | XMLLINT_INDENT=$'t' xmllint --format -
And there you have it, now if you go to the #! menu, Unix Filters submenu you will see your Format XML.sh, click it and your xml file will be automatically formated.