<?xml version="1.0" encoding="UTF-8"?>
<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>(robertf?)?beeger\.(net&#124;info&#124;org)</title>
	<atom:link href="http://beeger.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://beeger.net</link>
	<description>The Ravings of Robert F. Beeger</description>
	<lastBuildDate>Mon, 23 Apr 2012 20:33:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Ender&#8217;s Game</title>
		<link>http://beeger.net/2012/04/enders-game/</link>
		<comments>http://beeger.net/2012/04/enders-game/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 20:33:07 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[fiction]]></category>
		<category><![CDATA[sci-fi]]></category>

		<guid isPermaLink="false">http://beeger.net/?p=349</guid>
		<description><![CDATA[It&#8217;s now over 20 years since I first read &#8220;Ender&#8217;s Game&#8221; by Orson Scott Card. I remember that I was searching the science fiction shelf in my local library for something new to read when the german translation of &#8220;Ender&#8217;s Game&#8221; caught my eye. It was one of those books you start reading and only [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s now over 20 years since I first read &#8220;Ender&#8217;s Game&#8221; by Orson Scott Card. I remember that I was searching the science fiction shelf in my local library for something new to read when the german translation of &#8220;Ender&#8217;s Game&#8221; caught my eye.</p>
<p>It was one of those books you start reading and only stop to go to sleep or eat something. It had it all: a gripping story, characters you could identify with and a cool setting. Although I nearly never reread books since there are so many interesting ones I haven&#8217;t read yet, I just thought to myself &#8220;Wouldn&#8217;t it be cool to read it again&#8221; and bought it in the kindle store. And as before I read through it until I finished it.</p>
<p>Nowadays books like &#8220;Ender&#8217;s Game&#8221; are categorized as &#8220;Young Adult&#8221; books. It&#8217;s not a hard science science fiction book. The plot isn&#8217;t overly complicated, but it has it&#8217;s fill of philosophy. It&#8217;s also a book that is easy to read. But despite being like that or perhaps because of it, it&#8217;s a recommendable book even for the no longer quite so young adult.</p>
<p>In the nearly 30 years since it&#8217;s publication Orson Scott Card has written some sequels  and prequels and stories taking place at the same time as the original book.</p>
<p>There are some reoccurring elements in those books, but nonetheless they are all at least entertaining and definitely good reads. In my opinion the best of the Ender books is &#8220;Children of the Mind&#8221;. It comes with several new ideas not seen in the other books and the story is as gripping as the original one.</p>
<p>There are rumors about a movie based on &#8220;Ender&#8217;s Game&#8221; and I wonder what it will be like. Most movies based on science fiction novels are just action movies in a science fictional setting. There&#8217;s much action in that book that can make an action movie, but I hope they won&#8217;t cut out the profound parts.</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2012/04/enders-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dahlia &#8211; a unit testing framework for Dart</title>
		<link>http://beeger.net/2012/03/dahlia-a-unit-testing-framework-for-dart/</link>
		<comments>http://beeger.net/2012/03/dahlia-a-unit-testing-framework-for-dart/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 19:41:04 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dart]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[it-agile-blog-planet]]></category>

		<guid isPermaLink="false">http://beeger.net/?p=326</guid>
		<description><![CDATA[When I started experimenting with Dart some time ago, I looked around for some pointers on unit testing with Dart and found a post on a blog titled &#8220;Test Driven Dart Development&#8221; and a Google Docs page. Both describe a unit testing framework that is not part of Dart&#8217;s standard library but can be downloaded from [...]]]></description>
			<content:encoded><![CDATA[<p>When I started experimenting with Dart some time ago, I looked around for some pointers on unit testing with Dart and found a <a href="http://tdd-dart.blogspot.de/2012/01/test.html">post on a blog titled &#8220;Test Driven Dart Development&#8221;</a> and a <a href="https://docs.google.com/document/pub?id=1A3O34aghr44umPA7fc9YGvFAHTYQFVCCRjcLCM6Yaw8&amp;pli=1">Google Docs page</a>. Both describe a unit testing framework that is not part of Dart&#8217;s standard library but can be downloaded from the Subversion repository of Dart.</p>
<p>I downloaded it and started writing my first tests. I didn&#8217;t like that it used a style that I perceived as being inspired by JUnit 3, though. It also has a nice grouping feature, but groups looked a bit to unspecific to me.</p>
<p>At <a href="http://www.it-agile.de/">it-agile</a>, the company I work for, everyone gets 30 slack days per year we can use however we want &#8212; as long as it has some connection to agile software development. So I decided to invest some slack days and try to implement my own testing framework. I wanted it to use matchers like the ones provided by <a href="http://code.google.com/p/hamcrest/">Hamcrest</a>. I liked that grouping feature of the existing testing framework but wanted to give it more meaning. As I pondered this I remembered that my colleague Sebastian Sanitz once introduced me to a JavaScript testing framework named <a href="http://pivotal.github.com/jasmine/">Jasmine</a> and upon revisiting it, I decided to build something similar for Dart.</p>
<p>As it is inspired by Jasmine and is implemented in and for the Dart programming language, I named it &#8220;dahlia&#8221;. Like &#8220;jasmine&#8221;, &#8220;dahlia&#8221; is the name of a kind of plant and its name start with the same two characters as &#8220;dart&#8221;.</p>
<p>A dahlia test looks like this</p>
<pre>describe('two equal strings', () {
 it('should be equal', () =&gt; expect('test').to(equal('test')));
});</pre>
<p>Like in other <a href="http://dannorth.net/introducing-bdd/">BDD</a> testing frameworks (the most widely known being <a href="http://rspec.info/">RSpec</a>), the describe-part describes something that will be tested and the it-part specifies and tests the behavior of the tested object. So you read this text &#8220;two equal strings should be equal&#8221;.</p>
<p>The parameter to expect() is the actual value, the one you want to test. Typically you call a method on the tested object here and test whether it mets your expectation. The testing part is the parameter of the to method. It is a matcher. Here an equal matcher is used that simply tests whether the actual value equals the expected value which is passed as a parameter to the matcher. Currently there are only a few basic matchers but the number of available matchers will be expanded in the near future. It&#8217;s fairly easy to implement your own matchers should the need arise. You just need to implement the Matcher inferface and provide a convenient function like the equal-function in this example to provide a new matcher.</p>
<p>The expect-part is &#8211; similar to the describe- and it-parts &#8212; meant to be easily readable. In the example this leads to &#8220;expect &#8216;test&#8217; to equal &#8216;test&#8217;&#8221;. The it-function takes a function as its second parameter. In many cases those will be simple one line functions like the one in the example, but if some setup code is necessary, a full multi-statement function can be passed here. The it-call is also called a specification as it defines a behavior and a test for it. Every it-call is therefore counted as a &#8220;spec&#8221;. The total number of specs, of failures &#8212; failed expectations &#8211; and crashes &#8212; any other exceptions that may occur &#8212; is displayed at the end of a testrun.</p>
<p>Currently there is only one reporter that prints the test run results to the console &#8212; be it the Dart VM console in DartEditor or Dartium or the script console in any browser &#8211;, but other reporters that  create HTML and other formats will be added later. As dahlia is currently ment to be used for unit testing, the output to the console is the kind of output one needs the most.</p>
<p><a href="https://github.com/it-agile/dahlia">dahlia is available at GitHub</a>. If you are interested in Dart or are already developing with Dart, please take a look at it.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2012/03/dahlia-a-unit-testing-framework-for-dart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dart</title>
		<link>http://beeger.net/2012/02/dart/</link>
		<comments>http://beeger.net/2012/02/dart/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 12:00:17 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dart]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[it-agile-blog-planet]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://beeger.net/?p=319</guid>
		<description><![CDATA[Some time ago as I was looking into JavaScript frameworks for the development of mobile web applications I stumbled upon Google Closure. Compared to jQuery and jQuery mobile Google Closure is a somewhat underhyped toolset for the development of client-side web applications. Several features of Closure made me take some time to dive into it: [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago as I was looking into JavaScript frameworks for the development of mobile web applications I stumbled upon <a href="http://code.google.com/closure/">Google Closure</a>. Compared to <a href="http://jquery.com/">jQuery</a> and <a href="http://jquerymobile.com/">jQuery mobile</a> Google Closure is a somewhat underhyped toolset for the development of client-side web applications.</p>
<p>Several features of Closure made me take some time to dive into it:</p>
<ul>
<li>The closure library contains many small useful frameworks that fit together. So there is no need to mix and match different frameworks for functional programming, ui composition etc.</li>
<li>There is a working module concept. You can separate your application into different parts and specify which of the many frameworks in the closure library you really need.</li>
<li>You can use static typing and there is a compiler that checks it. So many errors can be found by the compiler. You don&#8217;t have to find them while running the app in the browser.</li>
<li>Since the compiler knows what is used from the huge closure library and your own code, it can delete unused code from the compiled application and run some other advanced optimizations that make the resulting code much smaller and faster.</li>
</ul>
<p>Especially the static typing and having a compiler that checks the code before it is executed, appealed to me. Debugging in a browser is quite comfortable nowadays but if there is a chance to get rid of bugs without having to debug, I&#8217;ll take it. As someone having developed in Java for over a decade now, using an IDE and a compiler feels natural to me.</p>
<p>But there is a downside. The static type information for Closure has to be typed in into comments since JavaScript itself as a dynamically typed language doesn&#8217;t provide any constructs for this. Having to put type annotations into comments is quite cumbersome and after some time my initial enthusiasm for Google Closure somehow waned. Was it really worth the additional effort?</p>
<p><a href="http://www.dartlang.org/">Dart</a> seems to be the answer for all those loving Closures&#8217; features while disliking the notation needed to get them. Dart is a new class-based language by Google created for the development of client-side web applications.</p>
<p>Dart has optional static typing. You can provide static typing information and if you do, the compiler that generates JavaScript from your Dart code, will check it. If you choose not to provide that information, it will obviously not be checked.</p>
<p>Static typing in Dart only affects compilation. It isn&#8217;t used while running a Dart based application.</p>
<p>Dart also comes with real classes and inheritance among them. The notation for classes and inheritance is much simpler than the prototype-based notation in Closure. It all just looks cleaner and more readable in Dart than it does in a Closure class.</p>
<p>The Dart team provides an Eclipse-based IDE for Dart called Dart-Editor. It&#8217;s still in the alpha phase and lacks many features that simply belong to a good IDE like refactoring support, but even in this very early stage it&#8217;s useful for the development of Dart applications and the exploration of the Dart libraries.</p>
<p>Currently much is happening in the Dart universe. The language is far from fixed. Frequently new proposals or changes that will break code from a month before are announced. Some weeks ago for example a <a href="http://news.dartlang.org/2012/01/proposed-changes-for-equality.html">change of the meaning of the == operator was proposed</a>. Currently Dart is not for the faint of heart but it&#8217;s fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2012/02/dart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The End of The Mongoliad</title>
		<link>http://beeger.net/2012/01/the-end-of-the-mongoliad/</link>
		<comments>http://beeger.net/2012/01/the-end-of-the-mongoliad/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 20:41:39 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[fiction]]></category>

		<guid isPermaLink="false">http://beeger.net/?p=302</guid>
		<description><![CDATA[My subscription for The Mongoliad ended a few days ago and I did not renew it. My initial enthusiasm for it melted away after half a year. I haven&#8217;t read a single chapter since June or maybe even May. Serial novels don&#8217;t seem to work for me. I prefer to read a book at my own pace. [...]]]></description>
			<content:encoded><![CDATA[<p>My subscription for <a href="http://mongoliad.com/">The Mongoliad</a> ended a few days ago and I did not renew it.</p>
<p>My initial enthusiasm for it melted away after half a year. I haven&#8217;t read a single chapter since June or maybe even May. Serial novels don&#8217;t seem to work for me. I prefer to read a book at my own pace. I just cannot stand to have to wait for the next chapter for a week or maybe even two or three weeks.</p>
<p>It&#8217;s the same with tv series. I watch the first episode and maybe the next two. Then I get impatient and if the series isn&#8217;t really gripping or otherwise fascinating, I don&#8217;t watch it anymore.</p>
<p>I had expected that The Mongoliad would keep me reading longer because Neal Stephenson is part of it, but somehow it isn&#8217;t like any other book from him.</p>
<p>I suspect that either he doesn&#8217;t participate in the writing of the book or that the serial character of the book isn&#8217;t doing it any good.</p>
<p>Though I don&#8217;t know anything about writing fiction books, I can imagine, that it&#8217;s quite hard to write a book if you cannot return to an earlier chapter and fix a part or add something to make the whole book work better. The Mongoliad looks &#8212; at least to the point where I left it &#8212; like a cronologically sorted collection of stories about some people. The stories themselves are OK, but somehow there is something missing, something that makes me want to read on.</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2012/01/the-end-of-the-mongoliad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pinboard</title>
		<link>http://beeger.net/2011/11/pinboard/</link>
		<comments>http://beeger.net/2011/11/pinboard/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 17:23:22 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://beeger.net/?p=299</guid>
		<description><![CDATA[When rumors came up that Yahoo would shut down Delicious some time ago, I started searching for an alternative online bookmark management solution. Finally I came across Pinboard and signed up for an account. Importing all my Delicous bookmarks was a piece of cake and the interface looked nice and clean. Then Delicious wasn&#8217;t shut down. It [...]]]></description>
			<content:encoded><![CDATA[<p>When rumors came up that Yahoo would shut down <a href="http://delicious.com/">Delicious</a> some time ago, I started searching for an alternative online bookmark management solution. Finally I came across <a href="http://pinboard.in/">Pinboard</a> and signed up for an account. Importing all my Delicous bookmarks was a piece of cake and the interface looked nice and clean.</p>
<p>Then Delicious wasn&#8217;t shut down. It only got sold to another company. So somehow I returned to Delicious. I don&#8217;t have many bookmarks. I collected 350 of them and sometimes there are weeks when I really don&#8217;t add a new one. So it&#8217;s not as if the bookmark manager were a vital tool for me.</p>
<p>Anyways Delicious started to irritate me a bit recently. It looks bloated and they seem to add features I don&#8217;t really need. So I returned to Pinboard recently and will probably stay there. It still has the clean and nice interface and a useful mobile variant of it. The feature set  hasn&#8217;t changed for ages, but as it&#8217;s good as it is it doesn&#8217;t need to.</p>
<p>There&#8217;s one difference to Delicious that will matter to some people. For a Pinboard-account you have to pay a one time sign up fee of currently 9,51 $. The fee is getting increased by one cent for each new account.</p>
<p>In case of being interested you can browse <a href="http://pinboard.in/u:rbeeger/">my public bookmarks at Pinboard</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2011/11/pinboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Void Trilogy</title>
		<link>http://beeger.net/2011/07/void-trilogy/</link>
		<comments>http://beeger.net/2011/07/void-trilogy/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 19:48:32 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[fiction]]></category>
		<category><![CDATA[sci-fi]]></category>

		<guid isPermaLink="false">http://beeger.net/?p=291</guid>
		<description><![CDATA[The Void trilogy is another three volume space opera by Peter F. Hamilton. It&#8217;s not really revolutionary. But if you liked &#8220;Night&#8217;s Dawn&#8221; or the &#8220;Commonwealth Saga&#8221; &#8212; his former space operas &#8212; you&#8217;ll like this one, too. It&#8217;s a sequel to the Commonwealth Saga and since persons from it make reappearances here and situations from [...]]]></description>
			<content:encoded><![CDATA[<p>The Void trilogy is another three volume space opera by <a href="http://www.peterfhamilton.co.uk/">Peter F. Hamilton</a>. It&#8217;s not really revolutionary. But if you liked &#8220;Night&#8217;s Dawn&#8221; or the &#8220;Commonwealth Saga&#8221; &#8212; his former space operas &#8212; you&#8217;ll like this one, too. It&#8217;s a sequel to the Commonwealth Saga and since persons from it make reappearances here and situations from it are referenced reading the saga first is a good idea.</p>
<p>As in his former books, in the Void trilogy there&#8217;s a conflict that threatens a whole galaxy. People travel faster than light in space ships to prevent the catastrophe and some nice political and religious games are played out on a great stage.</p>
<p>This time around a <a href="http://en.wikipedia.org/wiki/Technological_singularity">singularity</a> &#8212; the void &#8212; is the cause of great concern. Science fiction has seen some books about singularities &#8212; great artificial or somehow otherwise strange intelligences &#8212; in the past and many of them probably with scientifically better theories, but Hamilton&#8217;s take on the subject is nevertheless a good read.</p>
<p>Actually there are two stories told alternately. One takes place inside the void, where people have some amazing psychic abilities. The other one takes place outside the void, where people view the inside story while dreaming. Naturally some of the outsiders want to get into the void while others try to prevent them from getting inside.</p>
<p>Both stories provide lots of suspense  and fun and merge in a nice final.</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2011/07/void-trilogy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another redesign</title>
		<link>http://beeger.net/2010/11/another-redesign/</link>
		<comments>http://beeger.net/2010/11/another-redesign/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 16:12:30 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dev]]></category>

		<guid isPermaLink="false">http://beeger.net/?p=287</guid>
		<description><![CDATA[It&#8217;s been nearly 5 years since the last redesign of my blog. Time to change it again. This time a lot of things change. Naturally the design is the most apparent change. It&#8217;s very minimalistic now. There are no images in the header and the footer and no boxes around the individual posts. I&#8217;m using [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been nearly 5 years since the last redesign of my blog.</p>
<p>Time to change it again. This time a lot of things change.</p>
<p>Naturally the design is the most apparent change. It&#8217;s very minimalistic now. There are no images in the header and the footer and no boxes around the individual posts. I&#8217;m using a webfont from <a href="http://code.google.com/webfonts">Google&#8217;s font directory</a> to give the headings a somewhat distinctive look. The HTML is html5 with all the new shiny tags like article and header, but that&#8217;s something nearly no reader of this blog will ever notice. I have also put some work into making it readable on mobile devices such as iPhones, iPads and Android phones.</p>
<p>The biggest change is in the backend though. I&#8217;ve moved the blog from Movable Type to WordPress.</p>
<p>With the move to WordPress I also decided to deactivate commenting and trackbacks on this blog. Comments and trackbacks have mostly been spam in the last few years and a pain to sort out. I have included tweet and flattr buttons on each post. So you can comment on my posts via twitter or if the comment doesn&#8217;t fit into 140 characters on your own blogs. If you like a post you can flattr it.</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2010/11/another-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Mongoliad</title>
		<link>http://beeger.net/2010/09/the_mongoliad/</link>
		<comments>http://beeger.net/2010/09/the_mongoliad/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 15:51:38 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[fiction]]></category>

		<guid isPermaLink="false">http://wp.beeger.net/?p=99</guid>
		<description><![CDATA[The Mongoliad is Neal Stephenson’s new book project and it fits perfectly in with his most recent books &#8211; the Baroque Cycle and Anathem. So if you liked those books you’ll like this one, too. As the title &#8211; The Mongoliad &#8211; suggests mongols play an important role in this book. It’s 1241 and the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mongoliad.com/">The Mongoliad</a> is Neal Stephenson’s new book project and it fits perfectly in with his most recent books &#8211; the <a href="http://en.wikipedia.org/wiki/The_Baroque_Cycle">Baroque Cycle</a> and <a href="http://en.wikipedia.org/wiki/Anathem">Anathem</a>. So if you liked those books you’ll like this one, too.</p>
<p>As the title &#8211; The Mongoliad &#8211; suggests mongols play an important role in this book. It’s 1241 and the mongols are on their way to conquer the world. They have already reached Poland. Here’s Neal Stephenson talking about the setup:</p>
<p style="text-align: center;">
<p><a href="http://www.youtube.com/watch?v=RE9bg62Oews">http://www.youtube.com/watch?v=RE9bg62Oews</a></p>
</p>
<p>The Mongoliad is different from those earlier books in one important aspect. It’s not a book in the classical sense. You cannot buy the finished product printed on paper or as an ebook. It’s published on its own website one chapter each week. And beside Neal Stephenson there are 6 other writers and even more people who are somehow involved in the whole thing.</p>
<p>The Mongoliad is not the first book of its kind. Some years ago Tad Williams tried the same approach with <a href="http://www.shadowmarch.com/">Shadowmarch</a>. Shadowmarch was canceled 2002 after one year because it didn’t attract enough subscribers to pay the bills. It was published as a printed book sometime later.</p>
<p>I think this time around it could work. You don’t need a desktop computer or notebook to read it. You can read it on an iPad or any other of the forthcoming tablets. There’s said to be an iPad app waiting for approval by Apple that will improve the reading experience.</p>
<p>There are also some kinds of social features. You can rate and discuss each chapter with your fellow subscribers and with the writers. There’s also a forum. Those features are rather unimportant for me and till now I haven’t partaken in any of the discussions.</p>
<p>As with classical books, the content is the one and only thing that interests me. The already released four chapters present a gripping and well written story. So I think the 10$ for the yearly subscription fee is well invested money.</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2010/09/the_mongoliad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading ebooks on the iPad</title>
		<link>http://beeger.net/2010/06/reading_ebooks_on_the_ipad/</link>
		<comments>http://beeger.net/2010/06/reading_ebooks_on_the_ipad/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 22:54:41 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[ios]]></category>

		<guid isPermaLink="false">http://wp.beeger.net/?p=98</guid>
		<description><![CDATA[The iPad is a great device for reading ebooks. The bigger screen is a big advantage over the smaller screen of the iPhone. On the iPhone I always used a small font and small margins to get as much text as possible on the screen. It worked pretty well, but it looked a bit crowded. [...]]]></description>
			<content:encoded><![CDATA[<p>The iPad is a great device for reading ebooks. The bigger screen is a big advantage over the smaller screen of the iPhone. On the iPhone I always used a small font and small margins to get as much text as possible on the screen. It worked pretty well, but it looked a bit crowded. Now on the iPad with a font that is more comfortable to read and margins that make the pages actually look like pages of a book there&#8217;s still more text on a page than on the iPhone. </p>
<p>The advantage of having more text on a page is simply a reduced amount of page turnings. It&#8217;s the same with ebooks as it is with normal books. Each need to turn a page introduces a brief distraction in the reading flow. This becomes very apparent when reading on a small screen like the one of an iPhone.</p>
<p>On the iPad there are many different apps for reading different kinds of ebooks. Since starting reading ebooks in 2003 &#8211; on a Palm Tungsten T &#8211; I&#8217;ve been buying ebooks on <a href="http://www.ereader.com">ereader.com</a> and reading them with the ereader app, which was called PalmReader back in 2003. Unfortunately ereader was not updated for the iPad, but fortunately <a href="http://www.lexcycle.com/">Stanza</a> is a nice alternative to the original ereader app. It can read DRM-protected ereader ebooks. It also provides a simple access to the free books from <a href="http://www.gutenberg.org">Project Gutenberg</a>.</p>
<p>Apple&#8217;s iBooks app also looks nice and you can read any ePub book with it. It&#8217;s not limited to ebooks bought in Apple&#8217;s iBook store. I haven&#8217;t tried it with any DRM or otherwise protected ebooks, though. <a href="http://oreilly.com/">O&#8217;Reilly</a> and <a href="http://www.pragprog.com/">The Pragmatic Bookshelf</a> among others sell their ebooks without any such protection. Reading ePub books from those publishers works without any problems in the iBooks app. iBooks is a beautiful app with nice page turning animations. It looks nice and works great. It&#8217;s perfect for reading novellas and other kinds of books that mainly contain just text with an occasional image without any layout specialities. You can change the font style and font size and the text will be laid out in a way that it perfectly fills the screen. But that&#8217;s also the biggest problem with ePub when used for technical books. As a software developer I often read books with code listings and tables and images in them. I&#8217;ve never tried to read those kinds of books on an iPhone. The screen is just too small, but with an iPad there is enough room for listings, images and tables. It doesn&#8217;t work with ePub versions of this kind of ebooks. Listings just look weird. Probably reducing the font-size would fix it, but then there is a ton of other problems with ePub such as syntax hightligthing and special symbols pointing out interesting parts of a listing. And footnotes are displayed on the last page of a chapter.</p>
<p>So, the only solution seems to read the PDF variants of those ebooks, which are also available. PDFs are laid out with a specific font at a specific font size for a specific page size. It&#8217;s perfect for technical books although it takes away the possibility to change the font-size to one&#8217;s liking. </p>
<p>iBooks was recently updated with the ability to show PDF ebooks, but PDF-reading isn&#8217;t as good an experience as with other apps. </p>
<p>My current favorite is <a href="http://www.goodiware.com/goodreader.html">GoodReader</a>. Earlier versions of this app were quite slow and changing from one page to the next was rather sluggish, but that got fixed in a recent update. So now it works fine. One of the greatest features of GoodReader is its crop tool. Pages in technical PDF-ebooks have normally big margins and and footers and headers containing information about the current chapter and page number that aren&#8217;t necessary when reading a book. With the crop tool you can crop away the parts that you don&#8217;t need and zoom into the content of interest. With a bit of cropping the books by the mentioned publisher are pleasant to read on the iPad.</p>
<p><a href="http://fastpdf.eu/">Fast PDF</a> has a similar feature but with an unnerving characteristic. Every time you change from one page to the next it zooms out of the currently zoomed in page, changes to the next page and then zooms in again to the desired portion of the page. That makes the app totally unusable for me.</p>
<p>Both PDF viewers have support for password protected files and both lack the support for word definition lookup, a feature nicely implemented in iBooks., where to just tap on a word, select &#8220;dictionary&#8221; from the appearing menu and are presented with a definition of the word from the dictionary included in iOS.</p>
<p>Currently I prefer buying ebook versions of technical books over their paper variant. It&#8217;s easy to take a dozen of them with you when travelling. So I have them available wherever I am whenever I have a need to look something up in them.</p>
<p>Reading ebooks just became lots better with the iPad.</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2010/06/reading_ebooks_on_the_ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rainbows End</title>
		<link>http://beeger.net/2010/03/rainbows_end/</link>
		<comments>http://beeger.net/2010/03/rainbows_end/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 13:30:52 +0000</pubDate>
		<dc:creator>robertbeeger</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[fiction]]></category>
		<category><![CDATA[sci-fi]]></category>

		<guid isPermaLink="false">http://wp.beeger.net/?p=97</guid>
		<description><![CDATA[When I first read about this book, I thought that there must be some typo in the title. Surely it should be &#8220;Rainbow&#8217;s End&#8221;, shouldn&#8217;t it? We all have read stories about rainbows&#8217; ends and all the wealth that awaits there. So it was a natural reaction to assume that this book by Vernor Vinge [...]]]></description>
			<content:encoded><![CDATA[<p>When I first read about this book, I thought that there must be some typo in the title. Surely it should be &#8220;Rainbow&#8217;s End&#8221;, shouldn&#8217;t it? We all have read stories about rainbows&#8217; ends and all the wealth that awaits there. So it was a natural reaction to assume that this book by Vernor Vinge would be some variation on that old story.</p>
<p>Once I bought the book and read a few pages, I realized that, as odd as it may sound, the title was really &#8220;Rainbows End&#8221;. It still amazes me how the absence of a simple symbol &#8211; the apostrophe in this case &#8211; changes the whole meaning and mood of the title.</p>
<p>The book is a near-future science fiction novel. It takes place in 2025. People are using wearable computers all the time and augmented reality is used by everyone. Well actually some people don&#8217;t use those new technologies. Some of them live in a retirement home called &#8220;Rainbows End&#8221; &#8211; a zone free of those new technologies. Some live in the normal world but try to make a stand against the new things by sticking to notebook computers and printed books. There&#8217;s a pretty funny scene when one of them tries to prove that all you can do with wearable computers can also be achieved with a notebook and that the new technologies are so much more insecure than the old ones.</p>
<p>There are much similarities to our own times. We laugh at people who are scared by the internet and by computers in general but how will it look like when our generation is the old generation. Will we be flexible enough to adapt or will we stick to what we learned to accept and love now.</p>
<p>The book is much more than that. There&#8217;s a a crime of international scale, love and friendship and well thought out protagonists. I enjoyed reading the book very much.</p>
]]></content:encoded>
			<wfw:commentRss>http://beeger.net/2010/03/rainbows_end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

