<?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>The FanFeedr Blog &#187; iPhone</title>
	<atom:link href="http://blog.fanfeedr.com/category/iphone/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fanfeedr.com</link>
	<description>Product development at your personalized sports service..</description>
	<lastBuildDate>Thu, 02 Feb 2012 20:46:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How HTML5-based geolocation may be the best of them all (and how it can help your personalization efforts)</title>
		<link>http://blog.fanfeedr.com/2010/11/how-html5-based-geolocation-may-be-the-best-of-them-all-and-how-it-can-help-your-personalization-efforts/</link>
		<comments>http://blog.fanfeedr.com/2010/11/how-html5-based-geolocation-may-be-the-best-of-them-all-and-how-it-can-help-your-personalization-efforts/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 20:46:47 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=705</guid>
		<description><![CDATA[My friend Scott Rafer and I had a conversation about geolocation and HTML5, and I decided to codify the points of merit below. I was also asked to give feedback on a recently launched local site, and that site needed to work in some lazy personalization, so that is covered below, as well. Why would [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2010/11/how-html5-based-geolocation-may-be-the-best-of-them-all-and-how-it-can-help-your-personalization-efforts/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="How HTML5-based geolocation may be the best of them all (and how it can help your personalization efforts)" data-url="http://blog.fanfeedr.com/2010/11/how-html5-based-geolocation-may-be-the-best-of-them-all-and-how-it-can-help-your-personalization-efforts/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2010/11/how-html5-based-geolocation-may-be-the-best-of-them-all-and-how-it-can-help-your-personalization-efforts/"></g:plusone></div>
</div>
<p><a href="http://blog.fanfeedr.com/wp-content/uploads/2010/11/Geolocation-pointer.png"><img class="aligncenter size-full wp-image-706" title="Geolocation pointer" src="http://blog.fanfeedr.com/wp-content/uploads/2010/11/Geolocation-pointer.png" alt="" width="174" height="265" /></a></p>
<p>My friend <a href="http://rafer.net/" target="_blank">Scott Rafer</a> and I had a conversation about geolocation and HTML5, and I decided to codify the points of merit below. I was also asked to give feedback on a recently launched local site, and that site needed to work in some lazy personalization, so that is covered below, as well.</p>
<p><strong>Why would you use geolocation</strong></p>
<ul>
<li>You, you make stuff, things on the internet.</li>
<li>You can improve the presentation for a first-time user by providing a lens on to your site that takes into account that user&#8217;s location. If you have, say, a local restaurant guide, you would be much better served showing the restaurants in the local city, 9 out of 10 times, as opposed to showing a map of the United States with no content. Just make sure the user has a way to go to other cities.</li>
</ul>
<p><strong>Types of geolocation</strong></p>
<p>There are fourÂ five types of web/mobile-based geo-location, in reverse order regarding accuracy.</p>
<p>1. <em>Self-assigned</em>. You force the user to click a map or choose from a drop-down, or, the horror, type in their location.</p>
<ul>
<li>Accuracy: highly variable, and usually city-specific.</li>
<li>Really? There are several easier ways.</li>
</ul>
<p>2.<em> Reverse IP lookup</em>. Use someone&#8217;s IP address to determine approximate location.</p>
<ul>
<li>Accuracy: slightly variable, and usually city-specific.</li>
<li>When it fails, it fails horribly: any visitor using an iPad on AT&amp;T&#8217;s 3G network will get placed in Kansas, the geographic center of the US, with this technique. Our offices are in Dumbo, Brooklyn, but reverse IP places us in Jamaica, Queens.</li>
<li><a href="http://www.maxmind.com/app/ip-location" target="_blank">The vendor of choice here is MaxMind</a>, and you can do this with their free product.</li>
</ul>
<p>3. <em>Cookie-based.</em> Used primarily by marketers/advertisers. You will have to buy this data or learn how to read others&#8217; cookies (which you don&#8217;t want to do, to be clear.)</p>
<ul>
<li>Accuracy: variable, can be as specific as 9-digit postal code in the US.</li>
<li>Not really an option for consumer-facing websites unless <a href="http://online.wsj.com/article/SB10001424052748704416904575502261335698370.html" target="_blank">they want to be written up in the Wall Street Journal</a>.</li>
</ul>
<p>4. <em>Browser-based</em>. HTML5 can ask the user&#8217;s location, and then <a href="http://stackoverflow.com/questions/3041113/how-exactly-does-html5s-geolocation-work" target="_blank">determines your location based on your proximity to known WiFi hotspots gleaned via Google Street View cars or Skyhook Wireless. </a></p>
<ul>
<li>Accuracy: excellent and usually building-specific.</li>
<li>In urban areas, accurate to 20m.</li>
</ul>
<p>5. <em>Internal GPS</em>. Uses a GPS device in the unit. Fantastic for mobile, non-starter for desktops.</p>
<ul>
<li>Accuracy: excellent and usually building-specific.</li>
<li>Often gets confused by concrete.</li>
</ul>
<p><strong>Why HTML5 geolocation appears to be better than all of the others</strong></p>
<p>Not only does it account for ALL of the devices that don&#8217;t have GPS devices, it is cheaper to develop against, and yields better results than reverse IP or Internal GPS. Let&#8217;s dumpster dive on those two thoughts for a moment.</p>
<blockquote><p><em>Product Person 1</em>: We should build an service that accounts for location.</p>
<p><em>#2</em>: Yes, but we need to reach a big audience.</p>
<p><em>#1</em>: <a href="http://www.wired.com/magazine/2010/08/ff_webrip/all/1" target="_blank">Wired said that the web is dead and everyone is using apps</a></p>
<p><em>#2</em>: While true, mobile is still is a smaller portion of all web surfing than, ah, oh, the regular web.</p>
<p><em>#1</em>: So to reach the largest audience, with the lowest cost, right now, we should just use HTML5 geolocation</p>
<p><em>#2</em>: There&#8217;s the rub. This may be true in two years, but right now, there are too many people not using HTML5-compliant browsers, so it isn&#8217;t the largest audience at the moment.</p></blockquote>
<p>Which means that it is easier to develop web sites than mobile apps, but until you have most people using modern browsers, you will have to pursue a mix of HTML5 geolocation that degrades gracefully and uses reverse IP lookup as a backstop, and by all means, use the internal GPS device on smart phones that have them. The HTML5 geolocation accuracy is on PAR with GPS geolocation in urban areas, as these areas have a lot of WiFi hotspots.</p>
<p><strong>How geolocation improves personalization for your website, service or application</strong></p>
<p>When people come to your media or services based-site, having even the slightest bit of local content hits a pareto optimal for customer satisfaction/relevance that anyone building such sites and apps should exploit. Put another way, in a non-run-on sentence: geo-location helps you to personalize your service without requiring the user to do anything. I call this &#8220;lazy personalization&#8221; and it hits the sweet spot of convenience and relevance that all services need to be successful.</p>
<p><strong>Example of HTML5 geolocation</strong></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Verdana; color: #154fae} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Verdana; min-height: 15.0px} p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Verdana} span.s1 {text-decoration: underline} -->Our HTML5 application:Â <a href="http://chrome.fanfeedr.com/">http://chrome.fanfeedr.com/</a></p>
<ul>
<li>Use an HTML5 web-kit based compliant browser: <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> or <a href="http://www.apple.com/safari/" target="_blank">Safari</a>.</li>
<li>Try this on Chrome. Make sure to ALLOW browser geolocation via the yellow pop-up that you will see.</li>
<li>The change that you will see is that the teams in your FanFeed will be New York customized (or wherever you happen to be, because we realize that not everyone lives in NYC.)</li>
<li>When we use JUST reverse IP geolocation in our Dumbo, NY location, we see team news from the NY Islanders included, because our IP is oddly based in Jamaica, Queens, and the Islanders are close to Jamaica.</li>
</ul>
<p>Thanks, FanFeedr</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2010/11/how-html5-based-geolocation-may-be-the-best-of-them-all-and-how-it-can-help-your-personalization-efforts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New release: Mobile upgrades and improvements to football/soccer</title>
		<link>http://blog.fanfeedr.com/2010/09/new-release-mobile-upgrades-and-improvements-to-footballsoccer/</link>
		<comments>http://blog.fanfeedr.com/2010/09/new-release-mobile-upgrades-and-improvements-to-footballsoccer/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 21:57:50 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=658</guid>
		<description><![CDATA[Mobile goodness All of our mobile apps are up-to-date and chock full of goodness. iPad FanFeedr New FanFeedr release is live today It gets rid of the adult warning, which is a relief (Apple made us put that on because we linked to Yahoo, Yahoo links to porn. They seem to have forgotten about our [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2010/09/new-release-mobile-upgrades-and-improvements-to-footballsoccer/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="New release: Mobile upgrades and improvements to football/soccer" data-url="http://blog.fanfeedr.com/2010/09/new-release-mobile-upgrades-and-improvements-to-footballsoccer/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2010/09/new-release-mobile-upgrades-and-improvements-to-footballsoccer/"></g:plusone></div>
</div>
<p><a href="http://blog.fanfeedr.com/wp-content/uploads/2010/09/Screen-shot-2010-09-29-at-5.56.34-PM.png"><img class="aligncenter size-medium wp-image-659" title="McNabb at practice" src="http://blog.fanfeedr.com/wp-content/uploads/2010/09/Screen-shot-2010-09-29-at-5.56.34-PM-300x239.png" alt="" width="300" height="239" /></a></p>
<p><strong>Mobile goodness</strong></p>
<p>All of our mobile apps are up-to-date and chock full of goodness.</p>
<div id="_mcePaste"><strong><a href="http://bit.ly/iphoneappff" target="_blank">iPad FanFeedr</a></strong></div>
<div id="_mcePaste">
<ul>
<li>New FanFeedr release is live today</li>
<li>It gets rid of the adult warning, which is a relief (Apple made us put that on because we linked to Yahoo, Yahoo links to porn. They seem to have forgotten about our linking to Yahoo.)</li>
<li>It makes the login much less of a PitA. If you have already logged in, it just dumps you into your FanFeed</li>
<li>&#8220;Search&#8221; has been replaced with &#8220;Add teams&#8221; which is a much better conveyance (or affordance, to use the user experience term) for what is done with that button</li>
<li>iOS4 features</li>
<li>Icons look fantastic on the iPhone 4</li>
<li>Introduced background multitasking. If you exit the app, and come back, there is no reload. You have to have iOS4 to see this.</li>
<li><a href="http://bit.ly/iphoneappff" target="_blank">Download it here</a>.</li>
</ul>
</div>
<div id="_mcePaste"><strong><a href="http://bit.ly/iphoneappff" target="_blank">iPhone FanFeedr</a></strong></div>
<div id="_mcePaste">
<ul>
<li>Same as iPad, with the following goodness . . .</li>
<li>iOS4 features</li>
<li>Icons look fantastic on the iPhone 4</li>
<li>Introduced background multitasking. If you exit the app, and come back, there is no reload. You have to have iOS4 to see this.</li>
<li><a href="http://bit.ly/iphoneappff" target="_blank">Download it here</a>.</li>
</ul>
</div>
<div id="_mcePaste"><strong><a href="http://www.androidzoom.com/android_applications/sports/personalized-sports-news_ijji.html" target="_blank">Android FanFeedr</a></strong></div>
<div id="_mcePaste">
<ul>
<li>Live in the Android Marketplace, you have to search for it under &#8220;FanFeedr&#8221;.</li>
<li>It makes the login much less of a PitA. If you have already logged in, it just dumps you into your FanFeed</li>
<li>&#8220;Search&#8221; has been replaced with &#8220;Add teams&#8221; which is a much better conveyance (or affordance, to use the user experience term) for what is done with that button</li>
<li>Will send out download link when it is live</li>
</ul>
</div>
<div id="_mcePaste"><strong><a href="http://bit.ly/redskinsfeedr" target="_blank">iPad Redskins</a></strong></div>
<div id="_mcePaste">
<ul>
<li><a href="http://bit.ly/redskinsfeedr" target="_blank">Download it here</a></li>
<li>All of the same features as the iPad Fanfeedr</li>
</ul>
</div>
<div id="_mcePaste"><strong>Android Redskins</strong></div>
<div id="_mcePaste">
<ul>
<li>Live in the Android Marketplace, you have to search for it under &#8220;Redskins Feedr&#8221;</li>
<li>Our first ever release of this application for the Redskins</li>
<li>All of the same features as the iPad Fanfeedr</li>
<li>We had a slate of improvements to our European football features, including adding players and rosters so that you can become a fan of your favorite players, like Leo Messi, Wayne Rooney, and Didier Drogba.</li>
</ul>
</div>
<p><strong>Football/Soccer</strong></p>
<p>We had a slate of improvements to our European football features, including adding players and rosters so that you can become a fan of your favorite players, like Leo Messi, Wayne Rooney, and Didier Drogba.</p>
<p>Thanks, FanFeedr</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2010/09/new-release-mobile-upgrades-and-improvements-to-footballsoccer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why users are more engaged on our iPad application compared to our web site</title>
		<link>http://blog.fanfeedr.com/2010/08/why-users-are-more-engaged-on-our-ipad-application-compared-to-our-web-site/</link>
		<comments>http://blog.fanfeedr.com/2010/08/why-users-are-more-engaged-on-our-ipad-application-compared-to-our-web-site/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 22:58:43 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=626</guid>
		<description><![CDATA[The numbers are pretty startling: our website visitors come for 1m 34s, and our iPad users come for just over 14m 20s each time they come to FanFeedr. I was recently asked why this was the case, and the usual answers came out: We offer a personalized service, so viewing it on a personal device [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2010/08/why-users-are-more-engaged-on-our-ipad-application-compared-to-our-web-site/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="Why users are more engaged on our iPad application compared to our web site" data-url="http://blog.fanfeedr.com/2010/08/why-users-are-more-engaged-on-our-ipad-application-compared-to-our-web-site/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2010/08/why-users-are-more-engaged-on-our-ipad-application-compared-to-our-web-site/"></g:plusone></div>
</div>
<p><a href="http://blog.fanfeedr.com/wp-content/uploads/2010/08/FanFeedr-iPad-start-screen.png"><img class="aligncenter size-medium wp-image-627" title="FanFeedr iPad start screen" src="http://blog.fanfeedr.com/wp-content/uploads/2010/08/FanFeedr-iPad-start-screen-228x300.png" alt="" width="228" height="300" /></a>The numbers are pretty startling: our <strong>website visitors come for</strong> <strong>1m 34s</strong>, and our <strong>iPad users come for just over 14m 20s</strong> each time they come to FanFeedr. I was recently asked why this was the case, and the usual answers came out:</p>
<ol>
<li>We offer a personalized service, so viewing it on a personal device should increase the time spent per session</li>
<li>Using Facebook and Twitter, which we require for login, is easier on an iPad than on a work computer (our peak usage is around 3p ET (GMT -5).) Some workplaces restrict access to the social networks</li>
<li>The iPad application is an easier way to consume information than our web application</li>
</ol>
<p>That explains part of the 10-fold increase in time per session, but it doesn&#8217;t seem like enough.</p>
<p>Perhaps it was timing?</p>
<ol>
<li>We launched <a href="http://www.google.com/url?sa=t&amp;source=web&amp;cd=1&amp;ved=0CBgQFjAA&amp;url=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Ffanfeedr%2Fid322441443%3Fmt%3D8&amp;ei=b31kTOgngf_wBszyqYwJ&amp;usg=AFQjCNE0fmRm0zYUV2MfBhph8wsTulszjQ" target="_blank">the FanFeedr iPad application</a> on April 3rd, the day that the device launched.</li>
<li>We were a featured application for the first week in the iTunes app store</li>
<li><a href="http://www.utalkmarketing.com/pages/Article.aspx?ArticleID=18560&amp;Title=Why_mobile_marketers_were_the_real_World_Cup_winners" target="_blank">The 2010 World Cup</a> began two months later, right after the 3G version of the device debuted in the United States.</li>
</ol>
<p>That still doesn&#8217;t seem to full account for the difference.</p>
<p>The single answer that makes the most sense is that the iPad interface can&#8217;t multitask, and that single-threaded application behavior forces users to focus solely on our application.</p>
<p>Which sort of underscores that <a href="http://articles.chicagotribune.com/2010-08-10/news/ct-oped-0811-multitask-20100810_1_iqs-study-information-overload" target="_blank">multitasking doesn&#8217;t make you smarter</a>, and greatly impedes time spent on web sites, to boot.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2010/08/why-users-are-more-engaged-on-our-ipad-application-compared-to-our-web-site/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>R62: Control your destiny</title>
		<link>http://blog.fanfeedr.com/2010/05/r62-control-your-destiny/</link>
		<comments>http://blog.fanfeedr.com/2010/05/r62-control-your-destiny/#comments</comments>
		<pubDate>Mon, 17 May 2010 23:18:53 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[New Tweets]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=521</guid>
		<description><![CDATA[Release 62 is all about giving you more control over what publishes to Facebook and Twitter from FanFeedr, and how frequently. With that in mind, we have a new pop-up panel that controls what gets pushed out to both sites. We also made it so that you can get notified whenever you have a new [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2010/05/r62-control-your-destiny/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="R62: Control your destiny" data-url="http://blog.fanfeedr.com/2010/05/r62-control-your-destiny/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2010/05/r62-control-your-destiny/"></g:plusone></div>
</div>
<p><img class="aligncenter" title="Control your destiny" src="http://30up.files.wordpress.com/2008/08/kanji.jpg" alt="" width="293" height="300" /></p>
<p><strong>Release 62</strong> is all about giving you more control over what publishes to Facebook and Twitter from FanFeedr, and how frequently.</p>
<ul>
<li>With that in mind, we have a new pop-up panel that controls what gets pushed out to both sites. We also made it so that you can get notified whenever you have a new follower. We won&#8217;t ever send you mails without your ability to control them. The controls can be accessed via your <a href="http://www.fanfeedr.com/account/settings" target="_blank">profile page account settings</a>, and it looks like this:</li>
</ul>
<ul>
<li><a href="http://blog.fanfeedr.com/wp-content/uploads/2010/05/Screen-shot-2010-05-17-at-7.04.15-PM.png"><img class="aligncenter size-medium wp-image-522" title="Publishing Settings" src="http://blog.fanfeedr.com/wp-content/uploads/2010/05/Screen-shot-2010-05-17-at-7.04.15-PM-300x287.png" alt="" width="300" height="287" /></a>Tweet limiting: on the homepage, you can hide tweets from your FanFeed (on the right of the column) if you don&#8217;t want to see them:<br />
<a href="http://blog.fanfeedr.com/wp-content/uploads/2010/05/Screen-shot-2010-05-17-at-7.07.33-PM.png"><img class="aligncenter size-medium wp-image-523" title="Hide Tweets" src="http://blog.fanfeedr.com/wp-content/uploads/2010/05/Screen-shot-2010-05-17-at-7.07.33-PM-300x70.png" alt="" width="300" height="70" /></a></li>
<li>We updated our <a href="http://www.fanfeedr.com/site/press" target="_blank">press section with the latest articles about FanFeedr</a></li>
<li>Our scoreboards now show the teams that you have picked:<br />
<a href="http://blog.fanfeedr.com/wp-content/uploads/2010/05/Screen-shot-2010-05-17-at-7.10.13-PM.png"><img class="aligncenter size-full wp-image-524" title="Scoreboard with Picks" src="http://blog.fanfeedr.com/wp-content/uploads/2010/05/Screen-shot-2010-05-17-at-7.10.13-PM.png" alt="" width="314" height="100" /></a></li>
<li>We fixed a bug for Safari users on our <a href="http://bit.ly/iphoneappff" target="_blank">sports application for the Apple iPad</a> that allowed for our share bar to float. You can now browse FanFeedr on your iPad without any display oddities.</li>
<li>Additionally, if you are not logged into the site, you can see the <a href="http://www.fanfeedr.com/public_timeline" target="_blank">FanFeedr Public Timeline</a> without having to login.</li>
</ul>
<p>As always, thanks for your support, and <a href="http://feedback.fanfeedr.com" target="_blank">let us know if we missed anything right here</a>.</p>
<p>Feedr of the Fans</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2010/05/r62-control-your-destiny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Version 1.3 of our iPhone App is Live.</title>
		<link>http://blog.fanfeedr.com/2010/01/version-1-3-of-our-iphone-app-is-live/</link>
		<comments>http://blog.fanfeedr.com/2010/01/version-1-3-of-our-iphone-app-is-live/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 23:07:21 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=400</guid>
		<description><![CDATA[Get v.1.3 here The latest FanFeedr iPhone app is live on the iTunes App Store and available now as aÂ free download. What&#8217;s New The app will remember the last page you were on and restore it after restart, including the last set of stories from your FanFeed. This gives you a second chance to read [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2010/01/version-1-3-of-our-iphone-app-is-live/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="Version 1.3 of our iPhone App is Live." data-url="http://blog.fanfeedr.com/2010/01/version-1-3-of-our-iphone-app-is-live/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2010/01/version-1-3-of-our-iphone-app-is-live/"></g:plusone></div>
</div>
<p style="text-align: center"><a href="http://bit.ly/iphoneappff"><br />
<img class="aligncenter size-full wp-image-401" src="http://blog.fanfeedr.com/wp-content/uploads/2010/01/fanFeedrLogo.png" alt="" width="180" height="183" /></a></p>
<p><a href="http://bit.ly/iphoneappff" target="_self">Get v.1.3 here</a></p>
<p>The latest FanFeedr iPhone app is live on the iTunes App Store and available now as aÂ <a href="http://bit.ly/iphoneappff">free download</a>.<span style="text-decoration: underline"><br />
</span></p>
<p>What&#8217;s New</p>
<ol>
<li>The app will remember the last page you were on and restore it after restart, including the last set of stories from your FanFeed. This gives you a second chance to read them before new content takes its place.</li>
<li>Added hot stories for MMA-Boxing, Golf and Tennis.</li>
<li>Hot stories are now limited to the hottest stories in the last hour.</li>
<li>Bug fixes.</li>
</ol>
<p style="text-align: center"><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=322441443&amp;mt=8"><img class="aligncenter size-full wp-image-409" src="http://blog.fanfeedr.com/wp-content/uploads/2010/01/photo.jpg" alt="" width="192" height="288" /></a></p>
<p>Thank you for your interest in the FanFeedr iPhone and iPod Touch application.</p>
<p>Thanks, FanFeedr.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2010/01/version-1-3-of-our-iphone-app-is-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R39&#189; with all the fixin&#8217;s</title>
		<link>http://blog.fanfeedr.com/2009/11/r39-with-all-the-fixins/</link>
		<comments>http://blog.fanfeedr.com/2009/11/r39-with-all-the-fixins/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 20:49:35 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Leagues]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=313</guid>
		<description><![CDATA[With Thanksgiving around the corner (at least here in the States) we kept our cooks in the kitchen over the weekend, combining R38 and R39 into a cornucopia. Here are some of the things we&#8217;ve prepared before the holiday: More relevant results for league content. With so many sources for league content, we decided to [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2009/11/r39-with-all-the-fixins/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="R39&frac12; with all the fixin&#8217;s" data-url="http://blog.fanfeedr.com/2009/11/r39-with-all-the-fixins/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2009/11/r39-with-all-the-fixins/"></g:plusone></div>
</div>
<p><img class="aligncenter" title="Space Oddity" src="http://static.howstuffworks.com/gif/space-suit-mmua.jpg" alt="" width="366" height="376" /></p>
<p>With Thanksgiving around the corner (at least here in the States) we kept our cooks in the kitchen over the weekend, combining R38 and R39 into a cornucopia. Here are some of the things we&#8217;ve prepared before the holiday:</p>
<ul>
<li><strong>More relevant results for league content.</strong> With so many sources for league content, we decided to publish only the most noteworthy content items to make sure you can get the most important league news quickly.</li>
<li><strong>Standings for leagues, conferences and divisions.</strong> See where teams are in their <a href="http://www.fanfeedr.com/nfl/" target="_blank">conferences</a> and <a href="http://www.fanfeedr.com/nba/western/pacific/" target="_blank">divisions</a> at a glance.</li>
<li><strong>Improved scores feed to the iPhone.</strong> We&#8217;ve added some special sauce to the way we publish scores to the iPhone push service, to make sure iPhone users get the latest updates without a fuss.</li>
<li><strong>And of course, ever more content sources.</strong></li>
</ul>
<p>Enjoy your Thanksgiving weekend, and check back with us next week for new features and post-holiday diet tips. And Giants fans, please make sure you&#8217;ve fully digested your turkey before the game. As always, thank you for your support.</p>
<p>Until next time,<br />
Your friends at FanFeedr.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2009/11/r39-with-all-the-fixins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Version 1.0 of the official FanFeedr iPhone app is live.</title>
		<link>http://blog.fanfeedr.com/2009/11/version-1-0-of-the-official-fanfeedr-iphone-app-is-live/</link>
		<comments>http://blog.fanfeedr.com/2009/11/version-1-0-of-the-official-fanfeedr-iphone-app-is-live/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 20:32:37 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=291</guid>
		<description><![CDATA[Get v.1.0 here Version 1.0 of the FanFeedr iPhone app is live on the iTunes App Store and available now as a free download. What&#8217;s New Additional commenting options. You can now comment on activity feed items, like your friends comments, or fan and un-fan events. You can do this inline without losing your spot [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2009/11/version-1-0-of-the-official-fanfeedr-iphone-app-is-live/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="Version 1.0 of the official FanFeedr iPhone app is live." data-url="http://blog.fanfeedr.com/2009/11/version-1-0-of-the-official-fanfeedr-iphone-app-is-live/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2009/11/version-1-0-of-the-official-fanfeedr-iphone-app-is-live/"></g:plusone></div>
</div>
<p><a rel="attachment wp-att-309" href="http://blog.fanfeedr.com/2009/11/version-1-0-of-the-official-fanfeedr-iphone-app-is-live/photo/"><img class="aligncenter size-full wp-image-309" title="photo" src="http://blog.fanfeedr.com/wp-content/uploads/2009/11/photo.jpg" alt="photo" width="320" height="480" /></a></p>
<p><a href="http://bit.ly/iphoneappff" target="_self">Get v.1.0 here</a></p>
<p>Version 1.0 of the FanFeedr iPhone app is live on the iTunes App Store and available now as a <a href="http://bit.ly/iphoneappff">free download</a>.<span style="text-decoration: underline;"><br />
</span></p>
<p><strong>What&#8217;s New<br />
</strong></p>
<ol>
<li><strong>Additional commenting options. </strong>You can now comment on activity feed items, like your friends comments, or fan and un-fan events. You can do this inline without losing your spot in the feed.</li>
<li><strong>UI overhaul. </strong>A newer slicker theme for the app.</li>
<li><strong>Over 30</strong> performance improvements, bug fixes and interface tweaks.</li>
<li><strong>Push notifications for scores</strong>, letting you get the action in real-time.</li>
</ol>
<p>Thank you for your interest in the FanFeedr iPhone and iPod Touch application.</p>
<p>Thatâ€™s it!</p>
<p>Thanks, FanFeedr.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2009/11/version-1-0-of-the-official-fanfeedr-iphone-app-is-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Version 36 is up with push alerts on the iPhone and more</title>
		<link>http://blog.fanfeedr.com/2009/11/version-36-is-up-with-push-alerts-on-the-iphone-and-more/</link>
		<comments>http://blog.fanfeedr.com/2009/11/version-36-is-up-with-push-alerts-on-the-iphone-and-more/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 20:29:21 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=305</guid>
		<description><![CDATA[Right to it . . . Push notifications on the iPhone All iPhone users with version 1.0 of the application will now get scores sent to them when games are in progress, based on their FanFeed. Better experience for first time users New first time user experience (FTUE) that has yellow boxes that shows new [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2009/11/version-36-is-up-with-push-alerts-on-the-iphone-and-more/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="Version 36 is up with push alerts on the iPhone and more" data-url="http://blog.fanfeedr.com/2009/11/version-36-is-up-with-push-alerts-on-the-iphone-and-more/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2009/11/version-36-is-up-with-push-alerts-on-the-iphone-and-more/"></g:plusone></div>
</div>
<p><img class="aligncenter" title="Andromeda" src="http://www.dphotojournal.com/images/readers/andromeda-galaxy.jpg" alt="" width="450" height="309" /></p>
<p>Right to it . . .</p>
<p><strong> Push notifications on the iPhone<br />
</strong></p>
<ul>
<li>All iPhone users with <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=322441443&amp;mt=8" target="_blank">version 1.0 of the application</a> will now get scores sent to them when games are in progress, based on their FanFeed.</li>
</ul>
<p><strong> Better experience for first time users</strong></p>
<ul>
<li>New first time user experience (FTUE) that has yellow boxes that shows new users exactly what they have to do to get a personalized FanFeed.</li>
<li>To see this go to the site . . .</li>
</ul>
<ol>
<li> Log out if you are already logged in</li>
<li> Refresh the page</li>
<li> This only works on Safari, Firefox and Chrome</li>
<li> It doesn&#8217;t work on IE 6, 7, or 8.</li>
</ol>
<p>Also . . .</p>
<ul>
<li>Scoreboards for all of the other games on each boxscore page, like the <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=322441443&amp;mt=8">Lakers beat down of the Suns</a>, last night, for example.</li>
<li>Twitter feeds, like the one for <a href="http://www.twitter.com/warriorsff">my beloved Warriors</a>, are powered directly off of our website, for reduced latency and real-time scores</li>
</ul>
<p>More to come next week, and let us know what you think.</p>
<p>Thanks, the Feedr of the Fans</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2009/11/version-36-is-up-with-push-alerts-on-the-iphone-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest version of our iPhone app is available.</title>
		<link>http://blog.fanfeedr.com/2009/10/the-latest-version-of-our-iphone-app-is-available-for-download-now/</link>
		<comments>http://blog.fanfeedr.com/2009/10/the-latest-version-of-our-iphone-app-is-available-for-download-now/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 21:43:41 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=239</guid>
		<description><![CDATA[Get v.0.9.5 here Version 0.9.5 of the FanFeedr iPhone app is live on the iTunes App Store and available now as a free download. What&#8217;s New Commenting! You can now comment on stories, photos and games. Share to Twitter. You can share your status updates, stories, and comments with both Twitter and Facebook. Improved Photo [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2009/10/the-latest-version-of-our-iphone-app-is-available-for-download-now/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="Latest version of our iPhone app is available." data-url="http://blog.fanfeedr.com/2009/10/the-latest-version-of-our-iphone-app-is-available-for-download-now/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2009/10/the-latest-version-of-our-iphone-app-is-available-for-download-now/"></g:plusone></div>
</div>
<p><a href="http://bit.ly/iphoneappff" target="_self">Get v.0.9.5 here</a></p>
<p>Version 0.9.5 of the FanFeedr iPhone app is live on the iTunes App Store and available now as a <a href="http://bit.ly/iphoneappff">free download</a>.<span style="text-decoration: underline"><br />
</span></p>
<p><strong>What&#8217;s New<br />
</strong></p>
<ol>
<li><strong>Commenting!</strong> You can now comment on stories, photos and games.</li>
<li><strong>Share to Twitter.</strong> You can share your status updates, stories, and comments with both Twitter and Facebook.</li>
<li><strong>Improved Photo View</strong>, with scrollable caption support.</li>
<li>Many tweaks, improvements and bug fixes.</li>
</ol>
<p>Thank you for your interest in the FanFeedr iPhone and iPod Touch application.</p>
<p>Thatâ€™s it!</p>
<p>Thanks, FanFeedr.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2009/10/the-latest-version-of-our-iphone-app-is-available-for-download-now/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release 24 for the weekend</title>
		<link>http://blog.fanfeedr.com/2009/08/release-24-for-the-weekend/</link>
		<comments>http://blog.fanfeedr.com/2009/08/release-24-for-the-weekend/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 16:15:16 +0000</pubDate>
		<dc:creator>Ty</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[New Tweets]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://blog.fanfeedr.com/?p=191</guid>
		<description><![CDATA[Folks, This week we have added Twitter integration using their super-transparent OAuth implementation. Which means that you can . . . Post your status update to Twitter as well as Facebook Send stories, videos and blog posts to Twitter We have added the ability for you to follow your favorite teams ON Twitter, if you [...]]]></description>
			<content:encoded><![CDATA[<div class="simplesocialbuttons">
<div class="simplesocialbutton ssb-button-fblike"><!-- Facebook like--><div id="fb-root"></div><fb:like href="http://blog.fanfeedr.com/2009/08/release-24-for-the-weekend/" send="false" layout="button_count" width="100" show_faces="false" action="like" font=""></fb:like></div>
<div class="simplesocialbutton ssb-buttom-twitter"><!-- Twitter--><a name="twitter_share" data-count="horizontal" href="http://twitter.com/share" data-text="Release 24 for the weekend" data-url="http://blog.fanfeedr.com/2009/08/release-24-for-the-weekend/" class="twitter-share-button" rel="nofollow"></a></div>
<div class="simplesocialbutton ssb-button-googleplus"><!-- Google Plus One--><g:plusone size="medium" count="true" href="http://blog.fanfeedr.com/2009/08/release-24-for-the-weekend/"></g:plusone></div>
</div>
<p><img class="aligncenter" title="Nice." src="http://www.arch.mcgill.ca/prof/sijpkes/D%2BC-winter-2005/pavillions_concrete/calatrava_tenerife_opera_house_02.jpeg" alt="" width="400" height="400" /></p>
<p>Folks,</p>
<p>This week we have added Twitter integration using their super-transparent OAuth implementation. Which means that you can  . . .</p>
<ul>
<li>Post your status update to Twitter as well as Facebook</li>
<li>Send stories, videos and blog posts to Twitter</li>
</ul>
<p>We have added the ability for you to follow your favorite teams ON Twitter, if you would prefer to do so there. So far we have all MLB baseball teams (like the <a href="http://twitter.com/redsoxff" target="_blank">Red Sox</a>), and the top European football teams (like <a href="http://twitter.com/barcelonaff" target="_blank">BarÃ§a</a>). The NFL and colleges will be added next week, and the NBA and NHL in September.</p>
<p>We have also made some subtle changes to the typeahead box, so when you type any name, like, oh, say . . .</p>
<ul>
<li><a href="http://www.fanfeedr.com/football/michael-vick/" target="_blank">Michael Vick (player)</a></li>
</ul>
<p>We show you whether it is a player, a team, a college, or a news source.</p>
<p>Speaking of news sources, these are some favorites that you may not know about:</p>
<ul>
<li><a href="http://www.fanfeedr.com/fantasy-players/" target="_blank">Fantasy Players</a>: Fantasy football news for the fantasy fan</li>
<li><a href="http://www.fanfeedr.com/wages-of-wins/" target="_blank">Wages of Wins</a>: Insanely detailed basketball commentary based on regression analyses, and the level of discussions in the comments is also rarified.</li>
<li><a href="http://www.fanfeedr.com/slam/" target="_blank">SLAM magazine</a>: top-shelf hoops coverage</li>
</ul>
<p>Also on the content side of things, we have added <a href="http://www.fanfeedr.com/nfl/twitter/" target="_blank">all of the NFL players who are tweeting</a>.</p>
<p>Last but not least, a reminder about our <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=322441443&amp;mt=8" target="_blank">iPhone application</a>, for free, man, and a recent blog post about the company from our friends at <a href="http://carrotcreative.com" target="_blank">Carrot</a>, <a href="http://carrotblog.com/introducing-fanfeedr-personalized-sports-search" target="_blank">here</a>.</p>
<p>Have a great weekend, FanFeedr</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.fanfeedr.com/2009/08/release-24-for-the-weekend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

