Friday, June 12, 2009

Xmarks (formerly foXmarks)

Xmarks (formerly foXmarks) is very cool. You can sync your bookmarks across machines and across browsers. This started with Firefox, but since it works with multiple browsers now, they changed the name.

iGoogle has a gadget too!

I looked this up and started using it this morning, after yesterday's iGoogle homepage fubar-ness. My links were all gone. They came back this morning, and I manually loaded them into Xmarks.

Tuesday, June 2, 2009

Gas: Yaris vs. Honda Shadow

You'd think that riding my motorcycle to work would save a lot of gas money, but it's really not that much.

Here's the breakdown...

Monday, June 1, 2009

Meebo puzzler

Meebo posted a JavaScript Puzzle today. The goal is to create a one line JavaScript function that takes any number of arguments, sorts them, and returns the sorted list.

I came up with this:

function SortArguments()
{
 return Array.prototype.slice.call(arguments).sort();
}