<?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>Jacob Pierce</title>
	<atom:link href="http://www.jacobpierce.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jacobpierce.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 14 Oct 2009 06:11:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Arduino: Hello World&#8230; a first sketch, with 384 LEDs</title>
		<link>http://www.jacobpierce.com/blog/2009/10/11/arduino-hello-world-with-384-leds/</link>
		<comments>http://www.jacobpierce.com/blog/2009/10/11/arduino-hello-world-with-384-leds/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 03:58:31 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://www.jacobpierce.com/blog/?p=47</guid>
		<description><![CDATA[I picked up an Arduino recently after about two years of lusting for one &#8212; just never had time. The standard first program sketch is a blinking LED (see this great Make Magazine video), but the same time I ordered the Arduino I also bought a $10 (shipped from China) 24&#215;16 LED Matrix from Sure ]]></description>
			<content:encoded><![CDATA[<p>I picked up an <a href="http://www.arduino.cc" target="_blank">Arduino</a> recently after about two years of lusting for one &#8212; just never had time. The standard first program sketch is a blinking LED (see this great <a title="make" href="http://www.youtube.com/watch?v=pMV2isNm8JU" target="_blank">Make Magazine video</a>), but the same time I ordered the Arduino I also bought a $10 (shipped from China) <a href="http://www.sureelectronics.net/goods.php?id=142" target="_blank">24&#215;16 LED Matrix</a> from <a href="http://www.sure-electronics.com/">Sure Electronics</a> on eBay. So since more is better, of course I want to make all <em>384</em> <em>LEDs</em> blink (at random).</p>
<p>Let&#8217;s hook it up!</p>
<div id="attachment_49" class="wp-caption aligncenter" style="width: 417px"><a href="http://www.jacobpierce.com/blog/wp-content/uploads/2009/10/24x16_led_matrix_wiring.gif"><img class="size-full wp-image-49" title="24x16 LED Matrix Wiring" src="http://www.jacobpierce.com/blog/wp-content/uploads/2009/10/24x16_led_matrix_wiring.gif" alt="24x16 LED Matrix Wiring (Fritzing)" width="407" height="525" /></a><p class="wp-caption-text">24x16 LED Matrix Wiring (made using Fritzing)</p></div>
<p>If you reverse the GND and 5V wiring you will probably blow up the display. The pin numbers are on the back of the display, so be sure to reference those. The connections:</p>
<p>- Arduino Digital <strong>Output 12</strong> to <strong>pin 1</strong> of the display connector (CS).<br />
- Digital <strong>Output 11</strong> goes to <strong>pin 5</strong> of the display (WRCLK)<br />
- Digital <strong>Output 10</strong> goes to <strong>pin 7</strong> of the display (DATA)<br />
- Digital <strong>GND</strong> goes to <strong>pin 11</strong> of the display (GND)<br />
- Power <strong>5v</strong> goes to <strong>pin 12</strong> of the display (+5V)</p>
<p><a href="http://www.jacobpierce.com/blog/wp-content/uploads/2009/10/arudino_ledmatrix.jpg"><img class="aligncenter size-full wp-image-52" title="arudino_ledmatrix" src="http://www.jacobpierce.com/blog/wp-content/uploads/2009/10/arudino_ledmatrix.jpg" alt="arudino_ledmatrix" width="450" height="284" /></a></p>
<p>Now to the <strong>software</strong>. I found a post by westfw (<a href="http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1225239439/90" target="_blank">#94</a>) on Arduino.cc with some sample code that goes through a variety of demos on the display using various contributors&#8217; code. I&#8217;m a novice programmer at best, but I took his demo and cut out just the core parts for the display and wrote my own implementation to have the whole matrix select and toggle random LEDs on and off. <a href="http://www.jacobpierce.com/blog/wp-content/uploads/2009/10/blinker24x16.zip">Download the whole thing here.</a> It&#8217;s not pretty, but here&#8217;s my hasty code:</p>
<blockquote><p>void setup ()<br />
{<br />
ht1632_setup();<br />
randomSeed(analogRead(0)); //get some analog static from pin 0 for the random number generator<br />
}</p>
<p>void loop ()<br />
{<br />
int x, y, p;</p>
<p>x=random(24);            //pick a random X coordinate<br />
y=random(16);            //pick a random Y coordinate<br />
p=random(2);             //pick on/off (1 or 0, respectively)</p>
<p>plot(x,y,p);             //tell the display to execute the randomness</p>
<p>}</p></blockquote>
<p>So if you&#8217;re vaguely familiar with Arudino (like me at this point) you should be able to plug wires in, run the code, and watch some LEDs blink randomly. Behold the awesome power of microcontrollers!</p>
<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7058472&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7058472&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object></p>
<p><em>Related links:</em></p>
<p>- <a href="http://www.sureelectronics.net/pdfs/DE-DP016.pdf">Sure Electronics DE-DP016 Data Sheet</a><br />
- <a href="http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1225239439/0">Arduino.cc Forum Post on the DE-DP016</a> (and related displays)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacobpierce.com/blog/2009/10/11/arduino-hello-world-with-384-leds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amazon S3 and Backup Services</title>
		<link>http://www.jacobpierce.com/blog/2008/09/25/amazon-s3-and-backup-services/</link>
		<comments>http://www.jacobpierce.com/blog/2008/09/25/amazon-s3-and-backup-services/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 02:37:53 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[S3]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.jacobpierce.com/blog/?p=19</guid>
		<description><![CDATA[With the advent of Amazon S3 and its remarkably cheap storage costs, creating services based on scalable storage has never been so easy and inexpensive as it is today. One area where this is most apparent is the boom of network backup products. In years past, companies like Iron Mountain or EMC would have to ]]></description>
			<content:encoded><![CDATA[<p>With the advent of <a href="http://aws.amazon.com/s3" target="_blank">Amazon S3</a> and its remarkably cheap storage costs, creating services based on scalable storage has never been so easy and inexpensive as it is today. One area where this is most apparent is the boom of network backup products. In years past, companies like Iron Mountain or EMC would have to create their own million-dollar server infrastructures to support client data. Now a days, you don&#8217;t need to pay for anything until you&#8217;ve collected payments from clients.</p>
<p>What am I getting at? <span id="more-19"></span>This: a plethora of potentially fly-by-night or unproven backup services have gone live over the last year or two and require a bit of investigation before subscribing. Most of these services will be able to stay afloat for quite a while due to the low overhead, but my warning is to beware of the little guys until they have a track record. There is little investment on their part, often just a few lines of code and the payment system. Usually there is no mention of data security and a lack of welcome features such as having data restore to DVDs and mailed to you.</p>
<p>I&#8217;m not saying avoid S3 backup services, I&#8217;m recommending confirming there is a history of quality support and updates. JungleDisk is one such candidate. But you might just want to stick with inexpensive non-S3 services such as <a href="http://www.mozy.com" target="_blank">Mozy</a>, <a href="http://www.carbonite.com" target="_blank">Carbonite</a>, and so forth.</p>
<p>Here&#8217;s a list I compiled of some backup titles and services leveraging Amazon S3 storage:</p>
<ul>
<li>Backup Manager</li>
<li>S3 Backup</li>
<li>S3 Solutions</li>
<li>Sync2S3</li>
<li>Brackup</li>
<li>s3DAV</li>
<li>Duplicity</li>
<li>s3sync</li>
<li>SetS3t Synchronize</li>
<li>DropBox</li>
<li>JungleDisk</li>
</ul>
<p>Happy uploading!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacobpierce.com/blog/2008/09/25/amazon-s3-and-backup-services/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPhone Event Timeline</title>
		<link>http://www.jacobpierce.com/blog/2008/07/09/iphone-event-timeline/</link>
		<comments>http://www.jacobpierce.com/blog/2008/07/09/iphone-event-timeline/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 19:49:08 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[timetoast]]></category>

		<guid isPermaLink="false">http://www.jacobpierce.com/blog/?p=24</guid>
		<description><![CDATA[I&#8217;ve been playing around with this new web app called timetoast. In essence, it allows you to create and edit flash-based timelines with pictures. It&#8217;s relatively simplistic at the moment, but I&#8217;m excited to see this sort of product in existence.
I suspect they are planning collaborative features, but currently its single-user creations. A timetoast &#8220;wiki&#8221; ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been playing around with this new web app called <i><a href="http://www.timetoast.com">timetoast</a></i>. In essence, it allows you to create and edit flash-based timelines with pictures. It&#8217;s relatively simplistic at the moment, but I&#8217;m excited to see this sort of product in existence.</p>
<p>I suspect they are planning collaborative features, but currently its single-user creations. A timetoast &#8220;wiki&#8221; of sorts would be fantastic.</p>
<p>There wasn&#8217;t a timetoast timeline for the iPhone, so I filled in the gap.</p>
<p><object width="550" height="400"><param name="movie" value="http://www.timetoast.com/flash/TimelineComponent.swf"></param><param name="passedTimelines" value="1776"></param><embed src="http://www.timetoast.com/flash/TimelineComponent.swf?passedTimelines=1776" type="application/x-shockwave-flash" passedTimelines="1776" width="490" height="400"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacobpierce.com/blog/2008/07/09/iphone-event-timeline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 3G: 2-year Total Cost of Ownership</title>
		<link>http://www.jacobpierce.com/blog/2008/06/19/3g-iphone-total-cost-of-ownership-tco/</link>
		<comments>http://www.jacobpierce.com/blog/2008/06/19/3g-iphone-total-cost-of-ownership-tco/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 18:21:09 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[TCO]]></category>

		<guid isPermaLink="false">http://www.jacobpierce.com/blog/?p=20</guid>
		<description><![CDATA[Let&#8217;s take a brief look at what I would call the bottom-line total cost of ownership (TCO) of the original 8GB iPhone versus the forthcoming 8GB iPhone 3G. That is, the TCO of each iPhone with equal data (unlimited), voice (450 min), and SMS text messaging (200 txts).
 

(Above I&#8217;ve charted the initial cost of the ]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s take a brief look at what I would call the <em>bottom-line</em> total cost of ownership (TCO) of the original 8GB iPhone versus the forthcoming 8GB iPhone 3G. That is, the TCO of each iPhone with equal data (unlimited), voice (450 min), and SMS text messaging (200 txts).</p>
<p> </p>
<p><img class="aligncenter size-full wp-image-21" title="iphone-tco-jacobpierce" src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/iphone-tco-jacobpierce.gif" alt="iPhone TCO chart" width="448" height="320" /><br />
<small>(Above I&#8217;ve charted the initial cost of the iPhone + setup fees + monthly service over 2 years, including taxes and fees. I&#8217;ve added a $5/mo text plan and calculated the totals using California sales tax (8.25%) &#8211; so the bottom line in different states may be slightly more or less.)</small></p>
<p> </p>
<p>More after the jump, plus another chart of TCO without a text plan&#8230; <span id="more-20"></span></p>
<p>The result seen here is that even given the lower initial cost, the iPhone 3G costs more to own than the original iPhone at 14 months and after 2 years is a little under $200 more expensive. This is due to the monthly 3G service plan being about $15 more expensive for unlimited 3G data + 200 texts.</p>
<p>If you are one of the few smartphone users that really, truly never use SMS text messaging, it takes until about month 20 for the cost of a iPhone 3G to surpass the original iPhone. Here the price is much more closely matched, though as mentioned earlier the original iPhone service includes a 200 SMS plan and the iPhone 3G plan has none.</p>
<p> </p>
<p><img class="aligncenter size-full wp-image-22" title="iphone-tco-no-texts" src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/iphone-tco-no-texts.gif" alt="iPhone 3G TCO without texting" width="448" height="320" /> </p>
<p>Personally, GPS and 3G make it compelling enough for me to upgrade. Plus I suspect the original iPhones will still be worth a pretty penny (easily $200+) on eBay even after the iPhone 3G is available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacobpierce.com/blog/2008/06/19/3g-iphone-total-cost-of-ownership-tco/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AT&amp;T leverages 3G iPhone to raise data prices</title>
		<link>http://www.jacobpierce.com/blog/2008/06/09/att-leverages-3g-iphone-to-raise-data-prices/</link>
		<comments>http://www.jacobpierce.com/blog/2008/06/09/att-leverages-3g-iphone-to-raise-data-prices/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 20:44:00 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[Computing]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[at&t]]></category>
		<category><![CDATA[EDGE]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">http://www.jacobpierce.com/blog/?p=17</guid>
		<description><![CDATA[Immediately following the 3G iPhone announcement at 11:45a PST this morning, AT&#038;T posted up a press release outlining all the great things Apple is doing for them. Oh, and they also snuck in a $10 increase for the unlimited iPhone data plan. The data price will be $30 instead of the current $20, plus voice. ]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/iphone_att.jpeg" alt="AT&#038;T iPhone site" title="iphone_att" width="116" height="126" class="alignleft size-full wp-image-18" />Immediately following the 3G iPhone announcement at 11:45a PST this morning, AT&#038;T posted up a <a href="http://www.att.com/gen/press-room?pid=4800&#038;cdvn=news&#038;newsarticleid=25791">press release</a> outlining all the great things Apple is doing for them. Oh, and they also snuck in a $10 increase for the unlimited iPhone data plan. The data price will be $30 instead of the current $20, plus voice. In essence, $69.95 and up for an iPhone plan. Add $10 more if you want a text plan. From AT&#038;T:</p>
<blockquote><p>â€¢Â With a two-year contract, the price of an 8GB iPhone 3G will be $199; the 16GB model will be priced at $299.</p>
<p>â€¢Â <strong>Unlimited iPhone 3G data plans for consumers will be available for $30 a month, in addition to voice plans starting at $39.99 a month.</strong></p>
<p>â€¢Â Unlimited 3G data plans for business users will be available for $45 a month, in addition to a voice plan.</p></blockquote>
<p><span id="more-17"></span><br />
Additionally, this may pose an issue to upgrading iPhone users, since <del datetime="2008-06-09T21:43:24+00:00">potentially</del> they won&#8217;t be able to take advantage of 3G without entering a new 2-year contract. This is not particularly surprising, particularly given all the recent <a href="http://news.cnet.com/8301-10787_3-9950160-60.html">AT&#038;T 3G infrastructure improvement</a>, but definitely a bit of a kick to the pants. It appears this increase may be across all data phones as well, including Windows Mobile and RIM Blackberry smartphones.</p>
<p><strong>2:42pm Update</strong>: <a href="http://gizmodo.com/5014764/iphone-3g-sticky-contract-details-30-unlimited-data-activated-in-store-only-no-online-ordering">Gizmodo confirmed this</a> with AT&#038;T&#8217;s Glenn Lurie, plus you must activate the phone in store (Apple or AT&#038;T). Ouch. At least that should keep the resale value of 1st gen iPhones relatively high.</p>
<p>AT&#038;T: <a href="http://www.att.com/gen/press-room?pid=4800&#038;cdvn=news&#038;newsarticleid=25791"> AT&#038;T to Offer Next-Generation iPhone on Its High-Performance 3G Network</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacobpierce.com/blog/2008/06/09/att-leverages-3g-iphone-to-raise-data-prices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intel Atom: Eco-Friendly Home Server Platform</title>
		<link>http://www.jacobpierce.com/blog/2008/06/08/intel-atom-eco-friendly-server-platform/</link>
		<comments>http://www.jacobpierce.com/blog/2008/06/08/intel-atom-eco-friendly-server-platform/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 23:48:46 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Energy]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bittorrent]]></category>
		<category><![CDATA[D945GCLF]]></category>
		<category><![CDATA[eco-friendly server]]></category>
		<category><![CDATA[home automation]]></category>
		<category><![CDATA[home server]]></category>
		<category><![CDATA[intel atom]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[tranquil pc]]></category>

		<guid isPermaLink="false">http://www.jacobpierce.com/blog/?p=14</guid>
		<description><![CDATA[I want to take a couple of minutes and talk about how compelling the Intel Atom platform is for home servers. There has been lots of buzz around the Atom for the past few months since it&#8217;s a very low-cost, uber-power-efficient processor. The Atom can be likened to a vintage Volkswagen Beetle: low-cost and low-power ]]></description>
			<content:encoded><![CDATA[<p>I want to take a couple of minutes and talk about how compelling the <a href="http://en.wikipedia.org/wiki/Intel_Atom">Intel Atom</a> platform is for home servers. There has been lots of buzz around the Atom for the past few months since it&#8217;s a very low-cost, uber-power-efficient processor. The Atom can be likened to a vintage <a href="http://en.wikipedia.org/wiki/Volkswagen_Beetle">Volkswagen Beetle</a>: low-cost and low-power and it will still get you to 65MPH on the freeway, but you wouldn&#8217;t really want to use it for anything other than to &#8220;get from point A to point B&#8221;.</p>
<p>Similarly, the Atom meets the basic computing requirements of average users but not much more. This means you can check email, browse the web, use Office but can&#8217;t utilize advanced HD video, 3D games, and so forth.</p>
<p><img src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/intel_atom_platform.jpg" alt="Intel Atom platform diagram" title="intel_atom_platform" width="450" height="253" class="alignnone size-full wp-image-15" /><span id="more-14"></span></p>
<p>An exceptional use for the Atom platform is a home server due to fantastic performance per watt. It uses around 2 watts of power under load, whereas a common processor such as the Core 2 Duo uses 60W+. As energy costs go up, the total cost of ownership of a server is skyrocketing. So while the intial cost of a server or desktop suitable for running as a server may be low ($500 on a budget), at 24/7 the energy cost will be $100-$400/yr. In contrast, a 24/7 Atom-based server would cost approximately $10-20/yr. <strong>Substantial</strong> savings.</p>
<p>There are some great uses for Atom home servers:</p>
<p>1. <strong>BitTorrent</strong>. Dedicated 24/7 upload and download without worrying about utility bills.<br />
2. <strong>Home automation</strong>. You can leave a home-automation management server running 24/7/365 for probably under $7/yr in energy.<br />
3. <strong>Centralized storage</strong>. You can make your own NAS &#8211; most efficient in conjunction with the above services.<br />
4. <strong>Music server.</strong> Always-on access to locally-stored and Internet music.</p>
<p>Using the Atom platform for a home media server is possible, but only with streaming lower quality video. HD quality isn&#8217;t going to work.</p>
<p>TranquilPC offers an <a href="http://www.tranquilpc-shop.co.uk/acatalog/Motherboards.html">Atom-based D945GCLF motherboard</a> for about $100US. Throw RAM, flash-based storage, power supply, and a case on top of that and you&#8217;re looking at about $200-$300 total. TranquilPC and other vendors are starting to offer pre-built systems as well, but generally run $500 and up.</p>
<p>Anyone have other ideas for the Atom platform? Inexpensive solar-powered server or desktop, maybe?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacobpierce.com/blog/2008/06/08/intel-atom-eco-friendly-server-platform/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Brief Study: Stanford University OS Market Share</title>
		<link>http://www.jacobpierce.com/blog/2008/06/07/stanford-university-os-study/</link>
		<comments>http://www.jacobpierce.com/blog/2008/06/07/stanford-university-os-study/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 00:27:44 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Stanford University]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS 9]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[market penetration]]></category>
		<category><![CDATA[market share]]></category>
		<category><![CDATA[NetDB]]></category>
		<category><![CDATA[study]]></category>
		<category><![CDATA[SULinux]]></category>
		<category><![CDATA[SUNet ID]]></category>
		<category><![CDATA[sunetid]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.jacobpierce.com/blog/?p=10</guid>
		<description><![CDATA[It&#8217;s always difficult to try to gather accurate statistical data on operating system market share in the public sector. However, while Stanford University users can purchase any computer they want, they have to report their computer and OS into a database in order to access the Internet from Stanford campus. By looking at that data, ]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s always difficult to try to gather <em>accurate</em> statistical data on operating system market share in the public sector. However, while Stanford University users can purchase any computer they want, they have to report their computer and OS into a database in order to access the Internet from Stanford campus. By looking at that data, tracking market share has never been so easy&#8230;</p>
<p> </p>
<p><img class="alignnone size-full wp-image-11" title="figa_mac_windows" src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/figa_mac_windows.png" alt="Mac OS and Windows OS market distribution" width="397" height="392" /><span id="more-10"></span></p>
<p> </p>
<p><strong>Mac and Windows</strong></p>
<p>Right off the bat, we can see that Mac OS holds about 30% of the desktop and laptop OS market and Windows approximately the other 70%. I have left Linux out for now (see below) because it is nearly impossible to determine whether it is being used for a desktop computer or server.</p>
<p><strong>Windows</strong></p>
<p>If we explode the 70% Windows market share, things start to get a little more interesting. We can see that Windows XP commands 79% Windows market share. Vista has only been able to penetrate 10% of the market, barely statistically greater than the 8% being possessed by 8-year-old Windows 2000.</p>
<p>It&#8217;s also notable that Vista has about 10% market share despite something like 1/3rd of computers on Stanford campus having been purchased since the release of Vista. That means the vast majority of new computers are being ordered with Windows XP. Clearly Vista&#8217;s market penetration leaves much to be desired. Additionally, 10% is actually fairly representative of the entire US penetration of Vista, through the causes may be different (Stanford users have a higher average turn-over rate on computers than the rest of the US).</p>
<p> </p>
<p><img class="alignnone size-full wp-image-12" title="figb_windows" src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/figb_windows.png" alt="Exploded Windows OS Stanford distribution." width="370" height="439" />I could explode the particular flavors of Windows once again into each individual edition (Vista Business, Enterprise, Ultimate, etc.), but I&#8217;ll just mention that Windows XP Profession holds about 95% of XP editions and Business is the majority of Vista. Usage of &#8220;Home&#8221; editions of Windows is discouraged at Stanford University by being largely unsupported by the internal IT infrastructure.</p>
<p><strong>Linux</strong></p>
<p>As I mentioned earlier, I chose not to include Linux in the first &#8220;desktop/laptop&#8221; OS market share because it is nearly impossible to differentiate usage of Linux for servers versus desktops without enormous statistical effort. However, if you include all version of Linux, about 16% of computers (including servers) at Stanford are running Linux &#8211; a large portion are email, storage, web, and various other servers.</p>
<p> </p>
<p><img class="alignnone size-full wp-image-13" title="figc_linux" src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/figc_linux.png" alt="Linux OS distribution at Stanford." width="392" height="533" /> </p>
<p>Linux flavors with very low representation (e.g. Gentoo&#8217;s nine installations at Stanford) are excluded from the list. And unfortunately, nearly 1/3rd of Linux instances are reported generically as &#8220;Linux&#8221;. Lazy Linux users&#8230;</p>
<p><strong>Final notes</strong></p>
<p>Stanford is a great look at a free-market edu computing environment with strong Mac and Linux usership. But perhaps most importantly, its <strong>low Vista penetration</strong> shows that average educational users, whether student, faculty or staff, are still very resistant to Vista and go to extra effort to purchase XP even with new computers. Vendors, such as Sony, choosing to move away from XP earlier than most may be less attractive in this sort of environment.</p>
<p>In the future I may do a report on computer vendor market share (Apple vs. Dell vs. Lenovo vs. HP vs etc.).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacobpierce.com/blog/2008/06/07/stanford-university-os-study/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pull Apart: External USB MacBook Air SuperDrive</title>
		<link>http://www.jacobpierce.com/blog/2008/06/01/tear-down-external-usb-macbook-air-superdrive/</link>
		<comments>http://www.jacobpierce.com/blog/2008/06/01/tear-down-external-usb-macbook-air-superdrive/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 05:13:43 +0000</pubDate>
		<dc:creator>jacob</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[12.5mm]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[DVD-R/W]]></category>
		<category><![CDATA[MacBook]]></category>
		<category><![CDATA[Macbook Air]]></category>
		<category><![CDATA[Macbook Pro]]></category>
		<category><![CDATA[Pull Apart]]></category>
		<category><![CDATA[Superdrive]]></category>
		<category><![CDATA[Tear Down]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://www.jacobpierce.com/blog/?p=4</guid>
		<description><![CDATA[
I needed a replacement Superdrive and I&#8217;ve been really curious as to what exactly is inside the Apple Macbook Air External USB Superdrive. So I bought one for $108 at my local Apple Store and proceeded to destroy the case by opening it using metal clippers to ensure nothing inside got damaged. However, now knowing ]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/macbookair_superdrive.jpg"><img class="alignright size-full wp-image-9" title="macbookair_superdrive" src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/macbookair_superdrive.jpg" alt="MacBook Air SuperDrive" width="195" height="60" /></a></p>
<p>I needed a replacement Superdrive and I&#8217;ve been really curious as to what exactly is inside the Apple Macbook Air External USB Superdrive. So I bought one for $108 at my local <a href="http://www.apple.com/retail/">Apple Store</a> and proceeded to destroy the case by opening it using metal clippers to ensure nothing inside got damaged. However, now knowing more about how it is encased using tabs, I&#8217;ve written instructions here on how to open it without damaging anything.</p>
<p>While the MacBook Air SuperDrive only works externally with the MacBook Air possibly due to the USB adapter (<b>Update:</b> <a href="http://tnkgrl.wordpress.com/2008/06/24/macbook-air-superdrive-for-all/" target="blank">confirmed</a>), the internal drive component isÂ interchangeableÂ with the internal 12.7mm 17&#8243; Macbook Pro and most G4 PowerBook drives. It will not work with 15&#8243; MacBook Pro or 13.3&#8243; MacBook models since they need a slimmer 9.5mm SuperDrive.</p>
<p>Since it appears nobody has written a pull apart anywhere else, you can view the gory details after the jump&#8230;</p>
<p><span id="more-4"></span><br />
<strong>Pull apart instructions&#8230;</strong></p>
<p><em>Difficulty:</em> Easy/Intermediate.</p>
<p><em>Requirements:</em>Â <a title="Apple Store Macbook Air SuperDrive" href="http://store.apple.com/us/product/MB397G/A" target="_blank">MacBook Air SuperDrive</a>, old ID or credit card (or similar), and a tiny phillips screwdriver.</p>
<p><em>Warning</em>: Opening the case will no doubt void the warranty on the whole product. But this can be our little secret.</p>
<p><strong>Step 1: </strong>With the bottom facing up, gently insert a credit card (a screwdriver is pictured, but in retrospect a credit card is less damaging since the metal is very pliable). There are three tabs (Update: <a href="http://www.flickr.com/photos/tnkgrl/2606522285/in/set-72157605790040071/">better view</a>) that need to be popped out and then you can pull one side of the undercarriage free, then the other.</p>
<p><img src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/1_insert-creditcard.jpg" rel=â€lightbox[macbook_air_superdrive]" alt="" /></p>
<p><strong>Step 2:</strong> Remove three (3) screws and disconnect the USB adapter board (shown below).</p>
<p><img src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/3_screws.jpg" rel=â€lightbox[macbook_air_superdrive]" alt="" /></p>
<p><strong>Step 3:</strong> All done &#8211; now one can use it to replace essentially any 12.7mm height slot drive or even create your own external USB case. As of June &#8216;08, you could even put the bare drive on eBay and turn a profit.</p>
<p><img src="http://www.jacobpierce.com/blog/wp-content/uploads/2008/06/4_disconnect.jpg" rel=â€lightbox[macbook_air_superdrive]" alt="" /></p>
<p>If you need instructions on pulling apart various Macs and iPods, check out <a href="http://www.ifixit.com/Guide/">ifixit.com/Guide</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jacobpierce.com/blog/2008/06/01/tear-down-external-usb-macbook-air-superdrive/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
