<?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>random($foo) &#187; Tech</title>
	<atom:link href="http://randomfoo.net/category/tech/feed" rel="self" type="application/rss+xml" />
	<link>http://randomfoo.net</link>
	<description>blog blog blog</description>
	<lastBuildDate>Mon, 19 Jul 2010 07:56:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>You’ve Either Shipped or You Haven’t</title>
		<link>http://randomfoo.net/2010/07/17/you%e2%80%99ve-either-shipped-or-you-haven%e2%80%99t</link>
		<comments>http://randomfoo.net/2010/07/17/you%e2%80%99ve-either-shipped-or-you-haven%e2%80%99t#comments</comments>
		<pubDate>Sat, 17 Jul 2010 22:04:33 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://randomfoo.net/?p=5681</guid>
		<description><![CDATA[scraplab — You’ve Either Shipped or You Haven’t (via waxy) You’ve either shipped, or you haven’t. You’ve either poured weeks, months or even years of your life into bringing a product or a service into the world, or you haven’t. &#8230; But whatever you do next, you’ve shipped. You’ve joined the club. And the next [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://scraplab.net/2010/07/17/youve-either-shipped-or-you-havent/">scraplab — You’ve Either Shipped or You Haven’t</a> (via <a href="http://waxy.org/">waxy</a>)</p>
<blockquote><p>You’ve either shipped, or you haven’t. You’ve either poured weeks, months or even years of your life into bringing a product or a service into the world, or you haven’t.</p>
<p>&#8230;</p>
<p>But whatever you do next, you’ve shipped. You’ve joined the club.</p>
<p>And the next time someone produces an antenna with a weak spot, or a sticky accelerator, you’re more likely to feel their pain, listen to their words and trust their actions than the braying media who have never shipped anything in their lives.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2010/07/17/you%e2%80%99ve-either-shipped-or-you-haven%e2%80%99t/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performance Comparison of Image Libraries</title>
		<link>http://randomfoo.net/2010/07/09/performance-comparison-of-image-libraries</link>
		<comments>http://randomfoo.net/2010/07/09/performance-comparison-of-image-libraries#comments</comments>
		<pubDate>Fri, 09 Jul 2010 09:46:44 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[graphics]]></category>

		<guid isPermaLink="false">http://randomfoo.net/?p=5670</guid>
		<description><![CDATA[For the past couple years, I&#8217;ve been using the Python CoreGraphics bindings to do some of my image manipulation. While a bit more complex than I would have liked for setup (dealing w/ context rotations and other scaling math was a bit of the pain), it otherwise worked great (and more importantly, right out of [...]]]></description>
			<content:encoded><![CDATA[<p>For the past couple years, I&#8217;ve been using the Python CoreGraphics bindings to do some of my image manipulation.  While a bit more complex than I would have liked for setup (dealing w/ context rotations and other scaling math was a bit of the pain), it otherwise worked great (and more importantly, right out of the box) on Leopard.  Unfortunately, with Snow Leopard, the CoreGraphics library was unceremoniously (as far as I know, without any sort of announcement or acknowledgement) deprecated. It&#8217;d only <a href="http://www.jaharmi.com/2009/09/01/core_graphics_bindings_on_64_bit_python_in_snow_leopard">work in 32-bit mode</a> and more troubling, certain Context calls that used to take floats <a href="http://lists.apple.com/archives/quartz-dev/2009/Oct/msg00065.html">now required CGFloats</a>.  Not so much of a problem&#8230; besides the fact that even after much research and poking, I found no way to instantiate a CGFloat (there&#8217;s an undocumented CGFloatArray call, but that just gives you uninitialized CGFloats w/o a good way to assign them).</p>
<p>As has been the trend, I&#8217;ve been isolating/switching more and more of my code from anything that touches Apple libraries.  I&#8217;ve come to the conclusion that they just don&#8217;t give a shit about breaking your code (much less care about fixing or even responding what they&#8217;ve broken).  It&#8217;s incredibly off-putting.  In this case, it&#8217;s unfortunate, as the CoreGraphics code performs much better than both <a href="http://www.pythonware.com/products/pil/">PIL</a> and <a href="http://www.imagemagick.org/">ImageMagick</a> (I would have tested <a href="http://www.graphicsmagick.org/">GraphicsMagick</a> as well, but it doesn&#8217;t support the chaining features I needed for my particular resizing/layout operations).</p>
<pre>
CoreGraphics Python w/ kCGInterpolationHigh
real     0m1.885s
user     0m1.456s
sys      0m0.400s

PIL w/ Bilinear Filter Resize
real     0m3.380s
user     0m2.981s
sys      0m0.365s

32-bit Static ImageMagick
real     0m7.125s
user     0m9.730s
sys      0m0.652s

32-bit Static ImageMagick w/ Box Filter Resize
real     0m4.237s
user     0m4.438s
sys      0m0.636s

64-bit Shared ImageMagick
real     0m6.080s
user     0m8.495s
sys      0m0.366s

64-bit Shared ImageMagick w/ Box Filter Resize
real     0m3.268s
user     0m3.599s
sys      0m0.331s
</pre>
<p>A few things worth noting:</p>
<ul>
<li>I try to use the system Python. After all the problems w/ 10.5->10.6 though, I am reconsidering.</li>
<li>PIL seemed to easy_install well (w/ a binary egg no less) on my 10.6 &#8211; I&#8217;ll have to test on a clean system to make sure I hadn&#8217;t made my life easier w/ MacPorts or something, but this is a huge improvement over the problems surrounding installing PIL on 10.5, which was what actually drove me to use the CoreGraphics Python library in the first place. <b>UPDATE:</b> on a clean 10.6 install, it compiles, but doesn&#8217;t have JPEG or FreeType support. waah wahhh</li>
<li>ImageMagick defaults to Lanczos filtering by default, which is quite slow. Testing out various filters, Box filtering was about twice as fast and for my test images had neglible-to-nonexistent image quality differences even under the loupe. Definitely worth <a href="http://www.dylanbeattie.net/magick/filters/result.html">poking around a bit</a> if you&#8217;re trying to get better performance.</li>
<li>The 64-bit shared lib version of ImageMagick is fair bit faster than the 32-bit static version. Until I&#8217;m all on 64-bit hardware, is a bit of a moot point to do further testing though. I&#8217;m assuming the extra sys time is due to the staticness and the remainder is due to 64-bitness.</li>
<li>Given roughly equivalent performance between PIL and ImageMagick, I&#8217;ll be going with ImageMagick for the additional flexibility/features it provides.</li>
<li>Although it doesn&#8217;t work for this particular set of operations, I wanted to mention that Marc Lyniage&#8217;s <a href="http://www.entropy.ch/software/macosx/coreimagetool/">CoreImageTool</a> is just a wicked, wicked piece of software. It of course has all the CoreImage caveats though, especially if you have to deal with Intel&#8217;s crappy GPUs (*fist shaking*)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2010/07/09/performance-comparison-of-image-libraries/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>KIN Lessons</title>
		<link>http://randomfoo.net/2010/07/08/kin-lesson</link>
		<comments>http://randomfoo.net/2010/07/08/kin-lesson#comments</comments>
		<pubDate>Thu, 08 Jul 2010 07:30:53 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[kin]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://randomfoo.net/?p=5665</guid>
		<description><![CDATA[There&#8217;s been a lot of recent reporting on the complete failure of the KIN (and Microsoft in general). Of these, I think that this comment from a Danger employee posted on Mini-Microsoft both sums things up, and serves as an object lesson for anyone in tech, and is worth reposting in full: To the person [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been a lot of recent reporting on the complete failure of the KIN (and Microsoft in general). Of these, I think that this comment from a Danger employee <a href="http://minimsft.blogspot.com/2010/07/kin-fusing-kin-clusion-to-kin-and-fy11.html">posted on Mini-Microsoft</a> both sums things up, and serves as an object lesson for anyone in tech, and is worth reposting in full:</p>
<blockquote><p>
To the person who talked about the unprofessional behavior of the Palo Alto Kin (former Danger team), I need to respond because I was one of them.</p>
<p>You are correct, the remaining Danger team was not professional nor did we show off the amazing stuff we had that made Danger such a great place. But the reason for that was our collective disbelief that we were working in such a screwed up place. Yes, we took long lunches and we sat in conference rooms and went on coffee breaks and the conversations always went something like this&#8230;&#8221;Can you believe that want us to do this?&#8221; Or &#8220;Did you hear that IM was cut, YouTube was cut? The App store was cut?&#8221; &#8220;Can you believe how mismanaged this place is?&#8221; &#8220;Why is this place to dysfunctional??&#8221;</p>
<p>Please understand that we went from being a high functioning, extremely passionate and driven organization to a dysfunctional organization where decisions were made by politics rather than logic.</p>
<p>Consider this, in less than 10 years with 1/10 of the budget Microsoft had for PMX, we created a fully multitasking operating system, a powerful service to support it, 12 different device models, and obsessed and supportive fans of our product. While I will grant that we did not shake up the entire wireless world (ala iPhone) we made a really good product and were rewarded by the incredible support of our userbase and our own feelings of accomplishment. If we had had more time and resources, we would of come out with newer versions, supporting touch screens and revamping our UI. But we ran out of time and were acquired and look at the results. A phone that was a complete and total failure. We all knew (Microsoft employees included) that is was a lackluster device, lacked the features the market wanted and was buggy with performance problems on top of it all.</p>
<p>When we were first acquired, we were not taking long lunches and coffee breaks. We were committed to help this Pink project out and show our stuff. But when our best ideas were knocked down over and over and it began to dawn on us that we were not going to have any real affect on the product, we gave up. We began counting down to the 2 year point so we could get our retention bonuses and get out.</p>
<p>I am sorry you had to witness that amazing group behave so poorly. Trust me, they were (and still are) the best group of people ever assembled to fight the cellular battle. But when the leaders are all incompetent, we just wanted out.
</p></blockquote>
<p>(On another note, every time I read the minimsft <a href="http://minimsft.blogspot.com/2010/07/kin-fusing-kin-clusion-to-kin-and-fy11.html#comments">comments</a>, I just can&#8217;t get over how fucked MSFT&#8217;s corporate culture is.  There&#8217;s just so much wrong on every level, it&#8217;d pretty much be impossible to succeed.)</p>
<p>And an interesting <a href="http://minimsft.blogspot.com/2010/07/kin-fusing-kin-clusion-to-kin-and-fy11.html?showComment=1278552618359#c2055992776186849154">follow-up comment</a> from another insider on project particulars:</p>
<blockquote><p>
Microsoft is a large enough company that experience in one part of it may not be applicable to other parts. (Duh). In PMX, there was no backstabbing or people out to get people. There was only poor management, a poorly designed and implemented product, and an insane delivery schedule.</p>
<p>Some random thoughts:</p>
<p>PMX was said to be a risky project. You don&#8217;t fire people who fail at risky projects, because if you do, eventually nobody will be willing to take a risk. Nobody will get fired and whatever accountability there is will happen behind closed doors.</p>
<p>PMX was very poorly run. One HR manager involved with the Danger onboarding actually described the failure as a &#8216;cluster f***&#8217;. Danger was lied to about the reason for the purchase and that set the tone of the relationship between ex-Danger people and PMX. It would only get worse as the project continued. The onboarding was typical of the quality of management. The MS-Poll results, some of the worst on record, were accurate, even though they were written off as &#8220;influenced by disgruntled Danger people.&#8221;</p>
<p>The Verizon deal was made by business development folk before engineering had been consulted. There was no way a phone capable of selling in the marketplace could have been developed using Microsoft software management process in the time frame.</p>
<p>In addition, between inception and delivery, the market place changed dramatically but Microsoft was unable to move agilely enough to compensate.</p>
<p>The phone should never have gone to market. It is too poorly designed, too buggy, too incomplete, and too overpriced. When Microsoft became aware of the data plan pricing that Verizon proposed, the project should have been cancelled, saving a couple hundred million in development and advertising.</p>
<p>It did sell more than 500, but I doubt anyone is going to argue against the Wall Street Journal assessment that it sold fewer than 10,000.</p>
<p>The number &#8217;2 billion&#8217; is floating around as an estimate of the cost of PMX over its life. That number is too high, but &#8217;1 billion&#8217; is too low.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2010/07/08/kin-lesson/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Future of Leonard&#8217;s Computing</title>
		<link>http://randomfoo.net/2010/07/03/the-future-of-leonards-computing</link>
		<comments>http://randomfoo.net/2010/07/03/the-future-of-leonards-computing#comments</comments>
		<pubDate>Sat, 03 Jul 2010 11:51:51 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[smartbook]]></category>

		<guid isPermaLink="false">http://randomfoo.net/?p=5638</guid>
		<description><![CDATA[For the past few months I&#8217;ve been meaning to put some of my thoughts down about what I&#8217;m looking forward to in my next computing device. My needs are somewhat specific, and influenced by the fact that I type a lot, I stare at screens all day, and for almost a year now, have been [...]]]></description>
			<content:encoded><![CDATA[<p>For the past few months I&#8217;ve been meaning to put some of my thoughts down about what I&#8217;m looking forward to in my next computing device. My needs are somewhat specific, and influenced by the fact that I type a lot, I stare at screens all day, and for almost a year now, have been semi-nomadic.</p>
<p>My primary computing device (and what I&#8217;m typing on right now) for the past couple years is a <a href="http://lowendmac.com/macbook/macbook-unibody-2008.html">13&#8243; 2008 Aluminum Unibody MacBook</a>. This is about the longest I&#8217;ve had a laptop in the past decade. In between, I&#8217;ve had an incarnation of just about every generation of PowerBook/Macbook (Pro) since the <a href="http://lowendmac.com/pb2/powerbook-g4-400-500-mhz.html">earliest Titanium G4s</a> (I may even have some of these still in storage). It has a few niggles (fidgety headphone jack, bad magnetic latch, non-backlit keys), but on the whole this MacBook is the best-built laptop I&#8217;ve ever owned &#8211; and even two years later, the unibody construction still impresses me as much as the day it arrived. Also, with 4GB of RAM and after putting in an SSD last year, I can honestly say that I feel no need for anything more powerful for my daily use. That being said, I&#8217;ve become increasingly frustrated with my Mac. Over the years, it&#8217;s become too big and heavy, less portable (especially for use outside and on the go), and the battery life, much too short (even after buying a brand new battery last week).</p>
<p>A lot of these frustrations are probably magnified because of the other devices that I&#8217;m now carrying around. In my bag now, I have a Kindle, and iPad 3G, an HTC EVO, an iPhone 3G, and (for a little bit) a Nokia N900. None of these are laptop replacements, but all of them point to the future in a way that my MacBook doesn&#8217;t.</p>
<p>Of course, the most talked about of these is the iPad. I don&#8217;t think I have much to add to that well trodden ground. I&#8217;ll just preface by saying that I&#8217;m not a hater. The iPad is not only a great lean back device, but it&#8217;s also a valid, and pretty darn compelling vision of the future of personal computing (except for the <a href="http://radar.oreilly.com/2010/04/ipad-falls-short-on-cloud-inte.html">syncing w/ iTunes</a> part. That&#8217;s just archaic). For most people, it lets them do everything they would want to do with a computer easier, better, and more socially. (My personal favorite commentaries on the iPad include <a href="http://al3x.net/2010/04/05/ipad-openness-moderates.html">Alex Payne&#8217;s</a> and <a href="http://www.avc.com/a_vc/2010/05/ive-changed-my-mind-about-the-ipad.html">Fred Wilson</a>&#8216;s.) So, with that being said, although I&#8217;m now carrying one around (thanks <a href="http://sf.musichackday.org/">Music Hack Day</a>!), and I&#8217;ve poked and prodded extensively (see <a href="http://blog.lensley.com/2010/06/29/say-hello-to-the-lensley-auto/">project here</a>), it&#8217;s not the future of <strong>my</strong> computing.</p>
<p>For me, the laptop replacement I&#8217;m looking for is the <a href="http://www.hellosmartbook.com/">smartbook</a>. For those unfamiliar with the term, the simple description is that these are ARM-based smarphone guts stuffed into a netbook form factor.  They are fanless, have 10&#8243; screens, full-size keyboards and hover just under 2 lbs (800-900g) in weight. More importantly, they have ridiculous battery life (8-12hrs actual), days of standby, and like smartphones have 3G, GPS, quick wakeup and active-network standby. They are all Linux-based (Android or Meego), and provide a decent browser, vim, terminal, and keyboard &#8211; the things I actually need to stop carrying my laptop around.</p>
<p>Unfortunately, with all the tablet excitement, the smartbook form factor seems to have taken a bit of a backseat. Although prototypes have been shown by ODMs since Computex 2009, the only smartbook that has been released so far is the <a href="http://carrypad.com/2010/05/21/compaq-airlife-100-review/">HP Compaq Airlife 100</a>, and even then, only in Spain via Telefonica. Devices like the <a href="http://www.engadget.com/2010/01/07/nvidia-tegra-2-powered-mobinnova-beam-hands-on/">Mobinova Beam</a> and <a href="http://www.liliputing.com/2010/06/lenovo-skylight-to-get-a-spec-bump-with-dual-core-1-5ghz-cpu.html">Lenovo Skylight</a> both have been delayed (without solid release dates) as they&#8217;ve been retooled to run Android, and ODM designs from Compal, Pegatron, Quanta etc have yet to show up anywhere besides the <a href="http://armdevices.net/2010/06/22/ubuntu-10-7-smartbook-edition-coming-for-arm/">occasional trade show appearance</a>.</p>
<p>Right now, the most promising up and coming smartbook looks to be the Toshiba  AC100/Dynabook AZ. It&#8217;s scheduled to launch in August, and has gotten some <a href="http://www.slashgear.com/toshiba-ac100-tegra-2-mid-hands-on-video-2190627/">fairly detailed hands-on reviews</a>. Here&#8217;s a German promo video that gives a decent overview:</p>
<p><object width="500" height="300"><param name="movie" value="http://www.youtube.com/v/kxKW-OHKq6w&#038;hl=en_US&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/kxKW-OHKq6w&#038;hl=en_US&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="300"></embed></object></p>
<p>The last piece of the puzzle for me, one that&#8217;s actually referenced (but not addressed) by the video above, is that my next computer should really be daylight readable. After some production delays, <a href="http://pixelqi.com/" >Pixel Qi</a> (<a href="http://en.wikipedia.org/wiki/Mary_Lou_Jepsen">Mary Lou Jepsen</a>&#8216;s company spun off from the display technology she originally designed for the OLPC) has finally started <a href="http://blog.fsck.com/2010/07/pixel-qi.html">selling its displays in kit form</a>. Here is a video showing the Pixel Qi display compared to the iPad display outdoors:</p>
<p><object width="500" height="300"><param name="movie" value="http://www.youtube.com/v/cgQuLPNP1QU&#038;hl=en_US&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/cgQuLPNP1QU&#038;hl=en_US&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="300"></embed></object></p>
<p>And here&#8217;s a description of how the technology works:</p>
<div>
<object width="500" height="300"><param name="movie" value="http://www.youtube.com/v/Z03hlZThveI&#038;hl=en_US&#038;fs=1&#038;start=308"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Z03hlZThveI&#038;hl=en_US&#038;fs=1&#038;start=308" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="300"></embed></object></p>
<p>There are other daylight readable technologies, <a href="http://www.liliputing.com/2010/06/cpt-transflective-display-could-give-pixel-qi-a-run-for-its-money.html" >CPT&#8217;s transflective display</a>, <a href="http://www.mirasoldisplays.com/">Qualcomm&#8217;s Mirasol displays</a>, and <a href="http://armdevices.net/2010/06/23/liquavista-screen-demonstrated-outdoors/">Liquavista&#8217;s electrowetting-based displays</a>, but none of those have release dates yet. The Mirasol and Liquavista displays are very interesting, being color and bi-stable, but they&#8217;re currently being targeted primarily at e-book form factors/applications, so probably won&#8217;t be showing up in 10&#8243;+ screens anytime soon.</p>
<p>Qualcomm seems to be <a href="http://www.pocket-lint.com/news/34014/full-colour-kindle-by-christmas" >making good progress</a> in releasing 5.7&#8243; Mirasol-based e-readers by the end of the year, which would be darn nifty.  Still, I won&#8217;t be holding my breath.</p>
<p><object width="500" height="300"><param name="movie" value="http://www.youtube.com/v/iXhi5619VDY&#038;hl=en_US&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/iXhi5619VDY&#038;hl=en_US&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="300"></embed></object></p>
<p>For those of you interested in following along,  especially in the whole whole slightly weird world covering MIDs, tablets, and ultraportables, I recommend:</p>
<ul>
<li><a href="http://armdevices.net/">ArmDevices.net</a></li>
<li><a href="http://carrypad.com/">Carrypad</a></li>
<li><a href="http://www.netbooknews.com/">NetbookNews</a></li>
<li><a href="http://www.liliputing.com/">Liliputing</a></li>
</ul>
<p>And, to sum up, there&#8217;s no product in the pipeline with quite these specs, but here&#8217;s what would make me a happy camper:</p>
<ul>
<li>Good keyboard (Acer&#8217;s flat keys are my current favorite of the netbooks I&#8217;ve tried) w/ backlit keys</li>
<li>Large, multitouch trackpad</li>
<li>8-12hrs of active battery life, several days standby</li>
<li>2 lb weight, 0.5&#8243; thickness</li>
<li>10-12&#8243; 720p+ daylight-readable screen (capacitive touch bonus)</li>
<li>GPS + Location aware OS</li>
<li>3G WWAN (penta/hexband for bonus points)</li>
<li>Active network standby, notifications</li>
<li><a href="http://lwn.net/Articles/299483/">Fast boot</a>, instant resume</li>
<li>DisplayPort or HDMI output</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2010/07/03/the-future-of-leonards-computing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Palm Pre Post-Mortem</title>
		<link>http://randomfoo.net/2010/06/06/palm-pre-post-mortem</link>
		<comments>http://randomfoo.net/2010/06/06/palm-pre-post-mortem#comments</comments>
		<pubDate>Sun, 06 Jun 2010 13:09:51 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[exitreview]]></category>
		<category><![CDATA[palmpre]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://randomfoo.net/?p=5606</guid>
		<description><![CDATA[Yesterday morning I went and picked up an HTC EVO 4G (post forthcoming). Like I did for my Iliad (inspired by Bunny&#8217;s exit reviews), here&#8217;s my (probably) last post on my Palm Pre (see earlier ones). This will be a bit long and rambly, and will be as much about the webOS platform as the [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday morning I went and picked up an <a>HTC EVO 4G</a> (post forthcoming). Like I did for my <a href="http://randomfoo.net/blog/id/4188">Iliad</a> (inspired by <a href="http://www.bunniestudios.com/blog/?s=exit+review">Bunny&#8217;s exit reviews</a>), here&#8217;s my (probably) last post on my Palm Pre (<a href="http://randomfoo.net/tag/palmpre">see earlier ones</a>).  This will be a bit long and rambly, and will be as much about the webOS platform as the device.  You&#8217;ve been warned. <img src='http://randomfoo.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a title="My Palm Pre by lhl, on Flickr" href="http://www.flickr.com/photos/lhl/4673696424/"><img src="http://farm5.static.flickr.com/4021/4673696424_df7de50f69.jpg" alt="My Palm Pre" width="500" height="299" /></a></p>
<p>As you can see from the photo, physically, my Palm Pre hasn&#8217;t fared so well.  I&#8217;m not gentlest owner &#8211; gadgets are meant to be used is my philosophy, but the Pre has fared much worse than my past few phones.  Not only was plastic screen was a huge step back from the glass screened iPhones in terms of picking up random nicks and scratches, but in general, build quality left a a lot to be desired.  Like all early Pres, mine suffered from light leakage (especially as it got warm) and a wobbly/not so nice feeling slider mechanism (the Palm Pre Plus is much better in that regard).  In terms of wear and tear, the center button&#8217;s frosting/paint peeled off very early on. Hairline cracks developed at the corners seemingly of their own accord, and after flimsy USB/charger door finally snapped off, a huge crack started (continues?) growing on the side. Basically, it the hardware itself felt like it was on its last legs and over the past few months, really made me antsy about getting a new phone.</p>
<p>Last year, after giving up on AT&#038;T and then spending a few weeks <a href="http://randomfoo.net/2009/06/15/thoughts-on-the-palm-pre-g2-and-iphone-3g">comparing an iPhone, Google Ion, and a Palm Pre</a>, I went with the Palm Pre as my main phone. At the time, the Ion (HTC Sapphire) was running Cupcake, and for a variety reasons (no 3.5mm headjack, focus stealing bugs, and general UI wonkiness and incessant lag/chugging), <em>really</em> turned me off (I can still remember my disbelief how bad orientation changes were).  In comparison, the Palm, while being the least mature, was obviously a better user experience.</p>
<p>Overall, I&#8217;ve continued to be a fan of Palm&#8217;s webOS, and it&#8217;s been a bit sad to see the lack of traction they&#8217;ve had in the market, especially considering how much of it they &#8220;do right.&#8221;  That being said, it&#8217;s not exactly surprising. Besides some pretty huge strategic marketing and distribution missteps early on, there were/are a lot of technical/real reasons that it hasn&#8217;t been that successful.</p>
<p>First though, what Palm does right.  I went to the <a href="http://developer.palm.com/index.php?option=com_content&#038;view=article&#038;id=2062">Palm Developer Day</a> for a variety of reasons: as a Pre owner/webOS developer (w/ interest in what was going on w/ the platform APIs, also a bone to pick w/ the state of their HTML5 support), a former developer event organizer (running Hack Days and such), and a long-time Palm fan (I had a USR Pilot! and I wanted to check out PalmHQ before they went out of business (or as it turns out, were acquired)).  And&#8230; it turned out to be an awesome event.  Just super-well done on every level.  </p>
<p>I believe that what Ben, Dion, et al are doing w/ the Palm Developer community are spot on, and the APIs they&#8217;re rolling out are pretty exciting.  As a web developer, the <a href="http://developer.palm.com/blog/2010/05/palm-developer-day-keynote-betting-on-the-web-and-looking-at-webos-futures/">vision for webOS</a> is pretty compelling, and the technology stack is pretty sweet.  (The last talk of the day on the &#8220;secret&#8221; history of webOS by <a href="http://www.linkedin.com/pub/rob-tsuk/2/47/834">Rob Tsuk</a>, was also pretty great, especially for anyone that&#8217;s poked around in the guts of webOS).</p>
<p>And of course, there have been plenty of people poking into the guts of webOS.  One pleasant surprise, is that webOS has the cleanest/easiest to work with Linux I&#8217;ve seen on any phone (yes, it beats out OpenMoko).  The second pleasant surprise is that Palm has been downright benevolent, nay, welcoming of the <a href="http://forums.precentral.net/web-os-development/">tinkering and hacking community</a> (see also: <a href="http://www.webos-internals.org/wiki/Main_Page">WebOS Internals</a>).  There&#8217;s no &#8220;rooting&#8221; or &#8220;jailbreaking&#8221; and system modifications don&#8217;t require flashing ROMs, but rather with simple patches. In fact, since almost the beginning, there has been ipkg-based package management apps available (the current state of the art, <a href="http://www.preware.org/">Preware</a>, makes all this downright civilized).  </p>
<p>Because most of webOS is JavaScript based (basically, a WebKit/V8 instance sitting on top of Linux w/ a D-Bus service bus and some Java processes (being phased out)), there are many patches available that directly modify the system UI and included apps.  I currently have almost two dozen patches, including those that change how the launcher is laid out, how the date and battery usage are displayed, text counting in the SMS app, how apps can be deleted, what the power button does.  Just about any aspect of the system can be modified. (Heck, one guy, <a href="http://www.webosroundup.com/2010/05/palm-pre-challenge-twinterview-with-jason-robitaille/">Jason Robitaille</a>, has written tons of useful patches that have just made things so much more pleasant this past year.  Thanks Jason!)  The flip side, however is that the number of people that have installed these mods is almost certainly <1% of the installed base.</p>
<p>Which isn&#8217;t to say that there aren&#8217;t things about the webOS that aren&#8217;t inherently great.  Both the notification system, and the &#8220;card&#8221; view for multitasking, are the best implementations of any mobile OS I&#8217;ve used.  The UI is by and largely very well thought out.</p>
<p><a title="Unknown_2010-05-06_201514.png by lhl, on Flickr" href="http://www.flickr.com/photos/lhl/4673709794/"><img src="http://farm5.static.flickr.com/4069/4673709794_0f49f9938a_m.jpg" alt="Unknown_2010-05-06_201514.png" width="160" height="240" /></a> <a title="govnah_2010-05-06_202230.png by lhl, on Flickr" href="http://www.flickr.com/photos/lhl/4673724624/"><img src="http://farm5.static.flickr.com/4008/4673724624_5fe1f43c71_m.jpg" alt="govnah_2010-05-06_202230.png" width="160" height="240" /></a> <a title="govnah_2010-05-06_201502.png by lhl, on Flickr" href="http://www.flickr.com/photos/lhl/4673084621/"><img src="http://farm5.static.flickr.com/4050/4673084621_4fcefe5656_m.jpg" alt="govnah_2010-05-06_201502.png" width="160" height="240" /></a></p>
<p>However, even with all these pluses, there are issues that both have kept me from being very active in evangelism, and also leading to my recent switch.  The rest of this post is critique. Since this is already too long, I&#8217;ll be moving to bullet points:</p>
<ul>
<li>While Palm has a competitive platform, their hardware and overall rate of innovation is inadequate.  At a friend&#8217;s suggestion, I loaded a <a href="http://www.cyanogenmod.com/">CyanogenMod version of Donut</a> on my Ion while on my <a href="http://randomfoo.net/buenosaires">Buenos Aires trip</a> the end of last year. This was leaps and bounds better than Cupcake, and 2.1 and 2.2 are better still. What Android lacks in UI polish is made up for in performance, capabilities, and in sheer velocity, both of software and in the breakneck pace of newer and better hardware releases.  Apple has been able to successfully fend off this relentless drumbeat thanks to its <a href="http://tech.fortune.cnn.com/2010/05/29/what-makes-apple-so-sticky/">huge lead/install base</a> and total UX superiority, however Palm obviously doesn&#8217;t have the former, and is hampered in the latter. Even still, come next week, Apple will have a next-generation hardware refresh that will bring it inline w/ current expectations (WVGA+ screen, HD capabilities), while Palm &#8230; just doesn&#8217;t.</li>
<li>webOS suffers doubly from not having any new hardware in sight because webOS is less optimized than Mobile OS X and Android, being both laggier and often running out of (and leaking) memory. It took probably half a year or so to get webOS to a good level.  Even now, basic animations (CSS transforms) have yet to be GPU-enabled. And even after using an overclocked kernel (which clocks the OMAP3430 from 550MHz to 800MHz), my Pre suffers from enough intermittent performance issues (lag) to make me wish for something better (I actually like the keyboard and form-factor of the Pixi more than the Pre, but it&#8217;s even more under-powered)</li>
<li>Now admittedly, the worst of the issues has to do with the browser&#8230; all the WebView instances are actually shared, so when one runs out of memory, all of them end up getting kicked in the head (blanking out and reloading).  Where this really hurts me is that webOS&#8217;s Google Maps app is really a WebView, not a &#8220;native&#8221; app.  Beyond being grossly less featured than the Android or iPhone versions, it also inevitably loses state at the worst possible times while I&#8217;m navigating.  I travel *a lot* and this has been one of the banes of my existence.</li>
<li>Speaking of the web browser, one of the other painful truths is that (ironically), webOS&#8217;s HTML5 support is worse than iPhone 3 and Android 2&#8242;s browsers.  webOS is just using an ancient build of WebKit and it doesn&#8217;t have support for W3C Geolocation (good luck trying to use the NextMuni site), touch events, session storage, or web workers. ARGHULURHRHRHHH</li>
<li>There are a few other annoyances, like 2 minute boot-up times (I got an extended battery early on, which turned my Pre into a boat, but also meant that I almost never ran out of batteries unless I forgot to charge it, but I ended up rebooting a fair amount due to memory errors or other glitches &#8211; like with the radio or GPS), not being able to load things on boot (say launching the Govnah, or Brightness Unlinked, two must have homebrew apps) or not being able to upload to Flickr from the camera/gallery app (unfortunately, this couldn&#8217;t be implemented through the standard sharing framework because it required implementing account stuff through the palm bus, which won&#8217;t be available for developers until later this fall)</li>
<li>On the topic of APIs/software &#8211; having a recording API (again, coming by the fall) will open up whole classes of apps (voice recorders, Shazam/Sound Hound), but even with the APIs coming, there are still basic gaps (like a proper permissioning system, or stats/usage recording)&#8230;</li>
<li>I get it, it takes time to build &#8211; as a developer (and if I were primarily a mobile developer) this also makes it an exciting opportunity. With HP&#8217;s backing, <a href="http://www.precentral.net/hp-statement-webos-smartphones-yeah-well-make-those-too">presumably</a>, webOS will continue to grow. However, as an end-user, it&#8217;s clear where the momentum is, and the apps/capabilities really speak for themselves. And I guess, more than any complaints about webOS specifically, it&#8217;s that it just that it just doesn&#8217;t fare well against the competition. I&#8217;m still avoiding the iPhone (mostly AT&#038;T, a little bit customizability, a little bit principle), but even against Android&#8230; in terms of apps (now actually useful desktop widgets, offline news readers, wireless scanners, call analysis programs, SMS autoreply/scheduling, geofencing actions, Last.fm, Pandor, Slacker, Rdio, and Spotify, Shazam, and a host of navigation apps (including compasses, OSM offline maps, and Google Maps)) and hardware (touch focus camera, front-facing camera, microSD storage, etc, etc) there&#8217;s just no contest.</li>
<li>Competition is a good thing and I&#8217;ll be keeping tabs of what happens in the webOS world, but for now, I&#8217;m hopping on the Android train.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2010/06/06/palm-pre-post-mortem/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SXSW 2010 Recap</title>
		<link>http://randomfoo.net/2010/04/22/sxsw-2010-recap</link>
		<comments>http://randomfoo.net/2010/04/22/sxsw-2010-recap#comments</comments>
		<pubDate>Thu, 22 Apr 2010 20:57:25 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[sxsw]]></category>

		<guid isPermaLink="false">http://randomfoo.net/?p=5602</guid>
		<description><![CDATA[Better late than never! Fav sessions from Interactive include: Gaming the Crowd: Turning Work Into Play Opening Remarks: Privacy and Publicity Ze Frank Conversation: The Creative Lifestyle Augmenting Maps with Reality (no audio, boo) &#8220;No Line&#8221; rule was in full effect during Interactive and served me well. The Drake, Ginger Man, and the Hilton were [...]]]></description>
			<content:encoded><![CDATA[<p>Better late than never!</p>
<p>Fav sessions from Interactive include:</p>
<ul>
<li><a href="http://my.sxsw.com/events/event/516">Gaming the Crowd: Turning Work Into Play</a></li>
<li><a href="http://my.sxsw.com/events/event/877">Opening Remarks: Privacy and Publicity</a></li>
<li><a href="http://my.sxsw.com/events/event/5240">Ze Frank Conversation: The Creative Lifestyle</a></li>
<li><a href="http://my.sxsw.com/events/event/7270">Augmenting Maps with Reality</a> (no audio, boo)</li>
</ul>
<p>&#8220;No Line&#8221; rule was in full effect during Interactive and served me well. The Drake, Ginger Man, and the Hilton were great post-party hangouts.  A special shoutout for <a href="http://www.kickstarter.com/projects/thedarkagency/bring-amazing-8-bit-artists-to-datapop-2010">Datapop 2010</a> on the last night.  Just <a href="http://www.youtube.com/watch?v=XVuzbTIrnqE">tons of fun.</a></p>
<p>Now onto the Music&#8230; </p>
<ul>
<li>Best Pre SXSW Music music &#8211; as mentioned above, Datapop 2010. A great chiptunes lineup, and the best crowd at SXSW:<br />
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/XE92WEpU9jg&#038;hl=en_US&#038;fs=1&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/XE92WEpU9jg&#038;hl=en_US&#038;fs=1&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object>
</li>
<li>Wished I caught them a second time &#8211; Washed Out<br />
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/u07EduNtiIc&#038;hl=en_US&#038;fs=1&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/u07EduNtiIc&#038;hl=en_US&#038;fs=1&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></li>
<li>Best Showcase &#8211; <a href="http://sxsw.kut.org/sxsw-2010-balmorhea-hauschka-volodja-balzalorsky-central-presbyterian-church-3-17-10/">Central Presbyterian Church</a> on Wed night &#8211; I caught Balmorhea, and then skipped out on <a href="http://www.myspace.com/zoecello">Zoe Keating</a> and <a href="http://www.myspace.com/balzalorsky">Volodja Balzalorsky</a>, but dropped back in for <a href="http://www.myspace.com/dustinohalloran">Dustin O&#8217;Halloran</a> and <a href="http://www.myspace.com/hauschka">Hauschka</a>, which was amazing.  All in all, a huge change of pace and a great way to ease into SXSWm.<br />
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/ZA9Qx0qhqt0&#038;hl=en_US&#038;fs=1&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZA9Qx0qhqt0&#038;hl=en_US&#038;fs=1&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></li>
<li>Criminally Empty &#8211; I caught the last of <a href="http://www.myspace.com/timholland">Sole</a> set after Shearwater &#8211; granted, it was a busy Saturday night, way too much stuff going on, but only a like a dozen people showing up for Sole?  Too bad, was a great set.</li>
<li>Hey I remember that band, cool &#8211; <a href="http://www.myspace.com/littlebrazil">Little Brazil</a> &#8211; I discovered them a couple years ago and was a big fan &#8211; a throwback indie/emo sound that was both super familiar, yet&#8230; actually good. When I saw they were playing, I had to catch them, and I was glad I did</li>
<li>Came through in the clutch &#8211; <a href="http://www.myspace.com/estelleonline">Estelle</a> &#8211; I swung by for one reason only, to hear American Boy live.  I asked at the door (a good habit) how late they were running and they said only a few minutes, but I started getting antsy as time dragged on &#8211; there&#8217;s always that sunk cost/can I get to another venue in time conundrum &#8211; in the end, they ran almost 30 minutes late w/ the soundcheck.  I was in a pretty bad mood when Estelle finally came on&#8230; but surprise!  She was a lot of fun and a great performer.  Knowing how late they were running, would I have gone elsewhere?  Probably.  But at the same time, it was worth my while.</li>
<li>Longest Walk &#8211; this is a tie I think between trying to catch Seabear at <a href="http://www.myspace.com/cafemundi">Cafe Mundi</a> (seriously far) &#8211; who ended up not playing at the time I thought they would be and was a bit of a cold windy bust, and catching <a href="http://www.myspace.com/quanticmusic">Quantic</a> spin a set at <a href="http://www.malverdeaustin.com/">Malverde</a>, which totally rocked.
<li>Biggest Disappointment &#8211; Sleigh Bells &#8211; now mind you, I didn&#8217;t actually really hear them. The disappointment was that I tried to catch them twice &#8211; one at an impossibly long line at the NPR day show, and the second time at the Fader Fort &#8211; I rolled there just a few minutes too late &#8211; there was no line for the badge line, but they closed the venue as I was literally <20ft away walking up to the gate.  Doh!</li>
<li>Best Random Day Show Act Discovery &#8211; I caught a bit of <a href="http://www.myspace.com/bodylanguage">Body Language</a>, who were fun and new to me, but I think passing by Lovejoy&#8217;s and hearing the <a href="http://www.myspace.com/deletedscenes">Deleted Scenes</a> playing at a DC day show was my best random discovery &#8211; I would have stayed and caught more than a song (apparently, some ex-Q and Not U guys played right after) but I was meeting up w/ a friend elsewhere.</li>
<li>Best Act I caught at SXSW &#8211; <a href="http://www.myspace.com/nnekaworld">Nneka</a> &#8211; caught her at the Day Stage and was just blown away, and went and caught bits of her and her band at Cedar St, and The Parish after.  Good stuff.<br />
<object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/cHnWN4C0-yk&#038;hl=en_US&#038;fs=1&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/cHnWN4C0-yk&#038;hl=en_US&#038;fs=1&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object>
</li>
</ul>
<p>Oh, the bonus &#8220;Best of&#8221; for this SXSWm was the <a href="http://sxsw.com/SXXpress">SXXpress</a> pass &#8211; basically SXSW&#8217;s equivalent of a Disneyland Fastpass.  The caveat is that you have to try to drag yourself up and to the convention center at 10am.  Still, I definitely approve.</p>
<p>Overall, I had tons of fun and let&#8217;s be honest, I&#8217;ll be back again next year.</p>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2010/04/22/sxsw-2010-recap/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8230;Now I Am The Master</title>
		<link>http://randomfoo.net/2010/04/09/now-i-am-the-master</link>
		<comments>http://randomfoo.net/2010/04/09/now-i-am-the-master#comments</comments>
		<pubDate>Fri, 09 Apr 2010 09:35:07 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://randomfoo.net/?p=5571</guid>
		<description><![CDATA[From Apple&#8217;s 1984 commercial: Today, we celebrate the first glorious anniversary of the Information Purification Directives. We have created, for the first time in all history, a garden of pure ideology, where each worker may bloom, secure from the pests purveying contradictory truths. Our Unification of Thoughts is more powerful a weapon than any fleet [...]]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://en.wikipedia.org/wiki/1984_(television_commercial)">Apple&#8217;s 1984 commercial</a>:</p>
<blockquote><p>Today, we celebrate the first glorious anniversary of the Information Purification Directives.  We have created, for the first time in all history, a garden of pure ideology, where each worker may bloom, secure from the pests purveying contradictory truths.  Our Unification of Thoughts is more powerful a weapon than any fleet or army on earth.  We are one people, with one will, one resolve, one cause.  Our enemies shall talk themselves to death and we will bury them with their own confusion. We shall prevail!”
</p></blockquote>
<p>From <a href="http://daringfireball.net/2010/04/iphone_agreement_bans_flash_compiler">Apple&#8217;s iPhone 4 SDK iPhone Developer Program License Agreement</a>:</p>
<blockquote><p>3.3.1 — Applications may only use Documented APIs in the manner prescribed by Apple and must not use or call any private APIs. Applications must be originally written in Objective-C, C, C++, or JavaScript as executed by the iPhone OS WebKit engine, and only code written in C, C++, and Objective-C may compile and directly link against the Documented APIs (e.g., Applications that link to Documented APIs through an intermediary translation or compatibility layer or tool are prohibited).</p></blockquote>
<p>Some discussion at <a href="http://www.boingboing.net/2010/04/08/apple-to-developers.html">Boing Boing</a> and <a href="http://news.ycombinator.com/item?id=1250799">Hacker News</a>. (<a href="http://www.boingboing.net/2010/04/08/apple-the-iphone-wal.html">see also</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2010/04/09/now-i-am-the-master/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hot Damn</title>
		<link>http://randomfoo.net/2009/12/29/hot-damn</link>
		<comments>http://randomfoo.net/2009/12/29/hot-damn#comments</comments>
		<pubDate>Tue, 29 Dec 2009 22:10:53 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://randomfoo.net/2009/12/29/hot-damn</guid>
		<description><![CDATA[Moving to a new server &#8211; 2.75TB of usable storage (quad core, 8GB RAM) and less expensive than my current one (an old Athlon64 X2 w/ 2G RAM I&#8217;ve had for.. 26 months). I stuck w/ NetDepot, who I&#8217;ve been super happy with for hosting. Linux nd11544 2.6.31-16-server #53-Ubuntu SMP Tue Dec 8 05:08:02 UTC [...]]]></description>
			<content:encoded><![CDATA[<p>Moving to a new server &#8211; 2.75TB of usable storage (quad core, 8GB RAM) and less expensive than my current one (an old Athlon64 X2 w/ 2G RAM I&#8217;ve had for.. 26 months).  I stuck w/ <a href="http://netdepot.com/">NetDepot</a>, who I&#8217;ve been super happy with for hosting.</p>
<pre>
Linux nd11544 2.6.31-16-server #53-Ubuntu SMP Tue Dec 8 05:08:02 UTC 2009 x86_64

To access official Ubuntu documentation, please visit:

http://help.ubuntu.com/

  System information as of Tue Dec 29 16:03:03 CST 2009

  System load:    0.0                Memory usage: 0%   Processes:       121
  Usage of /home: 0.0% of 784.65GB   Swap usage:   0%   Users logged in: 1

  Graph this data and manage this system at https://landscape.canonical.com/
</pre>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2009/12/29/hot-damn/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Paul Graham Nails It</title>
		<link>http://randomfoo.net/2009/11/20/paul-graham-nails-it</link>
		<comments>http://randomfoo.net/2009/11/20/paul-graham-nails-it#comments</comments>
		<pubDate>Fri, 20 Nov 2009 19:36:35 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[apple]]></category>

		<guid isPermaLink="false">http://randomfoo.net/2009/11/20/paul-graham-nails-it</guid>
		<description><![CDATA[I&#8217;m not always in agreement with Paul Graham, but he&#8217;s absolutely spot on with his essay on how broken the Apple App Store is and how it&#8217;s disastrous. So I bought it, but I bought it, for the first time, with misgivings. I felt the way I&#8217;d feel buying something made in a country with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not always in agreement with Paul Graham, but he&#8217;s absolutely spot on with his essay on <a href="http://paulgraham.com/apple.html">how broken the Apple App Store</a> is and how it&#8217;s disastrous.</p>
<blockquote><p>So I bought it, but I bought it, for the first time, with misgivings. I felt the way I&#8217;d feel buying something made in a country with a bad human rights record. That was new. In the past when I bought things from Apple it was an unalloyed pleasure. Oh boy! They make such great stuff. This time it felt like a Faustian bargain. They make such great stuff, but they&#8217;re such assholes. Do I really want to support this company?</p></blockquote>
<p><a href="http://paulgraham.com/apple.html">This essay</a> is just chock full of good stuff and worth a full read.</p>
<blockquote><p>How would Apple like it if when they discovered a serious bug in OS X, instead of releasing a software update immediately, they had to submit their code to an intermediary who sat on it for a month and then rejected it because it contained an icon they didn&#8217;t like?</p></blockquote>
<blockquote><p>By breaking software development, Apple gets the opposite of what they intended: the version of an app currently available in the App Store tends to be an old and buggy one.</p></blockquote>
<blockquote><p>If your company seems evil, the best programmers won&#8217;t work for you. &#8230; But the real problem for Microsoft wasn&#8217;t the embarrassment of the people they hired. It was the people they never got. And you know who got them? Google and Apple. If Microsoft was the Empire, they were the Rebel Alliance. And it&#8217;s largely because they got more of the best people that Google and Apple are doing so much better than Microsoft today.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2009/11/20/paul-graham-nails-it/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Frickin&#8217; Lasers! (and Pico Projectors)</title>
		<link>http://randomfoo.net/2009/09/28/frickin-lasers-and-pico-projectors</link>
		<comments>http://randomfoo.net/2009/09/28/frickin-lasers-and-pico-projectors#comments</comments>
		<pubDate>Tue, 29 Sep 2009 03:15:23 +0000</pubDate>
		<dc:creator>lhl</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[augmented reality]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[laser]]></category>
		<category><![CDATA[picoprojector]]></category>

		<guid isPermaLink="false">http://randomfoo.net/?p=5511</guid>
		<description><![CDATA[Until this weekend, my interest wasn&#8217;t very piqued by the whole pico projector trend. They&#8217;ve been pretty low-res, low-light, and limited battery-life affairs. Even as a super-heavy traveller, I&#8217;ve rarely felt the need to project from my phone or even my laptop w/ a pocketable projector. The space has been heating up recently (720P? >10 [...]]]></description>
			<content:encoded><![CDATA[<p>Until this weekend, my interest wasn&#8217;t very piqued by the whole <a href="http://en.wikipedia.org/wiki/Handheld_projector">pico projector</a> trend.  They&#8217;ve been pretty low-res, low-light, and limited battery-life affairs.  Even as a <span title="working on improving my carbon footprint...">super-heavy traveller</span>, I&#8217;ve rarely felt the need to project from my phone or even my laptop w/ a pocketable projector.  The space has been <a href="http://www.engadget.com/tag/pico-projector/">heating up</a> recently (720P?  >10 Lumens? 2-4hr battery life?), but what really caught my attention was seeing that <a href="http://www.engadget.com/tag/pico-projector/">Microvision</a> was finally releasing <a href="http://www.microvision.com/showwx/">a real product</a> using their laser-based projection technology.</p>
<p>Although I&#8217;ve never bought a product from Microvision, I feel like I have a bit of a history with them: one where they&#8217;ve constantly disappointed by having incredibly cool technology that never made its way into my grubby little hands.  Back in the early 2000&#8242;s I went through a huge AR nerd period.  At the time, with academia failing to pull through with gear, I started looking at what was commercially available, and found the <a href="http://www.inition.co.uk/inition/product.php?URL_=product_hmd_microvision_nomad_ets&#038;SubCatID_=34">Microvision Nomad</a> &#8211; a $4-6K system that had a red laser pointed at your eyeball running Windows CE (breathtaking I know &#8211; I decided to wait for the next generation).  Unfortunately, after hitting some <a href="http://www.microvision.com/about_microvision/history.html">financial difficulties</a>, Microvision all but abandoned their AR displays, and no one else (<a href="http://techon.nikkeibp.co.jp/english/NEWS_EN/20080227/148097/">Olympus</a>, <a href="http://www.brother.com/en/news/2008/rid/">Brother</a>, <a href="http://techon.nikkeibp.co.jp/english/NEWS_EN/20080523/152287/">Sony</a>, or <a href="http://www.microvision.com/displayground/?p=721">Microvision</a> themselves) has released any commercial AR overlay displays since (there appears to be a booming military market for these, however)&#8230;</p>
<p>Which leads us to Microvision&#8217;s recent focus on pico projectors.  While this may have been the right financial decision to make, it was always for me, a pretty boring path,  both in comparison to the AR products and also when considering the limitations of the projectors themselves.  The <a href="http://www.microvision.com/showwx/">Microvision SHOW WX</a> at version glance doesn&#8217;t seem to be all that great &#8211; it&#8217;s only 10 lumens, battery life of 1.5-2 hours, and a WVGA resolution.  (Oh, and it&#8217;s about 50% overpriced compared to its competition.)</p>
<p><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/MQZeri_zRPk&#038;hl=en&#038;fs=1&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/MQZeri_zRPk&#038;hl=en&#038;fs=1&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<p>That being said, one thing <em>did</em> catch my eye.  Because of their projector is laser-based, it has <a href="http://www.microvision.com/displayground/?p=966">infinite focus</a>.  That is exactly what you think it is &#8211; multi-planar (and non-planar) projection is automatically focused, no <a href="http://www.youtube.com/watch?v=bOFkvY4RZ80">mathematical tricks</a> required.</p>
<p>Which isn&#8217;t to say that there isn&#8217;t awesome math that can&#8217;t still be applied.  Check out these vids on using structured light and pixel shaders to do some astounding color and geometric correction on arbitrary surfaces:</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/gmUi0XWbjqM&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/gmUi0XWbjqM&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/J7pgwuJBFPk&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/J7pgwuJBFPk&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>Of course, there&#8217;s even more fun stuff that can be done, with structured light (such an awesome term) like Johnny Lee&#8217;s work on projector based tracking:</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/XgrGjJUBF_I&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/XgrGjJUBF_I&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/liMcMmaewig&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/liMcMmaewig&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>In the same way that AR on simple magnetometer/accelerometer equipped cell phones (no IMUs or HUDs ma!) proved to have surprisingly useful (well, at least interesting) applications, so will, I suspect, these pico-projectors.  Assuming there are some fast GPUs w/ flexible shader pipelines available in portable form&#8230;  &#8211; well, even without that, there should be lots of interesting visual applications&#8230;</p>
<p><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/fFmWAwttqZ8&#038;hl=en&#038;fs=1&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/fFmWAwttqZ8&#038;hl=en&#038;fs=1&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://randomfoo.net/2009/09/28/frickin-lasers-and-pico-projectors/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
