Samuel Taylor Coleridge (via Contact):

It is not impossible that to some infinitely superior being the whole universe may be as one plain, the distance between planet and planet being only the pores in a grain of sand, and the spaces between system and system no greater than the intervals between one grain and the grain adjacent.

Morality clauses in domain registration

GoDaddy has received a lot of bad press for their support of the Stop Online Privacy Act (SOPA), which they helped write and from whom they are exempt. However, GoDaddy and many other registrars should be avoided for more simple reasons.

From the GoDaddy Legal Agreement:

Go Daddy may also cancel the registration of a domain name, after thirty (30) days, if that name is being used, as determined by Go Daddy in its sole discretion, in association with spam or morally objectionable activities. Morally objectionable activities will include, but not be limited to:

  • Activities designed to defame, embarrass, harm, abuse, threaten, slander or harass third parties;
  • Activities prohibited by the laws of the United States and/or foreign territories in which you conduct business;
  • Activities designed to encourage unlawful behavior by others, such as hate crimes, terrorism and child pornography;
  • Activities that are tortious, vulgar, obscene, invasive of the privacy of a third party, racially, ethnically, or otherwise objectionable;
  • Activities designed to impersonate the identity of a third party; and
  • Activities designed to harm or use unethically minors in any way.

In response, many are switching to Namecheap. This registrar tends to play contrarian with GoDaddy so fortunately they are against SOPA. However, from the Namecheap Registration Agreement: (Namecheap has removed their morality clause, see below.)

Namecheap may also cancel the registration of a domain name, after thirty (30) days, if that name is being used, as determined by Namecheap in its sole discretion, in association with spam or morally objectionable activities (as well as any activities set forth in Section 4 above). Morally objectionable activities will include, but not be limited to

  • activities designed to defame, embarrass, harm, abuse, threaten, slander or harass third parties;
  • activities prohibited by the laws of the United States and/or foreign territories in which you conduct business;
  • activities designed to encourage unlawful behavior by others, such as hate crimes, terrorism and child pornography;
  • activities that are tortious, vulgar, obscene, invasive of the privacy of a third party, racially, ethnically, or otherwise objectionable; activities designed to impersonate the identity of a third party;
  • and activities designed to harm or use unethically minors in any way.

Both have nearly identical language. These clauses leave a bitter taste in my mouth.

Should I really be held to the backwards laws of “foreign territories in which you conduct business?” Software sales are global, I interact with many customers in very dangerous nations.

Who determines what is “objectionable?” Certainly the test should be legality not questionability. The internet is the backbone of the economy and vital for freedom of expression. Depending upon corporations like this, especially those in violent support of SOPA, leaves wide a huge vulnerability in communication.

Let’s not get started on obscene.

What can you do about it? Support a better registrar. I use Gandi whose motto is “no bullshit.” No morality clause, and easy-to-read legal agreements.

Addendum (2011-12-25): As pointed out in this Hacker News thread, Gandi has a similar clause. Hover (Tucows) doesn’t feature any of these crazy terms. A statement from the GM of Hover discusses why these clauses exist and why they don’t have them:

Generally, most of the power a registrar requires to prevent the bad guys from doing bad things comes from national laws and not all these extra clauses. We (Hover/Tucows) find that all these extra conditions just make it harder for our customers to do business with us and so we’ve left out as much as we can and rely mostly on national laws to get what we need done.

Addendum (2011-12-29): Namecheap has removed their morality clause. I am happy to have effected change on this issue, and it is a move in the right direction. :)

Migrating from Kindle to iBooks

I started off reading eBooks from the Amazon Kindle store. As time has progressed, I’ve found myself using my physical Kindle less and less. Partly because I forget to charge it, and partly because I can never get the lighting in my favorite reading locations quite right. And at night? Forget about it.

So I’ve converted all of my Kindle purchases to ePubs for use in iBooks. I could use the Kindle app for iOS but I’ve found iBooks to be faster at syncing read position, and it feels a lot more natural to use.

Since I went through the effort of converting all of my Kindle documents, I figured I’d write a mini guide to getting it done. I’m specifically focusing on the Mac since that’s all I know; other users will have to venture elsewhere.

