<?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>Michael Barrett &#187; Design</title>
	<atom:link href="http://abouthalf.com/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://abouthalf.com</link>
	<description>@ Abouthalf.com</description>
	<lastBuildDate>Wed, 01 Feb 2012 16:15:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Follow up to the update to the update</title>
		<link>http://abouthalf.com/2011/12/19/follow-up-to-the-update-to-the-update/</link>
		<comments>http://abouthalf.com/2011/12/19/follow-up-to-the-update-to-the-update/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 01:42:21 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[ie9]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=1294</guid>
		<description><![CDATA[I recently updated my update on working around Internet Explorer 9’s deficiencies with gradients and rounded corners. Based upon feedback from a friendly reader, I tweaked the HTC script to work when gradients are applied on hover or mouseover states &#8211; the sort of styling you might want to use on a big, friendly, rounded [...]]]></description>
			<content:encoded><![CDATA[<p>I recently <a title="Updated IE9 gradients with rounded corners" href="http://abouthalf.com/2011/10/04/updated-ie9-gradients-with-rounded-corners/">updated my update</a> on working around Internet Explorer 9’s deficiencies with gradients and rounded corners. Based upon feedback from a friendly reader, I tweaked the HTC script to work when gradients are applied on hover or mouseover states &#8211; the sort of styling you might want to use on a big, friendly, rounded form button. Very close to the time I created this HTC workaround, the fantastic <a href="http://www.colorzilla.com/gradient-editor/">Colorzilla</a> gradient editor was updated to support IE 9 in much the same way my script does.</p>
<p>The Colorzilla gradient editor is a visual gradient editor like you might find in <span title="Old busted">Photoshop</span> or <span title="New hotness">Pixelmator</span>. Once you’ve specified your gradient, you see an HTML preview plus CSS style rules to create that gradient in modern browsers, and a reasonable approximation using IE’s filter syntax.</p>
<div id="attachment_1295" class="wp-caption aligncenter  " style="width: 389px"><a href="/wp-content/uploads/2011/12/Screen-Shot-2011-12-19-at-8.33.27-AM.png"><img class="size-large wp-image-1295" title="Colorzilla interface" src="/wp-content/uploads/2011/12/Screen-Shot-2011-12-19-at-8.33.27-AM-389x480.png" alt="Colorzilla interface" width="389" height="480" /></a><p class="wp-caption-text">Click and draggy</p></div>
<p>A new checkbox toggles IE 9 support. Selecting this option includes a base64 encoded SVG background image along with the rest of the browser gradient definitions. In order for this to work properly it is necessary to include an IE9 specific style rule (in a conditional stylesheet) which disables the filter definition for legacy versions of IE. An example of this style rule is included in the application.</p>
<div id="attachment_1296" class="wp-caption aligncenter  " style="width: 458px"><a href="/wp-content/uploads/2011/12/Screen-Shot-2011-12-19-at-8.33.00-AM.png"><img class="size-full wp-image-1296" title="IE 9 feature" src="/wp-content/uploads/2011/12/Screen-Shot-2011-12-19-at-8.33.00-AM.png" alt="IE 9 SVG feature" width="458" height="398" /></a><p class="wp-caption-text">Click the box for IE 9 support</p></div>
<p>I have to confess that I’ve been using this tool in lieu of my own script. There are a few reasons.</p>
<h2 id="pros">Pros</h2>
<p>Having the SVG definition pre-built and available right in-line removes dependencies on JavaScript and means there’s no extra HTC file to keep up with. Additionally, since there’s no scripting involved, there’s no possibility of collisions with your any scripting in your application.</p>
<p>If one wanted, one could just use the SVG definition and remove all the other gradient definitions (except of course the filter rule). Any browser which supports CSS3 gradients will support an SVG background image. This would let you clean out redundant, browser specific style rules in all your gradient styles.</p>
<p>This technique is reasonably future proof, as it uses standard HTML and a standard SVG. If IE 10 fails to support gradients, this technique will still work.</p>
<p>I have no idea if my HTC script will work on the new mobile IE on Windows Phone 7and (hypothetically) Windows 8. (If someone wants to give me a free Windows Phone, I’ll be happy to test.)</p>
<h2 id="cons">Cons</h2>
<p>If you’re using CSS3 gradient definitions, it’s technically possible to tweak or edit them “by hand” without using a special tool. To make any changes to an encoded SVG image you’ll either have to decode, edit, and re-encode or you’ll have to create a new image from scratch. If you’re using a tool like the Colorzilla gradient editor, this isn’t a huge problem &#8211; but it’s still an extra step.</p>
<p>Since the SVG gradient is encoded inline in the main stylesheet, all browsers must download this image whether they use it or not. So in a way you’re punishing all users for IE 9’s sins. My dynamic solution targets IE 9 specifically.</p>
<p>It is possible that one day this tool will simply disappear. If that happens, then designers and developers might be scrambling for a replacement.</p>
<h2 id="irecommend">I recommend</h2>
<p>I recommend using Colorzilla’s tool over my script for supporting IE 9 gradients. In practice, I find it’s simply far easier for me to just define a gradient and copy/paste the generated CSS into mine, and follow up with a little clean up once the design is settled.</p>
<p>I’m happy with my script, and there may be cases where it’s preferred (smaller download sizes, targeting only modern desktop browsers, etc) but I think the Pros of using Colorzilla’s tool outweigh the Cons.</p>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1294" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/12/19/follow-up-to-the-update-to-the-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poe Sans</title>
		<link>http://abouthalf.com/2011/10/29/poe-sans/</link>
		<comments>http://abouthalf.com/2011/10/29/poe-sans/#comments</comments>
		<pubDate>Sat, 29 Oct 2011 18:00:27 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=1284</guid>
		<description><![CDATA[Poe&#8217;s law states: Without a winking smiley or other blatant display of humor, it is impossible to create a parody of fundamentalism that someone won&#8217;t mistake for the real thing. This article &#8220;Typekit: Remaking the Matrix&#8221; was linked around yesterday by people I respect. A lot of dumb things are published on the internet, and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Poe's_law">Poe&#8217;s law states</a>:</p>
<blockquote>
<p>Without a winking smiley or other blatant display of humor, it is impossible to create a parody of fundamentalism that someone won&#8217;t mistake for the real thing.</p>
</blockquote>
<p>This article &#8220;<a href="http://opinionatedtype.wordpress.com/2011/10/27/typekit-remaking-the-matrix/">Typekit: Remaking the Matrix</a>&#8221; was linked around yesterday by <a href="http://shawnblanc.net/2011/10/farmer-typekit/">people</a> I respect.</p>
<p>A lot of dumb things are published on the internet, and generally, I like to let stupid dogs lie. But this was so blisteringly dumb and so arrogantly offensive I could not leave it be. </p>
<p>I am unsure if the piece is serious. It could very well be a masterful satire, but I really can&#8217;t tell. The rest of the blog doesn&#8217;t look like satire, the blog which links to the piece doesn&#8217;t treat it as satire, the comment section of the piece seems to be serious, but none of that means it isn&#8217;t a satire. I hope it&#8217;s a satire.</p>
<p>After a long digression and some fawning over Typekit and Apple, the author gets to his point.</p>
<blockquote>
<p>But what if giving is only half of what Typekit could do to remake the web? What if they did something never attempted in the font world?</p>
<p><em>I’m talking about taking away ugliness.</em></p>
</blockquote>
<p>And a paragraph later…</p>
<blockquote>
<p>In the same way, I am proposing that Typekit buy a typeface for the purpose of taking it off the market.</p>
</blockquote>
<p>He is suggesting that <a href="https://typekit.com/">Typekit</a> buy the typeface Comic Sans only to destroy it. This will, apparently, make the world a better place.</p>
<p>He outlines a specific plan for eliminating Comic Sans from the earth by beginning with the following.</p>
<blockquote>
<p>Buy the exclusive rights to mediocre fonts of bygone times (Comic Sans, in this example, but also think Arial, Papyrus, Curlz, Jokerman &#8230; anything that would send small churches scrambling for replacements for their weekly announcements) and take them out of commission for good. This would effectively ban computer companies from including them in their operating systems going forward, thus ridding culture of some of its typographic mediocrity.</p>
</blockquote>
<p>The days of small churches oppressing us all with their poorly designed newsletters will finally be over.</p>
<h3 id="aquickdefenseofcomicsans">A quick defense of Comic Sans</h3>
<p>Comic Sans was designed to be used in software for children, and it&#8217;s entirely appropriate for that purpose. If you have a cartoon character teaching you about the alphabet, you don&#8217;t have the cartoon character speak in Helvetica. </p>
<p>Besides, there is no font more laden with irony.</p>
<div id="attachment_1286" class="wp-caption aligncenter  " style="width: 462px"><a href="/wp-content/uploads/2011/10/helvetica.png"><img src="/wp-content/uploads/2011/10/helvetica.png" alt="You mad bro?" title="helvetica" width="462" height="90" class="size-full wp-image-1286" /></a><p class="wp-caption-text">You mad bro?</p></div>
<p>Comic Sans is a light-hearted, jokey typeface intended for small blocks of text in casual contexts. For children. The problem comes in when people use Comic Sans in inappropriate settings or in inappropriate ways. The coworker who writes all email in Comic Sans all the time, or the administrative assistant who pens a company-wide memo in Comic Sans are common examples of Comic Sans done wrong. In the first case, you just roll your eyes quietly at your desk and delete the email. In the second case, a learning opportunity has presented itself.</p>
<p>The problem of misuse is not unique to Comic Sans. I worked with an architect years ago who preached a &#8220;Helvetica&#8221; mentality. All Helvetica. All the time. For everything. Kids fresh out of design school, especially after seeing the great <a href="http://www.imdb.com/title/tt0847817/">Helvetica</a> documentary, have the same problem. Corporations are lazy and conservative and use Helvetica for everything as well. People love Helvetica. To death.</p>
<h3 id="theproblemwithburningbooksisyoucanteverbesureyouveburnedthemall.">The problem with burning books, is you can&#8217;t ever be sure you&#8217;ve burned them all.</h3>
<p>If you overlook the morally abhorrent idea of buying a piece of culturally significant design work and destroying it so no others can use it again &#8211; there&#8217;s a bit of a practical problem with the author&#8217;s scheme.</p>
<p>Destroying one &#8220;bad&#8221; typeface in no way ensures that people won&#8217;t just use another bad typeface. The author himself links to <a href="http://www.imdb.com/title/tt0847817/">alternatives</a> for Comic Sans that are &#8220;better&#8221;. Whether or not these are actually better is irrelevant. If Comic Sans is removed and replaced with another casual typeface, what will prevent the church ladies from overusing and abusing that typeface? Will removing Comic Sans prevent interns from sending memos in <a href="http://www.fonts101.com/fonts/view/Brandname/13792/MarkerFelt.aspx">Marker Felt</a>?</p>
<p>Clearly destroying Comic Sans is not enough. All casual fonts must either be destroyed or placed under close scrutiny, to be used only by design professionals who have passed through several stages of review and approval. </p>
<h3 id="itsnotforsale">It&#8217;s not for sale</h3>
<p><a href="http://en.wikipedia.org/wiki/Comic_Sans">Comic Sans</a> is owned by Microsoft. The author&#8217;s scheme has Typekit purchasing &#8220;exclusive rights&#8221; to Comic Sans for somewhere between one and ten million dollars. From the &#8220;Counterarguments&#8221; (read: straw men) section of the article:</p>
<blockquote>
<p>Yes, it will cost maybe between one and ten million to make it worth a company’s while to take just one typeface off the market.</p>
</blockquote>
<p>Comic Sans is in use on a huge number of computers, both Macs and Windows PCs and probably a fair number of mobile devices as well.</p>
<p>Some googling tells me that there are approximately 1 billion Windows PCs in the world today. If the license fee collected for Comic Sans was 1¢ for each copy of Windows, that would be the author&#8217;s max $10,000,000 asking price. This doesn&#8217;t include Macs, Windows Mobile Devices, or other licensees. I&#8217;m pretty sure Microsoft plans to continue selling Windows. Why would they give this money fountain away, especially to someone who intends to destroy it?</p>
<p>I imagine the founder of Typekit strolling into the Redmond campus of Microsoft, handing a giant cartoon sack of money to Steve Balmer who concedes &#8220;well, we don&#8217;t really want to sell the rights to our intellectual property, but you do have a giant sack of money so I guess we have to&#8221;.</p>
<div id="attachment_1287" class="wp-caption aligncenter  " style="width: 409px"><a href="/wp-content/uploads/2011/10/MrBurns.jpg"><img src="/wp-content/uploads/2011/10/MrBurns-409x480.jpg" alt="Excellent" title="MrBurns" width="409" height="480" class="size-large wp-image-1287" /></a><p class="wp-caption-text">Portrait of the author</p></div>
<h3 id="whatkindofcompanyistypekitanyway">What kind of company is Typekit anyway?</h3>
<p>The author appears to be very fond of Typekit. I am too. They do great work and they deserve heaps of praise and some of your web-design budget. </p>
<p>At the end of the article the author writes:</p>
<blockquote>
<p>Getting rid of Comic Sans would be big. This act of removal would distinguish Typekit as a company willing to put themselves on the line for excellence and beauty. In a very real way, they would be remaking the world.</p>
</blockquote>
<p>In a very real way, Typekit would be putting themselves out of business. This silliness betrays the author&#8217;s fundamental misunderstanding of what Typekit does.</p>
<p>In the past few years all major web browsers have enabled support for embeddable typefaces. So, much like the way a web page can include a picture, a web page can now specify the exact typeface(s) to be used. This means you can have a professionally typeset web page. Like pictures, typefaces are linked to web page and downloaded for use in displaying the page. It works really well.</p>
<p>The problem with this is digital typefaces are tiny software programs which are licensed by publishers (often called foundries in a throwback to the old days when type was made of cast lead). When you view a web page on your computer, your computer downloads a copy of everything (more or less) used to build that web page. If a licensed typeface is attached to the web page, you now have an unlicensed copy of that typeface. Congratulations, you&#8217;re a pirate!</p>
<p>Typeface publishers make money by licensing their typefaces &#8211; so they were understandably not to thrilled with the idea of people slapping an $800 typeface up on the web to be downloaded by anyone. Typekit came along and invented a reasonably secure way to deliver typefaces to web pages so that they can&#8217;t be easily pirated. Typeface publishers license typefaces to Typekit, who then licenses typefaces to web designers or companies or whomever. </p>
<p>Typekit is a service provider and a middle man. They provide technical expertise and a means for typeface publishers to satisfy customer demand without sacrificing control of their intellectual property. </p>
<p>For clarity: Typekit provides a mechanism to secure intellectual property, not destroy it. </p>
<p>So. Now imagine that Typekit, which has earned all this good will in the industry, has the faith of major type publishers, and the praise of wed developers everywhere, now chooses to seek out and destroy a typeface. What does a typeface publisher think in this situation? Do they think &#8220;well, I hate Comic Sans too&#8221; or do they think &#8220;these guys can&#8217;t be trusted&#8221;?</p>
<p>Hint: It&#8217;s the second one.</p>
<p>The author includes this false equivalency in the comments beneath the article.</p>
<blockquote>
<p>Typekit has even gone so far as to make display faces unavailable for paragraphs in the Customize section of WordPress — they won’t let you use an inappropriate face for your needs. Really now, how different is that from what I have suggested here?</p>
</blockquote>
<p>Really. How is quality control of software and service any different from permanently destroying a bit of culture so that no one else may use it appropriately, well, or otherwise.</p>
<p>This kind of thinking is how gated communities are born.</p>
<h3 id="accentuatethepositive.">Accentuate the positive.</h3>
<p>Instead of assuming the author aspires to be an amoral design autocrat, I choose to assume that the article is a work of satirical genius. That the author is a modern day Swift for the design community. To seriously suggest a business destroy itself by buying up a typeface, only to destroy it, for the purpose of protecting the world from its misuses — hilarious.</p>
<p>I say bravo.</p>
<p><a href="/wp-content/uploads/2011/10/d177f3a95c132744.gif.gif"><img src="/wp-content/uploads/2011/10/d177f3a95c132744.gif.gif" alt="bravo" title="d177f3a95c132744.gif" width="480" height="360" class="aligncenter size-full wp-image-1288" /></a></p>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1284" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/10/29/poe-sans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IT department on the Enterprise</title>
		<link>http://abouthalf.com/2011/09/15/it-department-on-the-enterprise/</link>
		<comments>http://abouthalf.com/2011/09/15/it-department-on-the-enterprise/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 02:32:44 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=1245</guid>
		<description><![CDATA[Architecture firm &#8211; ai3 &#8211; has remodeled their office to look like the interior of a television space ship. Fancy. 2001 A Space Odyssey + Star Trek = ai3&#8242;s SuperGroup Office &#8211; Core77.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.core77.com/blog/architecture/2001_a_space_odyssey_star_trek_ai3s_supergroup_office_20436.asp"><img class="aligncenter" src="/wp-content/uploads/2011/09/ai3_4.jpg" alt="" width="444" height="485" /></a></p>
<p>Architecture firm &#8211; <a href="http://ai3online.com/">ai3</a> &#8211; has remodeled their office to look like the interior of a television space ship. Fancy.</p>
<p><a href="http://www.core77.com/blog/architecture/2001_a_space_odyssey_star_trek_ai3s_supergroup_office_20436.asp">2001 A Space Odyssey + Star Trek = ai3&#8242;s SuperGroup Office &#8211; Core77</a>.</p>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1245" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/09/15/it-department-on-the-enterprise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Boston Globe redesign</title>
		<link>http://abouthalf.com/2011/09/12/the-boston-globe-redesign/</link>
		<comments>http://abouthalf.com/2011/09/12/the-boston-globe-redesign/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 02:53:57 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=1241</guid>
		<description><![CDATA[The Boston Globe had redone their web site with a very nice, clean, reading-focused layout that takes advantage of modern CSS techniques. If you&#8217;re using a modern browser, try resizing your browser window to roughly the size of an iPhone. The layout will reformat based upon the screen size. This is a super neat-o method to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bostonglobe.com/">The Boston Globe</a> had redone their web site with a very nice, clean, reading-focused layout that takes advantage of modern CSS techniques.</p>
<p>If you&#8217;re using a modern browser, try resizing your browser window to roughly the size of an iPhone. The layout will reformat based upon the screen size. This is a super neat-o method to deliver a website to desktop and mobile users without having to develop two different sites. Clever.</p>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1241" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/09/12/the-boston-globe-redesign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RGBA in IE 7 and 8</title>
		<link>http://abouthalf.com/2011/08/23/rgba-in-ie-7-and-8/</link>
		<comments>http://abouthalf.com/2011/08/23/rgba-in-ie-7-and-8/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 21:22:55 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=1222</guid>
		<description><![CDATA[I found this little trick today for tricking legacy IE into using RGBA colors &#8211; that is a color defined with transparency. It seems to work fairly well, with some caveats, specifically potential font weirdness. http://kilianvalkhof.com/2010/css-xhtml/how-to-use-rgba-in-ie/]]></description>
			<content:encoded><![CDATA[<p>I found this little trick today for tricking legacy IE into using RGBA colors &#8211; that is a color defined with transparency. It seems to work fairly well, with some caveats, specifically potential font weirdness.</p>
<p><a href="http://kilianvalkhof.com/2010/css-xhtml/how-to-use-rgba-in-ie/">http://kilianvalkhof.com/2010/css-xhtml/how-to-use-rgba-in-ie/</a></p>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1222" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/08/23/rgba-in-ie-7-and-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editions by AOL for iPad Review</title>
		<link>http://abouthalf.com/2011/08/09/editions-by-aol-for-ipad-review/</link>
		<comments>http://abouthalf.com/2011/08/09/editions-by-aol-for-ipad-review/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 22:03:54 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[software review]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=1155</guid>
		<description><![CDATA[Editions by AOL is a news “magazine” app for the iPad which attempts to learn your reading habits in order to create an automatically generated, curated, collection of articles from various sources on the web. The collection process happens each day by default and can be configured to alert you with a push notification. The [...]]]></description>
			<content:encoded><![CDATA[<p><a title="on iTunes" href="http://itunes.apple.com/us/app/editions-by-aol/id447687307?mt=8#">Editions by AOL</a> is a news “magazine” app for the iPad which attempts to learn your reading habits in order to create an automatically generated, curated, collection of articles from various sources on the web. The collection process happens each day by default and can be configured to alert you with a push notification. The collection and download process only take a few minutes over WiFi.</p>
<p>Editions will integrate somewhat with your Facebook account and your iCal calendar to present a quick “week ahead” view in each edition. This is an odd feature and it seems tacked on. Facebook junkies will simply go to Facebook before loading some other app. Likewise, if someone actively schedules their life with the calendar app, they’ll open that before reading the news. I believe the idea is to have each digital magazine seem as if it were made just for me, as if a publisher went to the trouble of personalizing a print magazine for me. It doesn’t come across that way though. The app is just reading the calendar database and hitting Facebook’s api. This is not welcome nor useful. The app also supports sharing links to articles via Facebook, Twitter, etc. as you would expect.</p>
<p>The app is <em>very</em> similar to <a title="the original" href="http://itunes.apple.com/us/app/flipboard/id358801284?mt=8">Flipboard</a> in terms of layout, design, and function. Like “lawsuit” similar. Articles are algorithmically laid out into boxes with headlines, and an image from an article is dropped onto the page. The app is handsome, but the “it looks just like a magazine, but it’s digital!” design approach is tiresome.</p>
<div id="attachment_1161" class="wp-caption aligncenter  " style="width: 360px"><a href="http://abouthalf.com/wp-content/uploads/2011/08/rich-mahogany.jpg"><img class="size-large wp-image-1161 " title="Rich mahogany pixels" src="/wp-content/uploads/2011/08/rich-mahogany-360x480.jpg" alt="Rich mahogany pixels" width="360" height="480" /></a><p class="wp-caption-text">Rich mahogany pixels</p></div>
<h2 id="curation">Curation</h2>
<p>When you first launch the app you customize the look of the “magazine” by choosing a masthead color, default sections to appear in your magazine, and font size. Then the app builds up a collection of article links, summaries, and headlines including some images from each source. Most articles are a summary with a tappable headline which links to the main article in an in-app web view (more on this later). Some articles are “features” which means the full article is available in-app to read. Both linked summaries and full articles may be shared or curated.</p>
<p>Launching the full web view of a feature article or summary reveals a curation toolbar above the web page. The toolbar has these sort of clickable “tag” widgets &#8211; very much like how some blogs “tag” posts with single word descriptors which link up similar posts. Each tag widget has a check mark (I like this) and an X button (I don’t like this). Clicking the check tells the app “more like this please” and clicking the X tells the app “no thank you”. These ‘votes’ are considered the next time the app auto generates an edition. These features seem to work well, as I’ve seen no more articles about that British woman named Kate and the boy she’s marrying.</p>
<div id="attachment_1163" class="wp-caption aligncenter  " style="width: 360px"><a href="/wp-content/uploads/2011/08/tags-and-customization.jpg"><img class="size-large wp-image-1163" title="Curation controls" src="/wp-content/uploads/2011/08/tags-and-customization-360x480.jpg" alt="Curation controls" width="360" height="480" /></a><p class="wp-caption-text">Curation controls</p></div>
<p>In addition to topic tags, the source of the article (e.g. the website) can be checked or X’ed and similarly the app will either ignore that source in the future or include more from that source in the future.</p>
<h2 id="reading_experience">Reading experience</h2>
<p>Browsing through a magazine within the app works well enough. Swiping between pages is responsive. Tapping a persistent tab at the bottom of the screen reveals controls and settings. Two navigation controls allow browsing quickly between sections and articles. The application only supports portrait orientation, which I think is fine for a reading focused app. Most reading apps with a landscape orientation have a wonky two or three column layout that is not well suited for reading.</p>
<p>Edition’s featured articles have a strange user interface. Instead of breaking the article over several virtual pages, the article has a sub-window which holds the full text of the article. If you swipe left and right on the text, the article advances a ‘sub page’ &#8211; if you swipe left and right on the title of the article, the page changes. If you are swiping sub-pages, and reach the end of the sub-pages, <em>then</em> the page changes. This is more than a little awkward. You can be paging through the application, only to find yourself “stuck” on a feature article.</p>
<div id="attachment_1162" class="wp-caption aligncenter  " style="width: 360px"><a href="/wp-content/uploads/2011/08/sub-page-scrolling.jpg"><img class="size-large wp-image-1162" title="Sub page scrolling" src="/wp-content/uploads/2011/08/sub-page-scrolling-360x480.jpg" alt="Sub page scrolling" width="360" height="480" /></a><p class="wp-caption-text">Sub page scrolling</p></div>
<p>Linked article summaries open in a web view with curation controls, as I mentioned above. This works reasonably well, though the animation of the controls (opening and closing the “drawer” the sit on) is sluggish to move and slow to respond. The web view sits under this drawer. Even when closed the web page feels cramped and too small.</p>
<p>Clicking links within this web view opens yet another web view on top of this web view, this time with a thin black control bar. If you tap “Close” <em>both</em> web views are closed and you return to the magazine page you were on. If you tap the “back” button, the original web page opens in the new web view. Basically if you click a link in an article, there’s no way to get back to the curated web view without starting over.</p>
<div id="attachment_1164" class="wp-caption aligncenter  " style="width: 366px"><a href="/wp-content/uploads/2011/08/What-do-I-do-here.png"><img class="size-large wp-image-1164" title="What do I do here" src="/wp-content/uploads/2011/08/What-do-I-do-here-366x480.png" alt="What do I do here" width="366" height="480" /></a><p class="wp-caption-text">What do I do here?</p></div>
<div id="attachment_1160" class="wp-caption alignright  " style="width: 180px"><a href="/wp-content/uploads/2011/08/reeder-web-view.jpg"><img class="size-medium wp-image-1160" title="Reeder web view" src="/wp-content/uploads/2011/08/reeder-web-view-180x240.jpg" alt="Reeder web view" width="180" height="240" /></a><p class="wp-caption-text">Reeder web view</p></div>
<p>Compare this to the simple inline web view in an app like Reeder. It’s clear in Reeder which control takes you back to your RSS feed, which controls navigates the web pages you are currently viewing, and which controls take you out of the app. Partly this is because Reeder uses more standard iPad controls, so it’s more consistent with other apps on the device. But more so it is because the controls are just laid out clearly intelligently (e.g. the ‘return to rss feed arrow’ is on the left, closest to where you came from).</p>
<h2 id="conclusions">Conclusions</h2>
<p>Meh.</p>
<p>This app suffers from the same problems as most magazine apps have. Wonky navigation, slavish devotion to simulating a paper magazine, and bolted on ‘interactive’ features. There are some steps in the right direction though. The relatively small download size is welcome. Compared to a Kindle or iBooks eBook, it’s still painfully slow, but it’s far better than the 400MB mega magazines from Conde Naste. Since all the text is gathered from the web and not a digital picture of text, it’s generally responsive and fast. For some reason they’ve disabled text selection in ‘browse’ view, but you can select and copy text when viewing an article in the inline web view.</p>
<p>I haven’t done enough reading to honestly say how well the curation feature will work long term &#8211; but I think it’s a smart idea and has potential. One of the accidental features of a real magazine or newspaper is the serendipitous opportunity to stumble into an article or topic you might not have otherwise. The way this app goes out and finds stuff for you to read brings that opportunity to web browsing, and that’s interesting. But I don’t know if it’s better than following a community website like Metafilter or Reddit where random contributors contribute randomly (brought to you by infinite internet monkey solutions).</p>
<p>There seems to be no way to delete editions after they are downloaded. I’ve used the app off and on for four days, and I have four ‘editions’. I’m not sure if the app automatically deletes them after a while or if they just continue to pile up. Does it stop at 7? 30? Never? Will my iPad eventually only contain Editions by Aol?</p>
<p>The app is a free download; the content is free; one can only assume they will start filling the app with advertising or selling user’s browsing data and zip code to marketers.</p>
<p>Editions is a Flipboard knock-off that doesn’t work as well as Flipboard nor does it replace an RSS app. It gets in the way of reading the web more than it encourages it. It’s possible that over time their curation algorithm will become fantastic and it will be worth a second look.</p>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1155" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/08/09/editions-by-aol-for-ipad-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The end of the end of the end</title>
		<link>http://abouthalf.com/2011/07/21/the-end-of-the-end-of-the-end/</link>
		<comments>http://abouthalf.com/2011/07/21/the-end-of-the-end-of-the-end/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 02:42:25 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=1113</guid>
		<description><![CDATA[Read this: Subtraction.com: The End of Client Services. Then go read this: Until Gotham No Longer Needs Batman I&#8217;ve worked on similar ends of both points of view and both articles make valid points. I would only add two: Not everyone can or should run their own business. Not everyone wishes to run their own business. [...]]]></description>
			<content:encoded><![CDATA[<p>Read this: <a href="http://www.subtraction.com/2011/07/20/the-end-of-client-services">Subtraction.com: The End of Client Services</a>.</p>
<p>Then go read this: <a href="http://weblog.muledesign.com/2011/07/until_gotham_no_longer_needs_b.php">Until Gotham No Longer Needs Batman</a></p>
<p>I&#8217;ve worked on similar ends of both points of view and both articles make valid points. I would only add two:</p>
<ol>
<li>Not everyone can or should run their own business.</li>
<li>Not everyone wishes to run their own business.</li>
</ol>
<div>The designer who has a great, marketable idea, talent to make it work, and the entrepreneurial chutzpah to create a business is a rare bird indeed.</div>
<div>Khoi Vinh is such a bird, but makes the mistake of assuming that other people in his field are as good as he is.</div>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1113" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/07/21/the-end-of-the-end-of-the-end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Privacy patterns</title>
		<link>http://abouthalf.com/2011/07/09/privacy-patterns/</link>
		<comments>http://abouthalf.com/2011/07/09/privacy-patterns/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 23:38:54 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=1076</guid>
		<description><![CDATA[I have started playing with Google+ and I like it. The styling is minimal. The only UI elements that are boldly colored are ones that require a mouse click. Everything else is either grey or subtly colored. This emphasizes user content over everything else, making it far more pleasant to read compared to facebook or [...]]]></description>
			<content:encoded><![CDATA[<p>I have started playing with Google+ and I <em>like</em> it.</p>
<p>The styling is minimal. The only UI elements that are boldly colored are ones that require a mouse click. Everything else is either grey or subtly colored. This emphasizes user content over everything else, making it far more pleasant to read compared to facebook or twitter’s web site (I tend to read twitter using the Twitter client for Mac or iPad, or Tweetbot on the iPhone).</p>
<p>One thing that stands out though is that Google+ (from now on I’m typing that as G+ because I’m lazy and I want to start a trend of laziness) is that privacy control is baked right into the interface in a very user centered fashion. Facebook, in comparison, hides privacy settings, beyond facebook’s preferred defaults, behind a byzantine set of user operations.</p>
<h2 id="sharing_content">Sharing content</h2>
<div id="attachment_1086" class="wp-caption alignright  " style="width: 274px"><img class="size-full wp-image-1086" title="g+ visibility is visible" src="/wp-content/uploads/2011/07/g+-visibility-is-visible.png" alt="" width="274" height="180" /><p class="wp-caption-text">Post visibility is visible when you post.</p></div>
<p>In G+ when you share something, the visibility of that thing you’re sharing is immediately visible to the user. That is, when I share something I can see who will see it as I type. This means a casual glance is all I need to verify that I’m not broadcasting something embarrassing, private, or uninteresting to the wrong people. This seems like a pretty obvious design choice. Compared to facebook’s implementation though it’s refreshing.</p>
<p>When you post an item to your newsfeed in facebook, visibility settings are hidden under a drop-down menu. You can’t see what the settings are unless you click it. If your settings are different from the default (i.e. “custom”) you have to select “Custom” to see what your settings actually are or to change them.</p>
<div id="attachment_1084" class="wp-caption aligncenter  " style="width: 280px"><img class="size-full wp-image-1084 " title="g+ changing visibility is easily accessed" src="/wp-content/uploads/2011/07/g+-changing-visibility-is-easily-accessed.png" alt="" width="280" height="265" /><p class="wp-caption-text">Adding people to a post</p></div>
<p>G+ shows you immediately who you’re broadcasting too, and makes changing the settings much faster. Firstly <em>restricting</em> the post is far easier, because all you must do is click the ‘x’ on the social circle you want to remove. Sharing with a broader audience (the more dangerous option) requires selecting “Add more people” and choosing social circles, extended circles, or public from a menu.</p>
<div id="attachment_1083" class="wp-caption alignleft  " style="width: 240px"><img class="size-medium wp-image-1083" title="facebook visibility is hidden" src="/wp-content/uploads/2011/07/facebook-visibility-is-hidden-240x186.png" alt="Post visibility is hidden" width="240" height="186" /><p class="wp-caption-text">Post visibility is hidden</p></div>
<p>Once you’ve delved into the custom post settings on facebook, you have the option to make your new settings the default &#8211; so your choice will be invisible to you on your next post, because you will again have to click the privacy menu, and click “custom” to see our settings. In G+ there is no default, it simply uses the settings you applied in your previous post for the next post. Because these settings are immediately visible you can change them if needed, or not.</p>
<div id="attachment_1082" class="wp-caption aligncenter  " style="width: 480px"><img class="size-large wp-image-1082" title="facebook visibility is hidden step 2" src="/wp-content/uploads/2011/07/facebook-visibility-is-hidden-step-2-480x247.png" alt="" width="480" height="247" /><p class="wp-caption-text">Customizing post security requires a second window</p></div>
<h2 id="privacy_settings_management">Privacy settings management</h2>
<p>Facebook places privacy settings under the Account menu in the upper right corner of the page. If the privacy settings management tools were <em>good</em> this would be a good decision with all privacy issues handled in one place. Unfortunately the tools are (probably deliberately) obstuse.</p>
<div id="attachment_1079" class="wp-caption alignleft  " style="width: 240px"><img class="size-medium wp-image-1079" title="facebook four bad choices" src="/wp-content/uploads/2011/07/facebook-four-bad-choices-240x223.png" alt="Four bad choices" width="240" height="223" /><p class="wp-caption-text">Four bad choices</p></div>
<p>Editing privacy settings in facebook presents you with an incomplete tabular grid of settings that looks like a feature comparison chart for crappy enterprise software. You have the option of selecting “Everyone” (no privacy), “Friends of Friends” (effectively no privacy), “Friends” (some privacy), “Recommended” (let facebook do what it wants), or “Custom”.</p>
<div id="attachment_1080" class="wp-caption alignright  " style="width: 240px"><img class="size-medium wp-image-1080" title="facebook list of cryptic settings with links to other places" src="/wp-content/uploads/2011/07/facebook-list-of-cryptic-settings-with-links-to-other-places-240x211.png" alt="Cryptic options " width="240" height="211" /><p class="wp-caption-text">Cryptic options</p></div>
<p>Selecting custom presents you with a long list of options with menus that must be selected individually (there’s no way to set several options at once). In some cases facebook links to yet another privacy tool to make settings for a different thing.</p>
<p>I believe that this is purposefully done to discourage privacy management.</p>
<div id="attachment_1085" class="wp-caption alignleft  " style="width: 165px"><img class="size-medium wp-image-1085" title="g+ inline privacy settings on profile" src="/wp-content/uploads/2011/07/g+-inline-privacy-settings-on-profile-165x240.png" alt="Edit privacy settings inline on your profile" width="165" height="240" /><p class="wp-caption-text">Edit privacy settings inline on your profile</p></div>
<p>G+ also has a privacy settings management page. This page describes and links to privacy management tools throughout G+ and your Google account. In most cases privacy settings are integrated into the editing interface of anything you can edit. So if I am on the G+ privacy page and I select “Edit network visibility” I am directed to my profile page, which is switched into edit mode, and the section of my profile which indicates network visibility is activated. When I save these settings, I’m left on my profile to continue editing. When editing anything in my profile I can set the visibility of that particular bit of data as I am editing it. This works well with most things..I find managing privacy settings in G+ photos to be a little wonky as you are bounced over to Picassa to do so. Additionally your G+ profile page has a place for scrapbook photos which are visible to to the public. This cannot be changed.</p>
<h2 id="lists_and_circles">Lists and circles</h2>
<p>Facebook allows you to create lists of friends, G+ uses social circles. Facebook friends are all dumped into a big arbitrary friends list. You can create new lists from this main list by entering a list name and selecting a batch of friends. The interface for this is fidgety and obviously not intended for regular use.</p>
<div id="attachment_1078" class="wp-caption aligncenter  " style="width: 240px"><img class="size-medium wp-image-1078" title="facebook creating social group is unintuitive" src="/wp-content/uploads/2011/07/facebook-creating-social-group-is-unintuitive-240x232.png" alt="Edit friend lists in a tiny modal window" width="240" height="232" /><p class="wp-caption-text">Edit friend lists in a tiny modal window</p></div>
<p>G+ offers something similar in the form of social circles, represented by literal circles. You add a user to a circle by clicking and dragging them into the circle. You can remove a user by dragging their icon from the circle or by clicking the circle to “open” it and managing it from there. The circles interface is far more intuitive and invites customization and reorganization.</p>
<p><object width="480" height="303" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/ocPeAdpe_A8?version=3&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="480" height="303" type="application/x-shockwave-flash" src="http://www.youtube-nocookie.com/v/ocPeAdpe_A8?version=3&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>Facebook lists are nearly invisible until you make an effort to review your friends or dig into privacy settings. G+ circles are a top level feature, placed on equal footing with your news stream, photos, and your profile.</p>
<h2 id="patterns_emerge">Patterns emerge</h2>
<p>G+ is new and may completely change by the time it’s released to the general public. But now at least facebook and G+ have much in common.</p>
<p>Facebook and G+ seem to offer very similar privacy features. In both you can manage your list of contacts or friends into groups and control who sees what.</p>
<p>G+, places all of this interaction in the forefront and integrates it cleanly into each interaction. Facebook obfuscates these tools behind multiple menu options, hidden menus, and tiny modal windows.</p>
<p>The G+ approach makes facebook appear to be hostile to user’s privacy needs. I suspect that facebook <em>is</em> actually hostile to user’s privacy needs. Even if it isn’t the effect is the same.</p>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1076" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/07/09/privacy-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wunderlist Review</title>
		<link>http://abouthalf.com/2011/06/22/wunderlist-review/</link>
		<comments>http://abouthalf.com/2011/06/22/wunderlist-review/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 05:35:58 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[software review]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=1020</guid>
		<description><![CDATA[&#160; &#160; Wunderlist is a free todo list application &#8211; or suite of applications &#8211; which launched recently for Mac OS, Windows, iPhone, iPad, and Android. They also provide a very nice web client client. The A-Number-1-killer feature is free cloud syncing between all versions. This means you can install Wunderlist on your Mac at [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.6wunderkinder.com/wunderlist/"></a></p>
<p><a href="http://www.6wunderkinder.com/wunderlist/"></a></p>
<p><a href="http://www.6wunderkinder.com/wunderlist/"></a></p>
<p><a href="http://www.6wunderkinder.com/wunderlist/"></p>
<div id="attachment_1017" class="wp-caption alignleft  " style="width: 144px"><img class="size-thumbnail wp-image-1017" title="wunderlist" src="/wp-content/uploads/2011/06/wunderlist-144x144.png" alt="Wunderlist icon" width="144" height="144" /><p class="wp-caption-text">Wunderlist application icon for Mac OS</p></div>
<p></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://www.6wunderkinder.com/wunderlist/">Wunderlist</a> is a free todo list application &#8211; or suite of applications &#8211; which launched recently for Mac OS, Windows, iPhone, iPad, and Android. They also provide a very nice web client client.</p>
<p>The A-Number-1-killer feature is free cloud syncing between all versions. This means you can install Wunderlist on your Mac at home, your PC at work, and on your smartphone and manage the same todo lists from everywhere.</p>
<h2 id="real_world_weekend_usage">Real world weekend usage</h2>
<p>I used Wunderlist over the weekend to get the chores done. I used the iPhone and Mac desktop version. I loaded the iPad version just for reference but didn’t have a real occasion to use it.</p>
<p>As I said above, the killer feature is syncing between all devices. I wrote up a quick todo list on my computer, picked up my phone, launched the app, and there was my todo list. Throughout the day I checked items off the list, and added new items. There’s nothing to complain about or to write home about here. Checking items off your list works as you’d expect. No surprises, good or bad.</p>
<div id="attachment_1021" class="wp-caption alignleft  " style="width: 240px"><a href="/wp-content/uploads/2011/06/desktop.png"><img class="size-medium wp-image-1021" title="Wunderlist Desktop" src="/wp-content/uploads/2011/06/desktop-240x154.png" alt="Wunderlist Desktop" width="240" height="154" /></a><p class="wp-caption-text">Wunderlist Desktop for Mac</p></div>
<p>All versions of the app use a very similar user interface so there’s really no learning curve. The app is geared towards simplicity. Each todo item can have a task label, a priority marker (e.g. flagged as important), a due date, and notes. Wunderlist focuses on simplicity and not features or robust editing. Notes are only visible through a secondary interface &#8211; I think this intentional. If your todo list relies on items with lot of detailed notes perhaps you need to rethink the items in your todo list. Wunderlist  encourages users to think in small discreet tasks and not in big long paragraphs. If you’re a hard-core GTD person, you might find this very appealing. I prefer a bit more flexibility.</p>
<p>Wunderlist has quick-access date based filters arranged in a sort of tab bar along the bottom of the interface. You can quickly select overdue items, items due today, and so on with these filters. <a href="http://culturedcode.com/things/">Things</a> does something similar. Things additionally features a clickable list of “tags” on top of the task list. This enables marking related tasks with the same tag for more organization. For example you can tag all of your phone call tasks “phone”. When you sit down to make all of your phone calls, click the ‘phone’ tag and see only tasks related to phone calls. Wunderlist has no meta-organziation features like tags or categories. I’m not sure that this is a drawback. Sometimes limitations can help focus. If you are disorganized and <em>trying</em> to be organized, less features may be better.</p>
<p>Wunderlist has the ability to share task lists via email. The desktop version creates a plain-text email. The iPhone and iPad version sends an sign-up invitation if the email address you specified wasn’t in your contact list. The desktop version of Wunderlist will also publish a list to something called “CloudApp”. CloudApp is apparently an HTML version of your list on a web page that can’t be edited. It also gets deleted after 30 days.</p>
<h3 id="miles_and_miles_of_styles">Miles and miles of styles</h3>
<p><a href="https://twitter.com/#!/search/wunderlist">The buzz</a> surrounding Wunderlist has included much praise for its user interface design. I think this is misplaced.</p>
<div id="attachment_1023" class="wp-caption alignright  " style="width: 160px"><a href="/wp-content/uploads/2011/06/iphone.png"><img class="size-medium wp-image-1023" title="iphone" src="/wp-content/uploads/2011/06/iphone-160x240.png" alt="iPhone lists view" width="160" height="240" /></a><p class="wp-caption-text">iPhone lists view</p></div>
<p>Wunderlist <em>looks</em> great. The application interface is beautifully styled but the interface design itself is not revolutionary or even remarkable. It’s a todo list. There’s a list of lists (like a list of mailboxes in your email) and your current todo list. This isn’t innovative, it’s obvious.</p>
<p>The user interface isn’t <em>bad</em> &#8211; it’s just OK. The application’s <em>styling</em> is very appealing though. For example, you can choose different background images for your window. The default is a hardwood floor pattern, but there’s a dozen to choose from. This doesn’t help you edit tasks in any way, and your background setting isn’t synced from device to device, but personalization is fun and it’s a nice feature.</p>
<div id="attachment_1022" class="wp-caption aligncenter  " style="width: 240px"><a href="/wp-content/uploads/2011/06/handsomewood.png"><img class="size-medium wp-image-1022" title="handsomewood" src="/wp-content/uploads/2011/06/handsomewood-240x180.png" alt="iPad interface, in handsome wood grain" width="240" height="180" /></a><p class="wp-caption-text">iPad interface, in handsome wood grain</p></div>
<div id="attachment_1024" class="wp-caption aligncenter  " style="width: 180px"><a href="/wp-content/uploads/2011/06/portrait-w-list.png"><img class="size-medium wp-image-1024" title="portrait w list" src="/wp-content/uploads/2011/06/portrait-w-list-180x240.png" alt="Portrait view of list, in stunning slate" width="180" height="240" /></a><p class="wp-caption-text">Portrait view of list, in stunning slate</p></div>
<p>Things and Omnifocus outshine Wunderlist in terms of utility, speed of data entry, and task management. Of course these apps aren’t free.</p>
<h3 id="flaws_and_minor_issues">Flaws and minor issues</h3>
<p>Wunderlist is very new software, so some or all of these items may be fixed rapidly.</p>
<p>After a few uses on my iPhone, Wunderlist bugged me to rate the app in the app store. That’s obnoxious.</p>
<p>There is no way to select or edit multiple todo items in a list. Let’s say you’ve made a long todo list for the day and suddenly your plans have changed. You can’t just clear out your todo list, you have to delete or check off each individual item.</p>
<p>The web version of the application allows you to login with Facebook or an email address. If you first create an account with your email address (and this email is known by your Facebook account) you can bind the two together and login with Facebook while using the web version.</p>
<div id="attachment_1026" class="wp-caption alignright  " style="width: 144px"><a href="/wp-content/uploads/2011/06/Screen-shot-2011-06-22-at-9.15.29-PM.png"><img class="size-thumbnail wp-image-1026" title="The wonky About Us menu" src="/wp-content/uploads/2011/06/Screen-shot-2011-06-22-at-9.15.29-PM-144x144.png" alt="The wonky About Us menu" width="144" height="144" /></a><p class="wp-caption-text">The wonky About Us menu</p></div>
<p>If you create an account with Facebook alone you will not be able to login to the iPhone, iPad, or desktop version. (I was not able to test an Android device or on Windows). In order to login with this account without Facebook access, you have to have to request a new password. At this point logging in with Facebook is useless. <a href="http://developers.facebook.com/docs/guides/mobile/">Facebook provides</a> tools for mobile developers to login via Facebook connect, so it’s odd they’ve included the feature on the web version and nowhere else.</p>
<p>There is plenty of online documentation for Wunderlist &#8211; but it’s accessible through the ‘About Us’ menu instead of the main help menu. If you choose ‘Help’ you get no help at all.</p>
<div id="attachment_1025" class="wp-caption aligncenter  " style="width: 480px"><a href="/wp-content/uploads/2011/06/Screen-shot-2011-06-22-at-9.13.24-PM.png"><img class="size-large wp-image-1025" title="No help for you" src="/wp-content/uploads/2011/06/Screen-shot-2011-06-22-at-9.13.24-PM-480x223.png" alt="No help for you" width="480" height="223" /></a><p class="wp-caption-text">No help for you</p></div>
<p>Syncing is sometimes flakey. The iPhone version of the application uses the ‘pull down to refresh’ trick popularized by Tweetie &#8211; but it’s not obvious at all. Adding to the confusion, the main view of all your lists has a manual refresh/sync button &#8211; but there is no such button when viewing a list. When reopening the app on my iPhone, on a list detail view, the list does not seem to automatically refresh even though the network indicator is spinning. A manual refresh <em>does</em> work however.</p>
<h3 id="the_verdict">The verdict</h3>
<p>The todo list operations of the various Wunderlist apps work well enough. The only thing that makes this app really worthwhile is syncing between multiple devices, computers and the web.</p>
<p>Wunderlist is very handsome but its lack of features prevents it from being very useful &#8211; at least for me. This app is just a glorified grocery list and I already have Evernote on my desktop, phone, and the web.</p>
<p>I may keep Wunderlist around for quick and easy grocery lists and the like, but I don’t see using it full time for task management. After my weekend of deliberate experimentation I forgot I had it installed.</p>
<p>However it is useful for quick, small todo lists &#8211; and if your needs are simple Wunderlist may be perfect.</p>
<h2 id="obvious_comparisons">Obvious comparisons</h2>
<p>Speaking of <a href="http://www.evernote.com/">Evernote</a>, it’s hard not to make compare Wunderlist and Evernote. Evernote has the same critical features: Device to web syncing and multiple device support (plus web). Evernote is focused on “notes” &#8211; which of course can be anything. Todo lists, archived web pages, documents, voice memos, actual ‘notes’, whatever.. The robustness of Evernote lends itself to all manner of uses. Their <a href="http://www.evernote.com/about/developer/api/">developer API</a> also makes it a robust platform that supports other applications.</p>
<p>Evernote’s style leaves something to be desired (I would argue Evernote for iPad is better designed than their desktop client or iPhone client)</p>
<h2 id="what8217s_their_angle">What’s their angle?</h2>
<p>I decided to try out Wunderlist due to buzz on the internets. After discovering that Wunderlist and the syncing services were all free I got a little suspicious. Evernote has a free version &#8211; it is ad supported on the desktop and places some monthly limits on usage. The paid version has no ads and no limitations. This is a clear business model. What are they doing with Wunderlist?</p>
<h3 id="it8217s_an_advertisement">It’s an advertisement</h3>
<p>Wunderlist is produced by <a href="http://www.6wunderkinder.com/">6wunderkinder</a>. This shop recently <a href="http://www.6wunderkinder.com/blog/2011/06/01/berlin-%C2%ADbased-%E2%80%A96wunderkinder-%E2%80%A9attracts-%E2%80%A9funding%E2%80%A9%E2%80%A9-from%E2%80%A9-top-%E2%80%A9tier%E2%80%A9-investor-%E2%80%A9t-%C2%ADventure%E2%80%A9/">received venture capital funding</a> and needed a way to make a big <a href="http://www.startupproject.org/2011/03/wunderlist-story/">splash</a> and draw attention to their work.</p>
<p>Wunderlist is an advertisement of their capabilities, their style, and a good excuse to attract people to their website where they drop hints about an upcoming productivity suite.</p>
<p>As an application Wunderlist is OK but not stellar. It’s a fantastic business card.</p>
<h2 id="the_technology">The technology</h2>
<p>Wunderlist is developed for many platforms through the use of <a href="http://www.appcelerator.com/">Appcelerator Titanium</a>. Titanium is a cross platform application development suite which targets mobile (iOS and Android) and desktop (Mac OS and Windows).</p>
<p>For iOS and Android Titanium cross compiles JavaScript to native code for use on each platform. Titanium provides global JavaScript objects (like the document object when in a browser) which translate to native UI widgets and features. So if I specify a <a href="http://developer.appcelerator.com/apidoc/mobile/latest/Titanium.UI.TextField-object">Titanium.UI.TextField</a> in my JavaScript to create a text field, Titanium will compile that down to an <a href="http://stackoverflow.com/questions/2444001/how-does-appcelerator-titanium-mobile-work">intermediate format</a> and then cross compile that to a format suitable for the device you want to run your code on.</p>
<p>This is a pretty impressive technical feat. The end result wouldn’t be appropriate for something like a high performance game, but is probably fine for many business type applications (and todo lists).</p>
<p>On the desktop Titanium does something a little different. The desktop version of Wunderlist is basically a tiny website running inside a little box. This box has a little tiny version of a browser (WebKit in Safari and Chrome) and a<br />
few extra goodies. This is why the web version of Wunderlist and the desktop version of Wunderlist look identical. They are.</p>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=1020" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/06/22/wunderlist-review/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Vanity Fair for iPad: Review</title>
		<link>http://abouthalf.com/2011/05/21/vanity-fair-for-ipad-review/</link>
		<comments>http://abouthalf.com/2011/05/21/vanity-fair-for-ipad-review/#comments</comments>
		<pubDate>Sun, 22 May 2011 04:37:35 +0000</pubDate>
		<dc:creator>MB</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[software review]]></category>

		<guid isPermaLink="false">http://abouthalf.com/?p=818</guid>
		<description><![CDATA[Vanity Fair is a favorite guilty pleasure of mine. Each month I can pretend to be smart while reading an essay by Christopher Hitchens and then turn the page to photographs of a beautiful celeb-u-tant when the words get too big. I have the first dual iPhone/iPad application but it is lackluster. It’s not bad [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vf.com/">Vanity Fair</a> is a favorite guilty pleasure of mine. Each month I can pretend to be smart while reading an essay by Christopher Hitchens and then turn the page to photographs of a beautiful celeb-u-tant when the words get too big.</p>
<p>I have the first dual iPhone/iPad application but it is lackluster. It’s not <em>bad</em> it’s just not particularly good. The original app let you buy one issue at a time at silly prices and would let you re-download any issues you had purchased onto multiple devices. In landscape orientation a magazine was presented as a flip book or slideshow &#8211; basically just pictures of two-page spreads in a long horizontal line. In portrait mode you swiped horizontally through the articles, tapping a ‘Go’ button to open each, and then scrolled a text window up and down for each article. If an article had images or other media &#8211; these were presented at the top of the screen. Tapping a picture, for example, would launch a slide show.</p>
<p>The reading experience was a little poor. Long articles had to be scrolled through vertically with no pagination. This effectively no better than reading a web page. Flipping through the articles in portrait mode presents you with a big teaser image and a headline (interspersed with reproduced ads from the print magazine). Getting from one article to the next required tapping the screen to bring up controls, hitting a back button, and then proceeding to the next article. The entire navigation experience was fidgety and labor intensive.</p>
<p>Oh, it also crashed a lot.</p>
<p>The updated <a href="http://itunes.apple.com/us/app/vanity-fair-ipad-edition/id427270716?mt=8">Vanity Fair</a> application for iPad is solid improvement.</p>
<p>The main selling point is that this application now uses Apple’s subscription API with reasonable pricing <em>and</em> provides access for existing print subscribers, at least it’s supposed to. The application has been given a design and UI overhaul and it’s much more usable and much nicer to read.</p>
<p>The app is free to download. One month subscriptions, automatically renewing, are $1.99, one year subscriptions are $19.99, and single issues are still ludicrously priced at $4.99 (of course you could subscribe for a month and cancel, but shhh. don’t tell anyone).</p>
<p>This version of the app is only for iPad, so no reading tiny magazines on your phone.</p>
<h2 id="the_good">The good</h2>
<div id="attachment_830" class="wp-caption alignright  " style="width: 144px"><img class="size-thumbnail wp-image-830" title="LaunchScreenDetail" src="/wp-content/uploads/2011/05/LaunchScreenDetail-144x144.png" alt="Detail of the launch screen" width="144" height="144" /><p class="wp-caption-text">Detail of the launch screen</p></div>
<div id="attachment_822" class="wp-caption alignleft  " style="width: 173px"><a href="/wp-content/uploads/2011/05/BananaRepublicAd.png"><img class="size-medium wp-image-822  " title="BananaRepublicAd" src="/wp-content/uploads/2011/05/BananaRepublicAd-360x480.png" alt="Banana Republic Ad" width="173" height="230" /></a><p class="wp-caption-text">Full page &quot;glossy&quot; ads sure beat web banners</p></div>
<p>The new Vanity Fair app looks great. Even the startup screen is inviting. The original startup screen was a cryptic white window with an ominous logo. The new screen features a VF logo-based pattern with subtle shading. The screen looks like the inside of a box that you’re about to fill with expensive presents. All of the content has been designed to fit an iPad screen in landscape or portrait orientation. They’ve done away with trying to give you a tiny picture of the printed page. The content has been arranged in such a way that if you rotate your iPad in the middle of an article, the layout changes, but you don’t lose your place. This is an important detail that many other magazine apps overlook. For example, the Wired magazine app was more or less just a picture of each page of the magazine, slightly squished. This required pinching and zooming all over the place to read an article. With my bleary computer-addled eyes I can read the Vanity Fair app at almost arm’s length.</p>
<div id="attachment_824" class="wp-caption alignleft  " style="width: 216px"><a href="/wp-content/uploads/2011/05/CoverBrowserFull.jpg"><img class="size-medium wp-image-824  " title="CoverBrowserFull" src="/wp-content/uploads/2011/05/CoverBrowserFull-360x480.jpg" alt="Magazine library browser" width="216" height="288" /></a><p class="wp-caption-text">Full screen view of content library</p></div>
<div id="attachment_831" class="wp-caption alignright  " style="width: 216px"><a href="/wp-content/uploads/2011/05/PortraitBrowser.jpg"><img class="size-medium wp-image-831 " title="PortraitBrowser" src="/wp-content/uploads/2011/05/PortraitBrowser-360x480.jpg" alt="Library grid view" width="216" height="288" /></a><p class="wp-caption-text">Grid view of the library</p></div>
<p>The user interface is reserved, well structured, and clear. There are no silly features like cover-flow or zoomy animations. Upon launch there is a library view of the magazines you have downloaded. The app includes a short, free sample magazine with a few articles and some pretty pictures of Marilyn Monroe. This library screen supports two views; a small thumbnail view, arranging magazine covers in a grid with buttons to read or buy; a large full screen view with large images of covers, which is navigated by swiping left and right. In both of these views switching to landscape orientation changes the covers into a cover-and-table-of-contents. From this screen, simply tap a cover to view the magazine.</p>
<p>Each magazine opens quickly and navigates smoothly. Overall the app is <em>fast</em> even on a first generation iPad. Navigation is far more obvious. Once you have opened a magazine in the app, you swipe left and right to navigate, and swipe up and down to read an article. All the articles are paginated vertically which means a small little swipe of your thumb will advance you to the next page. Articles which are longer than one page all feature small visual cues that there is more content below the fold. Usually in the form of a double arrow, also graphic elements sometimes strategically bleeds up from the page below.</p>
<p>The UI within a magazine is straightforward. Tap the page and a toolbar appears on the top and bottom. The bottom tool bar has a big scroll bar for scrubbing through all the articles and two buttons to switch back and forth between your library and the currently opened magazine. On the top toolbar is a home button, to return to your library of magazines, a back button for when you’ve followed a link (like from the table of contents), a table of contents button (which opens in a scrollable popover), the title of the current magazine (a tap on this takes you to the cover), and a browse button. The browse button activates a birds-eye browse mode for each magazine, showing you all articles and ads zoomed out and arranged horizontally. In this display you can see the relative lengths of each article &#8211; long articles are taller than single page ads and short pieces.</p>
<div id="attachment_823" class="wp-caption aligncenter  " style="width: 360px"><a href="/wp-content/uploads/2011/05/BirdsEyeView.jpg"><img class="size-medium wp-image-823" title="BirdsEyeView" src="/wp-content/uploads/2011/05/BirdsEyeView-360x480.jpg" alt="Brid's eye view" width="360" height="480" /></a><p class="wp-caption-text">The bird&#39;s eye browse view</p></div>
<h2 id="the_bad">The bad</h2>
<p>All magazine pages in the app are actually PNG images. Every single page. This means that a single magazine can end up being <em>hundreds</em> of megabytes of data. Downloads can take a long time. They have done a good job making the images sharp and clear. Good graphic design and large type sizes also help, but there are places where the text looks a little mushy around the edges.</p>
<p>The page images are almost all at screen resolution &#8211; 1024px x 768px. there are a few oddball long form pages which feature info graphics or tables or other things that don’t break over a page easily. This means there’s no extra resolution to zoom into. Zooming is not enabled for these pages unless you enable accessibility zooming on the iPad. When you do zoom in on a page in a magazine &#8211; you get blown up too small image blocky pixel text included. Since there is no text in a PNG image, the magazine can’t be searched, one can’t copy out text for reference or quotation, and the brilliant built in <a href="http://www.apple.com/accessibility/ipad/vision.html">VoiceOver</a> screen reading feature can’t read the page aloud. This app was not built with accessibility in mind.</p>
<p><small>I’ll cover more on the problems with PNGs in the technology section below.</small></p>
<div id="attachment_826" class="wp-caption alignleft  " style="width: 335px"><a href="/wp-content/uploads/2011/05/InteractiveFeaturesDetails.png"><img class="size-full wp-image-826" title="InteractiveFeaturesDetails" src="/wp-content/uploads/2011/05/InteractiveFeaturesDetails.png" alt="Interactive features" width="335" height="230" /></a><p class="wp-caption-text">Detail of the interactive features</p></div>
<p>Interactive features are superimposed over each page. This gives the appearance of having slideshows and videos inline in the page, which is nice, but standard iPad features like swiping to navigate, zooming in on an image, or letter-boxing and pausing video are not supported. <em>Some</em> images have pinch-zoom capability but not all. The ones that do have instructions next to the image.</p>
<div id="attachment_821" class="wp-caption alignright  " style="width: 360px"><a href="/wp-content/uploads/2011/05/AppInstructions.jpg"><img class="size-medium wp-image-821" title="AppInstructions" src="/wp-content/uploads/2011/05/AppInstructions-360x480.jpg" alt="How to use this ap" width="360" height="480" /></a><p class="wp-caption-text">Each issue includes an instruction page</p></div>
<p>Links to external websites, or social networking features like posting an article to twitter are indicated through custom icons. The icons look nice enough, but it isn’t really clear that they are tappable (because they’re not, they’re just part of the PNG page, there is an invisible hotspot over the image.). Some pages have social features. Some don’t. It appears that only articles which are also published on the <a href="http://vf.com/">Vanity Fair</a> web site are shareable. This is understandable restriction, but the implementation is weird. The placement of the icons varies per article. Sometimes it’s at the top, sometimes not. The actions aren’t available on every page. Therefore if you’ve finished an article and you want to tweet it to your followers, you have to scroll up to find the button on the page someplace. A consistently placed sharing UI for each page (a toolbar item, for example) could solve this problem by opening a menu of sharing options for the article. When an article is not available for sharing the UI would be inactive.</p>
<p>These interaction features all feel bolted on and unsatisfying. The previous version of the application did a better job with this by linking to slideshows in standard iPad photo controls and using a standard video player for included videos.</p>
<p>While I love the bird’s-eye browsing view so far (I like the visual overview of the whole magazine and the article length) if you swipe past an article you’ve already read and scrolled to the bottom &#8211; the browse view keeps the article in the scrolled-down position, hiding the masthead of the article. I realize the app is trying to help preserve my reading state (i.e. keep up with where I left off with each article) but it’s not relevant in this view.</p>
<h3 id="non_technical_problems">Non technical problems</h3>
<p>As a subscriber I’m able to download each new issue as they become available. At the moment though, there’s no way for me to browse back-issues that I received over the course of my subscription. I can understand that from a business perspective, but there’s also no way to <em>buy</em> back issues either.</p>
<p>I’m sure they haven’t digitized their entire collection yet, but should they have the last year or so that they’ve published digitally. Vanity Fair provides no way to migrate issues from the old app to the new app. This means you have to keep around that old app if you want to read those old issues. I understand that the old issues would have to be converted to the new format, and I recognize there are probably business reasons for not doing that, but as a pretty loyal customer, it sucks.</p>
<p>The library view in the application, which shows all the magazines you’ve downloaded, features a big, ugly banner ad inviting you to subscribe. Fair enough, it should at least be handsome though. Once you’ve subscribed that silly ad doesn’t go away. This ad only shows up in the thumbnail view. I use the full screen view.</p>
<h2 id="the_ugly">The ugly</h2>
<p>Connecting my subscription, my vf.com account, and the iPad app was like passing kidney stones. I followed the in-app instructions to connect my iTunes account to my subscription. This involves filling out some information in a web form (this opens in a little web view from within the app) that is used to locate your account. You can search by your mailing address, your account number (if happen to have a mailing label around the house), or by logging in with your vf.com account.</p>
<p>The system found my account without a problem…but then nothing happened. Nothing continued to happen. So I signed out and tried again. This time it told me my account was already in use. So I signed in again. Nothing happened some more. I tried logging in at vf.com. I updated my profile. This it the only thing you can do at vf.com. Nothing continued to happen on my iPad. I found the subscription management link, which took me to another Condé Nast site. I tried logging in there with my vf.com account. This didn’t work. I tried searching for my account by address. This worked. I tried to set up the subscription account with my vf.com username and password. That didn’t work. My email was already in use. No matter. Let’s check my subscription. Aha! The print subscription was expiring this month, so of course the iPad has no magazines for me to download because I have none “left” in my subscription. If the iPad app had told me this….I could have just bought a subscription 30 minutes ago. OK. I renewed the print subscription, went back to the iPad app. Nothing continued to happen. It wasn’t finding my account anymore. BLARG. I cancelled my subscription, and signed up on the iPad. Now both the iPad is downloading issues, and the subscription site says I’m up to date.</p>
<p>I am a persistent nerd. I was determined to beat this problem so I could read my stories on the train to work. Regular people are not me. Regular people will give up immediately.</p>
<h2 id="the_verdict">The verdict</h2>
<p>This app is a pleasure to use and read from, barring some of the issues I stated above. I hope they continue to make improvements and perhaps move away from publishing the magazine as a giant stack of images.</p>
<p>The subscription linking mess is terrible. Knowing what I know now, I’d have saved myself an hour of anguish and just purchased the subscription on the iPad right away. My time and mental health are far more important than $20 and I like the content enough to pay twice. If the subscription linking process isn’t fixed, I doubt they will gain many readers.</p>
<h2 id="the_technology">The technology</h2>
<p>Condé Nast is using <a href="http://www.adobe.com/products/digitalpublishingsuite/">Adobe’s Digital Publishing Suite</a> to build this app. This is a combination of development software and distribution services that integrate with other Adobe products, primarily InDesign CS5.5.</p>
<p>Based on the sales copy it looks like the publisher creates content in inDesign then migrates it to a ‘folio’ file format via tools added on to inDesign and then is finally published to Adobe’s service for distribution.</p>
<p>The ‘folio’ format appears to be a container format which holds PNGs, PDFs, or HTML files and supplies an interactivity layer. Folio files are viewed by Adobe’s “ContentViewer” which is available for iOS and Android. Adobe provides a service which allows a publisher to create a somewhat customized, branded app that can be distributed through Apple’s app store or Android Market.</p>
<p>Adobe provides the integrated toolset (their customers are probably using InDesign already) and the distribution mechanism and then charges per issue for distribution. This is apparently <a href="http://www.teleread.com/chris-meadows/ipad-magazine-publishing-with-adobe-costs-at-least-7003-per-year/">not cheap</a>.</p>
<p>I can imagine Condé Nast probably needs a technology partner to help move to digital publication. I’m sure they have many bright designers and artists, and probably a good technology team managing their web sites. Keeping a stable of really good iOS developers in house is probably not cost effective, and going on their own is risky. Partnering with Adobe, though, seems like letting the fox into the hen house.</p>
<h3 id="those_pngs">Those PNGs</h3>
<p>From Adobe’s <a href="http://www.adobe.com/products/digitalpublishingsuite/features/">site</a>, it looks as though their folio container format can work with multiple types of content:</p>
<blockquote>
<ul>
<li>Create, manage, and share .folio files from within InDesign CS5.5 using the Folio Builder panel included in the Folio Producer tools.</li>
<li>Create publications using PNG, PDF, or HTML file types.</li>
</ul>
</blockquote>
<p>The Vanity Fair team has chosen to go with PNGs. I noted above that this is not ideal. In addition to the usability concerns, download size, lack of search-ability, etc, screen resolution PNGs are not very future proof. For example, we won’t see a “Retina Display” iPad this year or even the next. But we will someday. When that day comes, every back issue will look like a blurry photocopy. If the content were created as HTML or PDF it could scale to fit the screen or even be converted to some other format for sharing, archiving, or printing.</p>
<p>I don’t want to blame Vanity Fair too much though. I wouldn’t be surprised if the PDF option creates absurdly huge files, and the HTML option looks terrible.</p>
<h2 id="speaking_of_an_html_version_a_demo">Speaking of an HTML version, a demo</h2>
<p>All this thinking about deploying magazines to a tablet reading device in a friendly format got me thinking about how much one could actually accomplish with plain old HTML.</p>
<p>I took the main copy of this <a href="http://www.vanityfair.com/hollywood/features/2011/05/naomie-harris-201105">article</a> and converted into a single page article  <a href="http://abouthalf.com/examples/vf/">here</a>.</p>
<p>I took the original HTML, stripped out everything that wasn’t the article, and wrote a custom stylesheet. I’m using Google web fonts which are reasonably close to what you’d find in a print issue of Vanity Fair:</p>
<ul>
<li><a href="http://www.google.com/webfonts/family?family=Old+Standard+TT&amp;subset=latin">Old Standard TT</a></li>
<li><a href="http://www.google.com/webfonts/family?family=Didact+Gothic&amp;subset=latin">Didact Gothic</a></li>
</ul>
<p>These are, of course, cheapo-free web fonts and a <em>quality</em> publishing house like Condé Nast would, of course, license proper fonts.</p>
<p>The demo is formatted to fill the screen on an iPad, so it looks very much like one of the pages from the app &#8211; except it’s HTML text that could scale if needed, be indexed and searched, and even printed out for a cave man to read.</p>
<p>The CSS used is all standard, excluding a few media queries targeting mobile safari for the iPad, so this looks pretty good on most browsers <em>even</em> IE 7 and 8.</p>
<h2 id="links">Links</h2>
<p>I’ve been following the iPad magazine thing for a while, here are some more articles on the subject:</p>
<ul>
<li><a href="http://www.alistapart.com/articles/a-simpler-page/">Highly readable web templates</a></li>
<li>Oliver Reichenstein at iA has had a lot to say about iPad magazines and the interaction design of reading apps
<ul>
<li><a href="http://www.informationarchitects.jp/en/ipad-scroll-or-card">iPad: Scroll or Card?</a></li>
<li><a href="http://www.informationarchitects.jp/en/wired-on-ipad-just-like-a-paper-tiger/">WIRED on iPad: Just like a Paper Tiger…</a></li>
</ul>
</li>
<li>Khoi Vinh doesn’t like eMags or iMags
<ul>
<li><a href="http://www.subtraction.com/2010/10/27/my-ipad-magazine-stand">My iPad Magazine Stand</a></li>
<li><a href="http://www.subtraction.com/2010/10/28/more-on-ipad-magazines">More on iPad Magazines</a></li>
<li><a href="http://www.subtraction.com/2011/01/11/ipad-magazines-go-to-11">iPad Magazines Go to ’11</a></li>
</ul>
</li>
<li><a href="http://terrychay.com/article/ipad-new-yorker.shtml">Condé Nast hates Terry Chay (Similar subscription woes)</a></li>
</ul>
 <img src="http://abouthalf.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=818" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://abouthalf.com/2011/05/21/vanity-fair-for-ipad-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

