<?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>Haseman on Mobile &#187; Uncategorized</title>
	<atom:link href="http://www.hasemanonmobile.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hasemanonmobile.com</link>
	<description>Mobile Development, Software, and anything else</description>
	<lastBuildDate>Wed, 04 Aug 2010 18:06:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>The logical opposite trick</title>
		<link>http://www.hasemanonmobile.com/2010/08/03/the-logical-opposite-trick/</link>
		<comments>http://www.hasemanonmobile.com/2010/08/03/the-logical-opposite-trick/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 00:05:44 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=128</guid>
		<description><![CDATA[I know things have been pretty quiet around her lately.  I&#8217;ve just moved to NY from San Francisco and I wanted to get back to writing with a little logic trick I picked up during my time as a Philosophy major in college. Consider the following question: We know how to say &#8216;If both A [...]]]></description>
			<content:encoded><![CDATA[<p>I know things have been pretty quiet around her lately.  I&#8217;ve just moved to NY from San Francisco and I wanted to get back to writing with a little logic trick I picked up during my time as a Philosophy major in college.</p>
<p>Consider the following question:<img class="alignright" src="http://farm5.static.flickr.com/4137/4786706187_25956b181e.jpg" alt="" width="156" height="233" /></p>
<p>We know how to say &#8216;If both A and B are true&#8217; (A &amp;&amp; B) but how would you reverse it and ask &#8216;If both A and B are false?</p>
<p>If you said, or thought &#8216;!(A &amp;&amp; B)&#8217; you&#8217;d be wrong.  In this case, if either a or b is true your statement will resolve to &#8216;true&#8217;.  While (!A &amp;&amp; !B) is a correct answer, there&#8217;s a cleaner way to write it: &#8216;!(A || B)&#8217;.</p>
<p>This reveals, albeit poorly with short statements, an easy trick to reversing the &#8216;trueness&#8217; of a statement. Put a ! outside the statement and then exchange all &#8216;ands&#8217; and &#8216;ors&#8217;.  It works even in more complex logical statements.  Example:</p>
<p>if(A &amp;&amp; (B || C)) reversed is if( !(A || (B &amp;&amp; C)) ) Go ahead, run the matrix, I&#8217;ll wait&#8230;</p>
<p>This trick also works if you want to remove all the &#8216;!&#8217;s from a statement.  if(!A &amp;&amp; !B || !C) is actually equivalent to if( !(A || B &amp;&amp; C) )</p>
<p>How, you might ask, could this possibly be useful?  I&#8217;ve used it several times when an if statement or function returning a boolean becomes hopelessly complex.  I&#8217;ve also used it when, due to code changes, it becomes faster to check for a few disqualifying cases rather than verifying a large number of qualifying statements.  Further, sometimes it&#8217;s just easier to read a bunch of statements that <em>are</em> true then parse a bunch that are <em>not</em>.</p>
<p>Lastly, if I have to construct a logical statement for, say, when something <em>should</em>n&#8217;t be cached I&#8217;ll often write out all the logical cases when <em>should</em> and then use this trick to reverse them.</p>
<p>This may be obvious to the hard-core, but it&#8217;s something I&#8217;ve taught to several co-workers over the years.  Happy hacking!  Let me know if you&#8217;re in the NYC area.</p>
<p>Update: Thanks to a few of you for pointing out that these are called: <a href="http://en.wikipedia.org/wiki/De_Morgan%27s_laws">De Morgan&#8217;s Laws</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2010/08/03/the-logical-opposite-trick/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>10 Things I Love to Hate about Android</title>
		<link>http://www.hasemanonmobile.com/2010/01/12/10-things-i-love-to-hate-about-android/</link>
		<comments>http://www.hasemanonmobile.com/2010/01/12/10-things-i-love-to-hate-about-android/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 19:18:31 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=122</guid>
		<description><![CDATA[My latest article for developer.com. Put on your favorite self-pitying emo music and get ready for some developer frustration. I&#8217;m running down the top 10 things I love to hate about Android. Link]]></description>
			<content:encoded><![CDATA[<p>My latest article for developer.com.</p>
<blockquote><p>Put on your favorite self-pitying emo music and get ready for some developer frustration. I&#8217;m running down the top 10 things I love to hate about Android.</p></blockquote>
<p><a href="http://www.developer.com/ws/article.php/3857796/An-Android-Developers-Top-10-Gripes.htm">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2010/01/12/10-things-i-love-to-hate-about-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing the Android AR Kit</title>
		<link>http://www.hasemanonmobile.com/2009/11/15/announcing-the-android-ar-kit/</link>
		<comments>http://www.hasemanonmobile.com/2009/11/15/announcing-the-android-ar-kit/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 20:51:00 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=115</guid>
		<description><![CDATA[At long last, I&#8217;m happy to announce that the Android Augmented Reality kit is available on github.  Included in the code is a sample application using an API provided by the fantastic guys at foursquare.  The demo is set-up for the screen on the G1/MyTouch.  If you&#8217;re running at a different resolution you&#8217;ll need to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/haseman/3091397360/sizes/s/"><img class="alignright" src="http://farm4.static.flickr.com/3145/3091397360_3a11e7153c_m.jpg" alt="" width="240" height="160" /></a>At long last, I&#8217;m happy to announce that the Android Augmented Reality kit is available on <a href="http://github.com/haseman/Android-AR-Kit/">github</a>.  Included in the code is a sample application using an API provided by the fantastic guys at <a href="http://foursquare.com/">foursquare</a>.  The demo is set-up for the screen on the G1/MyTouch.  If you&#8217;re running at a different resolution you&#8217;ll need to modify some code and build it yourself.</p>
<p>Please feel free to clone, fork, and make it better.  Right now, at least on HTC&#8217;s MyTouch, the cpu only has enough power to run the numbers on 10 points at a given time.  I&#8217;m in the process of writing up a tutorial about using it.</p>
<p>Stay tuned here for more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2009/11/15/announcing-the-android-ar-kit/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>A Rational Argument Against FCC Regulated Net Neutrality</title>
		<link>http://www.hasemanonmobile.com/2009/10/24/a-rational-argument-against-the-fcc-regulating-net-neutrality/</link>
		<comments>http://www.hasemanonmobile.com/2009/10/24/a-rational-argument-against-the-fcc-regulating-net-neutrality/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 21:13:49 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=73</guid>
		<description><![CDATA[I&#8217;ve largely tried to keep my somewhat conservative politics out of this blog.  Net Neutrality, however, is a topic that I think safely crosses the lines.  This topic has hit the discussion boards with a vengeance thanks to John McCain&#8217;s recent stupid, and probably lobbyist driven, bill. Without further qualification let me just come right [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve largely tried to keep my somewhat conservative politics out of this blog.  Net Neutrality, however, is a topic that I think safely crosses the lines.  This topic has hit the discussion boards with a vengeance thanks to John McCain&#8217;s recent stupid, and probably lobbyist driven, <a href="http://www.engadget.com/2009/10/23/fcc-net-neutrality-rules-enter-drafting-process-face-legislativ/">bill</a>.</p>
<p><img class="alignleft" src="http://farm4.static.flickr.com/3619/3395744015_733817c9ac_m.jpg" alt="" width="240" height="160" />Without further qualification let me just come right out and say it:  I&#8217;m a professional software engineer and I don&#8217;t support laws regulating Network Neutrality.  Before you call me an idiot, corporate shill, or anti-free speech Nazi (all things I&#8217;ve been called on message boards in the past) let me explain why.</p>
<p><strong>The Idea of Net Neutrality</strong></p>
<p>The concept of network neutrality is a good one.  Companies should not be able to set up a &#8216;fast lane&#8217; for traffic that benefits their own business over others&#8217;.  For example, Comcast shouldn&#8217;t slow the packets coming from Hulu.com.  This concept is a fantastic one.  The Internet has thrived over the past few decades precisely because it hasn&#8217;t been controlled, prioritized, or regulated in any meaningful way. Anti-competitive monopolies are bad for everyone, this is a no-brainer. So to be clear, I fully support the concept of Network Neutrality.  How we implement this vision, on the other hand, is where the advocates and I disagree.</p>
<p><strong>The Road to Poor Regulation is Paved with Good Ideas</strong></p>
<p><img class="alignright" src="http://farm4.static.flickr.com/3194/3090505419_b68661c106_m.jpg" alt="" width="160" height="240" />Really, the disagreement I have with the Net Neutrality zealots is one of theory vs. practice.  We all agree that network neutrality is a good thing, we just disagree with how it should be practically applied.  Most NN folks want to hand regulation of this aspect over to the FCC.  So, to look past the immediate, lets look at the communication channels the FCC currently regulates&#8230;</p>
<p><em>Cellular Spectrum</em>: The United States has, hands down, some of the worst cellular coverage of any first world country.  A near monopoly is maintained by AT&amp;T and Verizon which leads to poor coverage, slow wireless bandwidth, and constantly stifled technology  (I&#8217;ve seen some of that first-hand, where carries kill a mobile phone technology because it competes with a service they want to provide).  The US has geographical issues making cellular coverage a difficult proposition, but the FCC contributes to the issue as well.</p>
<p><em>FM Radio Spectrum</em>: Another near monopolistic communication channel.  FM Radio, is, for lack of a better word, crap.  But don&#8217;t trust me on that one, ask anyone who likes, produces, or works with music.  Further, the FCC actively censors the <em>content</em> of both the Radio and TV spectrum.  I&#8217;ll say that again.  The FCC regulates the <em>content</em> of both the Radio and TV spectrum.</p>
<p>There are more examples of the incompetence of the FCC but I&#8217;ll save you from a detailed examination of them all.  But I&#8217;d posit, based on the above evidence alone, that the FCC both actively regulates the content of their appointed communication channels and stifles our technological innovation.  These two qualities are antithetical to a thriving internet culture and the internet&#8217;s health as a whole.</p>
<p><strong>BUT, you say, We, The People, can Control the FCC!</strong></p>
<p><img class="alignleft" src="http://farm3.static.flickr.com/2363/2850638565_4efe9e3c1c.jpg" alt="" width="234" height="352" />Even if we give the FCC a very tight mandate for regulating the internet, the fact remains that the FCC will have to install comprehensive monitoring tools to verify claims of violated Network Neutrality.</p>
<p>Once the FCC has these monitors in place, I promise you, within 5 years, a senator will task the FCC to monitor the internet for something related to children.  It&#8217;ll be called the &#8216;Protect our Children&#8217; act or some such nonsense.  It&#8217;ll be the first step towards censorship of the internet.</p>
<p>At the same time, AT&amp;T, Verizon, and Comcast will pump tens of millions of dollars into lobbyists who will sneak loopholes into fast-tracked security-related legislation.  These loopholes will allow the major telecoms to violate Network Neutrality rules in any number of ways, and, it will turn the bill in their favor to maintain their revenue channels.  For a modern example, look no further than the RIAA and MPAA.</p>
<p><strong>Think Long Term, Please!</strong></p>
<p>Once we allow the FCC to regulate the internet even in this small capacity, we open the door for a host of legislative abuses.  We were able to beat back attempts to protect our children from the internet by censorship before&#8230;.how will we continue to do this when censorship can be introduced by a simple modification of the FCC regulatory powers?  Once the FCC has it&#8217;s hooks heavily into the internet, we won&#8217;t be able to pull them back out.</p>
<p><strong>Alright Negative Nelly, What&#8217;s the Solution Then?</strong></p>
<p>There are several non-regulatory solutions to this problem.  Most of them involve breaking monopolies and encouraging competition so when a broadband company does violate the tenants of Net Neutrality customers can switch providers.  I&#8217;ll get into the solutions in another post because, if you&#8217;re reading this far I&#8217;m impressed.</p>
<p>The bottom line is thus:  If you&#8217;re in favor of government regulated Network Neutrality, you don&#8217;t have to agree with me (in fact I&#8217;d rather you didn&#8217;t); but I implore you, consider the long term ramifications of what you advocate.  Consider that the internet will, eventually, become like every other communication medium the FCC is tasked to regulate.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2009/10/24/a-rational-argument-against-the-fcc-regulating-net-neutrality/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Augmented Reality on Android prt 2</title>
		<link>http://www.hasemanonmobile.com/2009/10/14/augmented-reality-on-android-prt-2/</link>
		<comments>http://www.hasemanonmobile.com/2009/10/14/augmented-reality-on-android-prt-2/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 16:38:40 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=100</guid>
		<description><![CDATA[My latest DevX article is up.  You can find it here.]]></description>
			<content:encoded><![CDATA[<p>My latest DevX article is up.  You can find it <a href="http://www.devx.com/wireless/Article/43005">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2009/10/14/augmented-reality-on-android-prt-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Chink in the Developer&#8217;s Armor &#8211; or how I learnd to stop fighting and love the droid</title>
		<link>http://www.hasemanonmobile.com/2009/10/13/a-chink-in-the-developers-armor-or-how-i-learnd-to-stop-fighting-and-love-the-droid/</link>
		<comments>http://www.hasemanonmobile.com/2009/10/13/a-chink-in-the-developers-armor-or-how-i-learnd-to-stop-fighting-and-love-the-droid/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 00:39:47 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=87</guid>
		<description><![CDATA[Every time I read a story like one of these I put on my imaginary tweed jacket and take a smoke from the corn cob pipe I don&#8217;t have. More than one developer has told us that this isn’t just a matter of debugging their existing application to ensure that it works on the various [...]]]></description>
			<content:encoded><![CDATA[<p>Every time I read a story like one of <a href="http://www.techcrunch.com/2009/10/11/a-chink-in-androids-armor/ ">these</a> I put on my imaginary tweed jacket and take a smoke from the corn cob pipe I don&#8217;t have.</p>
<blockquote><p>More than one developer has told us that this isn’t just a matter of debugging their existing application to ensure that it works on the various handsets. They say they’re going to have to build and maintain separate code for various Android devices. Some devices seem to have left out key libraries that are forcing significant recoding efforts, for example. With others, it’s more of a mystery.</p></blockquote>
<p><a href="http://www.flickr.com/photos/quiddle/501609417/"><img class="alignright" src="http://farm1.static.flickr.com/223/501609417_4589b04c0e.jpg" alt="" width="160" height="120" /></a>Over the past few years I&#8217;ve written some pretty gnarly code on some very gnarly mobile platforms.  Like many engineers, overcoming three impossible things before breakfast is pretty much the only thing that gets me out of a comfortable bed every third morning before noon.  Android, in this case, doesn&#8217;t disappoint.  Its development landscape is fractured, multifaceted, complex, and hard to deal with on every level, and we&#8217;re only on the fourth version.</p>
<p>This, my mobile developing friends, is exactly what keeps us in business.  Mobile software is difficult.  Have code that only runs on one platform but not another?  Easy: classloaders and a well constructed factory.  Different drawing behavior and different screen sizes?  Cake-walk, dynamic screen resources,  a very clever designer, and a good build system.  Compatibility issues?  Of course, these are nothing that hasn&#8217;t been solved a dozen times before.</p>
<p>Where there&#8217;s difficulty there is opportunity.  Where there&#8217;s opportunity, there is money, a chance to gloat, and the veritable lack of attractive women.  Will Android go the way of Sun&#8217;s J2ME?  Who cares.  If it does, my life gets easier because I don&#8217;t have to keep coding at a third grade level (curse you Java ME).  If it doesn&#8217;t, I get to write tools to help people make sense of a chaotic environment.  Either way, my life stays interesting and my bank account has more than fluttering moths in  it.</p>
<p>The bottom line is this:  Mobile software is still hard.  It&#8217;s not for everyone.  You spend most of your time forcing every device play in the same sand-box, and you build tools and toys that make this job easier.  You piles of time telling very smart people, clients and friends, why what they want to do on a mobile device is impossible.  It&#8217;s a write once debug everywhere mentality I wouldn&#8217;t trade for a web developer or mysql job any day.</p>
<p>If it were easy, everyone would do it&#8230;and no-one could get paid for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2009/10/13/a-chink-in-the-developers-armor-or-how-i-learnd-to-stop-fighting-and-love-the-droid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick, and very dirty, Android Development Trick</title>
		<link>http://www.hasemanonmobile.com/2009/10/05/quick-and-very-dirty-android-development-trick/</link>
		<comments>http://www.hasemanonmobile.com/2009/10/05/quick-and-very-dirty-android-development-trick/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 01:33:29 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=83</guid>
		<description><![CDATA[In my main Activity (or any of them for that matter) I always include the following line: public static volatile Context ctx; Then, when the Activity is created (in onCreate), I set it to the following: ctx = this.getApplicationContext(); This does three things. 1) It means I have easy access to a context pointer that [...]]]></description>
			<content:encoded><![CDATA[<p>In my main Activity (or any of them for that matter) I always include the following line:</p>
<blockquote><p>public static volatile Context ctx;</p></blockquote>
<p>Then, when the Activity is created (in onCreate), I set it to the following:</p>
<blockquote><p>ctx = this.getApplicationContext();</p></blockquote>
<p>This does three things.</p>
<p>1) It means I have easy access to a context pointer that won&#8217;t leak (if the device rotates or the original Activity is destroyed)<br />
2) It makes anyone who knows what they&#8217;re doing die a little inside when they look at my code.<br />
3) It means I don&#8217;t have to lug around a context pointer as a parameter whenever I need one.  I just make a call to &#8220;MyActivity.ctx&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2009/10/05/quick-and-very-dirty-android-development-trick/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Head scratcher</title>
		<link>http://www.hasemanonmobile.com/2009/09/29/head-scratcher/</link>
		<comments>http://www.hasemanonmobile.com/2009/09/29/head-scratcher/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 16:59:53 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=79</guid>
		<description><![CDATA[I have to shake my head and sigh when I read posts like this one over at gizmodo: It&#8217;s Tuesday and the Apple Store is down &#8212; but only for North America at the moment. So hold tight, start sifting through the latest Apple rumors and check back with us at 0830 New York time [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/kyz/3233710827/"><img class="alignright" src="http://farm4.static.flickr.com/3328/3233710827_34294f21b1.jpg" alt="" width="103" height="103" /></a>I have to shake my head and sigh when I read posts like <a href="http://www.engadget.com/2009/09/29/apple-store-outage-incites-tipping-riot/">this</a> one over at gizmodo:</p>
<blockquote><p>It&#8217;s Tuesday and the Apple Store is down &#8212; but only for North America at the moment. So hold tight, start sifting through the latest <a href="http://www.engadget.com/tag/apple%2Crumor">Apple rumors</a> and check back with us at 0830 New York time when all (or nothing) will be revealed.</p></blockquote>
<p>Their store goes down for a few minutes and the tech blogs spin into wild speculations.  Apple&#8217;s PR is second to none.  This is literally insane.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2009/09/29/head-scratcher/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard actually costs 130$ if you have Aperture 1</title>
		<link>http://www.hasemanonmobile.com/2009/09/21/snow-leopard-actuall-costs-130-if-you-have-aperture-1/</link>
		<comments>http://www.hasemanonmobile.com/2009/09/21/snow-leopard-actuall-costs-130-if-you-have-aperture-1/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:39:18 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=66</guid>
		<description><![CDATA[Aperture 1 is not listed as &#8216;unsupported software&#8217; on Apple&#8217;s List Yet when I launch Aperture OS X infuriatingly alerts me that Aperture cannot be opened with this version of the operating system. Worse, all my photos are locked up in Apertures photo library system, so switching to an alternative is impossible without finding some [...]]]></description>
			<content:encoded><![CDATA[<p>Aperture 1 is not listed as &#8216;unsupported software&#8217; on <a href="http://support.apple.com/kb/HT3258">Apple&#8217;s List</a></p>
<p>Yet when I launch Aperture  OS X infuriatingly alerts me that Aperture cannot be opened with this version of the operating system.</p>
<p>Worse, all my photos are locked up in Apertures photo library system, so switching to an alternative is impossible without finding some migration tool.</p>
<p>This is incompetency that boarders on evil.  I cannot get to my photos without giving Apple an additional 100$  Alternatively, I could spend a few hours downgrading my system  just to get my photos out of it.  Or I could toss off a frustrated post and get on with my day.</p>
<p>Arg.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2009/09/21/snow-leopard-actuall-costs-130-if-you-have-aperture-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Evolving</title>
		<link>http://www.hasemanonmobile.com/2009/09/21/evolving/</link>
		<comments>http://www.hasemanonmobile.com/2009/09/21/evolving/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 16:37:40 +0000</pubDate>
		<dc:creator>Haseman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.hasemanonmobile.com/?p=67</guid>
		<description><![CDATA[Designer&#8217;s are starting to fill the holes in Android&#8217;s UI. More Please!]]></description>
			<content:encoded><![CDATA[<p>Designer&#8217;s are starting to fill the holes in Android&#8217;s UI.<br />
<a href="http://www.larvalabs.com/product_pages/intelligent_home_screen.html">More Please!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hasemanonmobile.com/2009/09/21/evolving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