Setting up Calibre

Calibre is a Java application which is an eBook management suite. It’s a bit ugly but it does what it says and works well. Since the Kindle’s eBooks are encrypted, we need to install a decryption plugin to do the heavy lifting there.

  1. Download and install Calibre.1
  2. Download and decompress the DeDRM archive.
  3. Open Calibre’s preferences (⌘,).
  4. Go to “Plugins.”
  5. Click “Load plugin from file.”
  6. Choose the K4MobileDeDRM plugin’s zip file (zip within the main zip; don’t extract).

The encryption used on Kindle books is fairly basic. The decryption key is a product of the serial number for your device, so it’s not difficult to determine.

Getting books from Amazon

The DeDRM scripts work by understanding Kindle for Mac’s settings files, so to get the eBooks we need use the application. There are scripts to do conversions directly from Kindle hardware’s eBooks, but it’s more effort.

  1. Download Kindle for Mac.
  2. Register it with your account.
  3. Download all of your eBooks (open them from the “Archived Items”).

I really wish this application were retina.

Converting books to ePub format

Kindle eBooks are in the MobiPocket format. However, iBooks requires ePub, so we need to both decrypt and convert the files. At this point, we’ve got all we need, so we can use Calibre to do the conversion.

  1. Navigate to either of the following (likely the second):
    • ~/Library/Application Support/Kindle/My Kindle Content/
    • ~/Library/Containers/com.amazon.Kindle/Data/Library/Application Support/Kindle/My Kindle Content/
  2. Drag all of the .azw files into the Calibre window.
  3. Select the books in the Calibre window which you wish to export.
  4. Click the “Convert books” toolbar item.
  5. Choose “ePub” as the output format in the top-right of the convert window.
  6. Go to the “Page Setup” item in the left list, and configure the conversion:
    • Select “Kindle” as the input profile.
    • Select “iPad” as the output profile.
  7. Hit the “OK” button to begin the conversion. It will take a while.

If you have any issues at the decryption step, you should delete your ~/Library/Application Support/Kindle folder and start again.

Exporting and enjoyment

You can now “Save to disk” from the toolbar item to save the books which you’ve converted, and import them into iTunes for use in iBooks. Calibre is powerful enough to do many other formats if you want to use other devices as well.

Remember, don’t post any of the unencrypted documents anywhere. Just because the DRM is gone doesn’t mean you’re legally authorized to do so. They’re for your personal use only.


  1. This is a link to the project’s GitHub page because their main website does not support HTTPS. You should not install software over an unencrypted connection. ↩︎

Incrementing with a bitmask

Bitmasks are fun. There’s lots of little tricks you can do with them. A common situation is checking for the presence of a flag among elements in a linked list, or some similar data structure. I came across a trick a few years ago that makes it drop-dead simple.

Let’s say we needed to check for AUsefulFlag in the flags element of each node, and total how many elements in the linked list had the flag.

uint64_t count = 0;
for(Node *iter = head; iter != NULL; iter = iter->next)
{
    count += !!(iter->flags & AUsefulFlag);
}

After execution, count is the number of items which have AUsefulFlag set.

Double-not (!!) is one of those useful operations which are especially useful with bitmasks. It may require a double-take at first, but it behaves exactly how you’d think.

!! of 1 is 1. !! of 0 is 0. In fact, !! of any true value evaluates to 1, so we can use it to transform something like 0b00001000 to simply 1 and increment by that value.

From Atlas Shrugged by Ayn Rand:

James: What are you after?
Francisco: Money.
James: Don’t you have enough?
Francisco: In his lifetime, every one of my ancestors raised the production of d’Anconia Copper by about ten per cent. I intend to raise it by one hundred.
James: What for?
Francisco: When I die, I hope to go to heaven–whatever the hell that is–and I want to be able to afford the price of admission.
James: Virtue is the price of admission.
Francisco: That’s what I mean, James. So I want to be prepared to claim the greatest virtue of all–that I was a man who made money.
James: Any grafter can make money.
Francisco: James, you ought to discover some day that words have an exact meaning.