<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/rss-style.xsl" type="text/xsl"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	     xmlns:dc="http://purl.org/dc/elements/1.1/"
	   xmlns:atom="http://www.w3.org/2005/Atom"
	     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	  xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>kindle &#8211; Terence Eden’s Blog</title>
	<atom:link href="https://shkspr.mobi/blog/tag/kindle/feed/" rel="self" type="application/rss+xml" />
	<link>https://shkspr.mobi/blog</link>
	<description>Regular nonsense about tech and its effects 🙃</description>
	<lastBuildDate>Sun, 12 Apr 2026 07:20:51 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://shkspr.mobi/blog/wp-content/uploads/2023/07/cropped-avatar-32x32.jpeg</url>
	<title>kindle &#8211; Terence Eden’s Blog</title>
	<link>https://shkspr.mobi/blog</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title><![CDATA[Improving PixelMelt's Kindle Web Deobfuscator]]></title>
		<link>https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/</link>
					<comments>https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sun, 19 Oct 2025 11:34:37 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=64017</guid>

					<description><![CDATA[A few days ago, someone called PixelMelt published a way for Amazon&#039;s customers to download their purchased books without DRM. Well… sort of.  In their post &#34;How I Reversed Amazon&#039;s Kindle Web Obfuscation Because Their App Sucked&#34; they describe the process of spoofing a web browser, downloading a bunch of JSON files, reconstructing the obfuscated SVGs used to draw individual letters, and running O…]]></description>
										<content:encoded><![CDATA[<p>A few days ago, someone called PixelMelt published a way for Amazon's customers to download their purchased books without DRM. Well… <em>sort of</em>.</p>

<p>In their post "<a href="https://blog.pixelmelt.dev/kindle-web-drm/">How I Reversed Amazon's Kindle Web Obfuscation Because Their App Sucked</a>" they describe the process of spoofing a web browser, downloading a bunch of JSON files, reconstructing the obfuscated SVGs used to draw individual letters, and running OCR on them to extract text.</p>

<p>There were a few problems with this approach.</p>

<p>Firstly, the downloader was hard-coded to only work with the .com site. That fix was simple - do a search and replace on <code>amazon.com</code> with <code>amazon.co.uk</code>. Easy!</p>

<p>But the harder problem was with the OCR. The code was designed to visually centre each extracted glyph. That gives a nice amount of whitespace around the character which makes it easier for OCR to run. The only problem is that some characters are ambiguous when centred:</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2025/10/centred-fs8.png" alt="Several letters drawn with vertical centering." width="1134" height="177" class="aligncenter size-full wp-image-64025">

<p>When I ran the code, lots of full-stops became midpoints, commas became apostrophes, and various other characters went a bit wonky.</p>

<p>That made the output rather hard to read. This was compounded by the way line-breaks were treated. Modern eBooks are designed to be reflowable - no matter the size of your screen, lines should only break on a new paragraph. This had forced linebreaks at the end of every displayed line - rather than at the end of a paragraph.</p>

<p>So I decided to fix it.</p>

<h2 id="a-new-approach"><a href="https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/#a-new-approach">A New Approach</a></h2>

<p>I decided that OCRing an entire page would yield better results than single characters. I was (mostly) right.  Here's what a typical page looks like after de-obfuscation and reconstruction:</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2025/10/sample-page.webp" alt="A page of text." width="500" height="800" class="aligncenter size-full wp-image-64027">

<p>As you can see - the typesetting is good for the body text, but skew-whiff for the title. Bold and italics are preserved. There are no links or images.</p>

<p>Here's how I did it.</p>

<h3 id="extract-the-characters"><a href="https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/#extract-the-characters">Extract the characters</a></h3>

<p>As in the original code, I took the SVG path of the character and rendered it as a monochrome PNG. Rather than centring the glyph, I used the height and width provided in the <code>glyphs.json</code> file. That gave me a directory full of individual letters, numbers, punctuation marks, and ligatures. These were named by fontKey (bold, italic, normal, etc).</p>

<h3 id="create-a-blank-page"><a href="https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/#create-a-blank-page">Create a blank page</a></h3>

<p>The <code>page_data_0_4.json</code> has a width and height of the page. I created a white PNG with the same dimensions. The individual characters could then be placed on that.</p>

<h3 id="resize-the-characters"><a href="https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/#resize-the-characters">Resize the characters</a></h3>

<p>In the <code>page_data_0_4.json</code> each run of text has a fontKey - which allows the correct glyph to be selected. There's also a <code>fontSize</code> parameter. Most text seems to be (the ludicrously precise) <code>19.800001</code>. If a font had a different size, I temporarily scaled the glyph in proportion to 19.8.</p>

<p>Each glyph has an associated <code>xPosition</code>, along with a <code>transform</code> which gives X and Y offsets.  That allows for indenting and other text layouts.</p>

<p>The characters were then pasted on to the blank page.</p>

<p>Once every character from that page had been extracted, resized, and placed - the page was saved as a monochrome PNG.</p>

<h3 id="ocr-the-page"><a href="https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/#ocr-the-page">OCR the page</a></h3>

<p><a href="https://tesseract-ocr.github.io/tessdoc/">Tesseract 5</a> is a fast, modern, and <em>reasonably</em> accurate OCR engine for Linux.</p>

<p>Running <code>tesseract page_0022.png output -l eng</code> produced a .txt file with all the text extracted.</p>

<p>For a more useful HTML style layout, the <a href="https://en.wikipedia.org/wiki/HOCR">hOCR output</a> can be used: <code>tesseract page_0022.png output -l eng hocr</code></p>

<p>Or, a PDF with embedded text: <code>tesseract page_0022.png output -l eng pdf</code></p>

<h3 id="mistakes"><a href="https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/#mistakes">Mistakes</a></h3>

<p>OCR isn't infallible. Even with a high resolution image and a clear font, there were some errors.</p>

<ul>
<li>Superscript numerals for footnotes were often missing from the OCR.</li>
<li>Words can run together even if they are well spaced.</li>
<li>Tesseract can recognise bold and italic characters - but it outputs everything as plain text.</li>
</ul>

<h2 id="whats-missing"><a href="https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/#whats-missing">What's missing?</a></h2>

<p>Images aren't downloaded. I took a brief look and, while there are links to them in the metadata, they're downloaded as encrypted blobs. I'm not clever enough to do anything with them.</p>

<p>The OCR can't pick out semantic meaning. Chapter headings and footnotes are rendered the same way as text.</p>

<p>Layout is flat. The image of the page might have an indent, but the outputted text won't.</p>

<h2 id="whats-next"><a href="https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/#whats-next">What's next?</a></h2>

<p>This is very far from perfect. It can give you a visually <em>similar</em> layout to a book you have purchased from Amazon. But it won't be reflowable.</p>

<p>The text will be <em>reasonably</em> accurate. But there will be plenty of mistakes.</p>

<p>You can get an HTML layout with hOCR. But it will be missing formatting and links.</p>

<p>Processing all the JSON files and OCRing all the images is <em>relatively</em> quick. But tweaking and assembling is still fairly manual.</p>

<p>There's nothing particularly clever about what I've done. The original code didn't come with an open source software licence, so I am unable to share my changes - but any moderately competent programmer could recreate this.</p>

<p>Personally, I've just stopped buying books from Amazon. I find that <a href="https://shkspr.mobi/blog/2025/02/automatic-kobo-and-kindle-ebook-arbitrage/">Kobo is often cheaper</a> and their DRM is easy to bypass. But if you have many books trapped in Amazon - or a book is only published there - this is a barely adequate way to liberate it for your personal use.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=64017&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2025/10/improving-pixelmelts-kindle-web-deobfuscator/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Automatic Kobo and Kindle eBook Arbitrage]]></title>
		<link>https://shkspr.mobi/blog/2025/02/automatic-kobo-and-kindle-ebook-arbitrage/</link>
					<comments>https://shkspr.mobi/blog/2025/02/automatic-kobo-and-kindle-ebook-arbitrage/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Wed, 19 Feb 2025 12:34:43 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[kobo]]></category>
		<category><![CDATA[python]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=58241</guid>

					<description><![CDATA[This post will show you how to programmatically get the cheapest possible price on eBooks from Kobo.  Background  Amazon have decided to stop letting customers download their purchased eBooks onto their computers. That means I can&#039;t strip the DRM and read on my non-Amazon eReader.  So I guess I&#039;m not spending money with Amazon any more. I&#039;m moving to Kobo for three main reasons:   They provide…]]></description>
										<content:encoded><![CDATA[<p>This post will show you how to programmatically get the cheapest possible price on eBooks from Kobo.</p>

<h2 id="background"><a href="https://shkspr.mobi/blog/2025/02/automatic-kobo-and-kindle-ebook-arbitrage/#background">Background</a></h2>

<p>Amazon have decided to stop letting customers download their purchased eBooks onto their computers. That means I can't strip the DRM and read on my non-Amazon eReader.</p>

<p>So I guess I'm not spending money with Amazon any more. I'm moving to Kobo for three main reasons:</p>

<ol>
<li>They provide standard ePubs for download.</li>
<li>ePub DRM is trivial to remove.</li>
<li>Kobo will <em>undercut</em> Amazon's prices!</li>
</ol>

<p>Here's the thing. I <em>want</em> to <strong>buy</strong> my eBooks. It is <a href="https://goodereader.com/blog/e-book-news/where-do-consumers-get-their-e-books-from">trivial to pirate almost any modern book</a>. But, call me crazy, I like rewarding writers with a few pennies. That said, I'm not made of money, so I want to get the best (legal) deal possible.</p>

<p><a href="https://www.kobo.com/gb/en/p/pricematch-about">Kobo do a price-match with other eBook retailers</a>. It says:</p>

<blockquote><p>We'll award a credit to your Kobo account equal to the price difference, <strong>plus 10% of the competitor’s price</strong>.</p></blockquote>

<p>I found a book I wanted which was £4.99 on Kobo. The Amazon Kindle price was £4.31.</p>

<p><code>4.99 - ( (4.99 - 4.31) + (4.31 * 0.1) ) = 3.88</code></p>

<p>I purchased the book, sent a request for a price match, and got this email a few hours later:</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2025/02/kobo.png" alt="﻿We’re pleased to confirm that the price match you requested has been successfully processed. The credit has been applied to your Kobo account. ﻿Credit amount: £ 1.11 GBP" width="1008" height="756" class="aligncenter size-full wp-image-58242">

<p>OK! So what steps can we automate, and which will have to remain manual?</p>

<h2 id="amazon-pricing-api"><a href="https://shkspr.mobi/blog/2025/02/automatic-kobo-and-kindle-ebook-arbitrage/#amazon-pricing-api">Amazon Pricing API</a></h2>

<p>Amazon have a <a href="https://webservices.amazon.com/paapi5/documentation/">Product Advertising API</a>. You will need to register for the <a href="https://affiliate-program.amazon.co.uk/">Amazon Affiliate Program</a> and make some qualifying sales before you get API access.</p>

<p>In order to search for an ISBN and get the price back, you need to send:</p>

<pre><code class="language-json">{
 "Keywords": "isbn:9781473613546",
 "Resources": ["Offers.Listings.Price"],
}
</code></pre>

<p>Using <a href="https://github.com/LeilaSchooley/paapi5-python-sdk">the updated Python API for PAAPI</a>:</p>

<pre><code class="language-python">from paapi5_python_sdk import DefaultApi, SearchItemsRequest, SearchItemsResource, PartnerType

def search_items():
    access_key = "ABC"
    secret_key = "123"
    partner_tag = "shkspr-21"
    host = "webservices.amazon.co.uk"
    region = "eu-west-1"

    api = DefaultApi(access_key=access_key, secret_key=secret_key, host=host, region=region)

    request = SearchItemsRequest(
        partner_tag=partner_tag,
        partner_type=PartnerType.ASSOCIATES,
        keywords="isbn:9781473613546",
        search_index="All",
        item_count=1,
        resources=["Offers.Listings.Price"]
    )

    response = api.search_items(request)

    print(response)

search_items()
</code></pre>

<p>(Add your own access key, secret key, and tag. You may need to change the host and region depending on where you are in the world.)</p>

<p>That returns something like:</p>

<pre><code class="language-json">{
    "search_result": {
        "items": [
            {
                "asin": "B09JLQHHXN",
                "detail_page_url": "https://www.amazon.co.uk/dp/B09JLQHHXN?tag=shkspr-21&amp;linkCode=osi&amp;th=1&amp;psc=1",
                "offers": {
                    "listings": [
                        {
                            "price": {
                                "amount": 2.99,
                                "currency": "GBP",
                                "display_amount": "£2.99"
                            }
                        }
                    ]
                }
            }
        ]
    }
}
</code></pre>

<p>(I've truncated the above so it only shows the relevant information.)</p>

<h2 id="kobo-isbn-price"><a href="https://shkspr.mobi/blog/2025/02/automatic-kobo-and-kindle-ebook-arbitrage/#kobo-isbn-price">Kobo ISBN &amp; Price</a></h2>

<p>Let's get the ISBN and Price of a book on Kobo. There's no easy API to do this. But, thankfully, Kobo embeds some Schema.org metadata.</p>

<p>Look at the source code for <a href="https://www.kobo.com/gb/en/ebook/venomous-lumpsucker-1">https://www.kobo.com/gb/en/ebook/venomous-lumpsucker-1</a></p>

<pre><code class="language-html">&lt;div id="ratings-widget-details-wrapper" class="kobo-gizmo"
     data-kobo-gizmo="RatingAndReviewWidget"
     data-kobo-gizmo-config ='{&amp;quot;googleBook&amp;quot;:&amp;quot;{\r\n  \&amp;quot;@context\&amp;quot;: \&amp;quot;http://schema.org\&amp;quot;,\r\n  \&amp;quot;@type\&amp;quot;: \&amp;quot;Book\&amp;quot;,\r\n  \&amp;quot;name\&amp;quot;: \&amp;quot;Venomous Lumpsucker\&amp;quot;,\r\n  \&amp;quot;genre\&amp;quot;: [\r\n    \&amp;quot;Fiction \\u0026 Literature\&amp;quot;,\r\n    \&amp;quot;Humorous\&amp;quot;,\r\n    \&amp;quot;Literary\&amp;quot;\r\n  ],\r\n  \&amp;quot;inLanguage\&amp;quot;: \&amp;quot;en\&amp;quot;,\r\n  \&amp;quot;author\&amp;quot;: {\r\n    \&amp;quot;@type\&amp;quot;: \&amp;quot;Person\&amp;quot;,\r\n    \&amp;quot;name\&amp;quot;: \&amp;quot;Ned Beauman\&amp;quot;\r\n  },\r\n  \&amp;quot;workExample\&amp;quot;: {\r\n    \&amp;quot;@type\&amp;quot;: \&amp;quot;Book\&amp;quot;,\r\n    \&amp;quot;author\&amp;quot;: {\r\n      \&amp;quot;@type\&amp;quot;: \&amp;quot;Person\&amp;quot;,\r\n      \&amp;quot;name\&amp;quot;: \&amp;quot;Ned Beauman\&amp;quot;\r\n    },\r\n    \&amp;quot;isbn\&amp;quot;: \&amp;quot;9781473613546\&amp;quot; …'&gt;
&lt;/div&gt;
</code></pre>

<p>Getting the data from the <code>data-kobo-gizmo-config</code> is a little tricky.</p>

<ul>
<li>Using Python Requests won't work because Kobo seem to run a JS CAPTCHA to detect scraping.</li>
<li>There is a <a href="https://github.com/janeczku/calibre-web/wiki/Kobo-Integration">Calibre-Web Kobo plugin</a> but it requires you to have a physical Kobo eReader in order to get an API key.</li>
<li>The <a href="https://webservice.rakuten.co.jp/explorer/api">Rakuten API</a> is only for the Japanese store.</li>
</ul>

<p>So we have to use the <a href="https://www.selenium.dev/documentation/webdriver/">Selenium WebDriver</a> to scrape the data:</p>

<pre><code class="language-python">from selenium import webdriver
from bs4 import BeautifulSoup
import json

#   Open the web page
browser = webdriver.Firefox()
browser.get("https://www.kobo.com/gb/en/ebook/venomous-lumpsucker-1")

#   Get the source
html_source = browser.page_source

#   Soupify
soup = BeautifulSoup(html_source, 'html.parser')

#   Get the encoded JSON Schema
schema = soup.find_all(id="ratings-widget-details-wrapper")[0].get("data-kobo-gizmo-config")

#   Convert to object from JSON
parsed_data = json.loads(schema)

#   Decode the nested JSON strings
parsed_data["googleBook"] = json.loads(parsed_data["googleBook"])

#    Get ISBN and Price
price = parsed_data["googleBook"]["workExample"]["potentialAction"]["expectsAcceptanceOf"]["price"]
isbn  = parsed_data["googleBook"]["workExample"]["isbn"]
print(isbn)
print(price)
</code></pre>

<h2 id="kobo-wishlist"><a href="https://shkspr.mobi/blog/2025/02/automatic-kobo-and-kindle-ebook-arbitrage/#kobo-wishlist">Kobo Wishlist</a></h2>

<p>OK, nearly there! Given a Kobo book URl we can get the price and ISBN, then use that ISBN to get the Kindle price.  But how do we get the Kobo book URl in the first place?</p>

<p>I'm adding all the books I want to my <a href="https://www.kobo.com/blog/how-to-use-the-kobo-wishlist-feature">Kobo Wishlist</a>.</p>

<p>Inside the Wishlist is a scrap of JavaScript which contains this JSON:</p>

<pre><code class="language-json">{
    "value": {
        "Items": [
            {
                "Title": "Venomous Lumpsucker",
                "Price": "£2.99",
                "ProductUrl": "/gb/en/ebook/venomous-lumpsucker-1",
            }
        ],
        "TotalItemCount": 11,
        "ItemCountByProductType": {
            "book": 11
        },
        "PageIndex": 1,
        "TotalNumPages": 1,
       }
}
</code></pre>

<p>(Simplified to make it easier to understand.)</p>

<p>Although there's a price, there's no ISBN, So you'll need to use the "ProductUrl" to get the ISBN and Price as above.</p>

<p>Sadly, unlike Amazon, there's no way to publicly share a wishlist. Getting the JSON requires logging in, so it's back to Selenium again!</p>

<p>This should be enough:</p>

<pre><code class="language-python">from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from bs4 import BeautifulSoup
import time

browser = webdriver.Firefox()
browser.get("https://www.kobo.com/gb/en/account/wishlist")

#       Log in
username_box = browser.find_element(By.NAME, "LogInModel.UserName")
username_box.clear()
username_box.send_keys('you@example.com')

password_box = browser.find_element(By.NAME, "LogInModel.Password")
password_box.clear()
password_box.send_keys('p455w0rd')

password_box.send_keys(Keys.RETURN)

time.sleep(5) # Wait for load and rendering
</code></pre>

<p>But the Kobo presents a CAPTCHA which prevents login.</p>

<p>There is an <em>unofficial</em> API which, sadly, <a href="https://github.com/subdavis/kobo-book-downloader/issues/121">doesn't seem to work at the moment</a>.</p>

<h2 id="next-steps"><a href="https://shkspr.mobi/blog/2025/02/automatic-kobo-and-kindle-ebook-arbitrage/#next-steps">Next Steps</a></h2>

<p>For now, I'm saving specific Kobo book URls into a file and then running a scrape once per day. Hopefully, the <a href="https://github.com/subdavis/kobo-book-downloader/">unofficial Kobo API</a> will be working again soon.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=58241&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2025/02/automatic-kobo-and-kindle-ebook-arbitrage/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Gadget Review -  Boyue Likebook Ares]]></title>
		<link>https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/</link>
					<comments>https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 26 Nov 2019 12:30:58 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[eink]]></category>
		<category><![CDATA[ereader]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[review]]></category>
		<guid isPermaLink="false">https://shkspr.mobi/blog/?p=33161</guid>

					<description><![CDATA[I&#039;ll be upfront, I mostly got this eReader because it&#039;s the only one on the market with a USB-C connection.  OK! OK! That&#039;s not the main reason. It has pretty good support from the manufacturer and a vibrant community around it. Masses of memory, warm lighting, and oodles of space. And, I think, pretty hackable.  Quick video    Specifications   Android 6.0 - with a promise to update it to Android …]]></description>
										<content:encoded><![CDATA[<p>I'll be upfront, I mostly got this eReader because it's the only one on the market with a USB-C connection.</p>

<p>OK! OK! That's not the <em>main</em> reason. It has pretty good support from the manufacturer and a vibrant community around it. Masses of memory, warm lighting, and oodles of space. And, I think, pretty hackable.</p>

<h2 id="quick-video"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#quick-video">Quick video</a></h2>

<iframe title="Unboxing: Boyue Likebook Ares Note eReader" width="620" height="349" src="https://www.youtube.com/embed/cO0Wk6PLz5M?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<h2 id="specifications"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#specifications">Specifications</a></h2>

<ul>
<li>Android 6.0 - with a promise to update it to Android 8.0</li>
<li>Touchscreen with Wacom stylus</li>
<li>1.5GHz CPU</li>
<li>2GB RAM</li>
<li>32GB storage plus a microSD slot</li>
<li>7.8 inch E-ink Carta HD (300 PPI) screen</li>
<li>Dual colour front lights</li>
<li>USB-C for charging, data transfer, and headphones</li>
<li>WiFi and Bluetooth</li>
<li>Speakers and microphone</li>
<li>3200 mAh battery</li>
</ul>

<p>Essentially it's an Android tablet with an eInk screen. The Wacom stylus can be used for handwriting and note-taking.</p>

<h2 id="the-reading-experience"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#the-reading-experience">The reading experience</a></h2>

<p>Amazing! The screen is goregous. You have precise control over the thickness of the fonts, line spacing, word spacing, and more. Pinch to zoom works perfectly. You can even side-load your own fonts. You can also read in landscape mode with two columns. I find that particularly useful.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/Two-column-mode.png" alt="A book with two columns." width="749" height="562" class="aligncenter size-full wp-image-33205">

<p>Links within books work, as do footnotes and endnotes. The keyboard is pretty quick for searching. You can change how bright the light is - and flip between warm and cool lighting.</p>

<p>It also does Text-To-Speech, so a little robot can read books out via the stereo speakers. It'll also play MP3s. No headphone jack - but it supports Bluetooth and USB-C.</p>

<p>There are some glitches in the default reading experience - especially when it comes to punctuation.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/Spaces-between-letters-and-punctuation.png" alt="Spaces between letters and punctuation." width="915" height="512" class="aligncenter size-full wp-image-33199"></p>

<h3 id="formats-supported"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#formats-supported">Formats supported</a></h3>

<p>A sample of ePub, .mobi, PDF, and .txt files all worked well.</p>

<p>It shows up as an MTP device when connected to a computer via USB. Or you can send files via Bluetooth. It also has a built in webserver, so you can send via WiFi.</p>

<h3 id="epub-3"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#epub-3">ePub 3</a></h3>

<p>I tried the default reader using some of the <a href="https://idpf.github.io/epub3-samples/30/samples.html">sample ePub 3 documents</a>. It coped with Arabic (right to left), Japanese with Ruby, and inline images.</p>

<p>Weirdly, it didn't like linebreaks in running text - collapsing them so there was no spaces between words.</p>

<p>It didn't support embedded fonts in eBooks. But, that's ok, you can add your own!</p>

<h3 id="fonts"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#fonts">Fonts</a></h3>

<p>Create a directory called <code>/fonts/</code> on the device. Paste in either <a href="http://www.differencebetween.net/technology/difference-between-ttf-and-otf/">TTF or OTF</a> fonts. They magically appear in the reading app!</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/Font-selection-screen.png" alt="Font selection screen." width="749" height="562" class="aligncenter size-full wp-image-33204">

<p>No support for WOFF / WOFF2 fonts in the default reader.</p>

<h2 id="apps"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#apps">Apps</a></h2>

<p>There are a few built in apps - the standard Android browser is included. There's an app store and the ability to side-load.  There are a bunch of reading apps if you don't like the default one.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/App-store.png" alt="List of reading apps." width="702" height="936" class="aligncenter size-full wp-image-33202">

<p>Yup, you can install the Amazon Kindle app if you really want to!</p>

<p>(Screenshots are in colour, but the screen is black and white.)</p>

<h2 id="note-taking"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#note-taking">Note taking</a></h2>

<p>I don't like handwriting - but the Wacom stylus is easy to use. You can draw on the screen, annotate PDFs, and erase your scribblings.</p>

<h2 id="quirks"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#quirks">Quirks</a></h2>

<p>It doesn't come with a case, nor a screen protector. I'm in two minds about this. It has a glass screen, so should be fairly rugged. I don't plan on using the Wacom stylus, so I doubt that'll scratch it. But seeing as any blemish interferes with your reading experience, some protection is a must.  <a href="https://amzn.to/2XMtMM7">I purchased a £20 case for it</a>.</p>

<p>Start-up time is slow. This is an Android tablet, so doesn't have quite the same energy efficiency as other readers. From off to reading takes about 45 seconds. You can set it to never switch off, but you'll need to charge it a little more often.</p>

<p>The UI isn't brilliantly translated into English. You'll understand it, but the grammar and spacing are quirky.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/Weird-UI.png" alt="The UI says &quot;readed&quot; rather than read." width="1404" height="660" class="aligncenter size-full wp-image-33201">
You can also see a few HTML entities in the the UI. So, not perfect quality. But usable.</p>

<p>There are also some untranslated /UI elements.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2019/11/Untranslated-UI-elements.png" alt="Chinese text in the English UI." width="1404" height="816" class="aligncenter size-full wp-image-33200"></p>

<p>The UI takes a little getting used to. Some options are hidden away in menus, others behind icons. Most things you'll only have to set once, but it can be a challenge finding everything.</p>

<p>The first time I rebooted, it reverted to Chinese, but it was pretty simple to set it back.</p>

<h2 id="cost-and-verdict"><a href="https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/#cost-and-verdict">Cost and Verdict</a></h2>

<p>I paid £190 from eBay - plus <a href="https://amzn.to/2XMtMM7">£20 for a case</a>. I reckon that's a bargain! There are cheaper eReaders out there - but this is the only one I found with USB-C.  It doesn't tie you in to the Amazon Kindle monoculture.</p>

<p>As an Android table, it's basically fine. Good enough for occasional web browsing, and some specifically optimised apps.</p>

<p>And as a book reader? Close to perfect! Text is crisp and clear, page turns are instant. Lots of options to fiddle with to get your books just right.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=33161&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2019/11/gadget-review-boyue-likebook-ares/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Converting the Voynich Manuscript into an eBook]]></title>
		<link>https://shkspr.mobi/blog/2013/08/voynich-manuscript-ebook/</link>
					<comments>https://shkspr.mobi/blog/2013/08/voynich-manuscript-ebook/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 23 Aug 2013 11:05:55 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[voynich]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=8606</guid>

					<description><![CDATA[Three years ago I promised to convert the Voynich Manuscript into an ebook.  The recent news that it may have been deciphered spurred me to finish my project.  So, here it is, the world famous mystery that is the Voynich Manuscript now in convenient eBook format.       PDF - suitable for Kindle, nook, Kobo, Android, iOS and for most devices (60MB)     CBZ - suitable for comic book readers,…]]></description>
										<content:encoded><![CDATA[<p>Three years ago <a href="https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/">I promised to convert the Voynich Manuscript into an ebook</a>.  The recent news that it <a href="http://www.bbc.co.uk/news/science-environment-22975809"><em>may</em> have been deciphered</a> spurred me to finish my project.</p>

<p>So, here it is, the world famous mystery that is the Voynich Manuscript now in convenient eBook format.</p>

<ul>
    <li><a href="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Voynich-Manuscript.pdf" download="">PDF - suitable for Kindle, nook, Kobo, Android, iOS and for most devices</a> (60MB)</li>
    <li><a href="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Voynich-Manuscript.cbz" download="">CBZ - suitable for comic book readers, tablets, etc.</a>  (60MB)</li>
</ul>

<p>As the book is pure images, I decided not to convert to .mobi or .epub.  Those are great formats, but offer nothing to picture books that can't be provided by PDF.
<!--
You can <a href="http://www.amazon.co.uk/gp/product/B00EORO51U/ref=as_li_ss_il?ie=UTF8&camp=1634&creative=19450&creativeASIN=B00EORO51U&linkCode=as2&tag=shkspr-21">buy a copy on Amazon UK</a> if you'd like to say thanks.

<a href="http://www.amazon.co.uk/gp/product/B00EORO51U/ref=as_li_ss_il?ie=UTF8&camp=1634&creative=19450&creativeASIN=B00EORO51U&linkCode=as2&tag=shkspr-21"><img border="0" src="http://ws-eu.amazon-adsystem.com/widgets/q?_encoding=UTF8&ASIN=B00EORO51U&Format=_SL160_&ID=AsinImage&MarketPlace=GB&ServiceVersion=20070822&WS=1&tag=shkspr-21" /></a><img src="http://ir-uk.amazon-adsystem.com/e/ir?t=shkspr-21&l=as2&o=2&a=B00EORO51U" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
It's also available at all other Amazon stores - see end of this page.  I've placed it at the lowest price that Amazon will let me charge.
--></p>

<p>Here's how I converted the book for all the different formats.</p>

<h2 id="size"><a href="https://shkspr.mobi/blog/2013/08/voynich-manuscript-ebook/#size">Size</a></h2>

<p>The original files were quite large - over 4MB per image - leading to a total eBook file size of 660MB.  A little on the chunky side to easily distribute.</p>

<p>Using <a href="http://www.imagemagick.org/script/convert.php">mogrify</a>, it was easy to convert the images to a more manageable size.</p>

<p>A simple
<code>mogrify -resize 25% -quality 85 *.jpg</code>
took the total file size down to 63MB with no visible reduction in quality.</p>

<p>But, of course, there were a series of problems.</p>

<p>Firstly, some of the pages are double or triple width.  They are scanned at a different size from all the other files.</p>

<p>In this case, the quarter size file is too small to read. Here it is after resizing:
<a href="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Triple-Page-Small.jpg"><img src="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Triple-Page-Small.jpg" alt="Triple Page Small" width="700" height="357" class="aligncenter size-full wp-image-8610"></a></p>

<p>Indeed, each image is at a subtly different size. So simply resizing by percentage doesn't work well.  The size of all the images was determined using ImageMagick's "identify" command.  While the largest images had a height of around 6,000 pixels, the smallest had a height of 1352.  I figured that a height of 1280 would be enough to satisfy most eReaders and tablets.</p>

<p><code>mogrify -resize x1280 -quality 85 *.jpg</code></p>

<p>Once done, the total file size of all the pages was 59MB.  Good enough!  With the advantage of having every page the same height - if not width.</p>

<h2 id="cropping"><a href="https://shkspr.mobi/blog/2013/08/voynich-manuscript-ebook/#cropping">Cropping</a></h2>

<p>The scans of the images contain lots of extraneous information - most notably the edges of other pages.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Voynich-with-Edges.jpg" alt="Voynich with Edges" width="300" height="360" class="aligncenter size-full wp-image-8608">

<p>Manually cropping each image is possible - although tedious.  It results in a slightly higher quality image - click for bigger:
<a href="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Voynich-without-Edges.jpg"><img src="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Voynich-without-Edges-680x1024.jpg" alt="Voynich without Edges" width="680" height="1024" class="aligncenter size-large wp-image-8607"></a></p>

<p>Although it would be possible to automate a simple crop, each page has a unique layout.  If there's further interest, I may spend some free evenings cropping the pages individually.</p>

<h2 id="page-order"><a href="https://shkspr.mobi/blog/2013/08/voynich-manuscript-ebook/#page-order">Page Order</a></h2>

<p>As I said in my <a href="https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/">blog post of 2010</a>:</p>

<blockquote><a href="http://beinecke.library.yale.edu/digitallibrary/voynich.html">The Yale site has all the scans available</a> as high-res JPGs or <a href="http://en.wikipedia.org/wiki/MrSID">MrSID</a>s - but it's a pain to download hundreds of images from the site.<br>
So - I turned to a torrent.  Don't worry! These images are hundred of years old - they are in the public domain.</blockquote>

<p>(NB, if your ISP is censoring the <a href="http://thepiratebay.org/torrent/5380294/Voynich_Manuscript">link from The Pirate Bay</a>, you can use <a href="magnet:?xt=urn:btih:a15f8a16a8ce569be2169bdba4b893459053a7d1&amp;dn=Voynich+Manuscript&amp;tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&amp;tr=udp%3A%2F%2Ftracker.publicbt.com%3A80&amp;tr=udp%3A%2F%2Ftracker.istole.it%3A6969&amp;tr=udp%3A%2F%2Ftracker.ccc.de%3A80&amp;tr=udp%3A%2F%2Fopen.demonii.com%3A1337">this Magnet Link instead</a>).</p>

<p>I'm still slightly unsure of the order of all the pages. Some have numbers printed on them, but it's not clear whether they're sequential. Indeed, it's probably impossible to know how the pages were originally ordered.  So, I've left them in the same order as the Yale scan.</p>

<h2 id="converting"><a href="https://shkspr.mobi/blog/2013/08/voynich-manuscript-ebook/#converting">Converting</a></h2>

<p>I didn't transform the images to greyscale because, although current eInk devices are only black and white, future devices will have full colour displays.  Although using greyscale would reduce the file size by a minor amount, most modern devices should have enough internal memory to store a colour file of that size and - hopefully - have enough power to render each page without difficulty.</p>

<h2 id="kindle-formatting"><a href="https://shkspr.mobi/blog/2013/08/voynich-manuscript-ebook/#kindle-formatting">Kindle Formatting</a></h2>

<p>I initially uploaded the PDF to Amazon's Kindle store. After it had finished converting, it ended up looking like this:
<img src="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Kindle-Mangled-Page.jpg" alt="Kindle Mangled Page" width="600" height="622" class="aligncenter size-full wp-image-8615">
All the pages had been rotated and chopped in half. Helpful.</p>

<p>I decided that it would be easier to use <a href="http://www.amazon.com/gp/feature.html?ie=UTF8&amp;docId=1001103761">Kindle Comic Creator</a> - it seemed to work fine in Linux using WINE.</p>

<p>That had the advantage of being easily able to select sections of pages as "panels".
<img src="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Kindle-Comic-Creator-Panels.jpg" alt="Kindle Comic Creator Panels" width="600" height="345" class="aligncenter size-full wp-image-8616">
I had to whack the quality of the images down a little to fit within <a href="https://kdp.amazon.com/self-publishing/help?topicId=AQY9VBML4LKPK">Kindle's 50MB upload limit</a>.  However, despite the total image size being 30MB, the resultant file was still <strong>over 60MB</strong>!  It also turned out that the Kindle Comic Creator resized images so they were no taller than 1024px.</p>

<p>Using the Kindle Creation software imports and keeps your original files - doubling the file size! There are <a href="http://wiki.mobileread.com/wiki/KindleUnpack">tools to strip the bloat</a> but they <a href="http://www.mobileread.com/forums/showthread.php?t=96903">won't produce valid files to upload to the Kindle store</a>.</p>

<p>So, I had to make a dirty compromise.  I scaled the images to 1,000 pixels high, and set JPG compression to 65%.  The images aren't as high quality as I would like - but the file size is a svelte 49MB (despite the source being 22MB!).</p>

<p>After all that kerfuffle, once Amazon converted it, it was back down to 23MB!  If there's interest, I'll see if there's any way I can make it higher quality in the future.</p>

<h2 id="conclusion"><a href="https://shkspr.mobi/blog/2013/08/voynich-manuscript-ebook/#conclusion">Conclusion</a></h2>

<p>I really don't know why I didn't complete this a few years ago. Just another of those projects which got lost on the back burner!
<!--
Again, the book is available through Amazon in the following countries.
<ul>
<li><a href="http://www.amazon.co.uk/gp/product/B00EORO51U/ref=as_li_ss_il?ie=UTF8&camp=1634&creative=19450&creativeASIN=B00EORO51U&linkCode=as2&tag=shkspr-21">Amazon UK</a>
    </li><li><a href="https://www.amazon.com/dp/B00EORO51U/">Amazon US</a></li>
    <li><a href="https://www.amazon.ca/dp/B00EORO51U">Amazon Canada</a></li>
    <li><a href="https://www.amazon.fr/dp/B00EORO51U">Amazon France</a></li>
    <li><a href="https://www.amazon.de/dp/B00EORO51U">Amazon Germany</a></li>
    <li><a href="https://www.amazon.it/dp/B00EORO51U">Amazon Italy</a></li>
    <li><a href="https://www.amazon.es/dp/B00EORO51U">Amazon Spain</a></li>
    <li><a href="https://www.amazon.co.jp/dp/B00EORO51U">Amazon Japan</a></li>
    <li><a href="https://www.amazon.in/dp/B00EORO51U">Amazon India</a></li>
    <li><a href="https://www.amazon.com.br/dp/B00EORO51U">Amazon Brazil</a></li>
</ul>
--></p>

<ul>
    <li><a href="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Voynich-Manuscript.pdf" download="">PDF - suitable for Kindle, nook, Kobo, Android, iOS and for most devices</a> (60MB)</li>
    <li><a href="https://shkspr.mobi/blog/wp-content/uploads/2013/08/Voynich-Manuscript.cbz" download="">CBZ - suitable for comic book readers, tablets, etc.</a>  (60MB)</li>
</ul>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=8606&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2013/08/voynich-manuscript-ebook/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[A Stock Exchange For Digital Media]]></title>
		<link>https://shkspr.mobi/blog/2013/01/a-stock-exchange-for-digital-media/</link>
					<comments>https://shkspr.mobi/blog/2013/01/a-stock-exchange-for-digital-media/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sun, 06 Jan 2013 12:00:23 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[right to read]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=7300</guid>

					<description><![CDATA[The Internet is &#34;the world&#039;s most efficient copying machine&#34; -- Cory Doctorow.  This is a long and rambling blog post which asks two questions:       Given that we can only read one book at a time - can we set up a &#34;Kindle Stock Exchange&#34; for our unused media?     If so, what effect would this have on content producers and sellers who rely on artificial scarcity?   This has been mulling over in…]]></description>
										<content:encoded><![CDATA[<blockquote>The Internet is "<a href="http://craphound.com/littlebrother/about/">the world's most efficient copying machine</a>" -- Cory Doctorow.</blockquote>

<p>This is a long and rambling blog post which asks two questions:</p>

<ol>
    <li>Given that we can only read one book at a time - can we set up a "Kindle Stock Exchange" for our unused media?</li>
    <li>If so, what effect would this have on content producers and sellers who rely on artificial scarcity?</li>
</ol>

<p>This has been mulling over in my head for some time.</p>

<p></p><div id="attachment_2400" style="width: 310px" class="wp-caption alignnone"><a href="http://www.freefoto.com/preview/?ffid=1351-06-2"><img aria-describedby="caption-attachment-2400" class="size-medium wp-image-2400 " title="The Latin Quarter, Paris, France" src="https://shkspr.mobi/blog/wp-content/uploads/2010/08/1351_06_2_prev-300x200.jpg" alt="(c) FreeFoto.com Image licensed under Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 License" width="300" height="200"></a><p id="caption-attachment-2400" class="wp-caption-text">Image from FreeFoto.com</p></div><p></p>

<h2 id="transactional-friction"><a href="https://shkspr.mobi/blog/2013/01/a-stock-exchange-for-digital-media/#transactional-friction">Transactional Friction</a></h2>

<p>One of the great advantages of the digital era is the reduction of transactional friction.</p>

<p>The time, effort and money it takes to perform a transaction in the online world is radically reduced from that of the physical world. Sending a letter to the other side of the world used to take weeks - and involved ships, planes, and physical delivery. Now a click of the mouse sends it anywhere in an instant.</p>

<p><a href="http://www.nealstephenson.com/">Neal Stephenson</a>'s novels in the <a href="http://www.amazon.co.uk/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.co.uk%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb_sb_ss_i_0_11%26y%3D0%26field-keywords%3Dbaroque%2520cycle%26url%3Dsearch-alias%253Daps%26sprefix%3DBaroque%2520cyc&amp;tag=shkspr-21&amp;linkCode=ur2&amp;camp=1634&amp;creative=19450">Baroque Cycle</a><img style="border: none !important;margin: 0px !important" src="https://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=ur2&amp;o=2" alt="" width="1" height="1" border="0"> document the rise of the bank note. It used to be common practice for wealthy people to lug their gold with them when they went on journeys. This was, as you can imagine, a highly inefficient practice - it was slow, dangerous, and expensive. The bank note reduced the friction of having to physically transport gold.</p>

<p><a href="http://www.amazon.co.uk/gp/product/0099410680?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0099410680"><img class="aligncenter size-full wp-image-2387" title="41D7NDBKXTL._SL160_" src="https://shkspr.mobi/blog/wp-content/uploads/2010/08/41D7NDBKXTL._SL160_.jpg" alt="Cover art of Quicksilver" width="104" height="160"></a></p>

<p>The efficiency of being able to settle large debts without the need to physically move goods was a revolution which introduced the free movement of capital, and dramatically altered the nature of debt and lending. It shaped the modern world.</p>

<p>The digital world can also free us from the needs of the physical. While many of us already have some goods that only exist as 1s and 0s on disk - some <a href="https://web.archive.org/web/20130923145812/https://cultofless.tumblr.com/post/182833987/is-it-possible-to-own-nothing">pioneers</a> have already shifted as <a href="http://boingboing.net/2010/08/17/the-nitty-gritty-of.html">many of their possessions as possible away from the physical world</a>. They've turned their heavy, impractical, and inefficient gold into a light, practical and frictionless bank note.  A lifetime of books, films and music - stored on a lightweight thumb drive.  Or floating weightless on the Internet.</p>

<p>That's why, last year, <a href="https://shkspr.mobi/blog/2012/03/burning-all-my-books/">I decided to burn all my books</a>.</p>

<h2 id="making-money"><a href="https://shkspr.mobi/blog/2013/01/a-stock-exchange-for-digital-media/#making-money">Making Money</a></h2>

<p><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/08/IMG_20100822_121354.jpg"><img class="aligncenter size-medium wp-image-2396" title="IMG_20100822_121354" src="https://shkspr.mobi/blog/wp-content/uploads/2010/08/IMG_20100822_121354-225x300.jpg" alt="My Bookshelf" width="225" height="300"></a></p>

<p>Here's a picture of my book shelf. At any moment, I can only read one book at a time, watch one DVD, and listen to one CD.</p>

<p>Would it make sense to sell all the books and DVDs I owned <em>except</em> for the one I was currently using? When it comes to <em>physical</em> books - no.</p>

<p>It would be so <strong>inefficient</strong>. It takes too much time, money, and effort to sell a single book than the value I would recoup from doing so. Sticking a book on eBay, postage, packing, dealing with refunds etc. is a lot of effort for relatively small gain.</p>

<p>The digital world changes all of that. While the ability to instantly consume is exciting,  what intrigues me is the ability to take my goods to market - and the consequences that would have on capitalism.</p>

<p>What would happen when - rather than buying books instantly - I can offer them for sale instantly?</p>

<h2 id="selling-my-bookshelf"><a href="https://shkspr.mobi/blog/2013/01/a-stock-exchange-for-digital-media/#selling-my-bookshelf">Selling My Bookshelf</a></h2>

<p>Imagine if you could easily rent out your DVDs - like a mini-BlockBuster. They're sat unused on the shelf all night, ignored while you're at work during the day, left unplayed when you go shopping.</p>

<p>The hyper-efficient online world makes this possible.</p>

<p>Just like taking a loan secured on my assets (car, house), I can release equity from my digital goods by selling them when I'm not using them. Which is most of the time.</p>

<p>99% of the time, your DVD collection isn't in use. You may <a href="https://web.archive.org/web/20130121054646/http://moviesatwork.co.uk/index.php">share them with your family, friends, and co-workers</a> - why wouldn't you share them with <em>everyone</em>?</p>

<p>There are some very good reasons why not in the physical world - access, lack of selection in your collection, wear and tear - but in the frictionless online marketplace, most of these concerns disappear.</p>

<p>Just as on eBay, your single DVD sits on the same shelf as someone selling thousands of DVDs.  The buyer probably doesn't care about range of selection or the providence of a seller - she just wants the item she desires.</p>

<p>With digital copies there are no issues of wear and tear and an online copy of a work is instantly accessible.</p>

<p>A second hand digital work is identical in quality to a factory fresh copy. My ebook edition of <a href="http://craphound.com/littlebrother/download/">Little Brother</a> is bit-for-bit identical to one bought anywhere.  In a perfect market, it would fetch the same price as one purchased from a retailer.  Or, more likely, the retailer would reduce the price to the lowest available on the market.
<a href="http://craphound.com/littlebrother/"><img class="aligncenter size-full wp-image-2386" title="littlebrotheruk" src="https://shkspr.mobi/blog/wp-content/uploads/2010/08/littlebrotheruk.jpg" alt="Cover art for Little Brother" width="321" height="489"></a></p>

<p>(This leads us down an interesting path. The whole notion of "second hand" or "used" goods disappears when we're talking about digital copies. But that's for another post.)</p>

<h2 id="real-time-trading"><a href="https://shkspr.mobi/blog/2013/01/a-stock-exchange-for-digital-media/#real-time-trading">Real Time Trading</a></h2>

<p>We can even go a step further.  Stock trading used to be conducted by sweaty men shouting in arenas.  There are now <a href="http://econophysics.blogspot.com/2007/06/algorithmic-trading.html">electronic agents on the the stock exchange which process millions of trades per second</a>.  Every millisecond the computers execute trades based on real-time information.</p>

<p>I've said previously that you can only read one book at a time.  Your eBook reader will only display one page at a time - so why not <strong>sell the pages that you aren't reading</strong>?  In the physical world, perhaps two people can read a book at the same time (if they're close and not overly annoyed with the other's reading speed).  In the digital world, you could have one reader for every page in the book.</p>

<p>The second you click "Next Page" your eBook reader could instantly find the cheapest price for the page you want to read - and sell the pages you're not reading for the best price.</p>

<p>A DVD could be separated into scenes or - to push it to the extreme - individual frames.  If I sell my movies when I'm <em>not</em> watching them - why shouldn't I lend or sell them while I <em>am</em> watching them?</p>

<h2 id="the-effect"><a href="https://shkspr.mobi/blog/2013/01/a-stock-exchange-for-digital-media/#the-effect">The Effect</a></h2>

<p>Moving from transporting gold to transporting bank notes to digital trading has radically changed the nature of money and banking.  The free movement of capital completely disrupted the way the world works.  The free market dominates economic thought. But it is only a free market between giant players.  Only corporations can afford to play capitalism's game.</p>

<p>Will the free market be brought down to individuals?  Will a grandmother in her living room be able to sell her digital goods as easily and freely as Warner Brothers?</p>

<p>What does the media publishing landscape look like when every consumer can change their bookshelf into a second hand store?  Why would anyone buy a copy of a work from Amazon when they could borrow from their neighbour - even if that neighbour lived on the other side of the world?</p>

<p>Would we see multiple <a href="http://en.wiktionary.org/wiki/bourse">Bourse</a> to facilitate the exchange and a willingness for people to sweat their assets?</p>

<p>Perhaps it will move us to "subscription" models for mixed media - taking a £50 per month subscription to books in the same way many of us do for television channels.</p>

<p>What does it even mean to sell goods when they can be replicated instantly at zero cost?</p>

<p>I don't know - but I think it will be exciting to witness.</p>

<h2 id="there-is-an-analogue-hole-in-your-mind"><a href="https://shkspr.mobi/blog/2013/01/a-stock-exchange-for-digital-media/#there-is-an-analogue-hole-in-your-mind">There Is An Analogue Hole In Your Mind</a></h2>

<p>Applying analogue thinking to the digital world leads us down some interesting rabbit holes.  As a thought-experiment, it's incredible to imagine that we could end up in a crazy world where we pay-per-word, where the <a href="http://www.gnu.org/philosophy/right-to-read.html">right to read</a> is predicated on software stock brokers trying to extract every micro-cent of value out of copyrighted works.</p>

<p>We need to break out of our old ways of thinking.  The zero-friction economy is a <a href="http://en.wikipedia.org/wiki/Paradigm_shift">paradigm shift</a> (in the sense of <a href="http://en.wikipedia.org/wiki/Thomas_Samuel_Kuhn">Kuhn</a>).  We need to adapt our modes of thinking and our economies to this brave new world.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=7300&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2013/01/a-stock-exchange-for-digital-media/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[If The Kindle is Sold at Break-Even, Why Doesn't Amazon Sell ePub?]]></title>
		<link>https://shkspr.mobi/blog/2012/11/if-the-kindle-is-sold-at-break-even-why-doesnt-amazon-sell-epub/</link>
					<comments>https://shkspr.mobi/blog/2012/11/if-the-kindle-is-sold-at-break-even-why-doesnt-amazon-sell-epub/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 15 Nov 2012 07:10:11 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[.mobi]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[epub]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=6399</guid>

					<description><![CDATA[Amazon claims that it makes no money from the sale of Kindle eReader hardware.  Looking at the prices of eink devices at wholesalers, this looks broadly accurate.  They do seem to be selling at around wholesale cost - customers also get Amazon&#039;s fabulous support, free software updates, and high quality manufacturing.  Yet there is a curious anomaly. Why aren&#039;t Amazon selling ePub books? …]]></description>
										<content:encoded><![CDATA[<p>Amazon claims that <a href="http://www.forbes.com/sites/kellyclay/2012/10/12/amazon-confirms-it-makes-no-profit-on-kindles/">it makes no money from the sale of Kindle eReader hardware</a>.</p>

<p>Looking at <a href="http://www.alibaba.com/showroom/e--ink.html">the prices of eink devices at wholesalers</a>, this looks broadly accurate.  They do seem to be selling at around wholesale cost - customers also get Amazon's fabulous support, free software updates, and high quality manufacturing.</p>

<p>Yet there is a curious anomaly. Why aren't Amazon selling ePub books?</p>

<h2 id="terminology"><a href="https://shkspr.mobi/blog/2012/11/if-the-kindle-is-sold-at-break-even-why-doesnt-amazon-sell-epub/#terminology">Terminology</a></h2>

<p>A quick diversion into the terminology used in this article.</p>

<ul>
    <li>eReader - the physical hardware. Kindle, Kobo, nook, etc.</li>
    <li>eBook - the electronic file containing the words &amp; pictures. ePub, Mobi, PDF, etc.</li>
</ul>

<h2 id="background"><a href="https://shkspr.mobi/blog/2012/11/if-the-kindle-is-sold-at-break-even-why-doesnt-amazon-sell-epub/#background">Background</a></h2>

<p>There are, broadly speaking, two main formats for ebook - ePub and MobiPocket.  Think of them like the difference between 8-Tracks and cassette tapes - they both hold music, but play on different system.</p>

<p>ePub works on just about every eReader on the planet - with the notable exception of the Kindle.</p>

<p>MobiPocket (or Mobi, for short) only works on the Kindle<sup id="fnref:mobi"><a href="https://shkspr.mobi/blog/2012/11/if-the-kindle-is-sold-at-break-even-why-doesnt-amazon-sell-epub/#fn:mobi" class="footnote-ref" title="I'm talking specifically about the DRM'd form of Mobi which is sold by Amazon." role="doc-noteref">0</a></sup>.</p>

<p>Wikipedia has a fairly comprehensive <a href="http://en.wikipedia.org/wiki/Comparison_of_e-book_readers#File_format_support">comparison of which device can handle which format</a>.</p>

<p>So, we have a problem.  The books you buy from Amazon can't be read on your Sony, Kobo, Nook, or Generic eReader.  Well, they can, but you have to <a href="http://www.wired.com/2011/01/how-to-strip-drm-from-kindle-e-books-and-others/">remove the DRM</a>, covert the book to the ePub, and hope that everything works ok.</p>

<p>What a pain in the arse.</p>

<h2 id="what-would-happen-if"><a href="https://shkspr.mobi/blog/2012/11/if-the-kindle-is-sold-at-break-even-why-doesnt-amazon-sell-epub/#what-would-happen-if">What Would Happen If...</a></h2>

<p>Now, I'm not suggesting that the Kindle should be able to read ePub books.  Obviously, it's technically capable of doing so - but it would mean that Amazon customers could compare prices with other retailers and start to leave the Amazon ecosystem.</p>

<p>What I'm suggesting is that Amazon should say "Buy this ebook for your Kobo" and deliver an ePub to those poor, unfortunate souls who haven't been blessed with a Kindle.</p>

<p>There are lots of <a href="http://pinterest.com/bwmbooks/ebook-ereader-stats-and-charts/">statistics regarding eReader share</a>.  Some suggest that <a href="https://socialmediachimps.com/2012/04/infographic-ebook-readers-book-publishing-industry/">Amazon have a ~47% share of the eReader market in the US</a> whereas the <a href="http://en.wikipedia.org/wiki/Kobo_eReader#Market_share">Kobo eReader has a 46% share in Canada, and 50% share in France</a>.</p>

<p>Let's say that the Kindle has a worldwide share of 50%.  Amazon has two options:</p>

<ol><li>It can aggressively pursue that market share by producing more innovative, cheaper hardware, and hope to convert users to the Amazon flock</li>
<li>It can accept that some people don't want its hardware and start selling books directly to those users</li>
</ol>

<p>Amazon claims that it makes more money from eBook sales than hardware. So why doesn't it expand its market to the 50% of eReaders which are currently not served by its store?</p>

<p>At the moment, customers with Kobo, nook, and other eReaders can compare prices across a number of eBook stores.  What would happen if they could add Amazon to the list of shops they could compare with?</p>

<div id="footnotes" role="doc-endnotes">
<hr aria-label="Footnotes">
<ol start="0">

<li id="fn:mobi">
<p>I'm talking specifically about the DRM'd form of Mobi which is sold by Amazon.&nbsp;<a href="https://shkspr.mobi/blog/2012/11/if-the-kindle-is-sold-at-break-even-why-doesnt-amazon-sell-epub/#fnref:mobi" class="footnote-backref" role="doc-backlink">↩︎</a></p>
</li>

</ol>
</div>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=6399&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2012/11/if-the-kindle-is-sold-at-break-even-why-doesnt-amazon-sell-epub/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Advertising On The Kindle]]></title>
		<link>https://shkspr.mobi/blog/2011/04/advertising-on-the-kindle/</link>
					<comments>https://shkspr.mobi/blog/2011/04/advertising-on-the-kindle/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Mon, 11 Apr 2011 23:10:46 +0000</pubDate>
				<category><![CDATA[badvertising]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[mobile]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=3920</guid>

					<description><![CDATA[It looks like the next big thing in Kindle-land is - depressingly - advertising subsidisation.  the world&#039;s first ad-supported Kindle, going on sale within Target and Best Buy locations for $114. That represents a gentle $25 savings compared to the price of today&#039;s cheapest Kindle, but those 2500 pennies don&#039;t come free -- you&#039;ll be asked to endure &#34;advertisements on the bottom of the device&#039;s…]]></description>
										<content:encoded><![CDATA[<p>It looks like the next big thing in Kindle-land is - depressingly - advertising subsidisation.</p>

<blockquote><p>the world's first ad-supported Kindle, going on sale within Target and Best Buy locations for $114. That represents a gentle $25 savings compared to the price of today's cheapest Kindle, but those 2500 pennies don't come free -- you'll be asked to endure "advertisements on the bottom of the device's home page and on its screen savers."
</p><p><a href="http://www.engadget.com/2011/04/11/ad-supported-kindle-to-ship-may-3rd-saves-25-adds-lot-of-enti/">Engadget</a>
</p></blockquote>

<h2 id="can-it-work"><a href="https://shkspr.mobi/blog/2011/04/advertising-on-the-kindle/#can-it-work">Can It Work?</a></h2>

<p>On the strength of the current evidence - no.</p>

<p>Browsing on the Kindle's web browser is a slow and frustrating experience.  It's slow at downloading, takes ages to render, and scrolling is a nightmare.  That's ok - it's primarily a book; not a browser.</p>

<p>But that's not the worst thing.  The worst thing is that advertisers just don't know how to advertise on this medium.  Take a look at <a href="https://shkspr.mobi/blog/category/badvertising/">the crap that goes on in mobile advertising</a>.  Do you think that advertisers will have the wherewithal to make a Kindle-friendly advert?</p>

<p>Not even Amazon can make it work.  Take a look at this.
<a href="https://shkspr.mobi/blog/wp-content/uploads/2011/04/Kindle-Wine-Banner.gif"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/04/Kindle-Wine-Banner-300x184.gif" alt="Kindle Wine Banner" title="Kindle Wine Banner" width="300" height="184" class="aligncenter size-medium wp-image-3922"></a></p>

<p>While browsing on the Kindle, I spotted this banner advert.  What struck me was that the advertiser had clearly target the Kindle - probably via User-Agent sniffing.  Intrigued, I clicked on it, only to be greeted with this monstrosity.
<a href="https://shkspr.mobi/blog/wp-content/uploads/2011/04/Kindle-web-store-on-Kindle.gif"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/04/Kindle-web-store-on-Kindle-225x300.gif" alt="Kindle web store on Kindle" title="Kindle web store on Kindle" width="225" height="300" class="aligncenter size-medium wp-image-3921"></a>
Yes - not even Amazon's store renders well on the Amazon Kindle.  While the mobile version of the site may work, there would still be no way to buy the book.  Even if it did, I'm in the UK and can't buy from the American store.</p>

<p>So, I ask again: <strong>If Amazon can't write a website which works well on a Kindle - what makes you think an advertiser can?</strong></p>

<h2 id="what-would-work"><a href="https://shkspr.mobi/blog/2011/04/advertising-on-the-kindle/#what-would-work">What Would Work?</a></h2>

<p>Many years ago - I was in discussion with the people who <em>almost</em> got the Kindle on their mobile network.  There were a number of different business models floated - many completely unsuitable - but some only waiting for the right time.</p>

<ol>
    <li>The hardware for the Kindle is (reasonably) expensive as an upfront cost.</li>
    <li>Most customers are mathematically challenged</li>
</ol>

<p>Would people buy the Kindle in the same way that they buy a phone?  Give customers a £111 Kindle FREE! (on a £9.99 per month contract).</p>

<p>Of course, the missing piece of the puzzle is what you get for the £9.99.  Amazon book tokens? Free OTA podcasts? Subscriptions to newspapers?</p>

<p>I don't have the answer - but I suspect Amazon wants to lower the cost of the hardware and increase the attach rate (number of Kindle books a user buys).</p>

<p>Why not do an offer similar to this.</p>

<ul>
    <li>Kindle costs £111</li>
    <li>Comes with £200 worth of Amazon book tokens!</li>
    <li>The Amazon vouchers are in the denomination of 2*£10, 6*£7.50, 20*£5, 35*£1</li>
    <li>Or, perhaps the vouchers are in the form "50% off", "25% off", etc</li>
    <li>Vouchers are provided to the user over 12 months</li>
    <li>Vouchers expire after 3 months</li>
</ul>

<p>The purchase price is all of a sudden much more palatable given the FREE vouchers.  The discounts could probably be eaten by some publishers - or at least partially.  The "risk" of buying an eBook is significantly reduced in the eyes of the customer - leading to an increased attach rate.  Most customers aren't going to use the full value of the vouchers.</p>

<p>Just sticking on banner adverts for perfume seems so... <em>lazy</em>!</p>

<h2 id="amazons-strengths"><a href="https://shkspr.mobi/blog/2011/04/advertising-on-the-kindle/#amazons-strengths">Amazon's Strengths</a></h2>

<p>Amazon has a great record on "people who bought X also liked Y".  Why not bring that to Kindle?  Instead of this incredibility lame screen...</p>

<p><a href="https://shkspr.mobi/blog/wp-content/uploads/2011/04/screen_shot-160.gif"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/04/screen_shot-160-225x300.gif" alt="Kindle Rating Screen" title="Kindle Rating Screen" width="225" height="300" class="aligncenter size-medium wp-image-3927"></a>
...why not recreate this page for the 21st century?
<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/04/Corgi-Paperback-titles-for-sale-on-back-page.jpg" alt="Corgi Paperback - titles for sale on back page" title="Corgi Paperback - titles for sale on back page" width="457" height="574" class="aligncenter size-full wp-image-3931">
Amazon has my credit card details and my address - they don't <em>need</em> advertising from third parties!</p>

<ul>
    <li>Finished reading Pride and Prejudice? <a href="http://www.amazon.co.uk/gp/product/B001E454FC/ref=as_li_ss_tl?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B001E454FC">Buy the DVD!</a></li>
    <li>Enjoyed Brick Lane?  <a href="http://www.amazon.co.uk/gp/product/B003D74SAK/ref=as_li_ss_tl?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=B003D74SAK">Get this great balti dish set delivered to your door!</a></li>
    <li>Wow! Oryx and Crake was pretty good huh? <a href="http://www.amazon.co.uk/gp/product/1844085643/ref=as_li_ss_tl?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1844085643">Download the sequel - The Year of the Flood</a></li>
</ul>

<p>Subsidising the hardware cost with enforced banner adverts is a flabby and uninventive 1990's business model.  It also places the Amazon brand at risk of a crappy user experience.</p>

<p>I don't think readers will welcome a turgid little banner for perfume.  But I think they will embrace relevant and contextual advertising which adds value to their reading experience.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=3920&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2011/04/advertising-on-the-kindle/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Review: Verso Arc Light for Kindle - from LightWedge]]></title>
		<link>https://shkspr.mobi/blog/2011/03/review-verso-arc-light-for-kindle-from-lightwedge/</link>
					<comments>https://shkspr.mobi/blog/2011/03/review-verso-arc-light-for-kindle-from-lightwedge/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 29 Mar 2011 21:32:26 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[review]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=3808</guid>

					<description><![CDATA[As you may have guessed from previous posts, I love my Kindle.  I often read late into the night, which either means keeping a light on and annoying my wife - or using a book light.  Normally, I&#039;d be happy just annoying her - but I can&#039;t resist the allure of buying new technology!  I tried a few generic book lights but they were either too dim, didn&#039;t fit correctly, used obscure batteries or - as …]]></description>
										<content:encoded><![CDATA[<p>As you may have guessed from previous posts, <a href="https://shkspr.mobi/blog/tag/kindle/">I love my Kindle</a>.  I often read late into the night, which either means keeping a light on and annoying my wife - or using a book light.  Normally, I'd be happy just annoying her - but I can't resist the allure of buying new technology!</p>

<p>I tried a few generic book lights but they were either too dim, didn't fit correctly, used obscure batteries or - as with the official booklight case - ensconced in vegetarian unfriendly leather.</p>

<p>Then, I discovered the <a href="https://web.archive.org/web/20110602084507/http://www.lightwedge.com/Welcome/Verso-Arc-Light">Verso Arc Light</a> - manufactured by a company called LightWedge.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/03/Packaging.jpg" alt="Verso Arc Light Packaging" title="Verso Arc Light Packaging" width="480" height="711" class="aligncenter size-full wp-image-3810">
It's got everything I was looking for in a book light.</p>

<ul>
    <li>Small and light</li>
    <li>Rechargeable via micro-USB</li>
    <li>Bright</li>
    <li>Fits other eBooks</li>
</ul>

<h2 id="gratuitous-demo"><a href="https://shkspr.mobi/blog/2011/03/review-verso-arc-light-for-kindle-from-lightwedge/#gratuitous-demo">Gratuitous Demo</a></h2>

<p>Before I get into the specs - here's a demo of how it works.</p>

<iframe title="Verso Arc Light from LightWedge" width="620" height="349" src="https://www.youtube.com/embed/3A6-hY88lYc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<p>The movement on the light is slightly odd.  I like the way it gently slides out - but it does make it feel a little flimsy.
<span id="more-3808"></span></p>

<h2 id="rechargeable"><a href="https://shkspr.mobi/blog/2011/03/review-verso-arc-light-for-kindle-from-lightwedge/#rechargeable">Rechargeable</a></h2>

<p>I looked at a number of ebook lights and their either required batteries - which may be hard to find if you're on holiday - or a proprietary charger.
Lightwedge have done the smart thing and made the Arc Light rechargeable via the same connector as the Kindle.  That means when I go away I only need to take one cable to charge my Kindle, light, phone, and BlueTooth. Viva USB!</p>

<p>Bonus - it even has a charging light to let you know it's charging and when it is completely charged.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/03/Charging.jpg" alt="Verso Arc Light Charging" title="Verso Arc Light Charging" width="480" height="357" class="aligncenter size-full wp-image-3811">
It took a few hours to fully charge, but you can charge it a little at a time. It will even charge and light at the same time.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/03/Charged.jpg" alt="Verso Arc Light Charged" title="Verso Arc Light Charged" width="419" height="254" class="aligncenter size-full wp-image-3812">
At 15 hours of light on a full charge - you shouldn't need to plug it in too often.</p>

<h2 id="accessories"><a href="https://shkspr.mobi/blog/2011/03/review-verso-arc-light-for-kindle-from-lightwedge/#accessories">Accessories</a></h2>

<p>As well as coming with a standard micro-USB cable (no US plug - just the cable) there are two adapters to make the light fit other ebooks - they specifically mention Kindle 1,2,3,DX, Sony PRS-300 &amp; PRS-600, Kobo and nook.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/03/Attached.jpg" alt="Lightwedge attached to Kindle" title="Lightwedge attached to Kindle" width="299" height="495" class="aligncenter size-full wp-image-3813">
I found that the fit was snug, even with a gel-case on my Kindle.</p>

<p>It's unlikely to fall off unless you give it a sustained shake.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2011/03/Gel-Case.jpg" alt="Lightwedge attached to Kindle - side view" title="Lightwedge attached to Kindle  side view" width="380" height="536" class="aligncenter size-full wp-image-3814">
It's padded, so it won't scratch or mark your device.</p>

<h2 id="price"><a href="https://shkspr.mobi/blog/2011/03/review-verso-arc-light-for-kindle-from-lightwedge/#price">Price</a></h2>

<p>The Arc Light retails online for US$40 (~£25) - and that's <em>before</em> shipping from the USA.
Luckily, I found a dealer in Ireland selling the Verso Arc Light on eBay.  Total cost including shipping was €25 (~£22) and was delivered within a week.</p>

<h2 id="let-there-be-light"><a href="https://shkspr.mobi/blog/2011/03/review-verso-arc-light-for-kindle-from-lightwedge/#let-there-be-light">Let There Be Light!</a></h2>

<p><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/03/Lit-1.jpg" alt="" title="Lit 1" width="480" height="360" class="aligncenter size-full wp-image-3825"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/03/Lit-2.jpg" alt="Lit 2" title="Lit 2" width="480" height="627" class="aligncenter size-full wp-image-3826">
The light is bright and covers the whole screen.  Naturally, it's slightly darker towards the bottom of the page - but still bright enough to read easily.</p>

<h2 id="verdict"><a href="https://shkspr.mobi/blog/2011/03/review-verso-arc-light-for-kindle-from-lightwedge/#verdict">Verdict</a></h2>

<p>As I said, it feels a little flimsy.  Others have complained about build quality - but mine seems all right so far.</p>

<iframe title="Verso Arc Light from LightWave part 2" width="620" height="349" src="https://www.youtube.com/embed/m0EeTi5v0uY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<p>I would have liked a little carry case or pouch to keep it insulated from knocks and bumps while it isn't in use - but that's a minor niggle.
The USB cable it came with was fine for charging - but didn't seem to support data transfer from my phone. As cables are ten-a-penny, it's not much of an issue.</p>

<p>Overall, a great accessory and a must-buy for any Kindle owner with a partner who needs their beauty sleep!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=3808&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2011/03/review-verso-arc-light-for-kindle-from-lightwedge/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Kindle Wallpaper: Books are weapons in the war of ideas]]></title>
		<link>https://shkspr.mobi/blog/2011/02/books-are-weapons-in-the-war-of-ideas/</link>
					<comments>https://shkspr.mobi/blog/2011/02/books-are-weapons-in-the-war-of-ideas/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 22 Feb 2011 12:30:51 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[kindle]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/index.php/2011/02/books-are-weapons-in-the-war-of-ideas/</guid>

					<description><![CDATA[I was reading this article on Armed Services Editions of books distributed during World War 2, when I came across this extraordinary propaganda poster.  Original image is from The Boston Public Library on Flickr under CC BY NC.  What strikes me is how detailed the poster is.  The power of the quote.  The sheer neutrality of the sentiment.  Books - any book is a weapon.  Whether it is The…]]></description>
										<content:encoded><![CDATA[<p>I was reading this article on <a href="http://artofmanliness.com/2011/02/20/literature-on-the-frontlines-the-history-of-armed-services-edition-books/">Armed Services Editions of books distributed during World War 2</a>, when I came across this extraordinary propaganda poster.
<a title="photo sharing" href="http://www.flickr.com/photos/boston_public_library/2351907969/"><img src="https://farm3.static.flickr.com/2389/2351907969_ddca335ae6_m.jpg" alt="Books are weapons in the war of ideas"></a>
Original image is from <a href="http://www.flickr.com/photos/boston_public_library/2351907969/">The Boston Public Library on Flickr</a> under <a href="http://creativecommons.org/licenses/by-nc/2.0/">CC BY NC</a>.</p>

<p>What strikes me is how detailed the poster is.  The power of the quote.  The sheer neutrality of the sentiment.  Books - <em>any book</em> is a weapon.  Whether it is <a href="http://www.gutenberg.org/ebooks/61">The Communist Manifesto</a> or <a href="http://en.wikipedia.org/wiki/Atlas_Shrugged">Atlas Shrugged</a>.  Imagine a Kindle full of books placed into the hands of a child.  If all those books were in the <a href="http://www.gutenberg.org/wiki/Racism_%28Bookshelf%29#Antisemitism">same vein</a>, it would be very easy to distort their world view.</p>

<p>And I think that's the key.  It is book<strong>s</strong> - plural - which act as weapons.  Like any gun, sword, or fist, they can be wielded by either side.</p>

<p>I think the OLPC is a magnificent product.  But what happens if we distribute a (ruggedised) eBook reader to children around the world?  That's what <a href="http://www.worldreader.org/">Worldreader</a> is aiming to do. Taking eReaders around the world.  No longer are people restricted to the handful of books they may have nearby.  No longer having to choose between travelling to a library or travelling to work.  A lifetime of books on every device.  With mobile phone coverage increasing around the world, access to every book ever written.</p>

<p>Of course, there's nothing to stop people reading <a href="http://en.wikipedia.org/wiki/Mein_Kampf">Mein Kampf</a>.  Nothing to stop them reading Harry Potter.  We just have to trust that, in this war of ideas, the ideals of peace, justice and liberty, are more powerful than the alternatives.</p>

<p>So, here's the Kindle wallpaper.  Hopefully it will remind you that every book on your device is a powerful and disruptive weapon.
<a href="https://shkspr.mobi/blog/wp-content/uploads/2011/02/Books-Are-Weapons-in-the-War-of-Ideas-compressed.jpg"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/02/Books-Are-Weapons-in-the-War-of-Ideas-compressed.jpg" alt="Books Are Weapons in the War of Ideas" title="Books Are Weapons in the War of Ideas" class="aligncenter size-medium wp-image-3645"></a></p>

<p>I've submitted this to <a href="http://kindlewallpapers.tumblr.com/">the Kindle Wallpapers blog</a>. You can download it by clicking on the preview above.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=3643&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2011/02/books-are-weapons-in-the-war-of-ideas/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Holiday Reading]]></title>
		<link>https://shkspr.mobi/blog/2011/01/holiday-reading/</link>
					<comments>https://shkspr.mobi/blog/2011/01/holiday-reading/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Wed, 05 Jan 2011 13:22:03 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Book Review]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[review]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=3375</guid>

					<description><![CDATA[Thanks for all the suggestions on which eBooks I should read on holiday.  I didn&#039;t get through as many as I would have liked (crappy flights and too many pre-lunch cocktails!) - but here&#039;s what I did read and what I thought of them.  Anathem   Neal Stephenson&#039;s Anathem By rights, I should have loved this book.  But I didn&#039;t.  I couldn&#039;t even get 5% of the way through.  Perhaps it was the…]]></description>
										<content:encoded><![CDATA[<p>Thanks for all the suggestions on <a href="https://shkspr.mobi/blog/2010/12/which-ebooks-should-i-read-on-holiday/">which eBooks I should read on holiday</a>.  I didn't get through as many as I would have liked (crappy flights and too many pre-lunch cocktails!) - but here's what I did read and what I thought of them.</p>

<h2 id="anathem"><a href="https://shkspr.mobi/blog/2011/01/holiday-reading/#anathem">Anathem</a></h2>

<p><a href="http://www.amazon.co.uk/gp/product/1843549174?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1843549174"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/01/51H5FyTegfL._SL160_.jpg" alt="Anathem" title="51H5FyTegfL._SL160_" width="104" height="160" class="aligncenter size-full wp-image-3378"></a>
<a href="http://www.amazon.co.uk/gp/product/1843549174?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1843549174">Neal Stephenson's Anathem</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=1843549174" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">
By rights, I should have loved this book.  But I didn't.  I couldn't even get 5% of the way through.  Perhaps it was the <a href="http://chocolateandvodka.com/2010/11/18/long-words/">deliberate use of overcomplicated language</a>, or perhaps because it feels like it's an n-th generation copy of <a href="http://www.amazon.co.uk/gp/product/0553273817?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0553273817">A Canticle for Leibowitz</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=0553273817" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;"> - I just couldn't get in to it.  There are obviously some fascinating ideas in there, but I feel that Stephenson has gone for "Epic Tome" where a judicial use of the red pen would make it far more readable.</p>

<h2 id="seeing-further"><a href="https://shkspr.mobi/blog/2011/01/holiday-reading/#seeing-further">Seeing Further</a></h2>

<p><a href="http://www.amazon.co.uk/gp/product/0061999768?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0061999768"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/01/51h6lxsouxL._SL160_.jpg" alt="Seeing Further" title="51h6lxsouxL._SL160_" width="120" height="160" class="aligncenter size-full wp-image-3377"></a>
<a href="http://www.amazon.co.uk/gp/product/0061999768?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0061999768">Bill Bryson's Seeing Further: The Story of Science, Discovery, and the Genius of the Royal Society</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=0061999768" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">
The essays contained within range between frighteningly good (Richard Dawkins on evolution) and mawkishly unfathomable (Margaret Wertheim who seems to think that because there might be an eleventh dimension, that means the Bible is literally true.... WTF?).
The essays are, on the whole, entertaining and informative - but they do stray quite wildly from the subject of the Royal Society.
After being so cruel to Neal Stephenson, I should say that his essay on Leibniz and Newton is deliciously good - and it reveals much of the historical background to Stephenson's Baroque Cycle.</p>

<h2 id="the-last-dragon-slayer"><a href="https://shkspr.mobi/blog/2011/01/holiday-reading/#the-last-dragon-slayer">The Last Dragon Slayer</a></h2>

<p><a href="http://www.amazon.co.uk/gp/product/1444707175?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1444707175"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/01/51K09WAp88L._SL160_.jpg" alt="The LAst Dragon Slayer" title="51K09WAp88L._SL160_" width="106" height="160" class="aligncenter size-full wp-image-3383"></a>
<a href="http://www.amazon.co.uk/gp/product/1444707175?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1444707175">Jasper Fforde's The Last Dragonslayer</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=1444707175" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">
I think that <a href="https://shkspr.mobi/blog/2010/01/redefining-the-book/">Jasper Fforde is the most original fiction writer</a>. If you've never read a Jasper Fforde book before - The Last Dragon Slayer is amazing.
If, however, you've already devoured all the Thursday Next books - this will give you an odd sense of deja-vu.</p>

<ul>
    <li>Young, tenacious, female protagonist? <strong>Check!</strong></li>
    <li>Mysterious animal companion who can only say one word? <strong>Check!</strong></li>
    <li>Mega-corporations with comedy product names? <strong>Check!</strong></li>
    <li>TV Chat Show hosts with sinister motivations? <strong>Check!</strong></li>
</ul>

<p>You get the picture.  The only thing missing is the copious footnotes*.
That said, it is a great story, set in a subtly complex world.  The characters, pacing, jokes and denouement are all satisfyingly entertaining.  Much like Terry Pratchett a few years ago, it's a little too "Jasper Fforde <a href="http://en.wikipedia.org/wiki/Paint_by_number">By Numbers</a>".  Certainly worth reading.</p>

<p>As has been pointed out - Dragon Slayer is meant to be a children's book.  Personally, I don't think there's anything in this book which makes it suitable <strong>only</strong> for children.
Also worth noting, Dragon Slayer doesn't have the <a href="http://www.jasperfforde.com/features.html">usual array of special features and web content</a> that I associate with Fforde's other work.  There is a <a href="http://www.jasperfforde.com/dragon/dragon.html">webpage with some enhanced content</a>.</p>

<p>*Although that may be a repeat of the <a href="http://www.jasperfforde.com/upgrade/upgdtn5.html">missing footnote problem which struck First Among Sequels</a>.</p>

<h2 id="heat-wave"><a href="https://shkspr.mobi/blog/2011/01/holiday-reading/#heat-wave">Heat Wave</a></h2>

<p><a href="http://www.amazon.co.uk/gp/product/1401323820?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1401323820"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/01/51LByRN9SxL._SL160_.jpg" alt="Nikki Heat" title="51LByRN9SxL._SL160_" width="102" height="160" class="aligncenter size-full wp-image-3395"></a>
<a href="http://www.amazon.co.uk/gp/product/1401323820?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1401323820">Richard Castle's Heat Wave</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=1401323820" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">
This is a fantastic holiday read - if you're a fan of the TV series "Castle".  The show has Nathan Fillion playing crime-writer Rick Castle. Stuck for ideas, he tags along with detective Kate Becket and writes a book loosely based on their crime-fighting capers.
So, this isn't the novelization of the series; it's the fictional writer's fictionalised book based on fictional events. Confused?
The whodunnit aspect of the book isn't fantastic - it reads like a rejected mid-season story - but you don't get the book for that.   You buy it for the outrageous levels of fan-service it bestows upon the viewer/reader.
Even the dedication has an in-joke:</p>

<blockquote>To the extraordiany KB
and all my friends at the 12th</blockquote>

<p>A superb tie-in - although not as challenging a crime novel as, say, Jeffery Deaver.
Many thanks to <a href="http://missgeeky.com/2010/03/17/book-lust-heat-wave-by-richard-castle/">Miss Geeky for bringing the book to my attention earlier this year</a>.</p>

<h2 id="the-fry-chronicles"><a href="https://shkspr.mobi/blog/2011/01/holiday-reading/#the-fry-chronicles">The Fry Chronicles</a></h2>

<p><a href="http://www.amazon.co.uk/gp/product/0718154835?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0718154835"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/01/41f8ZX4d47L._SL160_.jpg" alt="Fry Chronicles" title="41f8ZX4d47L._SL160_" width="104" height="160" class="aligncenter size-full wp-image-3380"></a>
<a href="http://www.amazon.co.uk/gp/product/0718154835?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0718154835">Stephen Fry's The Fry Chronicles</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=0718154835" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">
The follow-up to his previous autobiography, <a href="http://www.amazon.co.uk/gp/product/0099457040?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0099457040">Moab Is My Washpot</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=0099457040" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">.  Stephen Fry has an almost painfully self-conscious way of describing event - often engaging in a meta-analysis of his own thoughts and feelings.  This only covers a fraction of his life - from entering university to starting to become famous - yet it is a fulsome read.  It concludes with a shameless cliffhanger for his next autobiography - let's hope we don't have to wait 13 years for the next one.</p>

<h2 id="life"><a href="https://shkspr.mobi/blog/2011/01/holiday-reading/#life">Life</a></h2>

<p><a href="https://shkspr.mobi/blog/wp-content/uploads/2011/01/41nM4fVceVL._SL160_.jpg"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/01/41nM4fVceVL._SL160_.jpg" alt="Life" title="41nM4fVceVL._SL160_" width="106" height="160" class="aligncenter size-full wp-image-3379"></a>
<a href="http://www.amazon.co.uk/gp/product/0297854399?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0297854399">Life: Keith Richards</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=0297854399" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">
It seems that half the people on the beach were reading Keith Richard's autobiography.  I'm not a massive fan of the Rolling Stones and only read this on the <a href="http://storagebod.typepad.com/storagebods_blog/2010/12/spinning-down-for-christmas-part-1.html">recommendation of Martin Glassborow</a>.  I was glad I did - it was an engaging and witty read.  Completely different in almost every respect from Stephen Fry's autobiography although, bizarrely, dealing with exactly the same themes - love, sex, growing up, becoming famous, and drug abuse.  There are a few passages which deal with the intricacies of guitar playing which I skipped over - and some of the discussions about the songs and riffs he wrote are almost meaningless unless you're very well versed in the Stones.  Other than that, it's a highly recommended book - and works wonderfully as a companion piece to Fry's.</p>

<h2 id="world-war-z"><a href="https://shkspr.mobi/blog/2011/01/holiday-reading/#world-war-z">World War Z</a></h2>

<p><a href="http://www.amazon.co.uk/gp/product/0715637037?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0715637037"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/01/51od7UP7SQL._SL160_.jpg" alt="World War Z" title="51od7UP7SQL._SL160_" width="108" height="160" class="aligncenter size-full wp-image-3376"></a>
<a href="http://www.amazon.co.uk/gp/product/0715637037?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=0715637037">Max Brooks' World War Z</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=0715637037" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">
(As <a href="https://shkspr.mobi/blog/2010/12/which-ebooks-should-i-read-on-holiday/#comment-1564">recommended by Peter Ibbotson</a>)
What a joyously bit of post-apocalyptic sci-fi.  Told in a retrospective documentary style - much like Day of the Triffids.  Fast, fun, and utterly believable.  The perfect holiday read.</p>

<h2 id="girl-with-the-dragon-tattoo"><a href="https://shkspr.mobi/blog/2011/01/holiday-reading/#girl-with-the-dragon-tattoo">Girl With The Dragon Tattoo</a></h2>

<p><a href="http://www.amazon.co.uk/gp/product/1847245455?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1847245455"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/01/51OgK0Tf7yL._SL160_.jpg" alt="Girl With The Humming Kazoo" title="51OgK0Tf7yL._SL160_" width="103" height="160" class="aligncenter size-full wp-image-3381"></a>
<a href="http://www.amazon.co.uk/gp/product/1847245455?ie=UTF8&amp;tag=shkspr-21&amp;linkCode=as2&amp;camp=1634&amp;creative=19450&amp;creativeASIN=1847245455">The Girl with the Dragon Tattoo</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=1847245455" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">
Stieg Larsson's books litter the world's beaches as they are rapidly devoured.  I was left moderately underwhelmed.  I was about 2/3rds of the way through the book before I got on the plane home - and didn't feel a compelling need to open it once seated.
It's all told in a rather plodding style.  I have a half-baked theory that books popular with women tend to concentrate on the little environmental details - the shoes, the food, the crunchiness of the gravel underfoot - Larsson makes this almost a fetish; faithfully recounting the exact number of degrees the thermometer reads and the number of the bus his protagonist jumps on at one point.  One nice touch is that his knowledge of computers is broadly accurate - a nice change from the Dan Brown school of writing.
The central mystery takes an age to be revealed - it's only 50% through the book that you get any idea of what's happening.  There's a lot of build-up around not too much story.  I'll finish it, but unless the last third is dramatically different to the rest of the book, I struggle to see why the series has become so popular.</p>

<h2 id="amazon-kindle"><a href="https://shkspr.mobi/blog/2011/01/holiday-reading/#amazon-kindle">Amazon Kindle</a></h2>

<p><a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;sprefix=kindl%2Caps&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=HE4JAMFFPUUF2YPV"><img src="https://shkspr.mobi/blog/wp-content/uploads/2011/01/417XQ0XwQuL._SL160_.jpg" alt="Amazon Kindle" title="417XQ0XwQuL._SL160_" width="160" height="160" class="aligncenter size-full wp-image-3386"></a>
A special mention to the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;sprefix=kindl%2Caps&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=HE4JAMFFPUUF2YPV">Amazon Kindle</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=shkspr-21&amp;l=as2&amp;o=2&amp;a=B002LVUWFE" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;">. It's hugely liberating to be able to pack a suitcase and not worry about whether the books will take you over your luggage allowance - or if you haven't packed enough to read.  The free 3G was also useful in completing online check-in for the flights home - and reading the occasional weather report.</p>

<p>While the Kindle is amazing for reading books, it is atrociously bad as a library keeper.  There's no way to easily organise books into folders, you can't search by the title of the book you're looking for, and with over a thousand books on the device there is a noticeable slowdown in sorting and searching.</p>

<p>The Kindle versions of some books are still more expensive than the hardback versions - utterly unacceptable.  There's also no way to lend books to non-Kindle owners.  As my wife has an Elonex 511EB, it was easier for be to get the books from stores other than Amazon and convert them for use on the Kindle.</p>

<p>I've no doubt that Amazon will adopt the ePub standard in the next 18 months - until then readers will be stuck in the same situation we were in in when iTunes only sold music in Apple's proprietary format.  Plus ça change...</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=3375&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2011/01/holiday-reading/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Which eBooks Should I Read On Holiday?]]></title>
		<link>https://shkspr.mobi/blog/2010/12/which-ebooks-should-i-read-on-holiday/</link>
					<comments>https://shkspr.mobi/blog/2010/12/which-ebooks-should-i-read-on-holiday/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Tue, 14 Dec 2010 15:09:59 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[holiday]]></category>
		<category><![CDATA[kindle]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=3309</guid>

					<description><![CDATA[I&#039;m an utter bookworm - on holiday, I like nothing better than to lie by the pool reading a good book.  I generally average a book a day.  Me reading a Kindle on the beach....  Last year, I took a mixture of eBooks and physical books away with me.  This year, I&#039;m only taking eBooks.  That&#039;s where I need your help, gentle reader.  Which books should I take?  Which books do you recommend for a…]]></description>
										<content:encoded><![CDATA[<p>I'm an utter bookworm - on holiday, I like nothing better than to lie by the pool reading a good book.  I generally average a book a day.</p>

<p></p><div style="width: 310px" class="wp-caption aligncenter"><a href="http://amzn.to/buyKindle"><img alt="eBooks on the beach" src="https://shkspr.mobi/blog/wp-content/uploads/2010/07/kindle-300x175.png" title="eBooks on the beach" width="300" height="175"></a><p class="wp-caption-text">Me reading a Kindle on the beach....</p></div><p></p>

<p>Last year, I took a mixture of eBooks and physical books away with me.  This year, I'm <strong>only taking eBooks</strong>.</p>

<p>That's where I need your help, gentle reader.  Which books should I take?  Which books do <em>you</em> recommend for a beach read?</p>

<h2 id="criteria"><a href="https://shkspr.mobi/blog/2010/12/which-ebooks-should-i-read-on-holiday/#criteria">Criteria</a></h2>

<ol>
    <li>eBooks only. Liz &amp; I have a Kindle and an Elonex 511EB - happy to have eBooks in any format (epub, mobi, txt) and convert them.  Would prefer to avoid PDF.</li>
    <li>I like a wide range of books - although I lean towards Sci-Fi.  Here's <a href="https://shkspr.mobi/blog/2010/02/holiday-book-reviews/">what I read last year</a>.</li>
    <li>No Dan Brown.</li>
    <li>Nothing that will make me angry. As much as I want to read the latest Heather Brookes book about how disfunctional British justice is, I'm on holiday to relax. I'm relying on the sun to make my blood boil - not my choice of book.</li>
    <li>I've started to get rid of all my paper books - but you can see <a href="https://www.anobii.com/en/edent/profile/activity">a list of everything I have read on Anobii.com</a>.</li>
<ul>
</ul></ol>

<h2 id="over-to-you"><a href="https://shkspr.mobi/blog/2010/12/which-ebooks-should-i-read-on-holiday/#over-to-you">Over To You</a></h2>

<p>So, what are your top picks for holiday book?  Let me know in the comment box bellow.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=3309&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/12/which-ebooks-should-i-read-on-holiday/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Voynich Manuscript for Kindle and other eBook Readers]]></title>
		<link>https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/</link>
					<comments>https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 26 Nov 2010 09:00:28 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[NaBloPoMo]]></category>
		<category><![CDATA[voynich]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=3081</guid>

					<description><![CDATA[For years I&#039;ve been mildly obsessed with the Voynich Manuscript.  An ancient book, written in a language no one can decipher, showing plants which don&#039;t exist, and measuring astronomical configurations which make no sense.  The book is an enigma.  Many think it to be an elaborate hoax - others have more.... esoteric explanations.  Regardless of what the book means, it is a beautiful and…]]></description>
										<content:encoded><![CDATA[<p>For years I've been mildly obsessed with the <a href="http://en.wikipedia.org/wiki/Voynich_manuscript">Voynich Manuscript</a>.  An ancient book, written in a language no one can decipher, showing plants which don't exist, and measuring astronomical configurations which make no sense.  The book is an enigma.  Many think it to be an elaborate hoax - others have more.... <a href="https://web.archive.org/web/20101129033809/http://www.voynichmanuscript.co.uk/vmintroduction.htm">esoteric explanations</a>.</p>

<p>Regardless of what the book means, it is a beautiful and mysterious work of art.  And I want to read it on my Kindle!</p>

<p><a href="http://www.archive.org/details/TheVoynichManuscript">Archive.org has an ebook version of the Voynich Manuscript</a>, but it has gone through a bizarre OCR process which, unsurprisingly, leaves it unreadable.  So I've decided to roll my own!</p>

<h2 id="getting-the-manuscript"><a href="https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/#getting-the-manuscript">Getting The Manuscript</a></h2>

<p><a href="http://www.archive.org/download/TheVoynichManuscript/Voynich_Manuscript.pdf">The PDF on Archive.org</a> is a bit cumbersome and doesn't work very well on Kindle or other readers.
<a href="https://beinecke.library.yale.edu/collections/highlights/voynich-manuscript">The Yale site has all the scans available</a> as high-res JPGs or <a href="http://en.wikipedia.org/wiki/MrSID">MrSID</a>s - but it's a pain to download hundreds of images from the site.
So - I turned to a <a href="http://isohunt.com/torrent_details/155583317/voynich?tab=summary">torrent</a>.  Don't worry! These images are hundred of years old - they are in the public domain.</p>

<h2 id="the-original-image"><a href="https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/#the-original-image">The Original Image</a></h2>

<p>The images I obtained are extremely high resolution scans of the manuscript.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/Voynich172-resized.jpg" alt="Voynich172 - resized" title="Voynich172 - resized" width="600" height="839" class="aligncenter size-full wp-image-3088"></p>

<p>I've shrunk down the above image - here is a detail of it, so you can see just how high quality the scans are.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/Voynich172-sample.jpg" alt="Voynich172 - sample" title="Voynich172 - sample" width="491" height="592" class="aligncenter size-full wp-image-3089">
A typical page is 3MB - taking the whole book to around 700MB.  There's easily enough space on the Kindle, but the time to render every page will be prohibitively long.</p>

<h2 id="crop-and-resize"><a href="https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/#crop-and-resize">Crop and Resize</a></h2>

<p>Firstly, the image needs to be cropped to the same aspect ratio as the Kindle screen (0.75), then resized to 600*800.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/Voynich172-cropped.jpg" alt="Voynich172 - cropped" title="Voynich172 - cropped" width="600" height="800" class="aligncenter size-full wp-image-3085">
From 3MB, the image is now 111KB.</p>

<h2 id="greyscale"><a href="https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/#greyscale">Greyscale</a></h2>

<p>eInk typically only handles greyscale images.  So I dropped the colours out of the image.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/Voynich172-cropped-bw.jpg" alt="Voynich172 - cropped bw" title="Voynich172 - cropped bw" width="600" height="800" class="aligncenter size-full wp-image-3084">
This takes the file size to under 100KB.</p>

<p>We can make the image marginally clearer to read by dumbly removing the background colour.
<img src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/Voynich172-cropped-bw-clear.jpg" alt="Voynich172 - cropped bw clear" title="Voynich172 - cropped bw clear" width="600" height="800" class="aligncenter size-full wp-image-3083">
As you can see, this doesn't look wonderful - many details are lost and there are odd looking artefacts throughout the image.</p>

<h2 id="how-they-look-on-the-kindle"><a href="https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/#how-they-look-on-the-kindle">How They Look On The Kindle</a></h2>

<p>The images look fantastic on the Kindle.
</p><div id="attachment_3105" style="width: 235px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19178.gif"><img aria-describedby="caption-attachment-3105" src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19178-225x300.gif" alt="Screenshot 1" title="Screenshot 1" width="225" height="300" class="size-medium wp-image-3105"></a><p id="caption-attachment-3105" class="wp-caption-text">The full page - click for bigger</p></div>
<div id="attachment_3106" style="width: 235px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19179.gif"><img aria-describedby="caption-attachment-3106" src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19179-225x300.gif" alt="Colour Screenshot" title="Colour Screenshot" width="225" height="300" class="size-medium wp-image-3106"></a><p id="caption-attachment-3106" class="wp-caption-text">The coloured image - click for bigger</p></div>
<div id="attachment_3107" style="width: 235px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19180.gif"><img aria-describedby="caption-attachment-3107" src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19180-225x300.gif" alt="Black and White Screenshot" title="Black and White Screenshot" width="225" height="300" class="size-medium wp-image-3107"></a><p id="caption-attachment-3107" class="wp-caption-text">Black and White Screenshot - click for bigger</p></div>
<div id="attachment_3108" style="width: 235px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19181.gif"><img aria-describedby="caption-attachment-3108" src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19181-225x300.gif" alt="Clear Background Screenshot" title="Clear Background Screenshot" width="225" height="300" class="size-medium wp-image-3108"></a><p id="caption-attachment-3108" class="wp-caption-text">Clear Background Screenshot - click for bigger</p></div><p></p>

<p>It turns out that there's no real need to remove the background colours - although it does make it maginally clearer.  Changing the the image to greyscale also has little appreciable difference.  I think I'll probably keep them in colour so that future ebook readers can see them in all their glory.</p>

<p>Incidentally, I tried the high-resolution file.  The kindle took around 30 seconds to render it.  Here's a quick screen grab of it fully zoomed in.</p><div id="attachment_3109" style="width: 235px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19184.gif"><img aria-describedby="caption-attachment-3109" src="https://shkspr.mobi/blog/wp-content/uploads/2010/11/screen_shot-19184-225x300.gif" alt="Full Size Screenshot" title="Full Size Screenshot" width="225" height="300" class="size-medium wp-image-3109"></a><p id="caption-attachment-3109" class="wp-caption-text">Full Size Screenshot - click for bigger</p></div><p></p>

<h2 id="todo"><a href="https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/#todo">TODO</a></h2>

<p>This is a work in progress.  Converting several hundred images will take a fair bit of time - unless I fully automate it and drop the cropping.
The <a href="https://shkspr.mobi/blog/2010/10/hack-your-kindle/">Kindle can be hacked to display images (or use them as screensavers)</a> - but I will convert the images into an ePub and Mobi so they can be easily read by all eReaders.
Once done, I'm sure the mysteries of the universe will be revealed to me!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=3081&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/11/voynich-manuscript-for-kindle-and-other-ebook-readers/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Hack Your Kindle]]></title>
		<link>https://shkspr.mobi/blog/2010/10/hack-your-kindle/</link>
					<comments>https://shkspr.mobi/blog/2010/10/hack-your-kindle/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sun, 03 Oct 2010 12:48:04 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[barcamp]]></category>
		<category><![CDATA[barcamp brighton]]></category>
		<category><![CDATA[bcb5]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[xkcd]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=2610</guid>

					<description><![CDATA[I gave a quick talk at BarCamp Brigton about how to hack the Amazon Kindle 3G.  These hacks come in two flavours - easy and very easy.  Very Easy - Pictures  Wouldn&#039;t it be great to view pictures on your Kindle?  Well?  OK - pictures, perhaps not so much - but comics?  Yes please!  For best results, image files should be the same resolution as the Kindle. 600px * 800px - and grey-scale.  Let&#039;s use…]]></description>
										<content:encoded><![CDATA[<p>I gave a quick talk at <a href="https://web.archive.org/web/20130811032932/http://2013.barcampbrighton.org/">BarCamp Brigton</a> about how to hack the <a href="http://amzn.to/buyKindle">Amazon Kindle 3G</a>.&nbsp; These hacks come in two flavours - easy and <em>very</em> easy.</p>

<h2 id="very-easy-pictures"><a href="https://shkspr.mobi/blog/2010/10/hack-your-kindle/#very-easy-pictures">Very Easy - Pictures</a></h2>

<p>Wouldn't it be great to view pictures on your Kindle?&nbsp; Well?&nbsp; OK - pictures, perhaps not so much - but comics?&nbsp; Yes please!</p>

<p>For best results, image files should be the same resolution as the Kindle. 600px * 800px - and grey-scale.</p>

<p>Let's use the <a href="http://xkcd.com/">XKCD</a> comics - mostly because they're already the right size and mostly in black and white. And they're awesome.</p>

<p>This hack can be done in under 30 seconds.</p>

<ol>
    <li>Plug you Kindle into your computer using the USB cable.</li>
    <li>In the root folder, create a new folder called "pictures"</li>
    <li>In the new folder, create another folder called "XKCD"</li>
    <li>Copy the pictures into the XKCD folder.<img class="aligncenter size-full wp-image-2611" title="Kindle Pictures folders" src="https://shkspr.mobi/blog/wp-content/uploads/2010/10/Kindle-Pictures.png" alt="Kindle Pictures folders" width="318" height="411"></li>
    <li>Eject the Kindle &amp; unplug it.</li>
    <li>From the Kindle home screen, press ALT and Z at the same time.</li>
    <li>The screen will now show an XKCD book.&nbsp; You can scroll through the pages using the normal page scroll buttons.<a href="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59092.gif"><img class="aligncenter size-medium wp-image-2616" title="screen_shot-59092" src="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59092-225x300.gif" alt="" width="225" height="300"></a></li>
    <li>You can also change the size of the pictures.</li>
</ol>

<p><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59093.gif"><img class="size-medium wp-image-2615" title="screen_shot-59093" src="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59093-225x300.gif" alt="" width="225" height="300"></a><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59094.gif"><img class="size-medium wp-image-2614" title="screen_shot-59094" src="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59094-225x300.gif" alt="" width="225" height="300"></a><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59095.gif"><img class="size-medium wp-image-2613" title="screen_shot-59095" src="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59095-225x300.gif" alt="" width="225" height="300"></a></p>

<h2 id="very-easy-screenshots"><a href="https://shkspr.mobi/blog/2010/10/hack-your-kindle/#very-easy-screenshots">Very Easy - Screenshots</a></h2>

<p>Hold down ALT, SHIFT, G, at the same time. Done.
The .gif files are stored in your documents folder.</p>

<h2 id="very-easy-diagnostic-information"><a href="https://shkspr.mobi/blog/2010/10/hack-your-kindle/#very-easy-diagnostic-information">Very Easy - Diagnostic Information</a></h2>

<p>To get this diagnostic information do the following.</p>

<ul>
    <li>Turn the Kindle on and unlock it.</li>
    <li>Press Menu</li>
    <li>Press Settings</li>
    <li>Hold down the Alt key</li>
    <li>While holding down Alt, type Y Q Q</li>
    <li>Ta da!</li>
</ul>

<p><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/09/screen_shot-12218.gif"><img class="aligncenter size-full wp-image-2506 " title="screen_shot-12218" src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/screen_shot-12218.gif" alt="Kindle IMSI and IMEI" width="252" height="336"></a>
You can also type R Q Q to get this screen.
<a href="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59098.gif"><img class="aligncenter size-medium wp-image-2619" title="411 screen" src="https://shkspr.mobi/blog/wp-content/uploads/2010/10/screen_shot-59098-225x300.gif" alt="411 screen" width="225" height="300"></a></p>

<h2 id="easy-jail-breaking-and-screensavers"><a href="https://shkspr.mobi/blog/2010/10/hack-your-kindle/#easy-jail-breaking-and-screensavers">Easy - Jail Breaking and Screensavers</a></h2>

<p>These are fairly easy hacks.  Copy a file onto your Kindle and hit update.
For up todate files and instructions, visit the <a href="http://wiki.mobileread.com/wiki/Kindle_Screen_Saver_Hack_for_all_2.x_and_3.x_Kindles">MobileRead Wiki on Kindle Jailbreaking.</a></p>

<h2 id="found-this-useful"><a href="https://shkspr.mobi/blog/2010/10/hack-your-kindle/#found-this-useful">Found This Useful?</a></h2>

<p>If you've enjoyed this post, or found it useful - you can <a href="http://amzn.to/buyKindle">buy an Amazon Kindle</a> via my referral link.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=2610&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/10/hack-your-kindle/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Home Made Kindle Case]]></title>
		<link>https://shkspr.mobi/blog/2010/09/home-made-kindle-case/</link>
					<comments>https://shkspr.mobi/blog/2010/09/home-made-kindle-case/#respond</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 30 Sep 2010 10:52:40 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[case]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[maker]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=2601</guid>

					<description><![CDATA[There are lots of tutorials for how to create a Kindle case from a hollowed out book.  This is the first time I&#039;ve seen one in the wild.        Created by my colleague Elliot Moore. …]]></description>
										<content:encoded><![CDATA[<p>There are lots of <a href="https://web.archive.org/web/20101009110017/http://antiblogdesignblog.jimkirkthomson.com/2010/09/kindle-3-moleskine-hollow-book-case.html">tutorials</a> for how to create a <a href="http://www.mobileread.com/forums/showthread.php?t=29503">Kindle case from a hollowed out book</a>.  This is the first time I've seen one in the wild.</p>

<img src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/kindle1.jpg" alt="A Kindle hidden in a hollowed out paper book." width="2592" height="1952" class="aligncenter size-full wp-image-32015">

<img src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/kindle2.jpg" alt="A Kindle hidden in a hollowed out paper book." width="2592" height="1952" class="aligncenter size-full wp-image-32016">

<img src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/kindle3.jpg" alt="A Kindle nestled in a hollowed out paper book." width="2592" height="1952" class="aligncenter size-full wp-image-32017">

<p>Created by my colleague <a href="http://uk.linkedin.com/in/elliotmoore">Elliot Moore</a>.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=2601&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/09/home-made-kindle-case/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Kindle and SureSignal - or how to find your Kindle's phone number]]></title>
		<link>https://shkspr.mobi/blog/2010/09/kindle-and-suresignal-or-how-to-find-your-kindles-phone-number/</link>
					<comments>https://shkspr.mobi/blog/2010/09/kindle-and-suresignal-or-how-to-find-your-kindles-phone-number/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Thu, 16 Sep 2010 07:41:14 +0000</pubDate>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[femtocell]]></category>
		<category><![CDATA[imei]]></category>
		<category><![CDATA[imsi]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[msisdn]]></category>
		<category><![CDATA[suresignal]]></category>
		<category><![CDATA[vodafone]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=2505</guid>

					<description><![CDATA[I&#039;ve got a rather neat femtocell - the Vodafone SureSignal. It extends the 3G signal into my house by way of my broadband.  To stop anyone leaching my broadband, you need to register &#34;approved&#34; phone numbers with the SureSignal.  So - given that the Kindle has a Vodafone SIM card - how do we find the Kindle&#039;s phone number and register it with the SureSignal?  There are three ways you can find…]]></description>
										<content:encoded><![CDATA[<img class="aligncenter size-full wp-image-2513" title="SureSignal and Kindle" src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/SureSignal-and-Kindle.png" alt="SureSignal and Kindle" width="286" height="222">

<p>I've got a rather neat femtocell - the <a href="https://web.archive.org/web/20100729160010/http://vodafone.co.uk/suresignal">Vodafone SureSignal.</a> It extends the 3G signal into my house by way of my broadband.</p>

<p>To stop anyone leaching my broadband, you need to register "approved" phone numbers with the SureSignal.</p>

<p>So - given that the <a href="http://shkspr.mobi/blog/tag/kindle">Kindle</a> has a Vodafone SIM card - how do we find the Kindle's phone number and register it with the SureSignal?</p>

<p>There are three ways you can find your Kindle's phone number.  None of them are "easy".</p>

<ol>
    <li>Ask Amazon</li>
    <li>Open your Kindle, remove the SIM card, place the SIM in a phone, dial the <a href="https://shkspr.mobi/blog/2010/07/ussd/">USSD code</a> *#100#</li>
    <li>IMSI-&gt;MSISDN translation</li>
</ol>

<p>Confused? Read on.
<span id="more-2505"></span></p>

<h2 id="asking-amazon"><a href="https://shkspr.mobi/blog/2010/09/kindle-and-suresignal-or-how-to-find-your-kindles-phone-number/#asking-amazon">Asking Amazon</a></h2>

<p>This got me nowhere.  I send them an email and they asked to phone me back.  The tech support there are very friendly and helpful - but they simply didn't know how to find out the phone number.</p>

<h2 id="opening-the-kindle"><a href="https://shkspr.mobi/blog/2010/09/kindle-and-suresignal-or-how-to-find-your-kindles-phone-number/#opening-the-kindle">Opening The Kindle</a></h2>

<p>If you have nerves of steel - and I don't - <a href="https://www.youtube.com/watch?v=lBnAbCH1F_0">check out this disassembly guide</a>.  You risk damaging your expensive new toy and voiding your warranty.</p>

<h2 id="hack-it"><a href="https://shkspr.mobi/blog/2010/09/kindle-and-suresignal-or-how-to-find-your-kindles-phone-number/#hack-it">Hack it :-)</a></h2>

<p></p><div id="attachment_2506" style="width: 430px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/09/screen_shot-12218.gif"><img aria-describedby="caption-attachment-2506" class="aligncenter size-full wp-image-2506 " title="screen_shot-12218" src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/screen_shot-12218.gif" alt="Kindle IMSI and IMEI" width="420" height="560"></a><p id="caption-attachment-2506" class="wp-caption-text">Click For Bigger</p></div><p></p>

<p>To get this diagnostic information do the following.</p>

<ul>
    <li>Turn the Kindle on and unlock it.</li>
    <li>Press Menu</li>
    <li>Press Settings</li>
    <li>Hold down the Alt key</li>
    <li>While holding down Alt, type Y Q Q</li>
    <li>Ta da!</li>
</ul>

<p>Make a note of the IMSI, IMEI and SIM number (ICCID).</p>

<h3 id="the-tricky-part"><a href="https://shkspr.mobi/blog/2010/09/kindle-and-suresignal-or-how-to-find-your-kindles-phone-number/#the-tricky-part">The Tricky Part</a></h3>

<p>Find someone at Vodafone who is willing to do an IMSI-&gt;MSISDN translation.  (IMSI is the internal number, MSISDN is your 07 phone number).</p>

<p>You could try your luck calling 191, or emailing customer services.  They may (genuinely) have no idea what you are talking about.  See if you can get escalated to someone technical who will be able to look up the number for you.
It is likely that they'll ask for the IMEI (device serial number) or ICCID (SIM card serial number) to verify that the device is yours.</p>

<p>I'm indebted to my Anonymous Mole who kindly performed this for me. No, I won't reveal her name. Or his. Or its.  One of the joys of hacking is social engineering your way to someone who can help you.</p>

<h2 id="adding-it-to-the-suresignal"><a href="https://shkspr.mobi/blog/2010/09/kindle-and-suresignal-or-how-to-find-your-kindles-phone-number/#adding-it-to-the-suresignal">Adding It To The SureSignal</a></h2>

<p>The first time I tried to add it to the SureSignal - I got this error.
<img class="aligncenter size-full wp-image-2509" title="ss" src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/ss.png" alt="Sure Signal Error" width="582" height="138"></p>

<p>So, I dropped an email to Vodafone asking them to manually add the phone number to my account.</p>

<p>Sadly, this was the reply I got.
<img class="aligncenter size-full wp-image-2522" title="Finally, 07407591890 isn't a number that's held on our account systems and so cannot be added to the Sure Signal. After doing a search, it appears to be held with an airtime provider called Amazon, although I can't seem to find any contact details for them." src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/airtime.png" alt="Finally, 07407591890 isn't a number that's held on our account systems and so cannot be added to the Sure Signal. After doing a search, it appears to be held with an airtime provider called Amazon, although I can't seem to find any contact details for them." width="514" height="115"></p>

<p>After a bit of prompting, explaining that the SIM was in a Kindle, I got back this.
<a href="https://shkspr.mobi/blog/wp-content/uploads/2010/09/162413732.png"><img class="aligncenter size-full wp-image-2526" title="Unfortunately, although the number is in essence a Vodafone number, it isn't on an account that is held on our account system, which is required for the number to be added to a Sure Signal. I can also confirm that MVNO numbers cannot be added to a Sure Signal either, for the same reason." src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/162413732.png" alt="Unfortunately, although the number is in essence a Vodafone number, it isn't on an account that is held on our account system, which is required for the number to be added to a Sure Signal. I can also confirm that MVNO numbers cannot be added to a Sure Signal either, for the same reason." width="480" height="800"></a>
So, no adding Kindles - or any other <a href="http://en.wikipedia.org/wiki/MVNO">MVNO</a> SIM to a SureSignal :-(</p>

<h1 id="hang-on-isnt-this-utterly-pointless"><a href="https://shkspr.mobi/blog/2010/09/kindle-and-suresignal-or-how-to-find-your-kindles-phone-number/#hang-on-isnt-this-utterly-pointless">Hang on! Isn't this UTTERLY pointless?</a></h1>

<p>Why, yes. Yes it is.
The 3G version of the Kindle comes with WiFi.  The WiFi connection allows you to download converted Kindle documents for free.  The 3G connection will charge you for the data transfer.</p>

<p>All things considered; it's better to just use WiFi where you can.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=2505&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/09/kindle-and-suresignal-or-how-to-find-your-kindles-phone-number/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Kindle 3 Vs Elonex 511EB]]></title>
		<link>https://shkspr.mobi/blog/2010/09/kindle-3-vs-elonex-511eb/</link>
					<comments>https://shkspr.mobi/blog/2010/09/kindle-3-vs-elonex-511eb/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Mon, 13 Sep 2010 21:17:18 +0000</pubDate>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[511eb]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[elonex]]></category>
		<category><![CDATA[kindle]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=2451</guid>

					<description><![CDATA[I&#039;ve just taken delivery of a shiny new Amazon Kindle 3.  I&#039;m looking forward to giving it a thorough review - but here&#039;s a quick comparison between it and my venerable Elonex 511EB.  Click for bligger          Kindle 511EB Comment     Weight 247g 195g Both lighter than a paperback. 511EB just about edges the Kindle out, but the extra 50g isn&#039;t going to strain your arms.   Storage Size 3GB…]]></description>
										<content:encoded><![CDATA[<p>I've just taken delivery of a shiny new <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Amazon Kindle 3</a>.  I'm looking forward to giving it a thorough review - but here's a quick comparison between it and my venerable Elonex 511EB.</p>

<p></p><div id="attachment_2493" style="width: 310px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/09/IMG_20100913_170333.jpg"><img aria-describedby="caption-attachment-2493" class="size-medium wp-image-2493" title="IMG_20100913_170333" src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/IMG_20100913_170333-300x225.jpg" alt="Kindle and 511EB side by side" width="300" height="225"></a><p id="caption-attachment-2493" class="wp-caption-text">Click for bligger</p></div><p></p>

<p style="text-align: center;"></p>

<p><span id="more-2451"></span></p>

<table>
<thead>
<tr>
<th></th>
<th>Kindle</th>
<th>511EB</th>
<th>Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>247g</td>
<td>195g</td>
<td>Both lighter than a paperback. 511EB just about edges the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> out, but the extra 50g isn't going to strain your arms.</td>
</tr>
<tr>
<td>Storage Size</td>
<td>3GB (internal memory available to user. Fixed)</td>
<td>4GB (SD card up to 32GB)</td>
<td>511EB wins it.  Realistically, the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a>'s 3GB is more than enough unless you're storing lots of huge PDFs.</td>
</tr>
<tr>
<td>Device Size</td>
<td>190 x 123 x 8.5 mm</td>
<td>173 × 117 × 10.3 mm</td>
<td>The <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> is thinner, but the 511EB is more pocket friendly.</td>
</tr>
<tr>
<td>Screen Size (diagonal)</td>
<td>157mm (6 inches)</td>
<td>127mm (5 inches)</td>
<td>The extra screen size really does make reading easier.  More words on screen means less page turning - which should also help the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a>'s battery life.</td>
</tr>
<tr>
<td>Screen Resolution</td>
<td>800*600 - 16 level grey-scale</td>
<td>800*600 - 8 level grey-scale</td>
<td>The <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> is much better for showing off images.  But for text reading, they're identical.</td>
</tr>
<tr>
<td>Security</td>
<td>Password Protected</td>
<td>Password Protected</td>
<td>Both can be secured against unwanted users.  The 511EB's SD card is unencrypted, so anyone can take a copy of your books.  On the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a>, everything you bought is available again through Amazon. Both allow you to make backups.</td>
</tr>
<tr>
<td>Battery</td>
<td>1750 mAh - quoted for up to a month using Wifi, less for 3G</td>
<td>1500 mAh - 3,000 page turns</td>
<td>Realistically, both will last you for two weeks on a desert island without power.  But the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a>'s battery will drain considerably faster when using Wifi / 3G.  Both recharge using USB.</td>
</tr>
<tr>
<td>USB</td>
<td>USB Micro</td>
<td>USB Mini</td>
<td>The <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> user the newer USB lead which all mobile phones should be standardising on.  The 511EB uses the older size which is more common.  You shouldn't have any issue finding an adaptor or computer lead anywhere in the world.</td>
</tr>
<tr>
<td>Connectivity</td>
<td>Wifi, Global 3G, USB</td>
<td>USB only</td>
<td>The wifi in the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> is more than a gimmick - and the 3G is a lifesaver if you don't have access to a computer.</td>
</tr>
<tr>
<td>Formats</td>
<td>Kindle (AZW), TXT, PDF, Audible (Audible Enhanced (AA, AAX)), MP3, unprotected MOBI, PRC natively; HTML, DOC, JPEG, GIF, PNG, BMP through conversion.</td>
<td>TXT, PDF, EPUB, DOC, HTML, JPEG, GIF, PNG, BMP, TIF. mp3, wav, wma</td>
<td>The 511EB works with more formats.  That the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> doesn't support ePub is a huge failing.  Just like how the iPod tried to force the world to AAC, so Amazon are trying to force the world into AZW.  This time next year Amazon will allow native ePub on their devices.</td>
</tr>
<tr>
<td>Operating System &amp; Support</td>
<td>Linux.  Frequent software updates and unofficial 3rd party firmware for extra hacky goodness.</td>
<td>WinCE 5.0.  Abandoned by Elonex who refuse to acknowledge customer support emails.</td>
<td>Can you tell I'm bitter :-)  Ultimately, even if Amazon abandon this device, I'll be able to keep it working and up-to-date with security and functionality patches.</td>
</tr>
</tbody>
</table>

<p>First up, the obligatory unboxing video.  Don't worry - it's short!</p>

<iframe title="Kindle Unboxing" width="620" height="349" src="https://www.youtube.com/embed/swT-6k-_r-k?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<h2 id="first-impressions"><a href="https://shkspr.mobi/blog/2010/09/kindle-3-vs-elonex-511eb/#first-impressions">First Impressions</a></h2>

<p>I've only had a few hours to play with the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> - so these are my initial findings.</p>

<p></p><div id="attachment_2491" style="width: 310px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/09/IMG_20100913_172141.jpg"><img aria-describedby="caption-attachment-2491" class="size-medium wp-image-2491" title="IMG_20100913_172141" src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/IMG_20100913_172141-300x225.jpg" alt="Kindle and 511EB side by side" width="300" height="225"></a><p id="caption-attachment-2491" class="wp-caption-text">Web Browsing on the Kindle</p></div><p></p>

<h3 id="the-bad"><a href="https://shkspr.mobi/blog/2010/09/kindle-3-vs-elonex-511eb/#the-bad">The Bad</a></h3>

<p>Let's start with what I dislike about it...</p>

<ul>
    <li>It's a little too big to hold in one hand.  It just sits wrong.  I'm sure I'll be able to get used to it, but it is a little uncomfortable.</li>
    <li>The UI is messy.  There are a lot of options there - far more than the 511EB - but too little thought has gone in to the UI.  It's easy enough to read on, but navigating books and features is a bit confusing.</li>
    <li>Speaking of the UI - I can find no way of changing the lock screen image.  It also took me ages to switch off the annoying "annotations".</li>
    <li>The keyboard is atrocious.  Whereas the 511EB has no great need of a keyboard - at least the keys are well defined and feel pleasant to use.  The <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> isn't in the same league as the ZX81 "dead flesh" keyboard - but it's pretty repellent.  There are also no number keys despite plenty of space.</li>
    <li>No ePub support.</li>
</ul>

<h3 id="the-good"><a href="https://shkspr.mobi/blog/2010/09/kindle-3-vs-elonex-511eb/#the-good">The Good</a></h3>

<ul>
    <li>The screen. Wow. Just.... <em>fucking wow</em>! Bigger and brighter than the 511EB.  The whites are whiter.  The 16 level grey-scale does wonders for images.</li>
    <li>The speed of screen refresh.  Again... amazingly fast.  With the 511EB I got used to hitting the "next" button just as I got to the last line of text.  The <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> blows this away.  Super fast.</li>
    <li>The back has a rubber coating - stops it from slipping and is enjoyably tactile.</li>
    <li>Build quality.  It's a little flexible, but it doesn't emit the creaks and groans of the 511EB's plastic frame.</li>
    <li>Start-up speed is instant.  It's running Linux, not Windows CE - so it doesn't need to be switched off when you're done with it.</li>
</ul>

<iframe title="Kindle Vs 511EB - Page Turning, Opening, Fonts" width="620" height="349" src="https://www.youtube.com/embed/8fFzlZbPXIc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<h3 id="the-weird"><a href="https://shkspr.mobi/blog/2010/09/kindle-3-vs-elonex-511eb/#the-weird">The... Weird...</a></h3>

<ul>
    <li>Amazon could learn a trick or two from Apple in terms of presentation.  The box the <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> comes in is needlessly large.</li>
    <li>The power cable is white. So is the plug.  A little odd for a black book, no?  Sure, <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> users aren't likely to be as aesthetically precious as Apple devotees - but a bit of consistency doesn't hurt.</li>
    <li><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/09/IMG_20100913_203126.jpg"><img class="aligncenter size-medium wp-image-2497" title="IMG_20100913_203126" src="https://shkspr.mobi/blog/wp-content/uploads/2010/09/IMG_20100913_203126-225x300.jpg" alt="White power cable" width="225" height="300"></a></li><li>The UI is going to take a lot of getting used to...</li>
</ul>

<h2 id="conclusion"><a href="https://shkspr.mobi/blog/2010/09/kindle-3-vs-elonex-511eb/#conclusion">Conclusion</a></h2>

<p>It's too early to be certain - but this is in the running for my new favourite device ever.  Converting all my ePubs to <a href="http://www.amazon.co.uk/s/?_encoding=UTF8&amp;camp=1634&amp;creative=19450&amp;field-keywords=kindle&amp;linkCode=ur2&amp;tag=shkspr-21&amp;url=search-alias%3Daps&amp;linkId=JJWWHLZM2VBLOAUT">Kindle</a> will be a bit of a chore - but <a href="http://calibre-ebook.com/">Calibre</a> should do most of the heavy lifting.</p>

<p>I'll need to throw some hefty PDFs and files with weird characters in them, but so far, it's doing a sterling job.</p>

<p>The size and weight aren't a huge issue - especially compared to a paperback - but there's no denying Amazon haven't done themselves any favours there.  The UI is either so rubbish that I'll rewrite it or something which will fade into the background.</p>

<p>The 3G is a mixed blessing.  The WhisperNet method of wirelessly buying and trying books is astonishing. But I'm worried I'll be tempted into web browsing when I ought to be reading.</p>

<p>Overall? Pretty close to perfect.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=2451&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/09/kindle-3-vs-elonex-511eb/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Hello Kindle - Goodbye Elonex?]]></title>
		<link>https://shkspr.mobi/blog/2010/07/hello-kindle-goodbye-elonex/</link>
					<comments>https://shkspr.mobi/blog/2010/07/hello-kindle-goodbye-elonex/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Fri, 30 Jul 2010 08:28:19 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[511eb]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[elonex]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[waterstones]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=2274</guid>

					<description><![CDATA[So, the Kindle finally launches in the UK.  This blog has become something of a Mecca for users of the Elonex 511EB.  The comments on my reviews run in to the hundreds, I get thousands of page views a month on them, I regularly answer private emails about the device.  So, why am I abandoning Elonex?  Simply put - Elonex abandoned me.  Their staff and website promised updates which never came. …]]></description>
										<content:encoded><![CDATA[<p><a href="http://amzn.to/buyKindle"><img class="aligncenter size-medium wp-image-2277" title="kindle" src="https://shkspr.mobi/blog/wp-content/uploads/2010/07/kindle-300x175.png" alt="Kindle" width="300" height="175"></a>So, the <a href="http://amzn.to/buyKindle">Kindle finally launches in the UK</a>.  This blog has become something of a Mecca for users of the Elonex 511EB.  The comments on <a href="https://shkspr.mobi/blog/tag/511eb/">my reviews</a> run in to the hundreds, I get thousands of page views a month on them, I regularly answer private emails about the device.</p>

<p>So, why am I abandoning Elonex?</p>

<p>Simply put - Elonex abandoned me.  Their staff and <a href="https://web.archive.org/web/20100602184416/http://www.elonex.com/support/products/ebook/511_eBook.shtm">website promised updates</a> which never came.  We're not just talking about additional features - there are some serious bugs in the device.  They ignored emails when people complained about faulty devices - as, it would appear, did Waterstones.</p>

<p>In short, their business model was BOPO. Buy One and Piss Off.  No customer support.  No attempt to buy loyalty.  No thinking of a long term investment.</p>

<p>Last year, the price of the EB511 was fairly competitive.  It still <a href="https://web.archive.org/web/20100924133025/http://www.maplin.co.uk/Module.aspx?ModuleNo=393048">sells in Maplin for £150</a> - that's around half the price of some Sony models.</p>

<p>Yet the Kindle has the same price point, comes with 3G and - most importantly - customer support.&nbsp; Software which seems regularly updated.&nbsp; And it is backed by a company who don't treat customers with outright disdain.</p>

<p>Elonex could have made a huge impact in the budget eBook market - but their attitude to customers has put me off buying any of their products.</p>

<p>The Kindle is not all roses, though.&nbsp; There are some potential downsides.</p>

<ul>
    <li>ePub - the most popular ebook format isn't supported.&nbsp; The <a href="http://calibre-ebook.com/">eBook management software Calibre</a> can convert the files into a suitable format.</li>
    <li>Over enthusiastic use of DRM - potentially to<a href="http://www.theregister.co.uk/2009/07/18/amazon_removes_1984_from_kindle/"> remove books you've already bought</a>.</li>
    <li>Lack of expandable storage.&nbsp; Only 3GiB.&nbsp; I say "only" - because that's more books than you could hope to read in a lifetime.</li>
</ul>

<p>I'm sure there are some other issues which will surface over time. But for now, count me among one of the faithful.  Kindle - HERE I COME!</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=2274&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/07/hello-kindle-goodbye-elonex/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Waterstones Elonex 511EB Review - Part 2]]></title>
		<link>https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/</link>
					<comments>https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Sun, 10 Jan 2010 13:48:32 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[511eb]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[elonex]]></category>
		<category><![CDATA[ereader]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[waterstones]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=1532</guid>

					<description><![CDATA[I&#039;ve been blown away by the number of comments and visits to my original review of the 511EB.  To clarify some of the points and answer some questions, I&#039;ve decided to post another video review.  This shows the speed of page turning and some of the idiosyncrasies of the eReader.  Run VT, Errol!    Startup Screen  Click to download full size  I&#039;ve set my startup screen to show my phone number and…]]></description>
										<content:encoded><![CDATA[<p>I've been blown away by the number of <a href="https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/#comments">comments</a> and visits to <a href="https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/">my original review of the 511EB</a>.  To clarify some of the points and answer some questions, I've decided to post another video review.  This shows the speed of page turning and some of the idiosyncrasies of the eReader.</p>

<h2 id="run-vt-errol"><a href="https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/#run-vt-errol">Run VT, Errol!</a></h2>

<iframe title="Waterstones Elonex 511EB Video Review" src="https://player.vimeo.com/video/8648836?dnt=1&amp;app_id=122963" width="620" height="465" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media"></iframe>

<h2 id="startup-screen"><a href="https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/#startup-screen">Startup Screen</a></h2>

<p></p><div id="attachment_1539" style="width: 235px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/01/start.jpg"><img aria-describedby="caption-attachment-1539" class="size-medium wp-image-1539" title="Startup image" src="https://shkspr.mobi/blog/wp-content/uploads/2010/01/start-225x300.jpg" alt="Startup image" width="225" height="300"></a><p id="caption-attachment-1539" class="wp-caption-text">Click to download full size</p></div><p></p>

<p>I've set my startup screen to show my phone number and email address.  Combined with the startup password, it's a fairly simple way to protect your device and hopefully get it back if lost.  Of course, all of your books can be taken from the SD card - so make sure you've got a backup!</p>

<p>Click on the above image to download the file. Edit it to show your details then save it to the root directory of your SD card as "start.jpg". Unplug your reader and press "5" Settings. Press the right arrow twice.  Press down twice to select "System Maintenance". Then press "3" Startup Pic.  If it has found the file, press enter to confirm.  You can always change your image again to anything you like.</p>

<h2 id="screen-refresh"><a href="https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/#screen-refresh">Screen Refresh</a></h2>

<p>The refresh rate is <em>extremely</em> fast.  This is because it uses a "Partial" refresh rather than the traditional "Global" refresh.  The advantage of this is speed, and you don't get the momentary inverted screen that you do on other readers.
The  <em>disadvantage</em> is that you can - if you look very very closely - see the faint trace of an after-image.  You can just about make out the ghosts of previous letters.  Even after 50 page turns, they aren't distracting - but you can hit the refresh button on the keyboard to make them go away.  You can also go into the settings menu and set the screen refresh to "Global".</p>

<h2 id="bugs"><a href="https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/#bugs">Bugs</a></h2>

<ul>
    <li>Some have noticed that the 511EB displays Chinese characters where it should be displaying accented European characters like á - this is due to the way files are saved.  If they are in UTF-8 format, all characters display correctly.</li>
</ul>

<ul>
    <li> The typesetting is a little off.  It doesn't force a hyphen into words like a traditional book (this is a good thing), but it breaks the line at any punctuation.</li>
</ul>

<p><code>As you can see, when I say "
That's a nice book." the line
wraps at the wrong place. It'
s slightly annoying.
</code></p>

<ul>
    <li>On the default set of books, some of the words run together.  It's <a href="https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/#comment-601">arguable</a> whether this is a bug in the book file or the reader - either way, it should have been fixed during QA before release.</li>
    <li> Searching for books works, but looks like it doesn't.  Because there are no numbers by the files, it's not immediately obvious what you have to do in order to select them.  The search box takes up the first two "rows", so to select the first book it finds, press "3".  For the second, press "4" - and so on.</li>
    <li>Text-To-Speech is a nice gimmick, searching within a book is very useful.  Yet they're both absent from PDFs and the hugely popular EPUB formats.  I cannot fathom it.  They're both rendered as text on the screen - so what's stopping the reader from searching and speeking?</li>
    <li>Mac and Linux compatibility.  This is a Windows CE device - but there's no reason for it not to work on other operating systems.  If a simple card reader from PoundLand can work, there's no reason why this cannot.  Removing the card isn't hard, but it's an annoyance for those of us not on Windows.</li>
    <li>The keyboard is slightly wasted.  There is no note taking facility. The password screen only accepts numbers.  Yes, it works, but it could be so much more.  The placement of the Delete key is odd.  It's next to the spacebar.  I'm used to the delete key being above the enter key.  On this model, that's the cancel key.  So, rather than deleting a character, I often find myself cancelling.</li>
    <li>The Title Bar shows the title of the book you're reading.  Fair enough.  But it truncates it for no apparent reason. So, if your book is titled "Lewis Caroll - Alice in Wonderland", all you'll see is "Lewis Caroll - A..."</li>
    <li>The truncating is present on the Bookcase.  If your books are titled "Cory Doctorow - Ander's Game" and "Cory Doctorow - After the Siege", all you'll see is "Cory Doctorow - A..." - good luck working out which is which!  The solution is to save books in folders. So, for example, I have</li>
</ul>

<p><code>
|-- e_book
|   |-- Cory Doctorow
|   |   |-- Ander's Game.txt
|   |   |-- After the Siege.epub
|   |-- Lewis Caroll
|   |   |-- Alice in Wonderland.txt
|   |   |-- Alice Through the Looking Glass.epub
</code></p>

<ul>
    <li>PDF zoom.  PDF is a <em>rubbish</em> format for an ebook.  The page paradigm really doesn't work when you're on a screen.  When the 511EB zooms in to a PDF, the page down button litterally takes you to the next page - not the next part of the page you're on.  You have to use the arrow keys to scroll around the page.</li>
</ul>

<p>Finally, there's no screen rotation.  To be honest, this isn't a feature I'd ever use - but some people like to have it.</p>

<h2 id="conclusion"><a href="https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/#conclusion">Conclusion</a></h2>

<p>As I said before, this is a cheap and cheerful ebook reader. The speed of page turning speed is impressive. EPUBs and PDFs work well, but missing some of the extra features like searching and Text-To-Speech.  It handles large files - although performance takes a slight hit.
The build quality is what you would expect, a bit cheap and plasticy.  But it only weighs 190 grammes.  The quality of the keyboard is sufficient and the display is as good as any other eReader.</p>

<h2 id="a-word-on-waterstones"><a href="https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/#a-word-on-waterstones">A Word on Waterstone's</a></h2>

<p>Given the number of bugs (admittedly, fairly minor) it seems odd that Waterstone's are heavily promoting this model.  My local shop has 3 rather prominent displays. To dedicate so much space without even testing the unit takes some bravado.
They have taken over half of their window display.</p>

<p></p><div id="attachment_1535" style="width: 310px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/01/P100109_115037.jpg"><img aria-describedby="caption-attachment-1535" class="size-medium wp-image-1535" title="511EB in the window of Waterstone's" src="https://shkspr.mobi/blog/wp-content/uploads/2010/01/P100109_115037-300x225.jpg" alt="511EB in the window of Waterstone's" width="300" height="225"></a><p id="caption-attachment-1535" class="wp-caption-text">511EB in the window of Waterstone's</p></div><p></p>

<p>They have a whole book case devoted to the unit.</p>

<p></p><div id="attachment_1533" style="width: 235px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/01/P100109_115201.jpg"><img aria-describedby="caption-attachment-1533" class="size-medium wp-image-1533" title="Heavily Promoted" src="https://shkspr.mobi/blog/wp-content/uploads/2010/01/P100109_115201-e1263113290317-225x300.jpg" alt="Heavily Promoted" width="225" height="300"></a><p id="caption-attachment-1533" class="wp-caption-text">Heavily Promoted</p></div><p></p>

<p>They're also putting it up against the much more expensive Sony eReaders.</p>

<p></p><div id="attachment_1536" style="width: 310px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2010/01/dummy.jpg"><img aria-describedby="caption-attachment-1536" class="size-full wp-image-1536" title="Dummy Model" src="https://shkspr.mobi/blog/wp-content/uploads/2010/01/dummy.jpg" alt="Dummy Model" width="300" height="400"></a><p id="caption-attachment-1536" class="wp-caption-text">Dummy Model</p></div><p></p>

<p>Yet they're not as committed to this as you may think.  <strong>There are no working models on display</strong>.  With the Sonys, you can try them out, see if they're fast enough, explore their menus - the lowly 511EB gets a cardboard dummy.</p>

<p>The majority of questions people have asked me could have been answered by having a working model.  The <a href="https://web.archive.org/web/20100110225005/http://www.waterstones.com/waterstonesweb/products/elonex+511eb+-+522+ebook+reader/7364563/">Waterstone's website is also full of people asking basic questions</a>.  Questions which really should have been preemptively answered on the site.  I've registered with the site so I can answer some of them, but a device like this deserves more information up front.
Elonex - the reseller of this device from Hanvon - have committed to firmware updates.  I hope, for Waterstone's sake, that they come out quickly and regularly.  Otherwise, Waterstone's will face a lot of angry customers and will set back the progress of eReader adoption.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=1532&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/feed/</wfw:commentRss>
			<slash:comments>135</slash:comments>
		
		
			</item>
		<item>
		<title><![CDATA[Review: Elonex 511EB from Waterstones]]></title>
		<link>https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/</link>
					<comments>https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/#comments</comments>
				<dc:creator><![CDATA[@edent]]></dc:creator>
		<pubDate>Mon, 28 Dec 2009 17:17:22 +0000</pubDate>
				<category><![CDATA[/etc/]]></category>
		<category><![CDATA[511eb]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[elonex]]></category>
		<category><![CDATA[ereader]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[waterstones]]></category>
		<guid isPermaLink="false">http://shkspr.mobi/blog/?p=1466</guid>

					<description><![CDATA[When I was younger, I was taught that a roll of papyrus in ancient Egypt cost the same as the monthly wage for the average citizen.  Nowadays the cost of paper is negligible.  That&#039;s how it goes with new technology - it&#039;s frightfully expensive to begin with, but after a while it&#039;s as ubiquitous and disposable as paper.  Ebook readers are the latest in a long line of &#34;written-word&#34; technology.  F…]]></description>
										<content:encoded><![CDATA[<p>When I was younger, I was taught that a roll of papyrus in ancient Egypt cost the same as the monthly wage for the average citizen.&nbsp; Nowadays the cost of paper is negligible.&nbsp; That's how it goes with new technology - it's frightfully expensive to begin with, but after a while it's as ubiquitous and disposable as paper.</p>

<p>Ebook readers are the latest in a long line of "written-word" technology.  From clay tablet to papyrus to the printing press, humans have always found better ways of displaying words.  The latest innovation is <a href="http://www.eink.com/">e-Ink</a>.  A remarkable material which simulates the look and feel of paper - but where the display is controlled by microelectronics.</p>

<p>As a book lover, I've been eager to get my hands on a Kindle, or nook, or Sony eReader - but they're all prohibitively expensive.  Until now.  <a href="https://web.archive.org/web/20100110225005/http://www.waterstones.com/waterstonesweb/products/elonex+511eb+-+522+ebook+reader/7364563/">Waterstones - a leading book retailer in the UK - has started selling the Elonex 511EB</a>.  An eReader with the retail price of £129.99.  Now, that's not quite as cheap as paper - but it's around half the cost of the Kindle.</p>

<h2 id="unboxing"><a href="https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/#unboxing">Unboxing</a></h2>

<p>The <a href="https://web.archive.org/web/20100108174143/http://www.elonex.com/support/products/ebook/511_eBook.shtm">Elonex 511EB</a>.</p>

<iframe title="Elonex 511EB ebook reader from Waterstones" width="620" height="349" src="https://www.youtube.com/embed/PKs599jSGfk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>

<p>You also get a <a href="https://web.archive.org/web/20100613051019/http://www.elonex.com/support/products/ebook/ElonexeBook511EBQuickStartGuide.pdf">quickstart quide</a>, a USB cable and iPhone-esque white earphones.  The device comes with a 4GB micro SD card (Sandisk branded) - enough for around 8000 books.  There are 100 free eBooks included - you can also <del datetime="2024-12-28T10:00:20+00:00"><a href="http://www.elonex.com/support/products/ebook/Free_eBooks.zip">download them directly from Elonex</a></del>.</p>

<p></p><div id="attachment_1467" style="width: 410px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1467" class="size-full wp-image-1467" title="What's In The Box" src="https://shkspr.mobi/blog/wp-content/uploads/2009/12/Whats-In-The-Box.jpg" alt="What's In The Box" width="400" height="586"><p id="caption-attachment-1467" class="wp-caption-text">What's In The Box</p></div><p></p>

<h2 id="cost"><a href="https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/#cost">Cost</a></h2>

<p><a href="https://shkspr.mobi/blog/2009/11/times-cheltnam-twitter-competition/">I won a £20 Waterstones voucher</a> in the <a href="https://web.archive.org/web/20110312051931/http://entertainment.timesonline.co.uk/tol/arts_and_entertainment/books/article6914029.ece">Times' Cheltnam Microfiction Competition</a> - so the cost for me was £110.  You can also sign up to Waterstones' loyalty card - which will net you 389 points.  That's £3.89 off any subsequent purchase.&nbsp; At a shade over £100 it's certainly the cheapest eReader I've found.&nbsp; It lacks some of the features of its high-priced cousins - no wireless, no touch screen, smaller screen.&nbsp; But, to my mind, that's not a problem.</p>

<h2 id="features"><a href="https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/#features">Features</a></h2>

<p>Here's a run-down of some of the more interesting features of the device.</p>

<ul>
    <li>Text-to-speech.&nbsp; A synthetic voice will read in English, Mandarin or Cantonese.&nbsp; The voice can be set to male or female.&nbsp; It's not the best TTS I've encountered, but it's adequate.</li>
    <li>Memo recorder. As well as a QWERTY keyboard for you to write your own novel on, there's a built in microphone so you can record any thoughts you might have.</li>
    <li>Format support.&nbsp; The device will render TXT, HTXT(?), HTML, PDF, ePub and DOC.&nbsp; It admits that complex DOC and PDF may not render correctly.&nbsp; It has <a href="https://web.archive.org/web/20100108175635/http://www.elonex.com/support/products/ebook/511_eBook_digital_editions.shtm">Adobe Digital Editions support</a> should you wish to read a DRM'd eBook.</li>
    <li>SDHC.&nbsp; The device comes with a 4GB microSD card and will take up to 32GB.&nbsp; That's probably more books than you could read in a lifetime - but leaves plenty of room for...</li>
    <li>Music playback. MP3, WAV and WMA. It doesn't say what bitrates etc it supports.&nbsp; No support for OGG, which is a disappointment.&nbsp; The two speakers on the back are loud enough - but aren't going to be replacing your HiFi.&nbsp; The headphone socket is a standard 3.5mm jack.</li>
    <li>

<div id="attachment_1468" style="width: 410px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1468" class="size-full wp-image-1468" title="MP3 Screen" src="https://shkspr.mobi/blog/wp-content/uploads/2009/12/511-mp3.png" alt="MP3 Screen" width="400" height="585"><p id="caption-attachment-1468" class="wp-caption-text">MP3 Screen</p></div></li>
    <li>Picture support for JPG, TIFF, PNG, GIF and BMP.&nbsp; Obviously it's only a black and white screen with 8 levels of grey.&nbsp; You can set one of your images to be the start-up screen.</li>
    <li>Security. You can set a password if you're worried about it being lost or stolen.</li>
    <li>The screen is 800*600 at 170dpi.&nbsp; The refresh rate seems a mite quicker than the more expensive screens - but only a mite.</li>
    <li>The device shows as a mass-storage device when plugged in to a computer - so there's no software to install on your Mac or PC.  I did have some troubles with Linux - see the bugs section.</li>
    <li>There's a lock button at the top.&nbsp; It also has the usual array of eReader functions - bookmarks, text search, remembering your last position, font size changing.&nbsp; It comes with two built in fonts - Arial and Times.</li>
    <li>Lots of settings to play around with.</li>
<iframe title="Elonex 511EB ebook reader from Waterstones" width="620" height="349" src="https://www.youtube.com/embed/4ZZ5q2MSzCk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>
</ul>

<h2 id="bugs"><a href="https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/#bugs">Bugs</a></h2>

<p>For a device this cheap, there are bound to be one or two gremlins.&nbsp; There's support in the device for firmware upgrade - so hopefully Elonex will fix them.&nbsp; <span style="text-decoration: line-through;">Incidentally, eReaders like this usually run Linux.&nbsp; There's no mention of it on the box and Elonex doesn't link to any GPL'd sources - so maybe it's running a totally custom OS.</span> Update! <a href="http://www.mobileread.com/forums/showthread.php?t=67321">Pdurrant at the MobileRead forums</a> notes that this is a <a href="http://wiki.mobileread.com/wiki/WISEreader_N520">rebadged version of the WISEreader N520</a> - a device made by <a href="https://web.archive.org/web/20100108024639/https://www.hanvon.com/en/products/ebook/products-N520.html">Hanvon</a> and running <a href="http://en.wikipedia.org/wiki/Windows_CE">WinCE 5.0</a>.</p>

<p>Firstly, it doesn't seem to handle non-standard characters very well. The "é" in "Les Misérables" is rendered as Chinese character.
(The text is a lot more crisp than my scanner can show)</p>

<p></p><div id="attachment_1470" style="width: 410px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1470" class="size-full wp-image-1470" title="Character Encoding Bug" src="https://shkspr.mobi/blog/wp-content/uploads/2009/12/511-lesmis.png" alt="Character Encoding Bug" width="400" height="587"><p id="caption-attachment-1470" class="wp-caption-text">Character Encoding Bug</p></div><p></p>

<p>Text doesn't flow very well in text files.  It takes all the line breaks a literal breaks in the text - as you can see here.</p>

<p></p><div id="attachment_1469" style="width: 410px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1469" class="size-full wp-image-1469" title="Text Flow Bug" src="https://shkspr.mobi/blog/wp-content/uploads/2009/12/511.png" alt="Text Flow Bug" width="400" height="582"><p id="caption-attachment-1469" class="wp-caption-text">Text Flow Bug</p></div><p></p>

<p>This is particularly bad in HTML as you can see here.</p>

<p></p><div id="attachment_1474" style="width: 334px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1474" class="size-full wp-image-1474" title="Alicehastextflowissues" src="https://shkspr.mobi/blog/wp-content/uploads/2009/12/alice.png" alt="Alicehastextflowissues" width="324" height="418"><p id="caption-attachment-1474" class="wp-caption-text">Alicehastextflowissues</p></div><p></p>

<p>When we take a look at the HTML, we can see the issue.</p>

<p></p><div id="attachment_1473" style="width: 479px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1473" class="size-full wp-image-1473" title="Alice's Adventures in HTML" src="https://shkspr.mobi/blog/wp-content/uploads/2009/12/Alices-Adventures-in-HTML.png" alt="Alice's Adventures in HTML" width="469" height="244"><p id="caption-attachment-1473" class="wp-caption-text">Alice's Adventures in HTML</p></div><p></p>

<p>The line breaks here are ignored which leads words to run in to each other.  This is the fault of the HTML file - but this shouldn't have got through quality control.</p>

<p>Linux support.  I'm one of those crazy people who runs Ubuntu Linux. The 511EB should just show as a USB drive when plugged in.  It doesn't.  I'm not sure what the problem is, but I can't get it to show up.  The SD card is removable so you can get access to the files that way.</p>

<p></p><div id="attachment_1478" style="width: 235px" class="wp-caption aligncenter"><a href="https://shkspr.mobi/blog/wp-content/uploads/2009/12/File-System.png"><img aria-describedby="caption-attachment-1478" class="size-full wp-image-1478" title="File System" src="https://shkspr.mobi/blog/wp-content/uploads/2009/12/File-System.png" alt="File System" width="225" height="497"></a><p id="caption-attachment-1478" class="wp-caption-text">File System</p></div><p></p>

<p>It's a little inconvenient - but it did lead me to this discovery...</p>

<p>Beneath a rubber flap is the microSD card and a rather strange looking port.  It may well be a micro USB connector - <a href="https://shkspr.mobi/blog/2009/10/universal-power-supplies/">the new standard for charging mobile phones</a> - or it could be something proprietary.</p>

<p></p><div id="attachment_1477" style="width: 210px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1477" class="size-full wp-image-1477" title="micro usb?" src="https://shkspr.mobi/blog/wp-content/uploads/2009/12/micro-usb.jpg" alt="micro usb?" width="200" height="427"><p id="caption-attachment-1477" class="wp-caption-text">micro usb?</p></div><p></p>

<p>There's no manual. Most of the features are self explanatory - but for those who don't like exploring a device, it wouldn't have been any effort to include a manual on the device.</p>

<h2 id="verdict"><a href="https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/#verdict">Verdict</a></h2>

<p>This is a great device.&nbsp; It is missing a few of the features of the Kindle - but at this price point, who cares?&nbsp; Sure, no one wants to throw away £100 - but if you left this on a train, you wouldn't be half as upset as if you'd lost an eReader costing £250.</p>

<p>The e-Ink screen is made by <a href="https://web.archive.org/web/20090608061405/http://www.pvi.com.tw/en/index/index.php">Prime View International</a> - they're the same company who make Sony's eReader screens.&nbsp; So the quality of the screen is really good.&nbsp; It has a crisp display - once you've set the fonts to your preference - and a quick refresh rate.&nbsp; Like all e-Ink screens, it can be read in direct sunlight.&nbsp; There's no backlight, so you'll need a torch if you want to read under the covers.</p>

<p>There are a few bugs - but they're not show stoppers.&nbsp; Hopefully there will be some updates to the firmware.</p>

<p>If all it did was display text - it would be a bargain.&nbsp; Considering it plays music, has text-to-speech, has a full keyboard for note taking AND a microphone, it's a lot of kit for very little cash.</p>

<p>I haven't exhaustively used the device - so I may be missing something that's important to you.&nbsp; Please leave a comment if you'd like to know anything specific about it.</p>

<h2 id="waterstones"><a href="https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/#waterstones">Waterstones</a></h2>

<p>I'm a little disappointed to have to write this review.&nbsp; But the information on Watersons' website is woefully inadequate.&nbsp; Would it have been too much effort to link to a manual, explain what file formats it supported, or had several pictures of the device?&nbsp; I bought this from a physical store where they didn't even have a working device on display - only a cardboard model.&nbsp; If retailers are serious about selling high-tech kit, they need to ensure that all the information a customer needs is available to them.</p>

<p>Who would spend over £100 on a device without first seeing a detail spec-sheet? I hope this review has given you enough information to make your mind up about this device.</p>

<p><a href="https://shkspr.mobi/blog/2010/01/waterstones-elonex-511eb-review-part-2/">Read part 2 of the review</a>.</p>
<img src="https://shkspr.mobi/blog/wp-content/themes/edent-wordpress-theme/info/okgo.php?ID=1466&HTTP_REFERER=RSS" alt="" width="1" height="1" loading="eager">]]></content:encoded>
					
					<wfw:commentRss>https://shkspr.mobi/blog/2009/12/review-elonex-511eb-from-waterstones/feed/</wfw:commentRss>
			<slash:comments>254</slash:comments>
		
		
			</item>
	</channel>
</rss>
