<?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 Briney &#187; Facebook</title>
	<atom:link href="http://mattbriney.com/tag/facebook/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattbriney.com</link>
	<description>Web Strategist, Data Junkie, Web Application Developer, Traveler and Technology Enthusiast</description>
	<lastBuildDate>Mon, 06 Feb 2012 23:40:05 +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-To: Subscribing to data changes using the Real-time Updates API</title>
		<link>http://mattbriney.com/2012/02/how-to-subscribing-to-data-changes-using-the-real-time-updates-api/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-subscribing-to-data-changes-using-the-real-time-updates-api</link>
		<comments>http://mattbriney.com/2012/02/how-to-subscribing-to-data-changes-using-the-real-time-updates-api/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 06:10:06 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[data changes]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[hub]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[setopt]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2012/02/how-to-subscribing-to-data-changes-using-the-real-time-updates-api/</guid>
		<description><![CDATA[A common question we get from developers is how to keep information of Users or Pages using their apps up to date. We [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>A common question we get from developers is how to keep information of Users or Pages using their apps up to date. We wanted to share some of the best practices that can improve the reliability and performance of apps you write on Facebook.</p>
<p>We often see developers querying the Graph API each time a User logs in to their apps to fetch information and update their records. This presents several issues and has a huge hit on performance.</p>
<p>Instead, we encourage you to use the <a href="https://developers.facebook.com/docs/reference/api/realtime/">Real-time Updates API</a> that we designed especially for this purpose, allowing developers to subscribe to changes in data in Facebook. Rather than polling Facebook’s servers, your app can then cache data and receive updates whenever the data changes.</p>
<p>For example, many apps rely on a User&#8217;s location to fetch and display relevant information, it is very important that this data stays up to date on the app’s backend.</p>
<p>Real-time updates allows you to set up a subscription on the <code>location</code> field of the User object, whenever that field changes, Facebook will make an HTTP POST request to a callback URL you specified by with a list of changes.</p>
<p>You can currently subscribe to updates for these types of objects:</p>
<ul>
<li><b>User</b> – Get notifications about particular fields and connections corresponding to User objects in the Graph API.</li>
<li><b>Permissions</b> – Get notifications when Users change the permissions they afford your applications. The fields are like those in the corresponding FQL table.</li>
<li><b>Page</b> &#8211; Get notifications when Pages that have installed your app as a Tab change their public properties.Note that the page topic is only used for subscribing to changes to public attributes of the page (like name, category, picture etc). This is the same information that is returned by the Graph API call https://graph.facebook.com/. However, you can subscribe to the page&#8217;s feed in the same way you subscribe to a User&#8217;s feed &#8211; the subscription topic should be User and the subscription field should be feed</li>
</ul>
<p>Below is PHP Sample code that sets up an endpoint that will receive both GET (for subscription verification) and POST requests (for actual change data).</p>
<pre>
&lt;?php

  $verify_token = &#039;YOURVERIFYTOKEN&#039;;

  if ($_SERVER[&#039;REQUEST_METHOD&#039;] == &#039;GET&#039; &amp;&amp; isset($_GET[&#039;hub_mode&#039;])
    &amp;&amp; $_GET[&#039;hub_mode&#039;] == &#039;subscribe&#039; &amp;&amp; isset($_GET[&#039;hub_verify_token&#039;])
    &amp;&amp; $_GET[&#039;hub_verify_token&#039;] == $verify_token) {
      echo $_GET[&#039;hub_challenge&#039;];
  } else if ($_SERVER[&#039;REQUEST_METHOD&#039;] == &#039;POST&#039;) {
    $post_body = file_get_contents(&#039;php://input&#039;);
    $obj = json_decode($post_body, true);
    // $obj will contain the list of fields that have changed
  }

?&gt;
</pre>
<p>Once this endpoint is set up, you will need to make a POST request to the actual Real-Time updates API to subscribe to a field.</p>
<pre>
&lt;?php

  $app_id = &#039;YOUR_APP_ID&#039;;
  $app_secret = &#039;YOUR_APP_SECRET&#039;;
  $app_url = &#039;http://YOURAPPURL&#039;;
  $fields = &#039;location&#039;;
  $verify_token = &#039;YOURVERIFYTOKEN&#039;;

  // Fetching an App Token
  $app_token_url = &#039;https://graph.facebook.com/oauth/access_token?client_id=&#039;
                   .$app_id.&#039;&amp;client_secret=&#039;.$app_secret
                   .&#039;&amp;grant_type=client_credentials&#039;;
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $app_token_url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  $res = curl_exec($ch);
  parse_str($res, $token);

  if (isset($token[&#039;access_token&#039;])) {
    // Let&#039;s register a callback
    $params = array(
      &#039;object&#039;
        =&gt;  &#039;user&#039;,
      &#039;fields&#039;
        =&gt;  $fields,
      &#039;callback_url&#039;
        // This is the endpoint that will be called when
        // a User updates the location field
        =&gt;  $app_url . &#039;/index.php?action=callback&#039;,
      &#039;verify_token&#039;
        =&gt;  $verify_token,
    );

    curl_setopt($ch, CURLOPT_URL, &#039;https://graph.facebook.com/&#039;
                                  .$app_id.&#039;/subscriptions?access_token=&#039;
                                  .$token[&#039;access_token&#039;]);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
    $res = curl_exec($ch);
    if ($res &amp;&amp; $res != &#039;null&#039;) {
      print_r($res);
    }

    // Fetch list of all callbacks
    curl_setopt($ch, CURLOPT_POST, 0);
    $res = curl_exec($ch);
  }
  if ($res &amp;&amp; $res != &#039;null&#039;) {
    print_r($res);
  }
  curl_close($ch);

?&gt;
</pre>
<p>The code above should return a similar object listing current subscriptions:</p>
<pre>
{
   "data":[
      {
         "object":"user",
         "callback_url":"http:\/\/YOURAPPURL\/index.php?action=callback",
         "fields":[
            "location"
         ],
         "active":true
      }
   ]
}
</pre>
<p>It’s important to note that for security reasons, the POST request made by Facebook’s servers to your endpoint will never actually contain the data that changed but only the field.</p>
<p>This is what a query from Facebook&#8217;s servers to your endpoint may look like:</p>
<pre>
{
   "object":"user",
   "entry":[
      {
         "uid":"499535393",
         "id":"499535393",
         "time":1326210816,
         "changed_fields":[
            "location"
         ]
      }
   ]
}
</pre>
<p>Once your endpoint gets called you can either query the Graph API immediately to fetch the new information or schedule it for a later call (next user login for example).</p>
<p>You can find more information about the Real-Time Updates API <a href="https://developers.facebook.com/docs/reference/api/realtime/">here</a>.</p>
</div>
<p><i><a href="http://developers.facebook.com/blog/post/2012/01/31/how-to--subscribing-to-data-changes-using-the-real-time-updates-api/">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2012/02/how-to-subscribing-to-data-changes-using-the-real-time-updates-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Marketers Must Think in Verbs or Face Increasing Irrelevance</title>
		<link>http://mattbriney.com/2012/02/why-marketers-must-think-in-verbs-or-face-increasing-irrelevance/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=why-marketers-must-think-in-verbs-or-face-increasing-irrelevance</link>
		<comments>http://mattbriney.com/2012/02/why-marketers-must-think-in-verbs-or-face-increasing-irrelevance/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 06:05:05 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[social network]]></category>
		<category><![CDATA[social networks]]></category>
		<category><![CDATA[social verbs]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2012/02/why-marketers-must-think-in-verbs-or-face-increasing-irrelevance/</guid>
		<description><![CDATA[Originally posted on AdAge Digital. Advertisers trade in adjectives and adverbs. Campaigns and creative executions are filled with them. However, with all content increasingly [...]]]></description>
			<content:encoded><![CDATA[<p><em>Originally posted on <a title="http://adage.com/article/steve-rubel/marketers-verbs-face-irrelevance/232080/" href="http://adage.com/article/steve-rubel/marketers-verbs-face-irrelevance/232080/">AdAge Digital</a>.</em></p>
<p>Advertisers trade in adjectives and adverbs. Campaigns and creative executions are filled with them. However, with all content increasingly filtered through social networks, it’s what people do with advertising rather than what they say about it that will make all the difference this year. Guaranteed.</p>
<p>The change started last September when Facebook revealed that the ubiquitous “like” and “share” features will soon be joined by all kinds of verbs. Two of these — “read” and “listen” — are already live. Others are coming soon with the debut of <a title="http://venturebeat.com/2012/01/18/facebook-actions-rollout/" href="http://venturebeat.com/2012/01/18/facebook-actions-rollout/">Facebook Actions</a>. “Buy” and “watched” are likely to be two.</p>
<p>Facebook users who install certain news and music applications such as Spotify and The Washington Post social news reader can opt to share their actions. In other words, read news or listen to music on the social network and it gets broadcast to friends friction-free.</p>
<p>The arithmetic, therefore, is simple. The more marketers can evoke social actions, the more likely it is that their wonderfully crafted narrative will stick to people’s screens.</p>
<p>The empirical evidence is already there.</p>
<h5>Increasing Traffic</h5>
<p>Buddy Media CEO Michael Lazerow estimates that sites that simply add an optional Facebook share capability to common online applications, such as an online poll, can increase traffic 12.98%. (Yes, he’s done the math.)</p>
<p>Media early adopters have already seen strong results from their embrace of verbs. The Guardian has garnered 1 million additional monthly page views since it launched a revamped Facebook presence last fall. Yahoo is so pleased with its early results that it has expanded its relationship with Facebook to 26 more sites. The social network is already deeply embedded into Yahoo News.</p>
<p>It’s not just Facebook though. Technology companies have long understood that pointing and grunting are arguably the most innate human gestures. It’s something children do at a very early age. Cavemen basically invented both. So they’re building these natural interfaces at the core.</p>
<p>Siri on the iPhone and Kinect on Xbox* are two early implementations: users talk or point. But soon similar gesture-based media will show up everywhere. These will drive a lot more frictionless sharing. The social networks and search engines will gobble up the data and use these signals to shape the algorithms that already guide so much of what we pay attention to.</p>
<p>Here are three strategies to consider:</p>
<ol>
<h4>
<li>Build verb hooks everywhere</li>
</h4>
<p>You wouldn’t think that people want to share that they completed an online poll or registered to enter a contest, but data prove the contrary. A small percentage will, and this generates a network effect that pays off big. Look for ways to attach social verbs to even basic online features.</p>
<p>Here’s why this matters to marketers: If they adopt the verb structure and API’s into their assets, they are more likely to surface through Facebook’s algorithms. For example, <a title="Ad Age Directory" href="http://adage.com/directory/ford-motor-co/235">Ford</a> should consider adopting the “watch” API for any video content on its site.</p>
<h4>
<li>Consider the lens of friends</li>
</h4>
<p>Content finds us though the lens of our friends. This means no two people see the same web. It’s all personalized. Execs need to think hard about their audiences and pay particular attention to psychographics. This can help guide decisions about the language and creative that will generate verbs, not just awareness.</p>
<h4>
<li>Prioritize media that think in verbs</li>
</h4>
<p>When making a media buy, look for partners that get the power of natural gestures and have started to build it into their armada. Insist that they add social functionality to even basic banner ads and rich-media executions.</p>
</ol>
<p>Your mission this year is not just to be heard but to inspire action. Tapping into the network effects of verbs is a must in a social digital age.</p>
<p><em>Image credit: <a title="http://www.flickr.com/photos/52291469@N00/2237413022/sizes/m/in/photostream/" href="http://www.flickr.com/photos/52291469@N00/2237413022/sizes/m/in/photostream/">sAeroZar</a></em></p>
<p><em>*Microsoft is an Edelman client.</em></p>
<p><i><a href="http://www.edelmandigital.com/2012/01/30/marketing-verbs-or-face-irrelevance/">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2012/02/why-marketers-must-think-in-verbs-or-face-increasing-irrelevance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bank Of America Gives Loan Modifications To People Who Won&#039;t Complain About Them On Facebook</title>
		<link>http://mattbriney.com/2012/01/bank-of-america-gives-loan-modifications-to-people-who-wont-complain-about-them-on-facebook/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=bank-of-america-gives-loan-modifications-to-people-who-wont-complain-about-them-on-facebook</link>
		<comments>http://mattbriney.com/2012/01/bank-of-america-gives-loan-modifications-to-people-who-wont-complain-about-them-on-facebook/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 12:45:11 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[Assistant Attorney General Carolyn Matthews]]></category>
		<category><![CDATA[Bank]]></category>
		<category><![CDATA[Bank of America]]></category>
		<category><![CDATA[BofA]]></category>
		<category><![CDATA[Businessweek]]></category>
		<category><![CDATA[court]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[loan modification]]></category>
		<category><![CDATA[state]]></category>
		<category><![CDATA[Them]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2012/01/bank-of-america-gives-loan-modifications-to-people-who-wont-complain-about-them-on-facebook/</guid>
		<description><![CDATA[As we&#8217;ve previously reported, Bank of America&#8217;s loan modification program (for want of a better phrase) is being sued by the state of [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://consumerist.com/assets_c/2012/01/bofasignnihggght-thumb-240x180-56744.jpg" />         </p>
<p>As we&#8217;ve previously reported, Bank of America&#8217;s loan modification program (for want of a better phrase) <a href="http://consumerist.com/2010/12/here-is-why-bank-of-america-is-being-sued.html">is being sued by the state of Arizona</a>.  But the AZ Attorney General says the nation&#8217;s second-largest bank is hindering his investigation by quietly negotiating settlements with underwater homeowners &#8212; or at least those who will pledge to keep their mouths shut about the bank.</p>
<p>BusinessWeek writes of one settlement in which the borrower, who defaulted on a $253,142 mortgage, had that loan modified to a 40-year loan with a sweetheart 2% interest rate.</p>
<p>For that admittedly awesome deal, the homeowner agreed to &#8220;remove and delete any online statements regarding this dispute, including, without limitation, postings on Facebook, Twitter and similar websites,&#8221; and to refrain from making statements &#8220;that defame, disparage or in any way criticize&#8221; Bank of America.</p>
<p>The Arizona Attorney General&#8217;s office, which claims knowledge of at least a dozen such settlements, has asked a court to compel BofA to turn over these agreements and to block the non-disparagement clauses. A hearing is set for Feb. 1.</p>
<p>&#8220;These agreements have completely silenced even the most communicative consumers,&#8221; writes Assistant Attorney General Carolyn Matthews in the state&#8217;s court filing. &#8220;The settlement agreement purposefully makes it impossible, legally and practically, for a consumer signing it to come forward, voluntarily and promptly, to provide evidence in this case.&#8221;</p>
<p>Lawyers for BofA defend the non-disparagement clauses, telling BusinessWeek that the bank will not enforce the provision if those who signed the settlements choose to speak to investigators for the state.</p>
<p><a href="http://www.businessweek.com/news/2012-01-26/bank-of-america-settlements-impede-fraud-probe-arizona-says.html">Bank of America Settlements Impede Fraud Probe, Arizona Says</a> [BusinessWeek.com via <a href="http://thinkprogress.org/economy/2012/01/26/412273/bank-of-america-buys-silence-fraud-investigation/?mobile=nc">ThinkProgress</a>]</p>
<p><i>Thanks to Steve for the tip!</i></p>
<p><i><a href="http://consumerist.com/2012/01/bank-of-america-accused-of-giving-loan-modifications-to-people-who-wont-complain-about-them-on-faceb.html">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2012/01/bank-of-america-gives-loan-modifications-to-people-who-wont-complain-about-them-on-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unified launches all-in-one social ad platform</title>
		<link>http://mattbriney.com/2012/01/unified-launches-all-in-one-social-ad-platform/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=unified-launches-all-in-one-social-ad-platform</link>
		<comments>http://mattbriney.com/2012/01/unified-launches-all-in-one-social-ad-platform/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 21:45:08 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Number]]></category>
		<category><![CDATA[Operating]]></category>
		<category><![CDATA[Operating Platform]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[social advertising]]></category>
		<category><![CDATA[today]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2012/01/unified-launches-all-in-one-social-ad-platform/</guid>
		<description><![CDATA[Unified announces its Social Operating Platform today to help brands and agencies manage paid media campaigns across networks like Facebook, Twitter, YouTube, LinkedIn [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.unifiedsocial.com/">Unified</a> announces its Social Operating Platform today to help brands and agencies manage paid media campaigns across networks like Facebook, Twitter, YouTube, LinkedIn and StumbleUpon. Operating in stealth mode since April 2011, Unified already claims Microsoft, Unilever, Digitas and more than 200 other advertisers as customers.</p>
<p>CEO and co-founder Sheldon Owen said Unified takes an enterprise approach to social advertising to give companies one system to manage campaigns from creative and planning stages to reporting and analytics. As businesses try campaigns on a number of new platforms, they can find themselves struggling to put things in perspective and understand how social media makes an impact. Unified’s Social Operating Platform calculates earned media and ROI by automating what many advertisers do manually through spreadsheets.</p>
<p>For example, a companies might use the Social Operating Platform to run Facebook ads to bring new fans to a page. In addition to setting a cost per action goal for the campaign, advertisers can assign values to other relevant metrics that are not otherwise included in an ad report. An advertiser paying $1 per fan might believe wall posts and comments are engagements with viral reach worth $0.20 each. The Social Operating Platform uses the Facebook API to display all of an advertiser’s performance indicators in one dashboard and calculate earned media value.</p>
<p><img src="http://www.insidefacebook.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-17-at-12.57.28-PM-500x288.png" alt="" width="500" height="288" /></p>
<p>One problem might be that advertisers might not know what sort of value to place on a YouTube share or Twitter @ reply, for instance. Besides offering some strategy consulting, Unified aims to help advertisers through its <a href="http://www.unifiedsocial.com/services/university/">Unified University</a> training program. The web-based program provides information about a number of social advertising platforms and allows people to get certified on its system.</p>
<p>The Social Operating Platform is available for an undisclosed per user license fee, and the company offers other services and ways to integrate additional data that are negotiated on a case by case basis.</p>
<p><img src="http://www.insidefacebook.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-17-at-12.55.39-PM-500x219.png" alt="" width="500" height="219" /></p>
<p><img src="http://feeds.feedburner.com/~r/InsideFacebook/~4/Z4T2ivgYgSc" height="1" width="1" /></p>
<p><i><a href="http://feedproxy.google.com/~r/InsideFacebook/~3/Z4T2ivgYgSc/">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2012/01/unified-launches-all-in-one-social-ad-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>22 Upcoming Hackathons: Wikipedia, Facebook and Social Good</title>
		<link>http://mattbriney.com/2012/01/22-upcoming-hackathons-wikipedia-facebook-and-social-good/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=22-upcoming-hackathons-wikipedia-facebook-and-social-good</link>
		<comments>http://mattbriney.com/2012/01/22-upcoming-hackathons-wikipedia-facebook-and-social-good/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 03:15:03 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[Good]]></category>
		<category><![CDATA[Hackathon]]></category>
		<category><![CDATA[Highland Heights KY]]></category>
		<category><![CDATA[New York]]></category>
		<category><![CDATA[Philadelphia PA]]></category>
		<category><![CDATA[ProgrammableWeb]]></category>
		<category><![CDATA[Toronto Ontario]]></category>
		<category><![CDATA[United States]]></category>
		<category><![CDATA[weekend]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2012/01/22-upcoming-hackathons-wikipedia-facebook-and-social-good/</guid>
		<description><![CDATA[Hackathons are a fast growing phenomenom where developers come together, usually in short periods up to 72 hours to submit ideas, form teams [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.programmableweb.com/wp-content/hack.png" alt="" width="130" height="61" />Hackathons are a fast growing phenomenom where developers come together, usually in short periods up to 72 hours to submit ideas, form teams and hack together applications, data visualizations and sometimes form business models around their ideas. ProgrammableWeb is tracking 22 hackathons coming in the next couple weeks all around the world.</p>
<p><img src="http://blog.programmableweb.com/wp-content/hackathons.jpg" alt="" width="225" />Most of the hackathons below are in the United States, with New York (four events) edging out San Francisco (two events). Here is the complete list of 22 upcoming hackathons:</p>
<ul>
<li><a href="http://accelerator-1.eventbrite.com/">Accelerator Workshop</a> – 01/11/2012 – Toronto Ontario, Canada</li>
<li>
<a href="http://calagator.org/events/1250461625">PDX Weekly Hackathon</a> – 01/12/2012 – Portland OR, United States</li>
<li>
<a href="http://pennapps2012s.ticketleap.com/pennapps-spring-2012/">PennApps Spring 2012: Simplicity</a> – 01/13/2012 – Philadelphia PA, United States</li>
<li>
<a href="http://www.eventbrite.com/event/2298145816">Copenhagen 3D Startup Weekend January 2012</a> – 01/13/2012 – Frederiksberg, Denmark</li>
<li>
<a href="http://swnorthernkentucky.eventbrite.com/">Northern Kentucky Startup Weekend</a> – 01/13/2012 – Highland Heights KY, United States</li>
<li>
<a href="http://www.eventbrite.com/event/2441526672">Seattle Startup Weekend</a> – 01/13/2012 – Seattle WA, United States</li>
<li>
<a href="http://startupwmi2012.eventbrite.com/">West Michigan Startup Weekend</a> – 01/13/2012 – Grand Rapids MI, United States</li>
<li>
<a href="http://culverthackathon2012.eventbrite.com/">Culvert Hackathon 2012</a> – 01/14/2012 – Virtual</li>
<li>
<a href="http://arduino.eventbrite.com/">Arduino Camp &amp; Robot Hackathon</a> – 01/14/2012 – New York NY, United States</li>
<li>
<a href="http://mobilehacknewyork.eventbrite.com/">Facebook Mobile Hack – New York</a> – 01/18/2012 – New York NY, United States</li>
<li>
<a href="http://graphicdesign.eventbrite.com/">CodeChix Presents: Mobile/Web Graphic Design for Engineers (Women only)</a> – 01/18/2012 – Mountain View CA, United States</li>
<li>
<a href="http://wvnyc-hackathon.eventbrite.com/">Hackathon for Social Good</a> – 01/19/2012 – New York NY, United States</li>
<li>
<a href="http://www.mediawiki.org/wiki/San_Francisco_H">Wikipedia – San Francisco Hackathon January 2012</a> – 01/20/2012 – San Francisco CA, United States</li>
<li>
<a href="http://haskell.org/haskellwiki/Hac_Boston">Haskell Hackathon</a> – 01/20/2012 – Cambridge MA, United States</li>
<li>
<a href="http://bostonhack.eventbrite.com/">Facebook Mobile Hack – Boston</a> – 01/20/2012 – Boston MA, United States</li>
<li>
<a href="http://cchnlhackathon.eventbrite.com/">CityCampHNL Hackathon</a> – 01/20/2012 – Honolulu HI, United States</li>
<li>
<a href="http://annarborstartupweekend.eventbrite.com/">Startup Weekend Ann Arbor</a> – 01/20/2012 – Ann Arbor MI, United States</li>
<li>
<a href="http://swjacksonville.eventbrite.com/">Jacksonville Startup Weekend</a> – 01/20/2012 – Jacksonville FL, United States</li>
<li>
<a href="http://www.eventbrite.com/event/1920282617">Startup Weekend Krakow, 20-22 January 2012</a> – 01/20/2012 – Kraków Malopolskie, Poland</li>
<li>
<a href="http://swslo.eventbrite.com/">Startup Weekend SLO</a> – 01/20/2012 – San Luis Obispo CA, United States</li>
<li>
<a href="http://www.eventbrite.com/event/2630225074">Umbraco London Hack day</a> – 01/20/2012 – London London, United Kingdom</li>
<li>
<a href="http://cleanwebhack.com/hackathon/">Cleanweb Hackathon NYC</a> – 01/21/2012 – New York NY, United States</li>
</ul>
<p>If we missed your event, make sure and submit below as a comment and we’ll include it next week.</p>
<p>For those that are new to the hackathon space, these events are not intended to perform illegal activities around computer networks. <em><strong> Software developers widely see hacking as a quick and dirty programming solution to a problem</strong></em>.  It is <span><strong>NOT</strong></span> about gaining access to other networks, which is a definition widely publicized by the media and hollywood.  Among the developer community, it is mean to be a positive term that drives innovation among developers.</p>
<div>
<a href="http://feeds.feedburner.com/~ff/ProgrammableWeb?a=orUUgbCQRXY:lnOr53Fs-dc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ProgrammableWeb?d=yIl2AUoC8zA" border="0" /></a> <a href="http://feeds.feedburner.com/~ff/ProgrammableWeb?a=orUUgbCQRXY:lnOr53Fs-dc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ProgrammableWeb?d=7Q72WNTAKBA" border="0" /></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/ProgrammableWeb/~4/orUUgbCQRXY" height="1" width="1" /></p>
<p><i><a href="http://feedproxy.google.com/~r/ProgrammableWeb/~3/orUUgbCQRXY/">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2012/01/22-upcoming-hackathons-wikipedia-facebook-and-social-good/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>‘People Talking About This’ defined</title>
		<link>http://mattbriney.com/2012/01/people-talking-about-this-defined/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=people-talking-about-this-defined</link>
		<comments>http://mattbriney.com/2012/01/people-talking-about-this-defined/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 18:20:06 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Likes]]></category>
		<category><![CDATA[News Feed]]></category>
		<category><![CDATA[Number]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[topic]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2012/01/people-talking-about-this-defined/</guid>
		<description><![CDATA[Facebook introduced “People Talking About This” in October, but the new metric is still unclear to many page owners. Part of the confusion [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.insidefacebook.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-10-at-8.31.27-AM.png" alt="" width="156" height="53" hspace="20" vspace="10" />Facebook introduced “<a title="Facebook Lets Brands Measure Earned Media With “People Talking About This” Page Metric" href="http://www.insidefacebook.com/2011/10/03/people-talking-about-this-page-insights/">People Talking About This</a>” in October, but the new metric is still unclear to many page owners. Part of the confusion comes from the name, which sounds like it calculates the mentions of a topic across the social network, when in reality, the metric only counts direct interactions with a page. Further misunderstanding results from the difference in how this number is reported versus how page Likes are reported. Page owners who know what type of activity increases People Talking About This can improve their Facebook marketing efforts by reaching fans and their friends.</p>
<h3>What is ‘People Talking About This?’</h3>
<p>People Talking About This is the number of unique users who have created a “story” about a page in a seven-day period. On Facebook, stories are items that display in News Feed. Users create stories when they:</p>
<ul>
<li>like a page</li>
<li>post on the page wall</li>
<li>like a post</li>
<li>comment on a post</li>
<li>share a post</li>
<li>answer a question</li>
<li>RSVP to a page’s event</li>
<li>mention the page in a post</li>
<li>tag the page in a photo</li>
<li>check in at a place</li>
<li>share a check-in deal</li>
<li>like a check-in deal</li>
<li>write a recommendation</li>
</ul>
<p>Whenever a person takes one of these actions, it counts toward People Talking About This. If a user posts a status update about going to a restaurant, that will not affect People Talking About This unless the user uses the @ function to tag the restaurant’s page or checks in to the restaurant from a mobile device. For now, plain text mentions of a topic do not influence People Talking About This, which is meant to indicate how well a page is engaging fans, not simply how popular something is.</p>
<p>Because the metric tracks unique users interacting with a page over a seven-day range, if a fan leaves more than one comment or both likes and shares a post within that time, it adds only one point to People Talking About This. However, the number changes daily so it is important to engage fans consistently to keep this number up.</p>
<p><img src="http://www.insidefacebook.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-10-at-8.25.34-AM.png" alt="" width="111" height="88" hspace="20" vspace="10" />Anyone visiting a page can see the total People Talking About This on the left side of the page under the number of Likes. Although Likes are counted and displayed in real time, People Talking About This data is typically two days behind. This means the number doesn’t tell admins how many people are talking about their page right now, but how many people directly interacted with the page in some way in the seven days prior to two days ago. It’s no wonder people are having trouble understanding the new metric.</p>
<p>To further complicate things, individual posts also have a People Talking About This count, which only page owners can view. This is the unique number of users who interacted with a post in a way that generated a story, for instance, liking, sharing or commenting on content. When users like specific comments on a post, it does not count toward this total since the action does not generate a News Feed story.</p>
<p><img src="http://www.insidefacebook.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-10-at-8.35.04-AM.png" alt="" width="413" height="102" /></p>
<h3>How does ‘People Talking About This’ affect pages?</h3>
<p>People Talking About This is an important metric because it emphasizes interactions beyond an initial Facebook Like. Pages that create posts that fans enjoy will benefit. When people interact with pages in ways that generate stories, pages reach an audience beyond their existing fan base. Users benefit, too, from pages providing more relevant content. Pages that have been focused on gaining Likes without an engagement strategy to follow it will suffer from the disparity between the number of Likes and People Talking About This.</p>
<p><img src="http://feeds.feedburner.com/~r/InsideFacebook/~4/_DeWeaijOd0" height="1" width="1" /></p>
<p><i><a href="http://feedproxy.google.com/~r/InsideFacebook/~3/_DeWeaijOd0/">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2012/01/people-talking-about-this-defined/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>61 Percent Of Disqus Comments Are Made With Pseudonyms</title>
		<link>http://mattbriney.com/2012/01/61-percent-of-disqus-comments-are-made-with-pseudonyms/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=61-percent-of-disqus-comments-are-made-with-pseudonyms</link>
		<comments>http://mattbriney.com/2012/01/61-percent-of-disqus-comments-are-made-with-pseudonyms/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 13:50:05 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[middle ground]]></category>
		<category><![CDATA[Pseudonyms]]></category>
		<category><![CDATA[real name]]></category>
		<category><![CDATA[real names]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2012/01/61-percent-of-disqus-comments-are-made-with-pseudonyms/</guid>
		<description><![CDATA[One of the unending debates in blogging circles is about the value of comments. How do you encourage the best comments and discourage [...]]]></description>
			<content:encoded><![CDATA[<p><img width="100" height="70" src="http://tctechcrunch2011.files.wordpress.com/2012/01/disqus-pseudonyms.jpg?w=100&amp;h=70&amp;crop=1" alt="Disqus Pseudonyms" />
<p>One of the unending <a href="http://techcrunch.com/2012/01/04/blogs-need-comments/">debates</a> in blogging circles is about the value of comments. How do you encourage the best comments and discourage the anonymous trolls? Do you <a href="http://parislemon.com/post/15305835451/bile">even need </a>comments?  Or do you enforce civility by requiring real names, through the use of Facebook comments (which is what we currently use on TechCrunch) at the expense of <a href="http://techcrunch.com/2011/03/06/techcrunch-facebook-comments/">discouraging</a> conversation?</p>
<p>But there is a middle ground between anonymous commenters and those with real names: commenters who use <em>pseudonyms. </em>People use pseudonyms for many reasons, often because it better reflects their online persona or they simply want to separate their identities for different activities. New <a href="http://disqus.com/research/pseudonyms/">data from Disqus</a>, the commenting platform, suggests that pseudonyms both encourage more and better comments.</p>
<p>According to the data, 61 percent of all Disqus comments are made via pseudonyms, versus 35 percent anonymous and 4 percent using real names (i.e. Facebook). People with pseudonyms also comment 6.5 times more than those who comment anonymously and 4.7 times more than commenters who use real names.</p>
<p>Okay, but what about the trolls?  Disqus maintains that only does allowing pseudonyms produce more comments, but the quality of the comments is also better, as measured by likes and replies. Disqus maintains that 61 percent of pseudonymous comments on its system are positive in that regard, versus only 34 percent positive for anonymous comments (I knew it!) and 51 percent positive for comments made using real names. People who use pseudonyms post better comments on Disqus. Their comments are liked more and generate more discussion.</p>
<p>On the negative front—comments that are marked as spam, flagged, or deleted—both anonymous and pseudonymous comments are poor quality 11 percent of the time.  Comments under real names are negative 9 percent of the time, so a little bit better than the other two but not by much.</p>
<p>Would this data hold true across other commenting systems? It is hard to say. Disqus allows for pseudonyms, and they are obviously popular on that system. People who register for a Disqus account get verified, and then can pick another name under which to comment. People can comment anonymously as well.</p>
<p>Pseudonyms appear to be a promising middle ground for commenting systems. You want to be able to block or downgrade bad actors (spam, hate speech, etc.) without discouraging the much larger number of legitimate commenters who may not want to use their real names. Should all blogs allow for pseudonyms in comments? Please comment using your real name below  </p>
</p>
<p>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tctechcrunch2011.wordpress.com/480149/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tctechcrunch2011.wordpress.com/480149/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tctechcrunch2011.wordpress.com/480149/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tctechcrunch2011.wordpress.com/480149/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tctechcrunch2011.wordpress.com/480149/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tctechcrunch2011.wordpress.com/480149/"></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tctechcrunch2011.wordpress.com/480149/"></a>
</p>
<div>
<a href="http://feeds.feedburner.com/~ff/Techcrunch?a=gSsnV0IYL-4:ASDXUA4g3JA:2mJPEYqXBVI"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=2mJPEYqXBVI" border="0" /></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=gSsnV0IYL-4:ASDXUA4g3JA:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=7Q72WNTAKBA" border="0" /></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=gSsnV0IYL-4:ASDXUA4g3JA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=yIl2AUoC8zA" border="0" /></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=gSsnV0IYL-4:ASDXUA4g3JA:-BTjWOF_DHI"><img src="http://feeds.feedburner.com/~ff/Techcrunch?i=gSsnV0IYL-4:ASDXUA4g3JA:-BTjWOF_DHI" border="0" /></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=gSsnV0IYL-4:ASDXUA4g3JA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Techcrunch?i=gSsnV0IYL-4:ASDXUA4g3JA:D7DqB2pKExk" border="0" /></a> <a href="http://feeds.feedburner.com/~ff/Techcrunch?a=gSsnV0IYL-4:ASDXUA4g3JA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Techcrunch?d=qj6IDK7rITs" border="0" /></a>
</div>
<p><img src="http://feeds.feedburner.com/~r/Techcrunch/~4/gSsnV0IYL-4" height="1" width="1" /></p>
<p><i><a href="http://feedproxy.google.com/~r/Techcrunch/~3/gSsnV0IYL-4/">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2012/01/61-percent-of-disqus-comments-are-made-with-pseudonyms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Facebook Comments impact Google search rankings</title>
		<link>http://mattbriney.com/2012/01/how-facebook-comments-impact-google-search-rankings/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-facebook-comments-impact-google-search-rankings</link>
		<comments>http://mattbriney.com/2012/01/how-facebook-comments-impact-google-search-rankings/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 22:00:05 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Change]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Impact]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2012/01/how-facebook-comments-impact-google-search-rankings/</guid>
		<description><![CDATA[This post provides a brief introduction to Google’s update; content publishers and webmasters should read on for the full, free, overview at The [...]]]></description>
			<content:encoded><![CDATA[<p><em>This post provides a brief introduction to Google’s update; content publishers and webmasters should read on for the full, free, overview at <a href="http://gold.insidenetwork.com/facebook-marketing-bible">The Facebook Marketing Bible</a>.</em></p>
<p>Google’s November 2011 changes to its web crawler have created new opportunities and liabilities for all websites implementing Facebook Comments, with important implications for SEO. Webmasters who properly implement and manage Facebook Comments stand to gain, but the recent changes could significantly hurt the rankings of sites who do not properly prevent and manage spam.</p>
<p>Google announced last November that it had begun indexing Javascript and AJAX content, without requiring webmasters to implement workarounds. While Google has not yet claimed to be indexing 100 percent of Javascript and AJAX content, it became clear soon after the change that Facebook Comments, which is displayed using AJAX and HTML5, are now indexed by Google.</p>
<p><img src="http://gold.insidenetwork.com/facebook-marketing-bible/wp-content/uploads/image00.png" alt="Facebook Comments Example" width="405" height="211" /></p>
<p>Previously, in order to get Google’s crawler to index Facebook Comments, webmasters had to use a workaround like displaying an duplicate plain-text version of Comments that was visible to Google’s site crawler, but invisible to visitors, who would still see the regular Facebook Comments.</p>
<p>This workaround required webmasters to use the Facebook Graph API to pull Comments (access to Comments through the Graph API was announced on the Facebook Developer Blog in April). The technical nature of this workaround meant that few websites implemented it, and therefore, for most sites, Facebook Comments had no impact on Google Search rankings.</p>
<p>Given the November change, Facebook Comments are now indexed by Google without any workaround. Since Google’s search rankings are affected by the quality and relevance of the text on a given page, as well as the quantity and quality of outbound links, this change means that any site visitor can affect search rankings by commenting. Quality, relevant comments and links may help boost a page’s ranking, but spam in Facebook Comments may also hurt rankings.</p>
<p>To learn more about the specific advantages of Facebook Comments for site owners, read on for our <a href="http://gold.insidenetwork.com/facebook-marketing-bible/?page_id=5591">free, detailed overview in the Facebook Marketing Bible</a>, where we cover:</p>
<ul>
<li><span><strong>Facebook Comments versus Disqus, ECHO, and IntenseDebate</strong></span></li>
<li><span><strong>Who should use Facebook Comments? A few examples of live sites that are doing it well</strong></span></li>
<li><span><strong>Getting a search ranking lift through Facebook Comments</strong></span></li>
<li><span><strong>Facebook Comments and the spam risk</strong></span></li>
</ul>
<p><span><strong>&gt;&gt; </strong><strong><a href="http://gold.insidenetwork.com/facebook-marketing-bible/?page_id=5591"><span>Click to Continue Reading</span></a></strong></span></p>
<p><img src="http://feeds.feedburner.com/~r/InsideFacebook/~4/bdE22eVKLQc" height="1" width="1" /></p>
<p><i><a href="http://feedproxy.google.com/~r/InsideFacebook/~3/bdE22eVKLQc/">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2012/01/how-facebook-comments-impact-google-search-rankings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Asks How Well You Know Your Friends</title>
		<link>http://mattbriney.com/2011/12/facebook-asks-how-well-you-know-your-friends/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=facebook-asks-how-well-you-know-your-friends</link>
		<comments>http://mattbriney.com/2011/12/facebook-asks-how-well-you-know-your-friends/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 00:00:38 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[News Feed]]></category>
		<category><![CDATA[News Feeds]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2011/12/facebook-asks-how-well-you-know-your-friends/</guid>
		<description><![CDATA[Facebook is asking some users to provide information about how well they know the people they are connected to so that the social [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook is asking some users to provide information about how well they know the people they are connected to so that the social network can show users more relevant and interesting content.</p>
<p><img src="http://www.insidefacebook.com/wp-content/uploads/2011/12/Screen-Shot-2011-12-14-at-11.44.39-AM.png" alt="" width="245" height="163" hspace="20" vspace="10" /></p>
<p>In a unit on the right sidebar of the site, Facebook asks, “How well do you know [friend’s name]?” Multiple-choice options follow.</p>
<p>This research question is yet another example of how Facebook has been experimenting to improve relevance of the News Feed through algorithms and direct user feedback. As people connect with more pages and people and share more information, whether through mobile updates or Open Graph activity, Facebook must provide a manageable and worthwhile News Feed experience.</p>
<p>In September, Facebook combined the Top News and Recent Stories filters <a href="http://www.insidefacebook.com/2011/09/20/single-feed-ticker/">into a single feed</a>. Users can now highlight stories to let Facebook know they want to see more items like those, and they can un-highlight stories they feel Facebook has mistakenly marked as important. With the <a href="http://www.insidefacebook.com/2011/09/14/subscribe-button/">new subscribe feature</a>, users can also indicate the type of updates they want to see or not see from their friends and people they follow.</p>
<p>While average user will not spend much, if any, time organizing their friends or News Feeds, more advanced users will appreciate the control Facebook is offering.</p>
<p><img src="http://feeds.feedburner.com/~r/InsideFacebook/~4/XkAySd0BWJU" height="1" width="1" /></p>
<p><i><a href="http://feedproxy.google.com/~r/InsideFacebook/~3/XkAySd0BWJU/">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2011/12/facebook-asks-how-well-you-know-your-friends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Facebook Insights Brings Better Data to Page Owners</title>
		<link>http://mattbriney.com/2011/12/new-facebook-insights-brings-better-data-to-page-owners/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=new-facebook-insights-brings-better-data-to-page-owners</link>
		<comments>http://mattbriney.com/2011/12/new-facebook-insights-brings-better-data-to-page-owners/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 00:00:05 +0000</pubDate>
		<dc:creator>Matt Briney</dc:creator>
				<category><![CDATA[Reading List]]></category>
		<category><![CDATA[Better]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Insights]]></category>
		<category><![CDATA[Number]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[sense]]></category>
		<category><![CDATA[Understanding]]></category>

		<guid isPermaLink="false">http://mattbriney.com/2011/12/new-facebook-insights-brings-better-data-to-page-owners/</guid>
		<description><![CDATA[Social data and insights are imperative to understanding how consumers engage with our content. It’s also imperative for understanding how our consumers react [...]]]></description>
			<content:encoded><![CDATA[<p>Social data and insights are imperative to understanding how consumers engage with our content. It’s also imperative for understanding how our consumers react to our product when talking to their respective online networks. The more intelligence we have on the consumer, the smarter our communications strategies will be and, even more importantly, the better our products will be for them to consume.</p>
<p>Fewer places offer as much data on the consumer as Facebook. With an astounding global user base topping 800 million, Facebook is a treasure trove of consumer data just waiting to be tapped for insights. The number of tools that have been developed or are currently under development to mine that data (competitive or for our brands) is astounding. It’s not a trend that’s likely to slow anytime soon, so the big winner will be the company that provides quality data and insights in an easy to digest form. Who that is remains to be seen.</p>
<h5>Facebook Insights Bulks Up With Data</h5>
<p>One of the key players in the Facebook data and insights race is obviously Facebook. They have all of the data already and, in theory, it should be easiest for them to serve it up to users. The new evolution of <a title="http://www.facebook.com/help/?faq=116512998432353#What-are-Insights?" href="http://www.facebook.com/help/?faq=116512998432353#What-are-Insights?">Facebook Insights</a>, a free data solution offered to administrators of brand pages, is seeking to answer many questions about our target consumers. Being rolled out on December 15th, there are several new components to Facebook  Insights that make us think the new platform will be much stronger for  users.</p>
<p>Those new features include:</p>
<h4>Richer engagement metrics</h4>
<p>The current version of Facebookinsights really only dives into likes, comments and interaction rates to give page owners a deeper sense of engagement. The new “people talking about this” metric is inherently more powerful by looking at overall page likes, comments, shares or likes of posts, answers of a question, responses to your event, mentions of your page, tagging your page in a photo, checking in or recommending your page. By including more engagement datapoints, we should have a better understanding of how people interact with and amplify our content.</p>
<h4>Total Reach is stronger</h4>
<p>The total reach metric is the number of unique people who have seen any content associated with your page, which includes advertising or sponsored stories pointingto your page in the last 7 days. This metric is more useful than looking at just pageviews or impressions alone because it tracks the <strong>entire </strong>Facebook ecosystem. More on that in a minute. Now, page owners will have a greater sense of the true reach of their page.</p>
<h4>Improved per post data</h4>
<p>In the current version of Facebook Insights, data is very surface level (<em>likes</em>, <em>comments</em>, <em>interaction rates</em>) on a per post basis. The inclusion of unique reach, engaged users (the number of unique people who have clicked any whereon your post), the number of people talking about the post and virality (the number of unique people who have created a story from your post as a percentage of the number of unique people who’ve seen it) is great for page owners looking to achieve more clarity on what types of posts perform best.</p>
<h4>Better click data</h4>
<p>In addition to now receiving link clicks per post (what was provided before was a rolled up clicks figure), we cannow learn what else people are clicking on in a post. The new Facebook Insights will let page owners track the number of times a user clicks on people’s names in comments, clicks on the like count, clicks on the time stamp, etc…</p>
<h5>Measuring Branded Content: Opening the Lens</h5>
<p>Overall, one of the biggest takeaways is that Facebook is now going to be offering improved understanding of the performance of branded content in the entire Facebook ecosystem. One of the biggest issues with the current version of Facebook Insights is that the data is collected through a very narrow lens — by that we mean what is happening on the page almost exclusively. These new metrics, like <strong>total reach</strong>, which includes ads and sponsored stories, attempt to give page owners a better sense for how far messaging travels outside of “their four walls.”</p>
<p>If you have had a chance to experiment with the new Insights platform, what do you think? Is the data better?</p>
<p><em>Image credit: <a title="http://www.flickr.com/photos/spencereholtaway/3376955055/sizes/m/in/photostream/" href="http://www.flickr.com/photos/spencereholtaway/3376955055/sizes/m/in/photostream/">Spencer E Holtway</a></em></p>
<p><i><a href="http://www.edelmandigital.com/2011/12/14/facebook-insights-better-data/">Original Source</a></i></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbriney.com/2011/12/new-facebook-insights-brings-better-data-to-page-owners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

