<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Matt Cutts: Gadgets, Google, and SEO &#187; iPhone</title>
	<atom:link href="http://www.mattcutts.com/blog/type/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattcutts.com/blog</link>
	<description>neat fun stuff</description>
	<lastBuildDate>Thu, 23 May 2013 15:53:32 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Hack your iPhone: install a toolchain</title>
		<link>http://www.mattcutts.com/blog/hack-your-iphone-install-a-toolchain/</link>
		<comments>http://www.mattcutts.com/blog/hack-your-iphone-install-a-toolchain/#comments</comments>
		<pubDate>Mon, 13 May 2013 04:23:17 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Weblog/blog]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=790</guid>
		<description><![CDATA[This &#8220;hairball&#8221; post is ancient and unfinished. Would anyone care about this now? Probably not. Maybe some future data archaeologist will care. In my previous post I covered what a toolchain is and why you need one to cross-compile applications for the iPhone. I&#8217;ve seen rumors that there will be a Windows toolchain soon, and [...]]]></description>
				<content:encoded><![CDATA[<p><em>This &#8220;hairball&#8221; post is ancient and unfinished. Would anyone care about this now? Probably not. Maybe some future data archaeologist will care.</em></p>
<p>In my previous post I covered <a href="http://www.mattcutts.com/blog/hack-your-iphone-toolchains-and-cross-compilers/">what a toolchain is and why you need one to cross-compile applications for the iPhone</a>.</p>
<p>I&#8217;ve seen rumors that there will be a Windows toolchain soon, and in theory you can create an iPhone toolchain on older Apple computer with PowerPC chips, but most of the iPhone development these days seems to favor the newer Intel-based Apple computers.</p>
<p>One of the best resources for all iPhone related info is the iPhone dev wiki at http://iphone.fiveforty.net/wiki/index.php/Main_Page (unlinked because the wiki maintainers aren&#8217;t sure that they can handle lots of visitors and request that people not link directly). The toolchain page at http://iphone.fiveforty.net/wiki/index.php?title=Toolchain_Project has a lot of details, and the talk page (look for the link labeled &#8220;discussion&#8221;) gives even more background. But those pages are really terse.</p>
<p>Here&#8217;s a little more background info, and I&#8217;ll include some additional links at the end.</p>
<p><strong>Getting gcc</strong></p>
<p>Did you know that recent Apple computers (and even the iPhone) ships with a solid UNIX-based kernel? You might have heard that. Something I didn&#8217;t know is that Apple computers don&#8217;t ship with a compiler such as gcc pre-installed. It should be on the DVD that came with your computer; Apple calls its developer tools Xcode, and Xcode includes gcc.</p>
<p>You can also download Xcode/gcc from the web. Visit <a href="http://connect.apple.com/">http://connect.apple.com/</a> and sign up for a (free) developer account. After you sign up, the &#8220;Downloads&#8221; link will become clickable. Click that, then click the &#8220;Developer Tools&#8221; link. I downloaded Xcode 2.4.1, although there is a beta of Xcode 2.5 available as of today. The download is a DMG file, which stands for &#8220;Disk Image.&#8221; Double-clicking on the .dmg file will mount the disk image and open a file folder that includes the file &#8220;XcodeTools.mpkg&#8221; and if you double-click on that package, you&#8217;ll get a window that guides you through the installation of Xcode Tools. When you&#8217;re done, you can type &#8220;which gcc&#8221; in a Terminal window and you&#8217;ll see that gcc is installed.</p>
<p><strong>Downloading toolchain code</strong></p>
<p>Are you tired yet? Then you might want to take a break, because things are just getting started. For example, the first thing you&#8217;ll read on the wiki toolchain page is:</p>
<blockquote><p>
To use the new toolchain, check out the latest branch (as of this writing, 0.20):</p>
<p>svn checkout svn://svn.berlios.de/iphone-binutils/branches/alpha/0.20/
</p></blockquote>
<p>And you might be thinking &#8220;What the heck is svn?&#8221; It&#8217;s a program called Subversion, and it lets you check out source code across the web. Here&#8217;s a page about how to <a href="http://www.wikihow.com/Install-Subversion-on-Mac-OS-X">install Subversion on a Mac</a>. The short answer is that there&#8217;s a couple ways. First, you can install a program called Fink that in turn helps you install more UNIX-related programs such as Subversion. Or you can download a Disk Image file, click the .dmg file, and install svn directly.</p>
<p><strong>Getting Libstreams</strong></p>
<p>The next thing to do on the iPhone dev wiki page says</p>
<blockquote><p>Download libstreams from Apple&#8217;s web site, compile it, and install it.</p></blockquote>
<p>And I&#8217;m thinking &#8220;Could they get any more terse?&#8221; Plus the dev wiki is locked down to prevent wiki vandalism, so only a few people can edit that wiki. Thanks a lot, wiki spammers, you jerks. Now everybody has to interpret terse instructions on their own and can&#8217;t update the wiki with more detailed instructions.</p>
<p>To get/install Libstreams, it looks like you can fetch the correct source (PowerPC/PPC or Intel/x86) from<br />
<a href="http://publicsource.apple.com/darwinsource/10.4.9.x86/Libstreams-24.1/">http://publicsource.apple.com/darwinsource/10.4.9.x86/Libstreams-24.1/</a> or<br />
<a href="http://publicsource.apple.com/darwinsource/10.4.9.ppc/Libstreams-24.1/">http://publicsource.apple.com/darwinsource/10.4.9.ppc/Libstreams-24.1/</a></p>
<p>You&#8217;ll have to log in with an Apple ID. Once you log in, you see about 20 files. Download each one in turn into a single directory, and make sure that you save the files as raw files, not html. Do that by mousing over a file, doing a control-click on the filename, select &#8220;Save Link As&#8230;&#8221; and make sure to change the &#8220;Format:&#8221; drop-down selector from &#8220;HyperText&#8221; to &#8220;All Files.&#8221;</p>
<p>Once you have all the libstreams files in one directory, open a Terminal window, cd into that directory, and type &#8220;make&#8221; to make the libstreams.a library. Then type &#8220;sudo make install&#8221; to install the library into the right location on your Apple computer.</p>
<p>Are you still with me? Because we&#8217;re really just getting started. Next the wiki says</p>
<blockquote><p>Get a copy of the iPhone system software, and set the environment variable HEAVENLY to its location (export HEAVENLY=/path/to/iphone/software).</p></blockquote>
<p>Unless you&#8217;re a real geek, you&#8217;re probably thinking &#8220;What the @#$% does that even mean?&#8221; Well, review my toolchain and cross-compiling post. In order to build a proper toolchain, we need some of the software that is only found on the iPhone (header files? libraries? I&#8217;m not 100% sure). Since we&#8217;re cross-compiling on (say) an Apple computer, that means that we need iPhone software on our Apple desktop machine. That&#8217;s a little bit of a problem. In theory, you could copy your iPhone&#8217;s filesystem to your computer. There&#8217;s even a program called Toolchain Helper mentioned at http://iphone.fiveforty.net/wiki/index.php/Toolchain_Helper that does that. But Toolchain Helper doesn&#8217;t run on a pristine iPhone; you need to &#8220;jailbreak&#8221; your iPhone first. You can also run AppTapp/Installer.app to let you install the Toolchain Helper.</p>
<p>There is another way to get the iPhone software onto your computer. Apple provides the disk image (DMG) file for iPhone software. Woohoo! Except that it&#8217;s encrypted. Bleah. But someone figured out how to decrypt the software! Woohoo! Except that some people worry that decrypting the software might be a violation of the Digital Millennium Copyright Act (DMCA). Bleah. But lots of people believe that reverse-engineering software for the purposes of interoperability is legal! Woohoo! And the DMCA contains an explicit exemption for <a href="http://arstechnica.com/news.ars/post/20061124-8280.html">unlocking cell phones in some circumstances</a>. Woohoo! If you&#8217;re at all nervous about decrypting a DMG file, then don&#8217;t. Consult with your local lawyer to see what your comfort level is.</p>
<p>The best instructions I&#8217;ve seen to extract the iPhone DMG contents are <a href="http://landonf.bikemonkey.org/code/iphone/Toolchain_In_MacPorts.20070812.html">Landon Fuller&#8217;s post</a>. He has a link to some modified source code to a program called vfdecrypt, but for some reason when I compiled vfdecrypt it wouldn&#8217;t work for me on the DMG file. There&#8217;s a precompiled vfdecrypt file to be found at <a href="http://ellkro.jot.com/HowToBuildObjCApps">http://ellkro.jot.com/HowToBuildObjCApps</a> inside of the phonedmg12.tar.gz file on that page.</p>
<p>And that, sadly, is as far as I&#8217;ve gotten so far. I haven&#8217;t managed to compile a working toolchain myself yet. I&#8217;m using an older PowerPC Mac, and trying to compile things caused errors for me. I enjoyed playing around with toolchains for a day, but I don&#8217;t have much more time to invest in this. It&#8217;s clear that building a toolchain is still not for the weak of heart. On the bright side, once you have a working toolchain, it looks like there are a ton of cool applications you could write.</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/hack-your-iphone-install-a-toolchain/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/hack-your-iphone-install-a-toolchain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mini-review of the iPad</title>
		<link>http://www.mattcutts.com/blog/mini-review-of-the-ipad/</link>
		<comments>http://www.mattcutts.com/blog/mini-review-of-the-ipad/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 20:54:39 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[Gadgets/Hack]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=3858</guid>
		<description><![CDATA[I played with an iPad yesterday. Here&#8217;s my mini-review. The screen is bright and the touch sensitivity is fantastic. Given that it reminds me the most of an iPhone, it&#8217;s surprisingly heavy. It feels dense with potential. On the childlike-sense-of-wonder-scale (as fake Steve Jobs would say), the iPad is better than the Macbook Air but [...]]]></description>
				<content:encoded><![CDATA[<p>I played with an <a href="http://www.apple.com/ipad/">iPad</a> yesterday. Here&#8217;s my mini-review. The screen is bright and the touch sensitivity is fantastic. Given that it reminds me the most of an iPhone, it&#8217;s surprisingly heavy. It feels dense with potential.</p>
<p>On the childlike-sense-of-wonder-scale (as <a href="http://www.fakesteve.net/2010/04/an-open-letter-to-the-people-of-the-world.html">fake Steve Jobs</a> would say), the iPad is better than the Macbook Air but not as stunning as the iPhone when the iPhone first came out. I played with my wife&#8217;s iPhone for just a few minutes before I knew I had to have an iPhone. But I never really cared about the Macbook Air, mainly because the screen resolution was worse than my current laptop. The iPad fits between those two products in the spectrum of desirability for me.</p>
<p>The form factor is&#8230; weird. You&#8217;re going to feel strange carrying one of these into the grocery store, in the same way you felt weird using your cell phone in the grocery store at first. Leave it to Apple to blaze a trail of coolness though; the iPad will make this form factor acceptable, so you won&#8217;t feel quite as strange carrying a tablet into a meeting in a few months. The form factor fundamentally is awkward though: the iPad is book-sized, but much more delicate than a book. A screen this big with no protection will get scratched or scuffed. I&#8217;d expect to see plenty of articles about dropped iPads like you did about <a href="http://www.google.com/search?hl=en&#038;tbo=p&#038;tbs=vid:1&#038;q=wiimote+accident">Wiimotes getting thrown into TVs and windows</a>.</p>
<p>The gadget lover in me wants one, but the part of me that cares about open source and tinkering is stronger. I&#8217;m with <a href="http://www.boingboing.net/2010/04/02/why-i-wont-buy-an-ipad-and-think-you-shouldnt-either.html">Cory Doctorow</a> on this one. The iPad is gorgeous, but it&#8217;s still not worth it for me. Yesterday, I also bought two books at the bookstore to read on a trip. Walking back to my car with &#8220;paper media&#8221; felt a bit dorky&#8211;why am I buying books on paper in 2010? If I could buy a book digitally and really own it (not just obtain a license to read a book, where the license could be revoked), I&#8217;d quickly switch to buying my books digitally. But the success of the Kindle shows that a lot of people care more about the convenience than <a href="http://www.nytimes.com/2009/07/18/technology/companies/18amazon.html">completely owning what they&#8217;re buying digitally</a>.</p>
<p>I think the iPad will be a huge hit. Non-tech-savvy consumers will love it because of the user experience, the simplicity, and the lack of viruses/malware/trojans. It&#8217;s like a computer without all the hassles of a typical computer (pre-installed crapware, anti-virus software, inconvenient software upgrades). Lots of tech-savvy consumers will love the iPad for the same reasons, and especially for the polish and user experience. The current iPad lacks a few things (such as a camera), which ensures that future generations of the iPad will also be a huge hit.</p>
<p>But the iPad isn&#8217;t for me. I want the ability to run arbitrary programs without paying extra money or getting permission from the computer manufacturer. Almost the only thing you give up when buying an iPad is a degree of openness, and tons of people could care less about that if they get a better user experience in return. I think that the iPad is a magical device <a href="http://al3x.net/2010/01/28/ipad.html">built for consumers</a>, but less for <a href="http://diveintomark.org/archives/2010/01/29/tinkerers-sunset">makers or tinkerers</a>. I think the world needs more makers, which is why I don&#8217;t intend to buy an iPad. That said, I think the typical consumer will love the iPad.</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/mini-review-of-the-ipad/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/mini-review-of-the-ipad/feed/</wfw:commentRss>
		<slash:comments>94</slash:comments>
		</item>
		<item>
		<title>Leaving the iPhone</title>
		<link>http://www.mattcutts.com/blog/switch-iphone-to-android/</link>
		<comments>http://www.mattcutts.com/blog/switch-iphone-to-android/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 17:42:06 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[30 days]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=3641</guid>
		<description><![CDATA[I&#8217;m three weeks into a new 30 day challenge: no iPhone. When I got a Nexus One in December, I spent a few weeks carrying both phones around in the pockets of my jeans. It took a little while to adapt to Android, but I&#8217;m very happy with my Nexus One and I don&#8217;t plan [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m three weeks into a new 30 day challenge: no iPhone. When I got a Nexus One in December, I spent a few weeks carrying both phones around in the pockets of my jeans. It took a little while to adapt to Android, but I&#8217;m very happy with my Nexus One and I don&#8217;t plan to go back to the iPhone. Both the iPhone and Android are great operating systems, but it&#8217;s important to me that I can write or run the applications I choose on my phone.</p>
<p>The best way I can describe the transition is to read <a href="http://techcrunch.com/2010/01/09/android-iphone-switch/">this article by Jason Kincaid</a> and <a href="http://daggle.com/impression-wrong-android-nice-iphone-1607">this article by Danny Sullivan</a>. Danny contends that the iPhone is better, mentioning that after &#8220;literally an hour or less of playing with my wife’s iPhone&#8221; he was an iPhone convert.</p>
<p>I think both Danny and Jason are right in some ways. Like Danny, it only took me a couple hours of playing with my wife&#8217;s iPhone before I knew that I had to have one. In a post that I wrote in 2007 but never published, I said &#8220;I think the iPhone is going to be a monster hit.&#8221; And it was. But here&#8217;s the thing: I was comparing the iPhone to my previous phone, which was an <a href="http://www.amazon.com/LG-VX9900-Silver-Verizon-Wireless/dp/B000LNOFH0">LG enV</a>. That was like comparing a Ferrari to a old station wagon.</p>
<p>If you&#8217;re coming from a feature phone (or almost any type of phone other than an iPhone 3GS), you&#8217;ll probably love Android right away. But if you&#8217;re already an iPhone power user? Well, you&#8217;ve learned how things work on an iPhone. Maybe you have your music in iTunes, and you&#8217;ve already built up a list of favorite apps. That makes switching to a different make of phone much harder. Jason Kincaid describes it well: &#8220;Imagine if you took a longtime Windows user and sat them in front of a Mac for a couple days.&#8221; Things seem weird and different in arbitrary ways, like the power button is on the other side of the phone. But those things fade away after a few days of using Android, and you&#8217;re left with a powerful platform that feels like it&#8217;s under your control.</p>
<p>Do I still miss a few things on the iPhone? Absolutely. For example, the iPhone makes it easy to take a snapshot of the screen &#8212; just press the power and home button at the same time. The iPhone fits 20 apps on the home screen instead of 16 on the Nexus One. I use a password for my phone, and the iPhone has a setting that says &#8220;If you&#8217;ve used the phone in the last N hours, don&#8217;t lock the phone,&#8221; while the Nexus One needs me to unlock it each time I wake it up. I prefer the default ringtones on the iPhone. I preferred the iPhone&#8217;s finance app for the news sources it showed.</p>
<p>But the Nexus One outshines the iPhone in other ways. Voice recognition built into every text box. Google Voice. And judging from the jitter in Google <a href="http://www.google.com/sky/skymap.html">Sky Map</a> vs. the iPhone <a href="http://www.readwriteweb.com/archives/yelp_brings_first_us_augmented_reality_to_iphone_s.php">Yelp <del datetime="2010-02-23T03:26:50+00:00">Monacle</del> Monocle</a>, I think the sensors in the Nexus One are a little more robust. Once you use the high-resolution screen on the Nexus One, it&#8217;s hard to go back to the iPhone (and the screen on the Droid is very nice too). And I love kicking off a <a href="http://twit.tv/twig">podcast</a> in <a href="http://listen.googlelabs.com/">Listen</a> and then multitasking in a web browser.</p>
<p>The iPhone is praised (rightly so) for its fit-and-finish. But glitches happen on the iPhone too. I went back to check on something a few weeks ago and the iPhone browser kept dying and kicking me back out to the home screen. Overall, I would still rate the iPhone higher on fit and finish, and the iPhone is simpler for a non-tech-savvy person to understand. But polish and simplicity aren&#8217;t the most important things to me as a phone user. I want maximum functionality, and the velocity of Android in that area has been staggering. Going from the G1 to the Nexus One in about a year is amazing. I can&#8217;t wait to see what new things show up in Android.</p>
<p>Ultimately though, what matters the most to me is control. I have a simple rule of thumb, which is that <strong>I don&#8217;t put data somewhere that I can&#8217;t get it back</strong>. That&#8217;s the reason that I didn&#8217;t buy songs in iTunes, purchase ebooks for the Amazon Kindle, or really log into Facebook at all. It&#8217;s also the reason that I recently <a href="http://www.mattcutts.com/blog/30-days-no-microsoft-software/">switched my computer from Microsoft Windows to Ubuntu Linux</a>. With Android, I feel like I have more control. It&#8217;s pretty easy to <a href="http://www.mattcutts.com/blog/install-android-on-ubuntu/">write your own programs</a> for free. My contacts and calendar and email are sync&#8217;ed with Google, which lets me easily <a href="http://www.mattcutts.com/blog/not-trapping-users-data-good/">export that data</a>. I can put widgets or folders or whatever I want on my phone&#8217;s home screen. And yes, I could install an app to <a href="http://techcrunch.com/2010/02/20/app-store-rules-sexy/">wobble pictures</a> if I wanted to. Why? Because phones are increasingly mini-computers with a phone attached, and I should be allowed to run the programs I want on my own computer.</p>
<p>I could ramble on about the iPhone compared the Nexus One (both really are great phones in different ways), but I&#8217;ll wrap up this post. But my 30 days with no iPhone is going so well that last week I started a new 30 day challenge. My new <a href="http://www.mattcutts.com/blog/type/30-days/">30 day challenge</a> is reducing my sugar consumption. I won&#8217;t be able to get to 0% sugar (even A1 steak sauce has sugar as an ingredient?!?), but I&#8217;m trying to stop eating sugar, candy, Splenda, and anything with sugar as a primary ingredient, even (sob) yogurt. You have to understand, <a href="http://www.mattcutts.com/blog/best-yogurt-in-silicon-valley/">I love yogurt</a>. Wish me luck: only 27 more days to go. Sigh.</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/switch-iphone-to-android/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/switch-iphone-to-android/feed/</wfw:commentRss>
		<slash:comments>143</slash:comments>
		</item>
		<item>
		<title>Finding the best cell phone carrier</title>
		<link>http://www.mattcutts.com/blog/map-cell-phone-strength/</link>
		<comments>http://www.mattcutts.com/blog/map-cell-phone-strength/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 15:20:35 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Gadgets/Hack]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=3624</guid>
		<description><![CDATA[Okay, someone tell me if this device exists (or build it!). I want a device where I can pay $10-15 to get a gadget in the mail. The gadget would sit in my pocket for a week wherever I go. The device would record cell phone signal strength for each of the four major U.S. [...]]]></description>
				<content:encoded><![CDATA[<p>Okay, someone tell me if this device exists (or build it!). I want a device where I can pay $10-15 to get a gadget in the mail. The gadget would sit in my pocket for a week wherever I go. The device would record cell phone signal strength for each of the four major U.S. carriers every few seconds. After a week or so, the device would deliver the verdict on which cell phone carrier would have the strongest signal for me. Then I could mail the device back so someone else could use it &#8212; sort of a Netflix-like model to temporarily borrow this device.</p>
<p>At any point, I could go to a web page to view a map of where I&#8217;d been. The page would show a &#8220;heat map&#8221; of signal strength for each carrier or frequency band. Maybe I could also slice/dice by time or see the total number of readings in each location. I&#8217;m pretty sure you could rig this up out of 2-3 cell phones running Android in the worst case.</p>
<p>So far, I&#8217;ve found:</p>
<p><strong>Android</strong></p>
<p>- <a href="http://sites.google.com/site/androiddevelopmentproject/home/rf-signal-tracker">RF Signal Tracker</a> is a nice app to collect and map signal strength data. It looks like it can upload to <a href="http://www.opencellid.org/">OpenCellID</a>, which is a project to create an open database of cell IDs (numbers that correspond to cells).<br />
- <a href="http://www.panix.com/~mpoly/android/antennas/r1.0/">Antennas</a> is a pretty cool free app to show you nearby antennas and signal strength. It can even export some data in KML for use with Google Maps/Earth, but it doesn&#8217;t seem to make a heat map that could be easily grokked.<br />
- <a href="http://www.sensorly.com/">Sensorly</a> has a free Android app, but they seem to want you to pay to zoom in closer than city level. I&#8217;m willing to do that, but didn&#8217;t see the for-pay addon in the Android Market.</p>
<p><strong>iPhone</strong></p>
<p>- I also found an <a href="http://www.sudobility.com/Signals.html">iPhone app called Signals</a> that will continuously collect signal data and upload it.<br />
- AT&#038;T offers an iPhone app called <a href="http://www.wired.com/gadgetlab/2009/12/iphone-app-reports-dropped-calls-poor-voice-quality-to-att/">Mark the Spot</a> to report dropped calls, no coverage, etc. I have to admit that I don&#8217;t understand why this is manual though. Personally, I&#8217;d want my phone to ping my carrier with its location every time the phone dropped a call.</p>
<p><strong>Web</strong></p>
<p>- <a href="http://www.signalmap.com/">SignalMap</a> is a website to (manually!) submit the number of bars for a location. It doesn&#8217;t appear to have any mobile app to back it up. Likewise, <a href="http://www.deadcellzones.com/">Dead Cell Zones</a> and <a href="http://www.gotreception.com/">Got Reception?</a> appear to rely on manual reports. I don&#8217;t think manual reports is the best way to tackle cell phone coverage maps though &#8212; you really want an app for this.<br />
- <a href="http://www.cellreception.com/">http://www.cellreception.com/</a> has the standard manual reports data, but also will map the location of cell phone towers based on the location of cell phone towers registered with the FCC.<br />
- <a href="http://www.rootwireless.com/">Root Wireless</a> powers the <a href="http://reviews.cnet.com/cell-phone-coverage-map/">cell phone signal strength maps</a> that CNET uses, but I didn&#8217;t see any apps I could download or install on a phone. I registered to be a beta tester a long time ago, but no one ever contacted me.</p>
<p>That&#8217;s what I could find. <strong>Do you know of any good Android (or iPhone) programs to collect, map, or upload cell phone strength measurements?</strong> If so, let me know in the comments.</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/map-cell-phone-strength/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/map-cell-phone-strength/feed/</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>Hidden Google Gem: Google Mobile App</title>
		<link>http://www.mattcutts.com/blog/google-mobile-app/</link>
		<comments>http://www.mattcutts.com/blog/google-mobile-app/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 15:53:37 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[Google/SEO]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=3039</guid>
		<description><![CDATA[We recently recorded a video of one of my favorite &#8220;hidden gems&#8221; at Google: the Google Mobile App, which does voice recognition to make searches easier on a mobile phone. It&#8217;s available for the iPhone, Android phones, BlackBerry, Nokia S60, and Windows Mobile. In the video below, I ran the Google Mobile App through its [...]]]></description>
				<content:encoded><![CDATA[<p>We recently recorded a video of one of my favorite &#8220;hidden gems&#8221; at Google: the <a href="http://www.google.com/mobile/products/search.html">Google Mobile App, which does voice recognition</a> to make searches easier on a mobile phone. It&#8217;s available for the iPhone, Android phones, BlackBerry, Nokia S60, and Windows Mobile. In the video below, I ran the Google Mobile App through its paces on an iPhone:</p>
<p><center><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/SuzjyVjQBXA&#038;hl=en&#038;fs=1&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/SuzjyVjQBXA&#038;hl=en&#038;fs=1&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></center></p>
<p>We basically decided to say queries until something went badly wrong, and I almost ran out of queries. I did:<br />
[behavioral economist]<br />
[ed felten dmca]<br />
[fox theater redwood city california]<br />
[time in beijing]<br />
[39 centimeters in inches]<br />
[answer to life the universe and everything]<br />
[safebrowsing api safari firefox]<br />
<a href="http://www.mattcutts.com/images/spam-pinata.jpg">[custom made pinata]</a> < &#8211; this got recognized as [old custom made pinata], but the search results were still fine<br />
[google quality guidelines]<br />
[sheraton hotel boston massachusetts]</p>
<p>I can&#8217;t promise that the voice recognition work as well for you, but I have noticed that the voice recognition has improved considerably since the mobile app first launched. If the recognition doesn&#8217;t quite understand your accent, I hope it will in the future. Give it a try though, because you might like it.</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/google-mobile-app/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/google-mobile-app/feed/</wfw:commentRss>
		<slash:comments>44</slash:comments>
		</item>
		<item>
		<title>My review of the iPhone 3GS</title>
		<link>http://www.mattcutts.com/blog/iphone-3gs-review/</link>
		<comments>http://www.mattcutts.com/blog/iphone-3gs-review/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 04:22:57 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[Gadgets/Hack]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=2712</guid>
		<description><![CDATA[Disclaimer: This post is entirely my personal opinion. I also own an HTC T-Mobile G1, which runs Google&#8217;s Android operating system. I picked up the new iPhone 3G S this Friday and I thought I&#8217;d jot down a few thoughts: The Good: - The iPhone 3GS is considerably faster than the iPhone 3G. Especially in [...]]]></description>
				<content:encoded><![CDATA[<p><em>Disclaimer: This post is entirely my personal opinion. I also own an <a href="http://www.htc.com/www/product/g1/overview.html">HTC T-Mobile G1</a>, which runs Google&#8217;s Android operating system.</em></p>
<p>I picked up the new iPhone 3G S this Friday and I thought I&#8217;d jot down a few thoughts:</p>
<p><strong>The Good:</strong><br />
- The iPhone 3GS is <strong>considerably faster</strong> than the iPhone 3G. Especially in the browser, you&#8217;ll notice pages render faster. JavaScript-heavy pages (such as the mobile web version of Gmail) execute much more smoothly. The iPhone 3GS feels less like an underpowered mobile phone and more like a powerful pocket computer that can keep up with its owner.<br />
- The built-in video camera is very cool. I expect a corresponding spike in home videos. For example, here&#8217;s my cat Ozzie playing with a toy:</p>
<p><center><object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/cMcKgfbMm3k&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/cMcKgfbMm3k&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></center></p>
<p>More seriously, within about five years, for any group of 10 or more people, at least a few will have a video camera built into their phone. That&#8217;s a very <a href="http://www.youtube.com/results?search_type=&#038;search_query=iran+election&#038;aq=f">powerful trend</a> in a lot of ways.<br />
- I tend to <a href="http://www.techcrunch.com/2009/06/20/flip-has-little-chance-in-an-iphone-world/">agree with Michael Arrington</a> that no one with an iPhone 3GS needs a Flip video camera now. Cisco bought Pure Digital Technologies, the makers of the Flip, for <a href="http://news.cnet.com/8301-1023_3-10199960-93.html">almost $600 million dollars</a> about three months ago. That might prove to be good timing on Pure Digital&#8217;s part.<br />
- Lots of small changes in OS 3.0 are quite nice, such as showing outgoing vs. incoming calls in the &#8220;Recents&#8221; list.</p>
<p><strong>The Bad:</strong><br />
- Apple&#8217;s iPhone philosophy has always seemed to me to be about simplicity. The single button forced a constrained elegance on the iPhone&#8217;s interface. In providing some newer features, the iPhone 3G S feels less like an iPhone and more like someone shoveled in a lot of features. I didn&#8217;t really need copy/paste, and it seems to pop up at random inconvenient times: double-tap a word if you&#8217;re not in the browser; in the browser, hold your finger on some text. Except the copy handles don&#8217;t seem to show up on the web pages I want, and sometimes unwanted copy handles appear when I&#8217;m just scrolling with my finger.<br />
- The iPhone 3GS is not the huge leap that the iPhone or the iPhone->iPhone 3G was. I do think that leaves some opportunities for Android, Palm, and other competitors.<br />
- Battery life has been worse so far for me. I&#8217;ve been using the phone more and it&#8217;s only been a few days, so I&#8217;m not going to jump to conclusions on this yet. Apple also recommends that you let the phone <a href="http://www.apple.com/batteries/iphone.html">run down completely at least once a month</a>, and I haven&#8217;t done that yet. I expect that battery life will be better for most people.<br />
- Not a great name; the &#8220;GS&#8221; part makes me think of <a href="http://www.ghostscript.com/">Ghostscript</a>. A few days ago, I would have said that the &#8220;iPhone Video&#8221; is a much better name, but it&#8217;s true that the speed bump is more noticeable than the video. I still think Apple could have come up with a better name than &#8220;iPhone 3G S&#8221; though. I&#8217;m sure someone who knows about Mercedes Benz cars knows the difference between the E class, the SLK class, or the GL 420 CDI, but most normal people don&#8217;t know what a bunch of letters and numbers mean.</p>
<p><strong>The Ugly:</strong><br />
- On my previous iPhone (the 3G), the metal band around the front matched smoothly with the black plastic back. On the new iPhone 3GS, I can feel the seam where the band meets the plastic. On the front of the phone, when I flick my finger off the glass, I can feel the seam of the metal band there too.<br />
- In my personal opinion, someone miscalculated in charging iPhone 3G owners $200 extra to upgrade. New iPhone 3G S customers pay $199 (16GB) or $299 (32GB); many early adopters would have to pay $399 (16GB) or $499 (32GB) to upgrade. The CPU speed bump and video abilities aren&#8217;t enough to counteract what many early adopters will perceive as a bit of a slap in the face. Last year, the line for the iPhone 3G at Valley Fair stretched outside the building most of the day. When I went to get my iPhone 3G S on the release day at Valley Fair this year, there was no line at all.</p>
<p>And remember that early adopters often give their previous phones to family members. In my case, two other relatives are taking our older iPhone 3G phones and moving from a different carrier to AT&#038;T. By charging early adopters more, AT&#038;T ensures that more people will hang on to their old phones instead giving them to other people, many of whom would then become AT&#038;T/iPhone customers. By limiting the &#8220;trickle down&#8221; effect as older iPhones go to family members, AT&#038;T is missing a chance to gain more marketshare by acquiring additional new customers.</p>
<p>I&#8217;ll be interested to see how Apple and AT&#038;T react. AT&#038;T has already allowed some (but not all) iPhone 3G owners to upgrade without paying an &#8220;early adopter penalty.&#8221; And Apple can move quickly and decisively when needed&#8211;remember the $200 iPhone price drop in 2007 just a short time after the iPhone was released? Of course, it&#8217;s possible that penalizing early adopters is all part of some four-dimensional chess game that Apple is playing. If Apple decides to terminate its exclusive U.S. deal with AT&#038;T in a year or so, maybe it didn&#8217;t want a bunch of people signing up for two-year contracts this time around? Right now I&#8217;m puzzled by what appears to me to be a misstep, but the folks at Apple are smart, so I&#8217;d be willing to believe that Apple has good reasons for what they&#8217;re doing.</p>
<p>Should you upgrade? That&#8217;s something only you can answer. If you still have a non-smartphone or an original iPhone, it&#8217;s probably worth it. If you have an iPhone 3G (especially if you&#8217;re not eligible for the discounted upgrade yet), you might try OS 3.0 and see if that&#8217;s enough. I decided to get the 3G S and I&#8217;m glad that I did. I fill all sorts of idle moments with surfing, <a href="http://twitter.com/mattcutts">tweeting</a>, and checking my mail. The iPhone 3G S makes all those activities much faster and more pleasurable. Overall I&#8217;m quite happy with my iPhone 3G S.</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/iphone-3gs-review/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/iphone-3gs-review/feed/</wfw:commentRss>
		<slash:comments>77</slash:comments>
		</item>
		<item>
		<title>9 tips for the Google Mobile App for iPhone</title>
		<link>http://www.mattcutts.com/blog/9-google-mobile-iphone-tips/</link>
		<comments>http://www.mattcutts.com/blog/9-google-mobile-iphone-tips/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 07:20:57 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[Google/SEO]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=1465</guid>
		<description><![CDATA[Here are some tips to help you get the most out of Google&#8217;s new Mobile Application for the iPhone. To get Google Mobile App on your iPhone, go to the App Store and search for &#8220;Google Mobile App,&#8221; or click on this link to install from a computer. If you have an older version of [...]]]></description>
				<content:encoded><![CDATA[<p>Here are some tips to help you get the most out of Google&#8217;s new Mobile Application for the iPhone.</p>
<ol>
<li>To get Google Mobile App on your iPhone, go to the App Store and search for &#8220;Google Mobile App,&#8221; or click on <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=284815942&#038;mt=8">this link</a> to install from a computer. If you have an older version of Google Mobile App installed, you might want to uninstall the older version before installing the newer version.</li>
<li>Voice recognition is turned off by default for non-U.S. users. To enable voice recognition, click on the &#8220;Settings&#8221; tab at the bottom of the screen and slide &#8220;Voice Search&#8221; to ON.</li>
<li>If you hold the iPhone up to your ear and don&#8217;t hear the &#8220;baBUM&#8221; sound to start talking, swing the iPhone down and back up to your ear. Sometimes a little wrist flick helps to tell the iPhone you want to search.</li>
<li>You can search things besides Google&#8217;s main web index. Do a regular query such as [daffodil pictures]:
<p><center><img src="http://www.mattcutts.com/images/daffodil-pictures1.jpg" alt="Daffodil pictures" /></center></p>
<p>then press on the magnifying glass near the top left corner to bring up other options to search. By default you&#8217;re searching iPhone and Web, but you can also search Maps, Images, News, Shopping, or Wikipedia:</p>
<p><center><img src="http://www.mattcutts.com/images/daffodil-pictures2.jpg" alt="Daffodil pictures" /></center></p>
<p>Press an option like Images and the application will immediately redo the query:</p>
<p><center><img src="http://www.mattcutts.com/images/daffodil-pictures3.jpg" alt="Daffodil pictures" /></center></li>
<li>If you want to go straight to the onscreen keyboard, you can tap the &#8220;Search&#8221; tab at the bottom of the screen twice.</li>
<li>Searching with the keyboard can be very handy. As you type, the application will suggest contacts, websites, previous searches, and related query suggestions:
<p><center><img src="http://www.mattcutts.com/images/outback-steakhouse1.jpg" alt="Outback Steakhouse" /></center></p>
<p>and do you see those query suggestions in the middle of the screen? You can slide/flick them to get more suggestions:</p>
<p><center><img src="http://www.mattcutts.com/images/outback-steakhouse2.jpg" alt="Outback Steakhouse" /></center></li>
<li>The &#8220;Apps&#8221; tab at the bottom of the screen is a one-stop shop to get to all your Google services easily, including Google Apps versions of services:
<p><center><img src="http://www.mattcutts.com/images/apps-tab.jpg" alt="Apps tab" /></center></li>
<li>You can use Google Mobile App with multiple Google Apps accounts. In the Settings tab, click on Domain. Then you can add multiple domains, separated by commas.</li>
<li>Google has posted <a href="http://www.google.com/support/mobile/bin/topic.py?topic=15662">HTML documentation for Google Mobile App</a> and also provides a <a href="http://groups.google.com/group/google-mobile-help">Google Mobile Help discussion group</a>.</li>
</ol>
<p><strong>Bonus tip #1</strong>: If the voice recognition is close, you can press on the green query in the search box to see other possible queries. For example, if you said [background gradients in css] and got this search query:</p>
<p><center><img src="http://www.mattcutts.com/images/refine-search1.jpg" alt="Refining query" /></center></p>
<p>Notice that the query was recognized as &#8220;gradient&#8221; instead of &#8220;gradients&#8221; with an &#8216;s&#8217;. So I pressed the green query and saw other possible queries:</p>
<p><center><img src="http://www.mattcutts.com/images/refine-search2.jpg" alt="Refining query" /></center></p>
<p>My desired query was the second choice. <img src='http://www.mattcutts.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Bonus tip #2</strong>: If you want to understand what your cat is trying to say to you, start the voice recognition and just hold it up to their mouth as they meow. Then Google will try to convert the meow into regular English text. Thanks to <a href="http://twitter.com/sharding/status/1010833347">Sean Harding</a> for this tip.</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/9-google-mobile-iphone-tips/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/9-google-mobile-iphone-tips/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Idea for an Android/iPhone app: Call Me a Cab</title>
		<link>http://www.mattcutts.com/blog/cab-finder-application/</link>
		<comments>http://www.mattcutts.com/blog/cab-finder-application/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 05:53:47 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Web/Net]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=991</guid>
		<description><![CDATA[I still like my last start-up idea about converting MP3 music collections to be legal and cleaning up mangled/ugly filenames. As Amazon and others start to sell MP3s, a startup could easily offer some interesting services. For example, I just saw that a new product called TuneUp will clean up your filenames, metadata, and cover [...]]]></description>
				<content:encoded><![CDATA[<p>I still like my last start-up idea about <a href="http://www.mattcutts.com/blog/startup-idea-make-my-music-legal/">converting MP3 music collections to be legal and cleaning up mangled/ugly filenames</a>. As Amazon and others start to sell MP3s, a startup could easily offer some interesting services. For example, I just saw that a new product called <a href="http://www.tuneupmedia.com/">TuneUp</a> will <a href="http://lifehacker.com/398518/tuneup-automatically-updates-and-fixes-your-itunes-metadata">clean up your filenames, metadata, and cover art</a>. That&#8217;s cool stuff that fixes a real problem a lot of people have.</p>
<p>Ready for another idea? This one is simple. <strong>Make an Android or iPhone app for people who need a taxi</strong>. Imagine: you&#8217;re in another city, and you just learned that from your hotel to dinner is not walkable. You&#8217;re standing on a street corner. What do you do? WHAT DO YOU DO!? </p>
<p>Answer: you fire up &#8220;Call me a Cab&#8221; on your app-enabled phone. Your phone automatically senses your location and (anywhere in the world) gives you 3-4 suggestions for local cab companies, with phone numbers. That&#8217;s the base functionality, but that&#8217;s still a huge step forward. When you&#8217;re standing on a street corner you don&#8217;t often have a page like this in front of you:</p>
<p><img src="http://www.mattcutts.com/images/taxicabs.jpg" alt="Example snippet of a directory of taxi cabs" /></p>
<p>Now how would you make the app even better? In some places (like, say, <a href="http://labs.google.com/ridefinder">these cities</a>) the app would show you where the closest cab is, call it, and get an &#8220;estimated time of arrival&#8221; as you watch the cab get closer on a map. Something like <a href="http://labs.google.com/ridefinder?z=8&#038;near=San%20Francisco,%20CA&#038;src=1">this page</a>, but on your phone:</p>
<p><img src="http://www.mattcutts.com/images/taxicabs2.png" alt="Ride finder" /></p>
<p>How would you make money? Maybe you sell a premium version of the app that does more (more features, or checks for buses or other public transit nearby). Or maybe taxi/cab companies would be willing to advertise in the app just like they advertise in the yellow pages. Maybe you&#8217;re a taxi company and you offer this app for free to make your cabs more efficient or to build a brand (most people think of taxis as a commodity right now). And it doesn&#8217;t always have to be about the money, you know. Maybe you do it to build awareness about your software startup and unlock future opportunities down the line.</p>
<p>Once you get GPS + cool sensors + the ability to run an application on a phone, there&#8217;s a ton of exciting apps you could write. Sure you could find nearby friends, but why not write a GPS-enabled celebrity spotter? Or an &#8220;Am I Speeding Right Now?&#8221; app that you can use in your car.</p>
<p>If you need other good ideas, I recommend reading through <a href="http://ycombinator.com/ideas.html">Paul Graham&#8217;s list of suggested start-up ideas</a>. I&#8217;m a big fan of #3 (finding &#8220;New News&#8221;), #13 (online learning), and #28 (fixing email overload). Or for that matter, just think about things around your house or business that are messy or annoying and solve that problem.</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/cab-finder-application/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/cab-finder-application/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>What are the best iPhone applications?</title>
		<link>http://www.mattcutts.com/blog/best-iphone-application/</link>
		<comments>http://www.mattcutts.com/blog/best-iphone-application/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 21:00:09 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=984</guid>
		<description><![CDATA[Here are some of the applications that I&#8217;m trying out right now: What applications do you like on the iPhone 3G?]]></description>
				<content:encoded><![CDATA[<p>Here are some of the applications that I&#8217;m trying out right now:</p>
<p><img src="http://www.mattcutts.com/images/iphone-application.png" alt="My iPhone 3G applications" /></p>
<p>What applications do you like on the iPhone 3G?</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/best-iphone-application/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/best-iphone-application/feed/</wfw:commentRss>
		<slash:comments>50</slash:comments>
		</item>
		<item>
		<title>Two Cats One Laptop</title>
		<link>http://www.mattcutts.com/blog/testing-iphone-3g-camera/</link>
		<comments>http://www.mattcutts.com/blog/testing-iphone-3g-camera/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 18:35:29 +0000</pubDate>
		<dc:creator>Matt Cutts</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.mattcutts.com/blog/?p=983</guid>
		<description><![CDATA[The new iPhone 3G camera seems to work pretty well. Here&#8217;s a test shot with me, two cats, and a laptop: The iPhone 3G still doesn&#8217;t work great for close-ups on very small stuff, but it seems to work well in the four to six foot range.]]></description>
				<content:encoded><![CDATA[<p>The new iPhone 3G camera seems to work pretty well. Here&#8217;s a test shot with me, two cats, and a laptop:</p>
<p><img src="http://www.mattcutts.com/images/two-cats-and-laptop.jpg" alt="Ozzie and Emmy at rest" /></p>
<p>The iPhone 3G still doesn&#8217;t work great for close-ups on very small stuff, but it seems to work well in the four to six foot range.</p>
<div class="plusone"><g:plusone href="http://www.mattcutts.com/blog/testing-iphone-3g-camera/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://www.mattcutts.com/blog/testing-iphone-3g-camera/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using n/a

 Served from: www.mattcutts.com @ 2013-05-24 15:43:15 by W3 Total Cache -->