Sunday, December 26, 2010

Review of the Kindle 3G + Wi-Fi Wireless Reading Device

Kindle 3G Wireless Reading Device, Free 3G + Wi-Fi, 3G Works Globally, Graphite, 6" Display with New E Ink Pearl Technology

I’ve always favored reading actual books versus reading books on a computer. I have resisted e-readers in general, because I don’t buy very many books, but rather trade them, usually on paperbackswap.com. But in my current quest to reduce clutter, I thought I would try reading books in Kindle format.


Kindle software for non-Kindle devices

To test if I would even like reading digital books, I first installed the Kindle readers on my Mac and on my Android phone. I bought one book via the web, and tested out reading on each platform.

Despite the small size, reading Kindle on the Android is not that bad for short amounts of time. If I have a few minutes to wait for something, I’ll often take my phone out and read a few pages from my phone. It was very convenient for me to capture small slices of time I would normally be doing nothing.

When you close the book, Kindle will save your place to synchronize with other devices with the same book. Amazon calls this WhisperSync. This feature is really nice, in that, later in the day, I can read the same book on a different device, and it will synchronize and ask if I want to continue in the new location.

The actual Kindle reader

Being thrilled with this new way of reading books, I decided to bite the bullet and buy the latest Kindle. I went with the 3G + Wifi version of the Kindle (affiliate link). For $50 more than the WiFi-only version, I get free 3G access anywhere and anytime. I thought that this was a good bargain.

When the Kindle arrived, I was amazed at the e-Ink technology. It doesn’t really look like the device is on because the display does not have any glare or glow. The screen really does resemble a printed page more than a computer display. Since there is no backlight or glow, you do need to have a light source to read the Kindle.

The page turning on the Kindle reader seemed a little slow, and the placement of the buttons is a little awkward at first. In the beginning, I would accidentally turn the page while just shifting the reader in my hands. I’m getting better at holding the Kindle so as not to accidentally turn the page. And I’ve ordered a book-like cover for it, which I imagine will help with this awkwardness.

After downloading a few more books (mostly free), I noticed that I could categorize my books into folders within the Kindle. After I get more books loaded onto it, I think this will be more helpful in locating a particular book. It would be nice, however, to create sub-folders, but I can live with only one level of folders for now.

The web browser

I checked out the Kindle’s experimental web browser. It is also a bit awkward at first to move the cursor with the arrow keys. I was able to view Google, as well as my Google Mail account, though. I think if you needed to check your mail quickly without having to wait to boot up a computer, this method would suffice quite well.

Importing PDFs

Recently, I’ve purchased a few e-books that are only in PDF. The Kindle uses it’s own format, though. Books you purchase from the Kindle Store are in AWZ format. The Kindle can also read MOBI format as well.

One way to convert PDF to MOBI is to use Amazon’s conversion service. You email the PDF document to a Kindle email account you set up on Amazon.com. I’ve tried this out on a few documents myself with mixed results. Usually the PDFs that I have downloaded are formatted with text and graphics meant to be read in landscape mode. The books that I converted and sent to my Kindle lost the formatting (of course) with some books even containing blank pages. But the content was still there, and for me, this was acceptable. Of the 4 PDF books I tried to convert, I had one book that did not convert well. There were sentences or paragraphs missing. This is not acceptable to me.

The conversion method I have yet to try is outlined by Benny Lewis in his article How to convert PDFs/daily news/anything to ePUB/mobi for your eReader/Kindle.

Summary

Overall, I’ve been thrilled with the Kindle. I find that I am actually reading a lot more now, and am reading several books at a time. It is nice to flip back and forth between various books to suit my mood. And it is great to be able to save a few trees. Even though I’m a bit late to the party, I’m now finding that reading regular books is so last century and the Kindle is the way to go.

Friday, December 17, 2010

How to configure your blogspot blog to use a custom domain from Namecheap

I recently noticed that the geekythoughtbubbles.com domain name was available. It was a similar tech blog to this. So, I decided to buy the domain with Namecheap (affiliate link).

Reading the Blogger documentation, there are no specific instructions for configuring your Namecheap domain so that Blogger can use your new custom domain. Here is how to do it.

  1. Log into your Namecheap account.
  2. Go to My Account > Manage Domains
  3. Select your new domain.
  4. Under Host Management, select URL Forwarding
  5. Change the row with www by changing the text field to contain ghs.google.com (leave Record Type as CNAME)
  6. Click Save Changes
  7. Follow the rest of the instructions under Update Your Blogger Settings: How do I use a custom domain name on my blog?

Tuesday, December 7, 2010

Enabling virtualization support for Dell Latitude E6400

At work, I have a Dell Latitude E6400 laptop running Windows XP (32-bit). In order to run 64-bit VirtualBox machines, I needed to enable virtualization support. Here’s how to do this:

1. When booting up, select F12
2. Select BIOS setup
3. In the Virtualization Support tree:
    - Virtualization, select Enable, Apply
    - VT for Direct I/O Access, select Enable, Apply
    - Trusted Execution, do not select Enable
4. Select Exit to continue booting into Windows.

Friday, December 3, 2010

How to share a folder from host to guest in VirtualBox

This is documented quite well in the VirtualBox documentation. But I’ve made my own notes here since it’s a task I do often enough, but sometimes still forget.


  1. With the guest machine turned off, open the Settings dialog.
  2. Go to the Shared Folders tab.
  3. Click on the Add Shared Folders button.
  4. Browse for the directory you want to share, and give it a name. In my case, I called the share work and I selected c:\work on my host’s filesystem. Click OK.
  5. Restart your guest machine.
  6. Now you need to mount this shared folder in the guest OS.


In Windows, the share is always named \\vboxsrv\sharename. You can navigate to this via My Network Places. You could also use the net command:

net use q: \\vboxsrv\sharename

In Linux, you use the mount command:

mount -t vboxsf sharename mountpoint

e.g.,

mount -t vboxsf work /mnt/work