<?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/"
	xmlns:go='http://ns.gigaom.com/'
xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>GigaOM &#187; Apple</title>
	<atom:link href="http://gigaom.com/apple/tag/services/feed/" rel="self" type="application/rss+xml" />
	<link>http://gigaom.com</link>
	<description></description>
	<lastBuildDate>Fri, 10 Feb 2012 14:29:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gigaom.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/0db8f6557d022075dbbf010c54d46d93?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>GigaOM &#187; Apple</title>
		<link>http://gigaom.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gigaom.com/osd.xml" title="GigaOM" />
	<atom:link rel='hub' href='http://gigaom.com/?pushpress=hub'/>
		<item>
		<title>How To Shorten URLs Anywhere With Automator</title>
		<link>http://gigaom.com/apple/how-to-shorten-urls-anywhere-with-automator/</link>
		<comments>http://gigaom.com/apple/how-to-shorten-urls-anywhere-with-automator/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 15:00:18 +0000</pubDate>
		<dc:creator>Josh Sunshine</dc:creator>
				<category><![CDATA[@CNN]]></category>
		<category><![CDATA[@NYT]]></category>
		<category><![CDATA[@SYN]]></category>
		<category><![CDATA[@TheStreet]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[bit.ly]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=281722</guid>
		<description><![CDATA[It's become common practice to use services such as bit.ly to shorten URLs, but this is usually done using a bookmarklet script, which only works in browsers. This Automator service allows you to select an URL in any application and shorten it using the bit.ly API.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=281722&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It’s become common practice to use services such as bit.ly to shorten URLs, but this is usually done using a bookmarklet script, which only works in web browsers. This Automator service allows you (on OS X 10.6 Snow Leopard) to select a URL in any application and shorten it using the bit.ly API.</p>
<p>First of all, you’ll need to open up Automator (<strong>Applications &gt; Automator</strong>) and create a new Service by double-clicking the <strong>Service</strong> icon. If you don’t see this option when Automator starts, go to <strong>File &gt; New</strong> and the new workflow screen will show.</p>
<p><img title="New Service Icon" src="http://gigaom2.files.wordpress.com/2010/12/new-service-icon.png?w=604" alt=""   class="aligncenter size-full wp-image-281886"></p>
<p>At the top of the right-hand panel, there are two drop-down lists. Change the first to say <strong>URLs</strong> and leave the second on <strong>Any Application</strong>. Leave the <strong>Replaces selected text</strong> box unchecked.</p>
<p><img title="Automator Service Options" src="http://gigaom2.files.wordpress.com/2010/12/automator-serive-options.png?w=604" alt=""   class="aligncenter size-full wp-image-281888"></p>
<p>Now, in the left-hand column, under the <strong>Utilities</strong> category, find <strong>Run Applescript</strong> and drag it over into the workflow on the right.</p>
<p><img title="Run Applescript Item" src="http://gigaom2.files.wordpress.com/2010/12/run-applescript-item.png?w=604" alt=""   class="aligncenter size-full wp-image-281890"></p>
<p>In the right-hand panel, replace the placeholder text in the Run Applescript action by copying and pasting the following script:</p>
<blockquote><p><code><br>
on run {input}<br>
set inputResult to (input as string)<br>
ignoring case</code></p>
<p><code>if (((characters 1 thru 4 of inputResult) as string) is not equal to "http") then<br>
display dialog "Invalid URL"</code></p>
<p><code>else<br>
set curlCMD to "curl --stderr /dev/null \"http://bit.ly/api?url=" &amp; input &amp; "\""<br>
set tinyURL to (do shell script curlCMD)<br>
return tinyURL</code></p>
<p><code> </code></p>
<p><code>end if<br>
end ignoring<br>
end run</code></p></blockquote>
<p>Next thing to do is add a <strong>Copy to Clipboard</strong> action from the Utilities category underneath the Applescript action. This grabs the output from the script and copies it to the clipboard ready for you to paste wherever you want.</p>
<p><img title="Copy to Clipboard Action" src="http://gigaom2.files.wordpress.com/2010/12/copy-to-clipboard-action.png?w=338&#038;h=604" alt="" width="338" height="604" class="aligncenter size-large wp-image-281895">Finally, you need to save your Service so that you can access it in other applications. Call it something sensible like “Shorten URL” or “Send to bit.ly” so that it’s obvious what goes on when you run it.</p>
<p>Once you’ve saved it, you can test it out by selecting a URL, right- or control-clicking and choosing the name of your service (in my case, it was “Shorten URL”).</p>
<p><img title="Shorten URL Service" src="http://gigaom2.files.wordpress.com/2010/12/shorten-url-service.png?w=604" alt=""   class="aligncenter size-full wp-image-281899">Once you’ve activated the Service, wait a couple of seconds while the script contacts the bit.ly API, then paste into your browser. You’ll see that a bit.ly URL has been created, and if you follow it, you’ll be taken to the original page whose URL you originally selected.</p>
<p>If right-clicking isn’t your thing, and you prefer using the keyboard, you can go to <strong>System Preferences &gt; Keyboard &gt; Keyboard Shortcuts &gt; Services</strong> and set up a keyboard shortcut. Now when you have text selected, just use that keyboard shortcut and you’ll get your short URL.</p>
<p><strong>Related content from GigaOM Pro (sub req’d):</strong></p>
<ul><li><a href="http://pro.gigaom.com/2010/09/shopping-matters-when-it-comes-to-location-based-apps/?utm_source=apple&amp;utm_medium=editorial&amp;utm_content=jobbogamer&amp;utm_campaign=intext&amp;utm_term=281722+how-to-shorten-urls-anywhere-with-automator">Shopping Matters When it Comes to Location-Based Apps</a></li>
<li><a href="http://pro.gigaom.com/2010/10/how-the-little-guys-can-compete-in-local-mobile-advertising/?utm_source=apple&amp;utm_medium=editorial&amp;utm_content=jobbogamer&amp;utm_campaign=intext&amp;utm_term=281722+how-to-shorten-urls-anywhere-with-automator">How the Little Guys Can Compete in Local Mobile Advertising</a></li>
<li><a href="http://pro.gigaom.com/2010/10/real-time-advertising-how-to-get-in-early/?utm_source=apple&amp;utm_medium=editorial&amp;utm_content=jobbogamer&amp;utm_campaign=intext&amp;utm_term=281722+how-to-shorten-urls-anywhere-with-automator">Real-Time Advertising: How to Get in Early</a></li>
</ul>
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=281722&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/how-to-shorten-urls-anywhere-with-automator/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	 <go:thumbnail>http://gigaom2.files.wordpress.com/2010/11/automator-feature.png?w=130</go:thumbnail> 
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2010/11/automator-feature.png?w=210" />
		<media:content url="http://gigaom2.files.wordpress.com/2010/11/automator-feature.png?w=210" medium="image">
			<media:title type="html">automator-feature</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/8495aa87a8736f68592565c05a1afb1f?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Jobbogamer</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2010/12/new-service-icon.png" medium="image">
			<media:title type="html">New Service Icon</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2010/12/automator-serive-options.png" medium="image">
			<media:title type="html">Automator Service Options</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2010/12/run-applescript-item.png" medium="image">
			<media:title type="html">Run Applescript Item</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2010/12/copy-to-clipboard-action.png?w=338" medium="image">
			<media:title type="html">Copy to Clipboard Action</media:title>
		</media:content>

		<media:content url="http://gigaom2.files.wordpress.com/2010/12/shorten-url-service.png" medium="image">
			<media:title type="html">Shorten URL Service</media:title>
		</media:content>
	</item>
		<item>
		<title>How-To: Using Automator to Combine PDFs</title>
		<link>http://gigaom.com/apple/how-to-using-automator-to-combine-pdfs/</link>
		<comments>http://gigaom.com/apple/how-to-using-automator-to-combine-pdfs/#comments</comments>
		<pubDate>Tue, 16 Nov 2010 00:00:07 +0000</pubDate>
		<dc:creator>Nick Santilli</dc:creator>
				<category><![CDATA[@CNN]]></category>
		<category><![CDATA[@NYT]]></category>
		<category><![CDATA[@SYN]]></category>
		<category><![CDATA[@TheStreet]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[automator]]></category>
		<category><![CDATA[combine]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://gigaom.com/?p=259380</guid>
		<description><![CDATA[OS X includes a great tool called Automator, which makes it really easy to take the sting out of repetitive tasks. Recently, I ran into a situation where I had to combine a bunch of PDF files into one. Luckily, Automator makes it dead simple.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=259380&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>OS X includes a great tool called <a href="http://gigaom.com/apple/quick-tip-automator-and-services-in-snow-leopard/">Automator</a> that makes it really easy to take the sting out of repetitive tasks. When I don’t forget it’s there waiting to help me, I put it to work so I don’t have to, which is what I did when I ran into the problem of how to take multiple PDFs and turn them into a single file.</p>
<p>I realize you can open a PDF, drag another PDF into the Preview window, and combine in that fashion, but in my experience, there’ve been issues with cross-platform compatibility when using this method. I turned to Automator, and within a few minutes, had a pretty simple and effective way to solve the problem.</p>
<ol><li>I decided to create a Service rather than a standalone application or workflow, so it would be accessible from anywhere I may end up in the Finder, at any time.</li>
<p><img title="New Automator Service" src="http://gigapple.files.wordpress.com/2010/05/new-automator-service.png?w=604" alt=""   class="aligncenter size-full wp-image-45647"></p>
<li>Since PDFs were my focus, I set the service to target them while browsing from the Finder. You can obviously play around with these settings to do different things, depending on your needs.</li>
<p><img title="Automator Targeted Files" src="http://gigapple.files.wordpress.com/2010/05/automator-targeted-files.png?w=604" alt=""   class="aligncenter size-full wp-image-45648"></p>
<li>The first action to drag into the editor is the  heavy lifter here, and is very clearly named: “Combine PDF Pages.” I’d prefer they append to one another rather than shuffle them together.</li>
<p><img title="Automator PDF Function" src="http://gigapple.files.wordpress.com/2010/05/automator-pdf-function.png?w=604" alt=""   class="aligncenter size-full wp-image-45649"></p>
<li>At this point, I thought I was done, but when I would run the Service against a couple of PDF files, I had no idea where the resulting file ended up. For some reason, it wasn’t in the clipboard, but rather, was in some non-accessible directory of OS X. So added the “Move Finder Items” command into the editor, and the result was just what I wanted.</li>
<p><img title="Automator Save to Desktop" src="http://gigapple.files.wordpress.com/2010/05/automator-save-to-desktop.png?w=604" alt=""   class="aligncenter size-full wp-image-45650"></p>
<li>Finally, select the files in the Finder, right click, and choose your newly-created Service from the Services submenu. The resulting PDF shows up as some gibberish file name, right on the desktop.</li>
</ol><p><img title="The Newly Create Service" src="http://gigapple.files.wordpress.com/2010/05/the-newly-create-service.png?w=604" alt=""   class="aligncenter size-full wp-image-45651"></p>
<p>Automator is a flexible tool, and can be made to do so many of the random tasks that we find need for on a daily basis. Hopefully, this simple solution will kickstart the process of creating your own custom workflows, as well.</p>
<p><strong>Related content from GigaOM Pro (sub req’d):</strong></p>
<ul><li><a href="http://pro.gigaom.com/2010/09/shopping-matters-when-it-comes-to-location-based-apps/?utm_source=apple&amp;utm_medium=editorial&amp;utm_content=nsantilli&amp;utm_campaign=intext&amp;utm_term=259380+how-to-using-automator-to-combine-pdfs">Shopping Matters When it Comes to Location-Based Apps</a></li>
<li><a href="http://pro.gigaom.com/2010/10/how-the-little-guys-can-compete-in-local-mobile-advertising/?utm_source=apple&amp;utm_medium=editorial&amp;utm_content=nsantilli&amp;utm_campaign=intext&amp;utm_term=259380+how-to-using-automator-to-combine-pdfs">How the Little Guys Can Compete in Local Mobile Advertising</a></li>
<li><a href="http://pro.gigaom.com/2010/10/real-time-advertising-how-to-get-in-early/?utm_source=apple&amp;utm_medium=editorial&amp;utm_content=nsantilli&amp;utm_campaign=intext&amp;utm_term=259380+how-to-using-automator-to-combine-pdfs">Real-Time Advertising: How to Get in Early</a></li>
</ul>
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=259380&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/how-to-using-automator-to-combine-pdfs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	 <go:thumbnail>http://gigaom2.files.wordpress.com/2010/11/automator-feature.png?w=130</go:thumbnail> 
		<media:thumbnail url="http://gigaom2.files.wordpress.com/2010/11/automator-feature.png?w=210" />
		<media:content url="http://gigaom2.files.wordpress.com/2010/11/automator-feature.png?w=210" medium="image">
			<media:title type="html">automator-feature</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/2b8c07abfab9b4664fa5291cf99973aa?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">nicks</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2010/05/new-automator-service.png" medium="image">
			<media:title type="html">New Automator Service</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2010/05/automator-targeted-files.png" medium="image">
			<media:title type="html">Automator Targeted Files</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2010/05/automator-pdf-function.png" medium="image">
			<media:title type="html">Automator PDF Function</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2010/05/automator-save-to-desktop.png" medium="image">
			<media:title type="html">Automator Save to Desktop</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2010/05/the-newly-create-service.png" medium="image">
			<media:title type="html">The Newly Create Service</media:title>
		</media:content>
	</item>
		<item>
		<title>Like AT&amp;T, O2 Feels the Strain, but Doesn&#8217;t Whine About iPhone Customers</title>
		<link>http://gigaom.com/apple/like-att-o2-feels-the-strain-but-doesnt-whine-about-iphone-customers/</link>
		<comments>http://gigaom.com/apple/like-att-o2-feels-the-strain-but-doesnt-whine-about-iphone-customers/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 20:31:58 +0000</pubDate>
		<dc:creator>Liam Cassidy</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[AT&T]]></category>
		<category><![CDATA[O2]]></category>
		<category><![CDATA[Outages]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=38306</guid>
		<description><![CDATA[Shortly before Christmas, my iPhone started misbehaving. I&#8217;d get an odd little notification message popping up on the screen telling me it &#8220;Could not activate cellular data network.&#8221; Despite not usually getting odd little errors on the iPhone, I didn&#8217;t worry too much about it. After [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173784&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="excerpt">Shortly before Christmas, my iPhone started misbehaving. I&#8217;d get an odd little notification message popping up on the screen telling me it &#8220;Could not activate cellular data network.&#8221; Despite not usually getting odd little errors on the iPhone, I didn&#8217;t worry too much about it. After all, I assumed, it <em>is</em> the holiday season; people are calling family and friends more than at any other time (well, except, perhaps, for New Year&#8217;s Eve). I just assumed it would right itself.</p>
<p>24 hours later it was <em>still</em> misbehaving, but by that time I&#8217;d finally snapped and decided to look into it. A call to O2 resulted in a recorded message that was played before the <em>usual</em> welcome message; &#8220;We are experiencing some difficulties,&#8221; an overly sympathetic voice cooed, &#8220;We apologize to our customers for any inconvenience this might have caused.&#8221; (I&#8217;m paraphrasing, of course).</p>
<p>I didn&#8217;t stop there &#8212; I asked the mighty Google for more information, and it turns out those &#8216;difficulties&#8217; affected quite a number of O2&#8242;s customers, both iPhone and otherwise, judging by the 20-odd page <a href="http://forum.o2.co.uk/viewtopic.php?t=32968&amp;postdays=0&amp;postorder=asc&amp;start=0">discussion</a> that was raging on O2&#8242;s official support pages. <span id="more-173784"></span></p>
<p>Tech news site V3.co.uk <a href="http://www.v3.co.uk/v3/news/2255400/o2-users-suffer-service-outage">published</a> several notices from O2 during the outages, which began rather hopefully:</p>
<blockquote><p>We&#8217;re sorry that some mobile customers have had problems with data today &#8211; these services will be back up tonight.</p></blockquote>
<p>&#8230;but ended on a decidedly more sullen note;</p>
<blockquote><p>The system fault has been fixed and internet connections are gradually being restored. MMS and Visual Voicemail remain affected. We&#8217;re working on these as a priority.</p></blockquote>
<p>Thankfully the problem was cleared up reasonably swiftly. Something to do with incorrectly assigned IP addresses, or leaves on the line (trust me, if you&#8217;re British that&#8217;s <em>hilarious</em>!)</p>
<p>While some tech sites are reporting on the data outages in London in much the same tone they would AT&amp;T&#8217;s lackluster services in New York or San Francisco, I must offer my own (admittedly anecdotal) evidence to the contrary; my partner and I are both iPhone-toting, data-hungry technophiles who just happen to live in London. And this is the first time this year we&#8217;ve experienced any truly memorable disruption to O2&#8242;s data network. For clarity: I&#8217;m not saying we haven&#8217;t suffered the <em>occasional</em> dropped-call here and there. We have &#8212; at a rate of perhaps one dropped call every other <em>month</em>. You see, when all is said and done, the O2 network is normally exemplary (as it should be, considering how much we pay them).</p>
<p>Still, O2 has been reaching out to its customers, cap in hand, doing that quintessentially British thing&#8230;apologizing. In a Reuters report published <a href="http://www.reuters.com/article/idCNLDE5BS0M520091229?rpc=44">today</a> O2&#8242;s Chief Executive Ronan Dunne is quoted saying:</p>
<blockquote><p>Where we haven&#8217;t met our own high standards then there&#8217;s no question, we apologize to customers for that fact. But it would be wrong to say O2 has failed its customers en masse.</p></blockquote>
<p>The story is much the same here in the UK for O2 as it is for AT&amp;T in the States; smartphone ownership is on the rise and smartphone owners use a <em>lot</em> of data, relative to the amount consumed by so-called &#8216;feature phone&#8217; customers. The network carriers simply aren&#8217;t prepared for this. Historically they&#8217;ve never had to provide this much bandwidth and their business models (typically structured into five year plans that don&#8217;t change much in-between revisions) simply don&#8217;t make adequate (if any) provisions for the scale of network investment and improvement that data-hungry devices like the iPhone demand.</p>
<p>Still, that doesn&#8217;t stop their execs bragging about the upgrades that <em>have</em> taken place. From Reuters;</p>
<blockquote><p>The company [O2] had invested 30 million pounds ($48 million) in its London network to meet demand [...] and 200 extra mobile base stations had been installed.</p></blockquote>
<p>Sounds impressive, no? But I wonder&#8230; that&#8217;s an <em>awful</em> lot of money, and an <em>awful</em> lot of new base stations. That sort of massive investment into network expansion was likely planned <em>years</em> ago as part of the company&#8217;s long-term growth strategy. Indeed, such a huge investment plan could easily have predated the 2007 introduction of the iPhone, and the subsequent explosion in smartphone adoption.</p>
<p>However, I&#8217;m not beating up on O2. It might be feeling the same pain AT&amp;T has so publically suffered in recent months, but at least it&#8217;s not reacting <a href="http://gigaom.com/apple/att-not-ready-for-tethering-may-throttle-iphone-data/">the same way</a> AT&amp;T&#8217;s CEO Ralph De La Vega did, with barely-concealed threats of data-caps and tiered pricing plans for smartphone users.</p>
<p>AT&amp;T&#8217;s message (at least how it comes across to me) has mostly been along the lines of, &#8220;You iPhone customers are a nuisance, you&#8217;re to blame for all our network problems, so you&#8217;ll have to pay us more money!&#8221; Conversely, O2&#8242;s message reads, &#8220;You iPhone customers chew through a terribly high volume of data that sometimes causes us problems – we&#8217;re sorry we weren&#8217;t ready for that, and we&#8217;re working on it&#8221;</p>
<p>Color me biased. But tell me you don&#8217;t think AT&amp;T could learn something about good PR from their British counterparts.</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173784+like-att-o2-feels-the-strain-but-doesnt-whine-about-iphone-customers&utm_content=limalicas">Sign up for a free trial</a>.</p><ul><li><a href="?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173784+like-att-o2-feels-the-strain-but-doesnt-whine-about-iphone-customers&utm_content=limalicas"></a></li><li><a href="http://pro.gigaom.com/2011/02/a-2011-mobile-forecast/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173784+like-att-o2-feels-the-strain-but-doesnt-whine-about-iphone-customers&utm_content=limalicas">A 2011 Mobile&nbsp;Forecast</a></li><li><a href="http://pro.gigaom.com/2011/01/green-its-q4-winners-wind-power-solar-power-smart-energy/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173784+like-att-o2-feels-the-strain-but-doesnt-whine-about-iphone-customers&utm_content=limalicas">Green IT&#8217;s Q4 Winners: Wind Power, Solar Power, Smart&nbsp;Energy</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173784&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/like-att-o2-feels-the-strain-but-doesnt-whine-about-iphone-customers/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/84ffab8ffeac6bfee20144c0e9f0fe42?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">limalicas</media:title>
		</media:content>
	</item>
		<item>
		<title>MobileMe: Is it worth it?</title>
		<link>http://gigaom.com/apple/mobileme-is-it-worth-it/</link>
		<comments>http://gigaom.com/apple/mobileme-is-it-worth-it/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 00:00:37 +0000</pubDate>
		<dc:creator>Dave Greenbaum</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[MobileMe]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[syncing]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=35468</guid>
		<description><![CDATA[If you believe the marketing hype, you aren&#8217;t really a true Mac user unless you have MobileMe. MobileMe is pushed heavily in the Mac and iPhone UI as well as the Apple retail environment. Fancy terms like “beyond the box sales” are a clever way of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173602&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="excerpt"><img  title="mobileme" src="http://gigapple.files.wordpress.com/2009/02/mobileme.png?w=200&#038;h=148" alt="" width="200" height="148" class=" alignleft" />If you believe the marketing hype, you aren&#8217;t really a true Mac user unless you have MobileMe.  MobileMe is pushed heavily in the Mac and iPhone UI as well as the Apple retail environment. Fancy terms like “beyond the box sales” are a clever way of saying &#8220;high profit&#8221; for Apple.</p>
<p>Let&#8217;s break down the features of MobileMe see if it&#8217;s worth it. The retail price of MobileMe is $99, though discounts abound, but for this article, let&#8217;s stick with the $99 price.  My calculator app says this comes to $8.25 a month, or a little more than a quarter a day.  Pretty cheap, but can you cut it out and save some money? What if Apple sold the features a la carte, like we wish our cable companies would do with channels?  With a bit of research, here are what I think are the market rates for each of these features (or at least what I would pay for them). <span id="more-173602"></span></p>
<p><strong>Ring my iPhone/Display a message  (Free)</strong></p>
<p>The ability to force your phone to ring, even when it&#8217;s in vibrate mode is nice.  However, we all got along OK before that feature was implemented.  It&#8217;s nice, but I wouldn&#8217;t pay for it.</p>
<p><strong>Remote Lock and Remote Wipe  ($4.99 per month)</strong></p>
<p>We all know <a href="http://gigaom.com/apple/iphone-os-3-0-some-things-you-knew-and-some-you-didnt/">Liz Lemon&#8217;s ordeal</a> with her iPhone. While I don&#8217;t have adult photos on my iPhone, I do have information I&#8217;d rather not fall into the wrong hands.  Being able to remotely lock and then possibly wipe my iPhone is really of great value to me.  It&#8217;s peace of mind insurance and I&#8217;ll price it like <a href="http://www.wireless.att.com/learn/basics/choosing-features-services/wireless-insurance.jsp">AT&amp;T&#8217;s insurance</a> for other phones.  Those who are not as concerned with having their phone fall into others’ hands may not value this as much as I do.</p>
<p><strong>Find my Phone on the Map ($5.00 or combine with Remote Lock/Wipe for $7.50)</strong></p>
<p>AT&amp;T has a GPS service for other phones called &#8220;<a href="https://familymap.wireless.att.com/finder-att-family/welcome.htm">AT&amp;T Family Map</a>&#8221; and charges $9.99 to track up to two people.  Since this is for just one phone, I divided the cost in half.  Being able to find your phone when you lose it is awesome.  I value this feature the same as the Remote Lock and Wipe:  peace of mind if the phone gets lost.  One without the other would be helpful and have pretty much the same value.  Combine the two and I expect a bit of a discount.</p>
<p><strong>iDisk  (Free for 2 GB, .25 for each additional GB)</strong></p>
<p>Yawn.  20 GB of storage in the cloud.  Who doesn&#8217;t store data in the cloud these days? Standard pricing seems to be to give two GB away for free and charge about 25 cents for each additional GB (See <a href="https://www.getdropbox.com/">DropBox</a> or <a href="https://www.sugarsync.com/">SugarSync</a>).  Given the fact that the iDisk tends to be rather slow, I’m not sure I&#8217;d want to pay much at all.  The &#8220;seamless&#8221; desktop synchronization of the iDisk can&#8217;t match the true automatic synchronization of DropBox and SugarSync</p>
<p><strong>Back To My Mac (Free)</strong></p>
<p>Being able to remotely get files off your Mac?  There&#8217;s an app for that and it was first developed in late 1980s and was named Timbuktu.  In addition to <a href="http://www.netopia.com/software/products/tb2/">Timbuktu</a> (which still exists), these days there are free products such as <a href="https://secure.logmein.com/">LogMeIn Free</a> and VNC  (See my review of <a href="http://gigaom.com/apple/iphone-remote-control-apps-reach-out-and-touch-your-mac/">iPhone remote apps</a>).  Additionally, Back To My Mac isn&#8217;t 100% reliable, and if you can better rely on other free products, then how much is it really worth?</p>
<p><strong>MobileMe Gallery  (Free)</strong></p>
<p>Online photo gallery?  Who doesn&#8217;t have one these days?  <a href="http://www.flickr.com/">Flickr</a> and <a href="http://www.facebook.com">Facebook</a> fit the bill nicely and if you don&#8217;t like those social networking sites pretty much anyone who develops film today will give you a free online gallery, with occasional minor restrictions.</p>
<p><strong>Me.com Email (Free)</strong></p>
<p>Would anyone actually pay for web-based email?  Really?  With offerings from Google, Yahoo, and Microsoft, someone has to be really out of the loop to be paying for web based email. Granted, Me.com makes it pretty and easy, but it&#8217;s more a matter of personal preference than any true value.  Sending large files and sharing them are easy, but countless services exist to help with just that.  The average user rarely needs to send a large file that one of these services doesn&#8217;t support.</p>
<p><strong>iWeb Publishing  (Free)</strong></p>
<p>For those of us who use iWeb, MobileMe makes publishing delightfully simple.  You can publish to other sites with a bit of a workaround, and those workarounds are easy to find on the web, so paying for this feature is for people who don&#8217;t know how to Google.</p>
<p><strong>Over the Air Syncing  ($2.00)</strong></p>
<p>The value of this is based on <a href="http://backupassistant.vzw.com">Verizon&#8217;s Backup Assistant</a> program that will back up your contacts for almost any Verizon phone.  When we look at the T-Mobile Sidekick it&#8217;s included with the service.  For syncing files between computers, see Dropbox and SugarSync.  Contacts and calendars can be synced using Google as a conduit  (See <a href="http://www.busymac.com/busysync/index.html">BusySync</a>).  Having your keychains and widgets synced is nice, but workarounds with other syncing software allow you to do that as well.</p>
<p>Personally, this is the killer feature of MobileMe for me.  I work with a large number of clients and all my contacts and appointments are on my iPhone.  Before I can get to a desktop to sync, I&#8217;ll often have made a few appointments and might accidentally double book myself if I didn&#8217;t have this feature.  Sure, I could use Google to do it exclusively but that&#8217;s a few extra steps and time is often of the essence for me.</p>
<p><strong>All of it working together as one package (Free or Priceless)</strong></p>
<p>Seamless integration is nice, don&#8217;t get me wrong.  Would I be willing to pay for it?  Not really.  I&#8217;d rather save money buying the features I need and make them work together myself, manually.  For some people, the very reason they bought an iPhone instead of another mobile device is due to the ease of use factor, so for these folks, the more everything works together without thinking about it, the better.</p>
<p>So what&#8217;s my personal decision?  When I add the Remote wipe/lock/find/ring feature ($7.50) with the Over the Air Syncing ($2.00), MobileMe justifies itself.   Other features really aren&#8217;t worth paying for.  So again, how much would you pay and what features are most valuable for you?  Operators are standing by.</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173602+mobileme-is-it-worth-it&utm_content=calldrdave">Sign up for a free trial</a>.</p><ul><li><a href="?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173602+mobileme-is-it-worth-it&utm_content=calldrdave"></a></li><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173602+mobileme-is-it-worth-it&utm_content=calldrdave">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173602+mobileme-is-it-worth-it&utm_content=calldrdave">The Near-Term Evolution of Social&nbsp;Commerce</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173602&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/mobileme-is-it-worth-it/feed/</wfw:commentRss>
		<slash:comments>68</slash:comments>
	 <go:thumbnail>http://gigapple.files.wordpress.com/2009/12/mobileme_thumb.jpg?w=130</go:thumbnail> 
		<media:thumbnail url="http://gigapple.files.wordpress.com/2009/12/mobileme_thumb.jpg?w=210" />
		<media:content url="http://gigapple.files.wordpress.com/2009/12/mobileme_thumb.jpg?w=210" medium="image">
			<media:title type="html">mobileme_thumb</media:title>
		</media:content>

		<media:content url="http://1.gravatar.com/avatar/73eda5544ca42cec589784b7be68b664?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">calldrdave</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/02/mobileme.png" medium="image">
			<media:title type="html">mobileme</media:title>
		</media:content>
	</item>
		<item>
		<title>How-to: Create Services for Quick Search Box</title>
		<link>http://gigaom.com/apple/how-to-create-services-for-quick-search-box/</link>
		<comments>http://gigaom.com/apple/how-to-create-services-for-quick-search-box/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 22:00:39 +0000</pubDate>
		<dc:creator>Bryan Schuetz</dc:creator>
				<category><![CDATA[Walkthroughs]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[qsb]]></category>
		<category><![CDATA[quick search box]]></category>
		<category><![CDATA[quicksilver]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=34780</guid>
		<description><![CDATA[I&#8217;ve been playing around with Google Quick Search Box lately and am especially enjoying this services plugin from Martin Kuhl which lets you activate and pass input to OS X services right from within QSB. One snag though has been that services created through the new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173554&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img  title="QSB_icon" src="http://gigapple.files.wordpress.com/2009/10/qsb.png?w=125&#038;h=125" alt="QSB_icon" width="125" height="125" class=" alignleft" /></p>
<p class="excerpt">I&#8217;ve been playing around with <a href="http://gigaom.com/apple/video-walkthrough-getting-serious-with-quick-search-box/">Google Quick Search Box</a> lately and am especially enjoying this <a href="http://github.com/mkhl/services.hgs">services plugin</a> from Martin Kuhl which lets you activate and pass input to OS X services right from within QSB.</p>
<p>One snag though has been that services created through the new Automator template included in Snow Leopard leave out some vital bits that limit integration.  Luckily, a handy application from Waffle Software called <a href="http://wafflesoftware.net/thisservice/">ThisService</a> makes creating proper services that integrate seamlessly with QSB a lot easier than you might think.</p>
<p>Being able to extend the functionality of QSB with OS X services really opens up a lot of possibilities.  Grab text or files in QSB and pass them on to your services to do whatever you want with them, like creating a new To Do item in iCal. I&#8217;ve been focused recently on replicating functionality that I lost when I made the switch over from Quicksilver and I think that this improved service integration will get me about 90 percent of the way there. <span id="more-173554"></span></p>
<p>The bad news is that this means I need to whip up a bunch of custom services for myself. The good news is that <a href="http://wafflesoftware.net/thisservice/">ThisService</a> makes that task very easy. Just give it a script (AppleScript will do, but if you&#8217;re more comfortable with other scripting languages you can use those), define the type and name of your service and click Create Service. ThisService handles all the fiddly Cocoa bits and spits out a completed service into your <code>~/Library/Services</code> directory where QSB will see it and serve it up as an available action when appropriate.<br />
<img  title="ThisService" src="http://gigapple.files.wordpress.com/2009/10/thisservice.png?w=581&#038;h=410" alt="ThisService" width="581" height="410" class=" alignleft" /><br />
Actually writing your AppleScript will likely be the most complicated part, which is why ThisServices comes bundled with some handy starter scripts to put you on the right path. They also make a number of <a href="http://wafflesoftware.net/thisservice/services/">example scripts and services</a> available for download from their site. The scripts don&#8217;t need to be complicated. For example, here is the one I use for adding To Do items in iCal:</p>
<p><pre class="brush: csharp;">
on process(input)
tell application &quot;iCal&quot;
tell calendar &quot;work&quot;
make new todo at end with properties {summary:input}
end tell
end tell
end process
</pre></p>
<p>If you wanted to get fancy you could pass additional properties like the due date, priority, etc., but just getting a new item into the list is all I need.</p>
<p>Once you have your service setup accessing them through Quick Search Box is as easy as can be. Because showing seems to be more useful than describing, below is a quick little video clip of the To Do service in action. What kind of services would you like to have? Share your thoughts in the comments.</p>
<p><object width="580" height="326"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7311312&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=BAD35B&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7311312&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=BAD35B&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="580" height="326"></embed></object></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173554+how-to-create-services-for-quick-search-box&utm_content=bryanschuetz">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173554+how-to-create-services-for-quick-search-box&utm_content=bryanschuetz">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173554+how-to-create-services-for-quick-search-box&utm_content=bryanschuetz">The Near-Term Evolution of Social&nbsp;Commerce</a></li><li><a href="http://pro.gigaom.com/2011/02/content-farms-the-players-the-benefits-the-risks/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173554+how-to-create-services-for-quick-search-box&utm_content=bryanschuetz">Content Farms: The Players, The Benefits, The&nbsp;Risks</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173554&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/how-to-create-services-for-quick-search-box/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1f0aaa5169b785bc9f833a12aba5b3c?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">bryanschuetz</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/10/qsb.png" medium="image">
			<media:title type="html">QSB_icon</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/10/thisservice.png" medium="image">
			<media:title type="html">ThisService</media:title>
		</media:content>
	</item>
		<item>
		<title>Quick Tip: Automator and Services in Snow Leopard</title>
		<link>http://gigaom.com/apple/quick-tip-automator-and-services-in-snow-leopard/</link>
		<comments>http://gigaom.com/apple/quick-tip-automator-and-services-in-snow-leopard/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:00:54 +0000</pubDate>
		<dc:creator>Mark Crump</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Walkthroughs]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[automator]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=31691</guid>
		<description><![CDATA[Originally introduced in OS X Tiger, Automator is a drag-and-drop form of scripting. You can create workflows to easily speed up many tasks. With each version of OS X, Automator has seen some improvements, but with Snow Leopard, it finally realizes its full potential. It realizes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173301&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="excerpt">Originally introduced in OS X Tiger, <a title="Mac 101: Automator" href="http://support.apple.com/kb/HT2488">Automator</a> is a drag-and-drop form of scripting. You can create workflows to easily speed up many tasks. With each version of OS X, Automator has seen some improvements, but with Snow Leopard, it finally realizes its full potential.</p>
<p>It realizes it by allowing you to create your own Services. Unless you really needed to delve into the Services menu (located under the Application menu) you’re likely to never even know it’s there &#8212; when I asked a friend to screenshot her Leopard Services menu for this article, she replied “what menu?” That menu was, to put it gently, a bleeping mess. Every service showed up, even ones that couldn’t be used with program or you had little or no use for. Here’s what it looks like in Leopard.</p>
<p style="text-align:center;"><img  title="Services Menu 2009-08-29_2026" src="http://gigapple.files.wordpress.com/2009/08/services-menu-2009-08-29_2026.png?w=370&#038;h=398" alt="Services Menu 2009-08-29_2026" width="370" height="398" class=" alignleft" /></p>
<p>In Snow Leopard, the Services menu now only displays actions that can be handled by that program. You can also choose what services show up, so if there’s one you never use, you can hide it. Services are also contextual and will show up when you right-click on an actionable item like text in Pages or a file in Finder. If you click on a file in the Finder, and then the gear icon in the toolbar, you can also see what actions apply to that file. <span id="more-173301"></span></p>
<p><img  title="services" src="http://gigapple.files.wordpress.com/2009/08/services.png?w=550&#038;h=241" alt="services" width="550" height="241" class=" alignleft" /></p>
<p>In Leopard, I could create a Finder or iCal action, but creating workflows that would work in any application wasn’t very user friendly. You might be able to create an AppleScript, or if you’re a <a title="Quicksilver: The Guide" href="http://theappleblog.com/quicksilver-the-guide/">Quicksilver</a> junkie you could create an action for it, but Snow Leopard really lets the average user create tools to enhance productivity. Now that Automator can create Services, it&#8217;s really becoming a powerful tool. Also, in Snow Leopard, Automator can now use data detectors, so if you select an address, you can use Automator to write an action that&#8217;ll look it up in Google Maps.</p>
<p>I’m going to show you a few services I created today while learning the new tools &#8212; as well as a few I got from <a href="http://www.macosxautomation.com/services/download/index.html">macosxautomation.com</a>. Now, I’m not saying you couldn’t do these in 10.5, but how slick and easy it now is in 10.6 is amazing. I can easily see the Services menu now acting as a sort of Macro Central to it make it easy to find my actions.</p>
<h3>Emailing Specific Files to Specific People</h3>
<p>I’m in a weekly D&amp;D group and we use Wizard’s Character Builder to manage our characters (sadly, it’s Windows-only, ensuring I’ll be a Parallels customer for the foreseeable future). Kelsey, our GM, wants a copy and I’ll send a copy to the guy that hosts the game in case I forget to print them out. I created the service in the screenshot below to automatically attach my characters to a mail message and send them off. Now, regardless of what program I’m in, I can just choose the service I created and email them. I&#8217;ve got a few services like this created to email files to frequent recipients.</p>
<p><img  title="Automator Email at 12.10.04 PM" src="http://gigapple.files.wordpress.com/2009/08/automator-email-at-12-10-04-pm1.png?w=570&#038;h=414" alt="Automator Email at 12.10.04 PM" width="570" height="414" class=" alignleft" /></p>
<h3>Lookup Text On Wikipedia</h3>
<p>If you’re typing away and you want to look up text on Wikipedia, download the Internet Services action from <a href="http://www.macosxautomation.com/services/download/index.html">macosxautomation.com</a>. This will bring up a pop-up window that’ll let you quickly search Wikipedia. In what’s likely an “I’m missing something obvious moment,” I can’t seem to get the action to work from within Safari. While we’re on the subject of Safari, that same Internet Services action lets you create a webpage popup of any page. By default, it presents itself as an iPhone, so you get a small, mobile optimized pop up. This is handy if there’s any web sites you frequently consult.</p>
<p><img  title="Automator wiki" src="http://gigapple.files.wordpress.com/2009/08/automator-wiki1.png?w=570&#038;h=498" alt="Automator wiki" width="570" height="498" class=" alignleft" /></p>
<h3>Browse Your iPhoto Library</h3>
<p>This is another one I downloaded from macosxautomation.com. One of the features I love in iWork is being able to browse my iPhoto library and insert a photo into my document. Now, with the Browse Library service, I can have that same functionality in any program.</p>
<p><img  title="Automator iPhoto Lookup" src="http://gigapple.files.wordpress.com/2009/08/automator-iphoto-lookup.png?w=433&#038;h=486" alt="Automator iPhoto Lookup" width="433" height="486" class=" alignleft" /></p>
<h3>Weird Glitches and Problems</h3>
<p>So far in my admittedly small data sample, I’ve only run into a few issues. I’ve already talked about the Wiki lookup not working in Safari, but I’ve also noticed Automator doesn’t see text selected in Microsoft Word 2008 as “selected text” &#8212; no services other than the general services show up in Word (I didn&#8217;t try out the rest of the suite). What&#8217;s interesting is there are a ton of Office-related actions included in Automator. I&#8217;ve had an e-mail discussion with Microsoft&#8217;s Mac BU about this and they&#8217;re looking into it.</p>
<h3>Resources</h3>
<p><a href="http://www.pixelcorps.tv/macbreak235">MacBreak Video</a> has a great session with Sal Saghoian, the AppleScript Product Manager at Apple. I’m constantly amazed at how Sal’s laid-back presentation style actually makes what could be a dry topic easy to follow. He&#8217;ll show you some great video examples of what the new Automator can do.</p>
<p>I’ve mentioned <a href="http://www.macosxautomation.com/services/download/index.html">macosxautomation.com</a> multiple times, and I’m mentioning it again. This site is promising to be my one-stop shop as I continue to learn about Automator.</p>
<p>The changes in Automator look fantastic. Until now, my Automator usage has been very situational. In Snow Leopard, I&#8217;m looking forward to creating workflows I&#8217;ll be using daily.</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173301+quick-tip-automator-and-services-in-snow-leopard&utm_content=markcrump">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173301+quick-tip-automator-and-services-in-snow-leopard&utm_content=markcrump">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173301+quick-tip-automator-and-services-in-snow-leopard&utm_content=markcrump">The Near-Term Evolution of Social&nbsp;Commerce</a></li><li><a href="http://pro.gigaom.com/2011/02/content-farms-the-players-the-benefits-the-risks/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173301+quick-tip-automator-and-services-in-snow-leopard&utm_content=markcrump">Content Farms: The Players, The Benefits, The&nbsp;Risks</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173301&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/quick-tip-automator-and-services-in-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55892237c59df0902490511d7a5b7491?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Mark Crump</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/08/services-menu-2009-08-29_2026.png?w=370" medium="image">
			<media:title type="html">Services Menu 2009-08-29_2026</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/08/services.png" medium="image">
			<media:title type="html">services</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/08/automator-email-at-12-10-04-pm1.png?w=570" medium="image">
			<media:title type="html">Automator Email at 12.10.04 PM</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/08/automator-wiki1.png?w=570" medium="image">
			<media:title type="html">Automator wiki</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/08/automator-iphoto-lookup.png" medium="image">
			<media:title type="html">Automator iPhoto Lookup</media:title>
		</media:content>
	</item>
		<item>
		<title>Posterous + iPhone = Perfect Mobile Platform</title>
		<link>http://gigaom.com/apple/posterous-iphone-perfect-mobile-platform/</link>
		<comments>http://gigaom.com/apple/posterous-iphone-perfect-mobile-platform/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 17:00:38 +0000</pubDate>
		<dc:creator>Mark Crump</dc:creator>
				<category><![CDATA[CNN Media]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[NYT Enterprise]]></category>
		<category><![CDATA[SYN Feature Enterprise]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[experiences]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[posterous]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=30028</guid>
		<description><![CDATA[Much like a migratory bird is genetically driven to fly south for the winter, I am driven to bloviate online. And so over the years I&#8217;ve accumulated my fair share of blogging accounts. I&#8217;m very active on Twitter, have a WordPress blog, a Flickr account, Facebook, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173187&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="excerpt"><img  title="posterous_1" src="http://gigapple.files.wordpress.com/2009/08/posterous_1.png?w=127&#038;h=130" alt="posterous_1" width="127" height="130" class=" alignleft" />Much like a migratory bird is genetically driven to fly south for the winter, I am driven to bloviate online. And so over the years I&#8217;ve accumulated my fair share of blogging accounts. I&#8217;m very active on Twitter, have a WordPress blog, a Flickr account, Facebook, and a rarely-used LiveJournal account. Keeping them all updated is frustrating, though. I&#8217;ve ended up just posting to WordPress and using the Twittertools plug-in to feed the post to Twitter (which also feeds into Facebook). It&#8217;s not elegant, but it works.</p>
<p>I&#8217;ve said before that my iPhone is the <a href="http://gigaom.com/apple/my-netbook-the-iphone/">command center for my life</a>, and at the same time noted that there&#8217;s no real end-to-end solution that will let me blog across all services on the iPhone. The full-featured WordPress site is unbearable, and the iPhone app for the same just doesn&#8217;t cut it. I can use the <a href="http://gigaom.com/apple/using-drafts-to-easily-get-text-to-and-from-your-iphone/">drafts method</a> to get an article off my iPhone and into a better front end, I can use <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=296415944&amp;mt=8">Tweetie</a> for Twitter, and I can easily email photos to my Flickr account. But I was struggling to find a one-button solution, but now I have: <a href="http://Posterous.com">Posterous</a>. <span id="more-173187"></span></p>
<p>Now, I&#8217;m not going to lie to you folks: While we at TheAppleBlog pride ourselves on bringing you All Things Apple, All Day Long, this post doesn&#8217;t necessarily require a piece of Apple-made technology to work. However, if you&#8217;re like me and just like reading fun tales of how people use their iPhones in their daily lives you&#8217;ll forgive me this one transgression.</p>
<p>Posterous is the latest entry to the micro/social blogging scene; its closest competitor is Tumblr. I&#8217;ve got a <a href="http://writersmark.tumblr.com/">Tumblr account</a> and have found it lacking, though I can&#8217;t quite put my finger on why. I think when I started using it I was trying to force it into being the one-stop solution it wasn&#8217;t. I could get my tweets to work with it, and I could get my WordPress account to suck up the feed and Tumblr to do the same, but it always felt like a duct-taped solution. Part of the problem is Tumblr has a counter called Tumblarity which goes up and down as you use &#8212; or don&#8217;t use  &#8212; the tool. I&#8217;m OCD and that number&#8217;s lack of movement bugged the heck out of me because only posts that originated in Tumblr affected that counter; using the feeds didn&#8217;t.</p>
<p>Posterous is shining where Tumblr let me down, thanks to a very ingenious tool: email. I tell Posterous what email addresses to accept missives from and it will then happily feed all of my blogging services the contents of that message. It&#8217;ll dump them right into my personal blog, create a self-promotional tweet with a link, upload the photo to my Flickr account, create a LiveJournal post, and (something that keeps my OCD happy) create a Tumblr post in a manner that will make my Tumblarity go up.</p>
<p>If you click on this link to <a href="http://writersmark.posterous.com/">my Posterous</a> account, and the links to all the sites I linked to above, you&#8217;ll likely see a post with a picture of a very nice motorcycle. That entire post was created on the iPhone and Posterous did the dirty work of cross-posting. So far, the only negative I&#8217;ve seen is just when the photo is uploaded to Flickr &#8212; I was hoping the message would get added as commentary.</p>
<p>Since my iPhone is always with me, Posterous is letting me carry through on &#8216;That’s neat, I should blog about that&#8217; inspirations with a tool that requires no set-up or even an Internet connection until I want to upload. I love that I can see a picture of a neat bike on a street corner, snap the pic and in seconds have all of my blogs updated. With so many friends using different blogging platforms, Posterous feels like the Adium of blogging tools.</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173187+posterous-iphone-perfect-mobile-platform&utm_content=markcrump">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/01/mobile-q4-all-eyes-were-on-android-4g-and-the-rising-tablet-tide/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173187+posterous-iphone-perfect-mobile-platform&utm_content=markcrump">Mobile Q4: All Eyes Were on Android, 4G and the Rising Tablet&nbsp;Tide</a></li><li><a href="http://pro.gigaom.com/2010/12/report-a-mobile-video-market-overview/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173187+posterous-iphone-perfect-mobile-platform&utm_content=markcrump">Report: A Mobile Video Market&nbsp;Overview</a></li><li><a href="http://pro.gigaom.com/2010/10/in-q3-the-tablet-and-4g-were-the-big-stories/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173187+posterous-iphone-perfect-mobile-platform&utm_content=markcrump">In Q3, the Tablet and 4G Were the Big&nbsp;Stories</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173187&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/posterous-iphone-perfect-mobile-platform/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/55892237c59df0902490511d7a5b7491?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">Mark Crump</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/08/posterous_1.png" medium="image">
			<media:title type="html">posterous_1</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Retail Store Proposal Leaked: 124 Pages of Execu-Speak</title>
		<link>http://gigaom.com/apple/microsoft-retail-store-proposal-leaked-124-pages-of-execu-speak/</link>
		<comments>http://gigaom.com/apple/microsoft-retail-store-proposal-leaked-124-pages-of-execu-speak/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 15:00:28 +0000</pubDate>
		<dc:creator>Liam Cassidy</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[retail]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[stores]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=29308</guid>
		<description><![CDATA[Last week Gizmodo published a leaked proposal (32MB PDF) from marketing agency Lippincott detailing plans for Microsoft&#8217;s upcoming brick-and-morter retail stores. It makes for mind-numbing reading, running at a mammoth 124 pages of (mostly) brain-freezing execu-speak. I&#8217;m glad I don&#8217;t work in Marketing. It&#8217;s a troubled, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173126&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Last week <a href="http://gizmodo.com/5322328/leak-inside-the-microsoft-store-with-wall+sized-screens-and-the-answers-bar/gallery/">Gizmodo</a> published a leaked <a href="http://pdf.ifoman.com.s3.amazonaws.com/lippencott_microsoft_slides.pdf">proposal</a> (32MB PDF) from marketing agency <a href="http://www.lippincott.com/index.html">Lippincott</a> detailing plans for Microsoft&#8217;s upcoming brick-and-morter retail stores. It makes for mind-numbing reading, running at a mammoth 124 pages of (mostly) brain-freezing execu-speak.</p>
<p>I&#8217;m glad I don&#8217;t work in Marketing. It&#8217;s a troubled, stressful world where there&#8217;s no such thing as a &#8220;lie&#8221; and the customer is considered little more than an uninformed, paranoid bag of walking money. Marketing execs rabbit incessantly about &#8220;managing expectations&#8221; or &#8220;steering brand awareness&#8221; and other essentially meaningless buzz-phrases. Either it&#8217;s subtle genius, or howling bum-gravy. <span id="more-173126"></span></p>
<p>Here are a few of the &#8220;highlights:&#8221;</p>
<ul>
<li>Customer experience seems to be high on the agenda, though geared toward Emily, a hypothetical customer broadly categorized as one of three types: Basic Communicator, Productive Connector and Escapist.</li>
<li>&#8220;Reconsideration of the Microsoft brand by consumers&#8221; &#8212; speaks for itself.</li>
<li>NikeTown, AT&amp;T, Sony, Nokia and Apple are acknowledged as providing retail/customer service benchmarks that Microsoft could learn from or aspire to.</li>
<li>A Digital Media Wall is planned that will span the length of the store wall. There are lots of design mockups of what might appear on it. Check out the proposal for details.</li>
<li>Windows 7, PCTV and Windows Mobile will also get their own dedicated stages.</li>
<li>The stages will get their own dedicated Microsoft Surface Tables.</li>
</ul>
<p>There&#8217;s a lot more in there besides these few points. Here are a few of the visualizations. No prizes for spotting similarities with the Apple Store. (But, to be fair, how many ways are there to design a retail store that sells computers and software?)</p>
<div id="attachment_29317" class="wp-caption aligncenter" style="width: 600px"><img  title="Microsoft Retail Store - Windows 7" src="http://gigapple.files.wordpress.com/2009/07/microsoft-retail-store-windows-7.png?w=590&#038;h=366" alt="Proposed Windows 7 Stage" width="590" height="366" class=" alignleft" /><p class="wp-caption-text">Proposed Windows 7 Stage</p></div>
<div id="attachment_29318" class="wp-caption aligncenter" style="width: 600px"><img  title="Microsoft Retail Store - Guru or Answer Bar" src="http://gigapple.files.wordpress.com/2009/07/microsoft-retail-store-guru-or-answer-bar.png?w=590&#038;h=424" alt="Here it's called the Guru Bar. In the proposal it's referred to as the Answer Bar. Doesn't take a genius to figure out what it is..." width="590" height="424" class=" alignleft" /><p class="wp-caption-text">Here it&#39;s called the Guru Bar. In the proposal it&#39;s called the Answer Bar.</p></div>
<div id="attachment_29321" class="wp-caption aligncenter" style="width: 600px"><img  title="Microsoft Retail Store or Apple Store" src="http://gigapple.files.wordpress.com/2009/07/microsoft-retail-store-or-apple-store.png?w=590&#038;h=441" alt="If you squint, this looks like an Apple store. What are the odds?!" width="590" height="441" class=" alignleft" /><p class="wp-caption-text">If you squint, this looks like an Apple store. What are the odds?!</p></div>
<p><img  title="Bing or MSN - same difference" src="http://gigapple.files.wordpress.com/2009/07/bing-or-msn-same-difference.png?w=590&#038;h=241" alt="Bing or MSN - same difference" width="590" height="241" class=" alignleft" /></p>
<p>I found this one odd. Buried in the proposal is a chart that explains which sort of customers use Microsoft&#8217;s various services. Bing is said to be for &#8220;Search Explorers&#8221; and &#8220;Search Productives.&#8221; MSN is for &#8220;Information Seekers&#8221; and &#8220;Functional Organizers.&#8221; Frankly, I&#8217;m failing to see how these are truly distinct, different things?</p>
<p>Microsoft was quick to post a comment on the Gizmondo website, saying:</p>
<blockquote><p>&#8220;As a part of our process in briefing creative agencies, we shared some early prototypes and concepts of our retail store plans. No final decisions have been made. As we previously announced, we are on track to open retail stores this Fall.&#8221;</p></blockquote>
<p>I wish Microsoft every success in their Retail stores. I&#8217;ll happily visit them to see what techy goodness is on offer. But for what is supposed to be a proposal that should make me want to run out and start building the first Microsoft Store with my own two hands, the language in this document leaves me cold.</p>
<blockquote><p>&#8220;The brand vision: realizing potential. The value proposition for the retail offering and experience is: inclusive exuberance.&#8221;</p></blockquote>
<p>Inclusive Exuberance? <em>Seriously?</em></p>
<p>OK, I know I&#8217;ll be flamed for my criticism. But look &#8212; if you think this sort of language is <em>not</em> a screaming insult to human intelligence and dignity&#8230; well, then, you&#8217;re probably already in Marketing.</p>
<p>For the rest of us looking forward to seeing what these new stores have to offer, we can only hope they&#8217;re not as cynical, &#8220;corporate&#8221; and soulless as this document manages to be!</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173126+microsoft-retail-store-proposal-leaked-124-pages-of-execu-speak&utm_content=limalicas">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/02/content-farms-the-players-the-benefits-the-risks/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173126+microsoft-retail-store-proposal-leaked-124-pages-of-execu-speak&utm_content=limalicas">Content Farms: The Players, The Benefits, The&nbsp;Risks</a></li><li><a href="http://pro.gigaom.com/2011/02/what-googles-honeycomb-means-for-apple-and-microsoft/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173126+microsoft-retail-store-proposal-leaked-124-pages-of-execu-speak&utm_content=limalicas">What Google&#8217;s Honeycomb Means for Apple and&nbsp;Microsoft</a></li><li><a href="http://pro.gigaom.com/2011/02/the-future-of-work-platforms-an-overview/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=173126+microsoft-retail-store-proposal-leaked-124-pages-of-execu-speak&utm_content=limalicas">The Future of Work Platforms: An&nbsp;Overview</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=173126&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/microsoft-retail-store-proposal-leaked-124-pages-of-execu-speak/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/84ffab8ffeac6bfee20144c0e9f0fe42?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">limalicas</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/07/microsoft-retail-store-windows-7.png" medium="image">
			<media:title type="html">Microsoft Retail Store - Windows 7</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/07/microsoft-retail-store-guru-or-answer-bar.png" medium="image">
			<media:title type="html">Microsoft Retail Store - Guru or Answer Bar</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/07/microsoft-retail-store-or-apple-store.png" medium="image">
			<media:title type="html">Microsoft Retail Store or Apple Store</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/07/bing-or-msn-same-difference.png" medium="image">
			<media:title type="html">Bing or MSN - same difference</media:title>
		</media:content>
	</item>
		<item>
		<title>Get to the Point: OS X&#8217;s Summarize Service</title>
		<link>http://gigaom.com/apple/get-to-the-point-os-xs-summarize-service/</link>
		<comments>http://gigaom.com/apple/get-to-the-point-os-xs-summarize-service/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 20:00:36 +0000</pubDate>
		<dc:creator>James Dempsey</dc:creator>
				<category><![CDATA[CNN Big Tech]]></category>
		<category><![CDATA[NYT Enterprise]]></category>
		<category><![CDATA[SYN Feature Enterprise]]></category>
		<category><![CDATA[Walkthroughs]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Speech]]></category>
		<category><![CDATA[Summarize]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=25269</guid>
		<description><![CDATA[There are a few really handy features in OS X that get very little attention - perhaps because they don't have a snazzy GUI, or maybe it's because they only appeal to certain users. Whatever the case, <strong>Summarize</strong> (found in the menubar under the Application menu) is one of those handy features that gets little attention, but delivers big by helping you get to the point.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=172852&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img  title="summarize-service-icon" src="http://gigapple.files.wordpress.com/2009/06/summarize-service-icon.png?w=128&#038;h=128" alt="summarize-service-icon" width="128" height="128" class=" alignleft" /></p>
<p class="excerpt">There are a few really handy features in OS X that get very little attention &#8212; perhaps because they don&#8217;t have a snazzy GUI, or maybe it&#8217;s because they only appeal to certain users. Whatever the case, Summarize (found in the menubar under the Application menu) is one of those handy features that gets little attention, but delivers big by helping you get to the point.</p>
<p>Think of Summarize as OS X&#8217;s way of creating a <a href="http://en.wikipedia.org/wiki/Cliff%27s_notes">CliffsNotes</a> version of whatever text you want to read, but don&#8217;t have the time to do so. It simply shortens your text into smaller, more readable chunks.</p>
<p>For example, let&#8217;s say you really wanted to read Charles&#8217; <a href="http://gigaom.com/apple/mystery-of-the-white-macbook-upgrade-unravelled/">Mystery of the White MacBook Upgrade Unravelled</a> article here on TheAppleBlog, but just don&#8217;t have the time to spare. The article, as it appears on TheAppleBlog, is approximately 565 words. I realize that&#8217;s not too terribly long, but hang with me here. <span id="more-172852"></span></p>
<p style="text-align: center;"><img  title="summarize_menu" src="http://gigapple.files.wordpress.com/2009/06/summarize_menu.png?w=434&#038;h=311" alt="summarize_menu" width="434" height="311" class=" alignleft" /></p>
<p>In a Services-aware application such as Safari, Pages, TextEdit, Mail, etc., select the text you want to shorten. Next, visit the <strong>Application menu</strong>, in this case Safari, in the menubar. Scroll down to <strong>Services</strong>, and select <strong>Summarize</strong>. A resizable window will pop up with the summarized text in it.</p>
<div id="attachment_25275" class="wp-caption aligncenter" style="width: 580px"><img  title="summarize-service_snap" src="http://gigapple.files.wordpress.com/2009/06/summarize-service_snap1.jpg?w=570&#038;h=574" alt="OS X's Summarize Service feature" width="570" height="574" class=" alignleft" /><p class="wp-caption-text">OS X&#39;s Summarize Service feature</p></div>
<p>The Summarize service offers a slider which allows you to customize how much of the original text OS X tosses out. I&#8217;ve found that the 30-50 percent range is a good amount to use. Unfortunately, it&#8217;s difficult to tell exactly what percentage the slider is set at. In my test, the original 565-word article was summarized down to about 350 words. Even when lowering the percentage down into the 25-30 percent range, the gist of the article was still relatively clear &#8212; even though most of the details were tossed out.</p>
<p>The two radio buttons in the Summarize window determine how OS X summarizes the text. From what I can tell, using Sentences is the way to go. The Paragraph method appears to simply toss out entire paragraphs in random order.</p>
<p>Now if you don&#8217;t feel like using Summarize saves you enough time by itself, you can further your efforts by selecting the text in the Summarize window and go back up to the Application menu and choose <em>Services → Speech → Start Speaking Text</em>. OS X will read the summarized text to you in the default voice set in your System preferences.</p>
<p>Summarize is just one of the many Services Apple built into OS X. If you take a look, you may even notice some of your favorite applications add their own Services as well. And if you happen to be using an application that can’t take advantage of Services, such as Firefox, you can always copy and paste the text into TextEdit and go from there.</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172852+get-to-the-point-os-xs-summarize-service&utm_content=jamesdempsey">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172852+get-to-the-point-os-xs-summarize-service&utm_content=jamesdempsey">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172852+get-to-the-point-os-xs-summarize-service&utm_content=jamesdempsey">The Near-Term Evolution of Social&nbsp;Commerce</a></li><li><a href="http://pro.gigaom.com/2011/02/content-farms-the-players-the-benefits-the-risks/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172852+get-to-the-point-os-xs-summarize-service&utm_content=jamesdempsey">Content Farms: The Players, The Benefits, The&nbsp;Risks</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=172852&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/get-to-the-point-os-xs-summarize-service/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/79cc564eff0b8237088c4db8373e4cc3?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">James</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/06/summarize-service-icon.png" medium="image">
			<media:title type="html">summarize-service-icon</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/06/summarize_menu.png" medium="image">
			<media:title type="html">summarize_menu</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2009/06/summarize-service_snap1.jpg" medium="image">
			<media:title type="html">summarize-service_snap</media:title>
		</media:content>
	</item>
		<item>
		<title>North Carolina Sweetens the Deal for Apple&#8217;s New Server Farm</title>
		<link>http://gigaom.com/apple/north-carolina-sweetens-the-deal-for-apples-new-server-farm/</link>
		<comments>http://gigaom.com/apple/north-carolina-sweetens-the-deal-for-apples-new-server-farm/#comments</comments>
		<pubDate>Mon, 25 May 2009 17:05:23 +0000</pubDate>
		<dc:creator>Liam Cassidy</dc:creator>
				<category><![CDATA[CNN Big Tech]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[NYT Company News]]></category>
		<category><![CDATA[SYN Analysis]]></category>
		<category><![CDATA[iwork.com]]></category>
		<category><![CDATA[MobileMe]]></category>
		<category><![CDATA[server farm]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=24458</guid>
		<description><![CDATA[According to a report in Friday’s Charlotte Observer, North Carolina lawmakers are falling over themselves to entice Apple to build a state-of-the-art server farm in their backyard &#8212; specifically, Catawba or Cleveland county. The carrot they’re dangling? In this case, nothing short of a multimillion-dollar tax [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=172786&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="excerpt">According to a report in Friday’s <a href="http://www.charlotteobserver.com/136/story/740622.html">Charlotte Observer</a>, North Carolina lawmakers are falling over themselves to entice Apple to build a state-of-the-art server farm in their backyard &#8212; specifically, Catawba or Cleveland county. The carrot they’re dangling? In this case, nothing short of a multimillion-dollar tax break.</p>
<p>According to a “state official” with knowledge of the state’s efforts, the server farm would represent a $1 billion investment.</p>
<p>The proposed tax changes aren’t just because North Carolina loves MacBooks and iTunes and quite fancies a bit of an Apple super-presence. Rather, the changes are proposed as a means for improving local economy and standards of living. In detail, companies qualify for the tax break if:</p>
<ul>
<li>They relocate to one of North Carolina’s poorest counties</li>
<li>Provide employees with health insurance</li>
<li>Meet a minimum wage standard</li>
<li>Waive all other grants and tax breaks from the state</li>
</ul>
<p><span id="more-172786"></span><br />
If the new server farm remains active for over 30 years, Apple would have corporate tax savings of more than $300 million. Why 30 years? The state already agreed to a similar incentive deal with Google, which opened a server farm in North Carolina last year, and expects to run the facility for 30 years, making a tax saving of over $260 million.</p>
<h3>Software as Services</h3>
<p>Apple has been moving progressively toward the Software as Services (SAS) business model for some years now. The iTunes Store and original .Mac products have long required robust server-infrastructure to support (at least in the case of the iTunes Store) millions of requests every minute.</p>
<p>The introduction of MobileMe saw a bold commitment from Apple to provide essential services to customers, and much of the instability and pain users experienced in the days following MobileMe’s launch were possibly due to an inadequate server backend.</p>
<p>The little-discussed, seldom-used iWork.com web-based collaboration service (currently in beta) will also demand a sturdy and reliable server infrastructure. While customers might tolerate the odd, fleeting instability in their MobileMe Photo gallery, a malfunctioning document collaboration service would be unforgivable.</p>
<p>Worth noting, however, is that Apple’s MobileMe and iWork.com subscriber-bases are tiny when compared with its iTunes customer base. The massive sales success of the iPhone (particularly Apple’s <a href="http://gigaom.com/apple/apple-doubles-its-iphone-market-share/">recent share growth</a> in the smartphone market) means millions more hourly connections to the iTunes Store. Think of Apple’s recent download milestones &#8212; 1 billion apps, 6 billion songs &#8212; and the need for much-expanded server infrastructure becomes clear.</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172786+north-carolina-sweetens-the-deal-for-apples-new-server-farm&utm_content=limalicas">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172786+north-carolina-sweetens-the-deal-for-apples-new-server-farm&utm_content=limalicas">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172786+north-carolina-sweetens-the-deal-for-apples-new-server-farm&utm_content=limalicas">The Near-Term Evolution of Social&nbsp;Commerce</a></li><li><a href="http://pro.gigaom.com/2011/02/content-farms-the-players-the-benefits-the-risks/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172786+north-carolina-sweetens-the-deal-for-apples-new-server-farm&utm_content=limalicas">Content Farms: The Players, The Benefits, The&nbsp;Risks</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=172786&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/north-carolina-sweetens-the-deal-for-apples-new-server-farm/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/84ffab8ffeac6bfee20144c0e9f0fe42?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">limalicas</media:title>
		</media:content>
	</item>
		<item>
		<title>The iPhone: A Marketer&#8217;s Fantasy</title>
		<link>http://gigaom.com/apple/the-iphone-a-marketers-fantasy/</link>
		<comments>http://gigaom.com/apple/the-iphone-a-marketers-fantasy/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 16:37:05 +0000</pubDate>
		<dc:creator>Darrell Etherington</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[products]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=12115</guid>
		<description><![CDATA[There&#8217;s a trusted maxim in the marketing game: cheap razor, expensive blades. It comes from the practice of selling razors like the Mach3 or Fusion for next to nothing, and then selling the disposable blades for said razors at a rather more expensive price. Consumers tend [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=172036&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img  title="iphonemoney" src="http://theappleblog.com/wp-content/uploads/2008/12/iphonemoney.jpg" alt="" width="154" height="258" class=" alignleft" />There&#8217;s a trusted maxim in the marketing game: cheap razor, expensive blades. It comes from the practice of selling razors like the Mach3 or Fusion for next to nothing, and then selling the disposable blades for said razors at a rather more expensive price. Consumers tend to overlook the long-term price of purchase, and instead see the initial price as a bargain. The iPhone may not be cheap, but apps generally are, and they seem to be provoking a lot of pricey &#8216;blade&#8217; purchases, so to speak.</p>
<p>A recent post on the <a href="http://forums.sonos.com/showthread.php?t=11158" target="_self">Sonos forums</a> emphasizes my point. In it, the poster provides an anecdote about how, despite prior resistance, the Sonos remote app for the iPhone convinced him to drop a considerable chunk of change on a Sonos system. The poster&#8217;s argument is this: the mere potential the iPhone offered in terms of perceived future added value actually motivated the purchase. When contacted, a Sonos PR rep confirmed that sales of Sonos systems have definitely benefitted from the release of the <a href="http://sonos.com/whattobuy/controllers/iphone/default.aspx" target="_self">Sonos CR for iPhone</a>. The company has even produced a <a href="http://sonos.com/demo/iphone/demo.html" target="_self">video</a> for people who may have the app, but no Sonos system to control, demonstrating how the controller will work.</p>
<p>It may sound ridiculous, but I can&#8217;t claim to be immune. Apple&#8217;s own Remote app has me contemplating an Apple TV purchase, despite the limited content library iTunes offers here in Canada, and our inability to access <a href="http://www.hulu.com">Hulu</a>. The appeal is in how easy it would be to use Apple TV with the iPhone, not in what I would do with the media hub itself.<br />
<span id="more-172036"></span><br />
Netflix and TiVo also offer tantalizing tie-ins with the iPhone/iPod touch. Thanks to a recent update, i.TV, a popular TV listing app, now also offers the ability to <a href="http://www.engadgethd.com/2008/11/16/i-tv-app-brings-netflix-queue-management-to-iphone-ipod-touch/" target="_self">manage your Netflix queue</a>. Which is giving people a reason to have a Netflix queue. TiVo has just launched a web app that allows TiVo subscribers to plan and schedule recordings. Although this can be used with any phone, the point is that you can do it on your iPhone, as well as manage your Netflix queue, control your Apple TV and your Sonos system, and most other things if you have one of the home automation systems that are iPhone compatible set up.</p>
<p>The examples are many, and not limited to home and home theater control. I recently signed up for Remember the Milk Pro, something which I would never have done if it wasn&#8217;t for the <a href="http://www.rememberthemilk.com/services/iphone/app/" target="_self">RTM iPhone application</a>. In an informal survey conducted by TAB, a number of apps that inspired Other purchases came up. <a href="http://www.omnigroup.com/applications/OmniFocus/iphone/" target="_self">OmniFocus</a> and <a href="http://www.culturedcode.com/things/iphone/" target="_self">Things</a> are two other GTD apps which, though they work on their own, work like gateway drugs, pushing you towards their desktop counterparts. <a href="http://agilewebsolutions.com/products/iphone" target="_self">1Password</a> and <a href="http://www.acrylicapps.com/wallet/iphone/" target="_self">Wallet</a>, login information storage and management apps, also had the same effect.</p>
<p>There&#8217;s also the <a href="http://www.freshbooks.com/add-ons/iphone.php" target="_self">FreshBooks app</a>, which makes web-based time tracking that much more appealing, since it truly becomes accessible almost anywhere. A FreshBooks representative told us that they&#8217;ve seen massive download numbers for the new app, but they&#8217;ve yet to figure out if those numbers are causally related to their increased subscriptions. The offered the app based on user demand, so for them an iPhone app was good customer service, and any sales benefits are tangential.</p>
<p>Most of these applications were probably designed to add to, or supplement the existing functionality of a stand-alone product or application. What is actually happening, and what is more exciting from a marketing standpoint, is that customers are moving in the other direction. The promise of enhanced usability, and true one-device-for-all remote integration, is resulting in users seeking out software, hardware and services that help them increase what they can do with their iPhones. The iPhone is the ultimate peripheral: universal; customizable; and generating more, rather than being the result of, consumer purchases.</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172036+the-iphone-a-marketers-fantasy&utm_content=etherin">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/01/mobile-q4-all-eyes-were-on-android-4g-and-the-rising-tablet-tide/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172036+the-iphone-a-marketers-fantasy&utm_content=etherin">Mobile Q4: All Eyes Were on Android, 4G and the Rising Tablet&nbsp;Tide</a></li><li><a href="http://pro.gigaom.com/2010/12/report-a-mobile-video-market-overview/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172036+the-iphone-a-marketers-fantasy&utm_content=etherin">Report: A Mobile Video Market&nbsp;Overview</a></li><li><a href="http://pro.gigaom.com/2010/10/in-q3-the-tablet-and-4g-were-the-big-stories/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=172036+the-iphone-a-marketers-fantasy&utm_content=etherin">In Q3, the Tablet and 4G Were the Big&nbsp;Stories</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=172036&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/the-iphone-a-marketers-fantasy/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/188039e12983eb749171a75cfd01378d?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">etherin</media:title>
		</media:content>

		<media:content url="http://theappleblog.com/wp-content/uploads/2008/12/iphonemoney.jpg" medium="image">
			<media:title type="html">iphonemoney</media:title>
		</media:content>
	</item>
		<item>
		<title>Access Bonjour Services From Anywhere With ShareTool</title>
		<link>http://gigaom.com/apple/access-bonjour-services-from-anywhere-with-sharetool/</link>
		<comments>http://gigaom.com/apple/access-bonjour-services-from-anywhere-with-sharetool/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 18:00:10 +0000</pubDate>
		<dc:creator>David Appleyard</dc:creator>
				<category><![CDATA[cool stuff]]></category>
		<category><![CDATA[Software Reviews]]></category>
		<category><![CDATA[Walkthroughs]]></category>
		<category><![CDATA[bonjour]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[sharetool]]></category>
		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://theappleblog.com/?p=9314</guid>
		<description><![CDATA[ShareTool is a piece of software which allows you to easily access your Mac from a remote location. To quote their tagline: &#8220;ShareTool is hands down, the fastest, easiest, and most secure way to access all of your Bonjour services from anywhere in the world.&#8221; The [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=171880&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://gigapple.files.wordpress.com/2008/11/sharetool.jpg?w=147&#038;h=139" alt="ShareTool" title="sharetool" width="147" height="139"  class=" alignleft" /><a href="http://www.yazsoft.com/st/">ShareTool</a> is a piece of software which allows you to easily access your Mac from a remote location. To quote their tagline: &#8220;ShareTool is hands down, the fastest, easiest, and most secure way to access all of your Bonjour services from anywhere in the world.&#8221; The term &#8216;Bonjour services&#8217; is fairly generic, but means that services which would generally work only on your home network (such as iTunes Music Sharing, Screen Sharing, File Sharing, Printing etc) become available anywhere.</p>
<p>For instance, you may have an iMac at home with all your media, photos and family content, and also a MacBook which you use for business/travel. ShareTool allows you to connect to your home network from your MacBook when travelling, accessing the files on the iMac, sharing the screen and even printing to your home device.<br />
<span id="more-171880"></span></p>
<h3>Setup and Installation</h3>
<p>The process of setting up ShareTool is remarkably simple. When launching, you are presented with the following window:</p>
<p><img src="http://gigapple.files.wordpress.com/2008/11/picture-6.png?w=604" alt="ShareTool Setup" title="picture-6"  class=" alignleft" /></p>
<p>This allows you to select whether you&#8217;re wanting to share the content of this Mac, or connect to the shared content on a different network. This simple user interface design flows throughout the rest of the application, meaning that a fairly complicated network operation appears remarkably simple to the user.</p>
<p>ShareTool is able to automatically configure your network router, and had no problem altering the required settings on my Time Capsule. However, when tested on a different router it struggled to apply the port rules automatically, requiring them to be entered manually. I expect that most modern routers will work easily &#8212; if you own a fairly old device, you&#8217;ll need to be prepared to delve into settings a little deeper.</p>
<p>Once you&#8217;ve set up sharing, you&#8217;re presented with the following screen:</p>
<p><img src="http://gigapple.files.wordpress.com/2008/11/picture-31.png?w=604" alt="" title="picture-31"  class=" alignleft" /></p>
<p>It is easy to copy the connection information to your clipboard or email it to yourself. You also have the option of selecting exactly which Bonjour services you are wanting to share:</p>
<p><img src="http://gigapple.files.wordpress.com/2008/11/picture-7.png?w=604" alt="" title="picture-7"  class=" alignleft" /></p>
<h3>Using ShareTool</h3>
<p>Once you have set up sharing and decided exactly what you want to share, connecting to the network remotely is very straight forward. You type in the details provided when setting up sharing and, fingers crossed, everything goes to plan. I didn&#8217;t have any issues, but I can imagine that problems could occur centering around dynamic IP addresses, firewalls etc. ShareTool does support a few services (DynDNS.com, No-IP.com, and DNS-O-Matic.com) which would help to circumvent the problem of a regularly changing IP address.</p>
<p>Services appear as they would if you were plugged into the network and the software seems very reliable &#8212; everything worked well for me. There are a few preferences you can change relating to connecting/sharing.</p>
<p><img src="http://gigapple.files.wordpress.com/2008/11/prefs.gif?w=604" alt="Preferences" title="prefs"  class=" alignleft" /></p>
<p>ShareTool states that the software &#8220;works with all Internet connections (56k modem and all high speed connections)&#8221;. While this is technically true, most of the services in question would be unusable without a fast broadband connection at both ends. Those which involve greater data transfer (streaming audio for instance) would suffer the most.</p>
<p>If you use a VPN, you&#8217;ll know that Bonjour services aren&#8217;t automatically available when connecting remotely. ShareTool solves this by allowing you to enter your home machine&#8217;s internal IP address once you&#8217;re connected to the VPN. This performs the same function as normal, and will enable all the various services you have shared.</p>
<h3>Security</h3>
<p>If you&#8217;re transmitting data to and from your home network over the internet, it is important to consider the security aspect. Fortunately, ShareTool is extremely secure and encrypts all data with SSH. This uses AES (Advanced Encryption Standard), a universally accepted security standard. It also has a method in place for ensuring that it is your machine that is connecting to your network.</p>
<h3>Conclusion</h3>
<p>Whether I would recommend ShareTool depends heavily on what you&#8217;ll need it for, and whether you already have a MobileMe account. The <a href="http://www.apple.com/mobileme/features/mac.html">Back to my Mac</a> feature of MobileMe allows for File Sharing and Screen Sharing with relative ease, but ShareTool enables a host of additional services. Some, such as remote printing, can be achieved fairly easily through a combination of File and Screen Sharing, but others such as iTunes Sharing are only possible through ShareTool.</p>
<p>The price difference is important. MobileMe costs $99 for a year, whereas ShareTool is $30 on a one off basis. If you already own MobileMe and only require Screen/File Sharing, then ShareTool isn&#8217;t necessary. If you are not a MobileMe user, it&#8217;s a great way to stay connected to your home or office network from anywhere.</p>
<h4>Pros</h4>
<ul>
<li>It&#8217;s really easy to set up with most modern routers</li>
<li>A wide range of services are supported &#8211; you can share almost anything</li>
<li>Encryption is excellent</li>
<li>It is fairly inexpensive compared to MobileMe</li>
</ul>
<h4>Cons</h4>
<ul>
<li>It doesn&#8217;t differ dramatically from Back to my Mac</li>
<li>It requires some network knowledge for those with older routers</li>
<li>Speed is a limiting factor &#8211; it works much better with very fast broadband connections</li>
</ul>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171880+access-bonjour-services-from-anywhere-with-sharetool&utm_content=davidappleyard">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171880+access-bonjour-services-from-anywhere-with-sharetool&utm_content=davidappleyard">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171880+access-bonjour-services-from-anywhere-with-sharetool&utm_content=davidappleyard">The Near-Term Evolution of Social&nbsp;Commerce</a></li><li><a href="http://pro.gigaom.com/2011/02/content-farms-the-players-the-benefits-the-risks/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171880+access-bonjour-services-from-anywhere-with-sharetool&utm_content=davidappleyard">Content Farms: The Players, The Benefits, The&nbsp;Risks</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=171880&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/access-bonjour-services-from-anywhere-with-sharetool/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5d801e6e70f601d5ef51f33cef9fe5f9?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">davidappleyard</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2008/11/sharetool.jpg" medium="image">
			<media:title type="html">sharetool</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2008/11/picture-6.png" medium="image">
			<media:title type="html">picture-6</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2008/11/picture-31.png" medium="image">
			<media:title type="html">picture-31</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2008/11/picture-7.png" medium="image">
			<media:title type="html">picture-7</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2008/11/prefs.gif" medium="image">
			<media:title type="html">prefs</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s All Greek To Me: 15 Lorem Ipsum Resources</title>
		<link>http://gigaom.com/apple/its-all-greek-to-me/</link>
		<comments>http://gigaom.com/apple/its-all-greek-to-me/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 16:42:02 +0000</pubDate>
		<dc:creator>Bob Rudis</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[dashboard widget]]></category>
		<category><![CDATA[lorem ipsum]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://theappleblog.com/2008/02/14/its-all-greek-to-me/</guid>
		<description><![CDATA[Web designers, font purveyors, professional paginators and even application developers need sample data to test their layouts, creations and algorithms. &#8220;Lorem ipsum&#8221; has been the de-facto standard when placing non-distracting text into test areas and has been shown to exhibit characteristics of standard lettter, word and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=171300&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src='http://gigapple.files.wordpress.com/2008/02/1017147130_6e7c6daaef_t.jpg?w=604' alt='Lorem Ipsum'  style="margin-right:10px" class=" alignleft" />Web designers, font purveyors, professional paginators and even application developers need sample data to test their layouts, creations and algorithms. &#8220;Lorem ipsum&#8221; has been the de-facto standard when placing non-distracting text into test areas and has been shown to exhibit characteristics of standard lettter, word and space distribution. While one <em>could</em> just keep a copy of a few paragraphs of Cicero&#8217;s <i>De finibus bonorum et malorum</i> text around, there are many tools for your Mac (and on the Net) that make this task even easier.</p>
<h3>Ipsum Everywhere!</h3>
<p>If  Rosborough Technology&#8217;s <a href="http://www.rosboroughtech.com/lipServiceX.html">lipServiceX</a> (1.2) didn&#8217;t exist, someone would have built it. As an OS X Services menu item, it gives you quick and (almost) ubiquitous access to &#8220;lorem ipsum&#8221; no matter what application your using. A key combination makes this the quickest way to get some ipsum into your project.</p>
<h3>Dashboard Widgets</h3>
<p>While there isn&#8217;t exactly a plethora of widgets, the following ones cover all the ipsum bases:</p>
<ul>
<li><a href="http://www.apple.com/downloads/dashboard/developer/dolorsitamet.html">Dolor Sit Amet</a> (small &#038; quick)</li>
<li><a href="http://www.apple.com/downloads/dashboard/developer/cicero.html">Cicero</a> (gets the job done)</li>
<li><a href="http://www.apple.com/downloads/dashboard/reference/loremipsumwidget.html">Lorem Ipsum Widget</a> (fancy)</li>
<li><a href="http://www.apple.com/downloads/dashboard/developer/corporateipsum.html">Corporate Ipsum</a> &#8211; a humorous alternative to &#8220;lorem ipsum&#8221; (though it generates readable text, so it may distract proofers).</li>
</ul>
<h3>Editor-support</h3>
<ul>
<li><a href="http://macromates.com/">TextMate</a> has a built-in generator invoked via tab completion of the magic word.</li>
</ul>
<h3>Browser-based</h3>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2064">Dummy Lipsum</a> &#8211;  Firefox add-on</li>
<li>A very nice &#8220;ipsum&#8221; <a href="http://jimmont.com/resrc/bookmarklet.htm">bookmarklet generator</a></li>
</ul>
<h3>Online &#8220;lorem ipsum&#8221; generators</h3>
<p>While not exactly a comprehensive list, these sites get the job done:</p>
<ul>
<li><a href="http://www.lorem-ipsum.info/generator3">lorem-ipsum.info</> &#8211; My favourite; multi-lingual (enables character set anomaly testing)</li>
<li><a href="http://www.lipsum.com/">lipsum.com</a> &#8211; (the original?)</li>
</ul>
<h3>For the &#8220;do it yourself&#8221; folks</h3>
<ul>
<li><a href="http://jazzheaddesign.com/work/code/lorem">Lorem Scriptsum</a> &#8211; AppleScript script (with source and many options)</li>
<li><a href="http://search.cpan.org/dist/WWW-Lipsum/lib/WWW/Lipsum.pm">The classic Perl module</a></li>
<li><a href="http://code.google.com/p/lorem-ipsum-generator/">GTK+ GUI and Python module</a></li>
<li><a href="http://railstips.org/2007/4/29/lorem-ispum">Ruby ipsum</a></li>
</ul>
<p>Finally, this <a href="http://discuss.joelonsoftware.com/default.asp?joel.3.153477.11">Joel on Software forum discussion</a> is a great primer on the efficacy of even using standard &#8220;lorem ipsum&#8221; with some creative suggestions on alternatives. I&#8217;d be very interested in what tips and tools other TAB readers use to &#8220;get their ipsum on&#8221;, so drop a note in the comments!</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171300+its-all-greek-to-me&utm_content=hrbrmstr">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171300+its-all-greek-to-me&utm_content=hrbrmstr">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171300+its-all-greek-to-me&utm_content=hrbrmstr">The Near-Term Evolution of Social&nbsp;Commerce</a></li><li><a href="http://pro.gigaom.com/2011/02/content-farms-the-players-the-benefits-the-risks/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171300+its-all-greek-to-me&utm_content=hrbrmstr">Content Farms: The Players, The Benefits, The&nbsp;Risks</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=171300&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/its-all-greek-to-me/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a08d08f6b541441fccf36bc6392a0784?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">hrbrmstr</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2008/02/1017147130_6e7c6daaef_t.jpg" medium="image">
			<media:title type="html">Lorem Ipsum</media:title>
		</media:content>
	</item>
		<item>
		<title>Media Temple Caters to iPhone</title>
		<link>http://gigaom.com/apple/media-temple-caters-to-iphone/</link>
		<comments>http://gigaom.com/apple/media-temple-caters-to-iphone/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 22:25:51 +0000</pubDate>
		<dc:creator>Nick Santilli</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://theappleblog.com/2007/08/08/media-temple-caters-to-iphone/</guid>
		<description><![CDATA[Joining the ranks of iPhone-specific web applications, is the web hosting company, Media Temple (mt). Their angle is to offer iPhone-toting customers, access to control panel services for their (mt) hosted websites. Buy Domains, pay bills, reboot your server, and a slew of other options await [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=171023&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src='http://gigapple.files.wordpress.com/2007/08/mtiphone.jpg?w=604' alt='media temple iphone services'  class=" alignright" />Joining the ranks of iPhone-specific web applications, is the web hosting company, <a href="http://www.mediatemple.net/iphone/">Media Temple</a> (mt).  Their angle is to offer iPhone-toting customers, access to control panel services for their (mt) hosted websites.</p>
<p>Buy Domains, pay bills, reboot your server, and a slew of other options await the (mt)/iPhone crowd.  I don&#8217;t rock the (mt) hosting, nor are any of my personal sites so visible that I would need to do any of these things spur of the moment from my mobile phone, but maybe that&#8217;s just me.</p>
<p>I do think the concept is interesting.  The scope of &#8220;applications&#8221; for the iPhone is widening as companies [like Media Temple] begin to think outside the box of the typical Web 2.0 services.  It leads me to wonder how much all the iPhone-only web sites will track a return on their development efforts.  It&#8217;s not like Palm or Windows mobile devices have ever garnered so much attention from developers in the past &#8211; or rather, if they have, only a select few have taken notice.</p>
<p>What iPhone [web] services have you been waiting for?</p>
<p><em>Thanks for the tip Yas.</em></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171023+media-temple-caters-to-iphone&utm_content=nsantilli">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/01/mobile-q4-all-eyes-were-on-android-4g-and-the-rising-tablet-tide/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171023+media-temple-caters-to-iphone&utm_content=nsantilli">Mobile Q4: All Eyes Were on Android, 4G and the Rising Tablet&nbsp;Tide</a></li><li><a href="http://pro.gigaom.com/2010/12/report-a-mobile-video-market-overview/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171023+media-temple-caters-to-iphone&utm_content=nsantilli">Report: A Mobile Video Market&nbsp;Overview</a></li><li><a href="http://pro.gigaom.com/2010/10/in-q3-the-tablet-and-4g-were-the-big-stories/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=171023+media-temple-caters-to-iphone&utm_content=nsantilli">In Q3, the Tablet and 4G Were the Big&nbsp;Stories</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=171023&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/media-temple-caters-to-iphone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b8c07abfab9b4664fa5291cf99973aa?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">nicks</media:title>
		</media:content>

		<media:content url="http://gigapple.files.wordpress.com/2007/08/mtiphone.jpg" medium="image">
			<media:title type="html">media temple iphone services</media:title>
		</media:content>
	</item>
		<item>
		<title>Snapz + Skitch = Jing</title>
		<link>http://gigaom.com/apple/snapz-skitch-jing/</link>
		<comments>http://gigaom.com/apple/snapz-skitch-jing/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 14:00:33 +0000</pubDate>
		<dc:creator>Nick Santilli</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[How Do You Work?]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[grandcentral]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[skitch]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[speculation]]></category>
		<category><![CDATA[VOIP]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://theappleblog.com/2007/07/19/snapz-skitch-jing/</guid>
		<description><![CDATA[Alright, so while the title of this post is more or less accurate, the polish and full suite of capabilities are not there. But Jing certainly does a nice job of combining the power of Snapz Pro X&#8216;s video capture abilities with the simplicity of Skitch [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=170986&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.theappleblog.com/wp-content/uploads/jing-20070719-075758.jpg" alt="Jing project"  class=" alignleft" />Alright, so while the title of this post is more or less accurate, the polish and full suite of capabilities are not there.  But <a href="http://www.jingproject.com/">Jing</a> certainly does a nice job of combining the power of <a href="http://gigaom.com/apple/screencast-software-options/">Snapz Pro X</a>&#8216;s video capture abilities with the simplicity of <a href="http://gigaom.com/apple/skitch-updated-now-in-semi-public-beta/">Skitch</a> to grab screen captures.</p>
<p>Jing&#8217;s image editor is lightyears away from being as awesome as that of Skitch, so beyond the ability to grab a screen capture, there&#8217;s little similarity.  However like the <a href="http://myskitch.com/">MySkitch</a> service, you can quickly upload your pictures and video to an online storage service.  The video capture function seems slightly limited, in that you select a part of your screen, and [from what I could tell] it doesn&#8217;t allow the option to follow your cursor around.  Additionally, the video is compressed into a .swf Flash format.  That&#8217;s ok for embedding in websites, but limiting if you want to do much else with it.</p>
<p>Limitations aside, Jing is a really nice collection of tools and services for those who want to produce screencasts and take screen captures to share easily.  Jing is available for both Windows and OS X.  For now it&#8217;s free, but based on this quote,</p>
<blockquote><p>It’s something we want to give you, along with some online media hosting, to see how you use it. The project will eventually turn into something else.</p></blockquote>
<p>I&#8217;m weary of a bait-and-switch down the road.  Ok, maybe bait-and-switch is a bit of a harsh term.  Likely this method of product offering is just a good way to determine product and service placement for future projects.  But I read it as the service not remaining in this format forever, but only for the data-collection period.  Anyway, my conspiracy theory be darned, it&#8217;s worth a try.</p>
<p><em><strike>On a side note, I&#8217;ve got a handful of Skitch invites if anyone wants them.  Email me</strike>.  I&#8217;ll post whenever I get more, but for now they&#8217;re all gone.</p>
<p>Oh, and incidentally, I still used Skitch to grab/post the Jing graphic for this post.<br />
hahaha</em></p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=170986+snapz-skitch-jing&utm_content=nsantilli">Sign up for a free trial</a>.</p><ul><li><a href="?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=170986+snapz-skitch-jing&utm_content=nsantilli"></a></li><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=170986+snapz-skitch-jing&utm_content=nsantilli">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=170986+snapz-skitch-jing&utm_content=nsantilli">The Near-Term Evolution of Social&nbsp;Commerce</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=170986&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/snapz-skitch-jing/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b8c07abfab9b4664fa5291cf99973aa?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">nicks</media:title>
		</media:content>

		<media:content url="http://www.theappleblog.com/wp-content/uploads/jing-20070719-075758.jpg" medium="image">
			<media:title type="html">Jing project</media:title>
		</media:content>
	</item>
		<item>
		<title>Challenge: Make a Better .Mac</title>
		<link>http://gigaom.com/apple/challenge-make-a-better-mac/</link>
		<comments>http://gigaom.com/apple/challenge-make-a-better-mac/#comments</comments>
		<pubDate>Thu, 28 Jun 2007 16:52:29 +0000</pubDate>
		<dc:creator>Nick Santilli</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[cellulosic ethanol]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[dedicated energy crop]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[feedstock]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mendel Biotechnologies]]></category>
		<category><![CDATA[Monsanto]]></category>
		<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://theappleblog.com/2007/06/28/challenge-make-a-better-mac/</guid>
		<description><![CDATA[So for everyone who&#8217;s ever complained about the .Mac service, someone is finally trying to do something about it. The notMac Challenge is offering up a choice bounty (at least $10k!) for anyone who can develop a .Mac alternative that&#8217;s as easy to use as Apple&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=170949&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="excerpt">So for everyone who&#8217;s ever complained about the .Mac service, someone is finally trying to do something about it.  The <a href="http://www.notmacchallenge.com/">notMac Challenge</a> is offering up a choice bounty (at least $10k!) for anyone who can develop a .Mac alternative that&#8217;s as easy to use as Apple&#8217;s offering, but robust enough to be useful for everyone, and worth the equivalent cost.</p>
<p>I actually just signed up for the 30-day trial of .Mac the other day, to see if there were any features that would be especially useful to me.  So far, not seeing it.  But who knows.  The notMac Challenge is a big one, and I think the bounty &#8211; which at this point is $7500 which will be matched, up to $10,000, so upwards of $20 thousand! &#8211; will be much deserved if anyone can crack that nut.</p>
<p><a href="http://chrisholland.blogspot.com/">Thanks to Chris</a> for sending this tip over.</p>
<p><strong>Related research and analysis from GigaOM Pro:</strong><br />Subscriber content. <a href="http://pro.gigaom.com/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=170949+challenge-make-a-better-mac&utm_content=nsantilli">Sign up for a free trial</a>.</p><ul><li><a href="http://pro.gigaom.com/2011/03/why-ipad-2-will-lead-consumers-into-the-post-pc-era/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=170949+challenge-make-a-better-mac&utm_content=nsantilli">Why iPad 2 Will Lead Consumers Into the Post-PC&nbsp;Era</a></li><li><a href="http://pro.gigaom.com/2011/03/the-near-term-evolution-of-social-commerce/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=170949+challenge-make-a-better-mac&utm_content=nsantilli">The Near-Term Evolution of Social&nbsp;Commerce</a></li><li><a href="http://pro.gigaom.com/2011/02/content-farms-the-players-the-benefits-the-risks/?utm_source=apple&utm_medium=editorial&utm_campaign=auto3&utm_term=170949+challenge-make-a-better-mac&utm_content=nsantilli">Content Farms: The Players, The Benefits, The&nbsp;Risks</a></li></ul><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gigaom.com&amp;blog=14960843&amp;post=170949&amp;subd=gigaom2&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gigaom.com/apple/challenge-make-a-better-mac/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b8c07abfab9b4664fa5291cf99973aa?s=96&#38;d=retro&#38;r=PG" medium="image">
			<media:title type="html">nicks</media:title>
		</media:content>
	</item>
	</channel>
</rss>
