<?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>Momentus Media</title>
	<atom:link href="http://momentusmedia.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://momentusmedia.com/blog</link>
	<description>Insights on Facebook Marketing, Virality and Social Media.</description>
	<lastBuildDate>Mon, 14 May 2012 16:12:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Word Wrapping in ImageMagick</title>
		<link>http://momentusmedia.com/blog/?p=2107</link>
		<comments>http://momentusmedia.com/blog/?p=2107#comments</comments>
		<pubDate>Tue, 03 Apr 2012 00:16:52 +0000</pubDate>
		<dc:creator>Anna</dc:creator>
				<category><![CDATA[App Development]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Image processing]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=2107</guid>
		<description><![CDATA[Creating an image out of text in ImageMagick is easy, if you have a static string. If, on the other hand, you have a string of varying lengths, and you want to keep the same font size, it&#8217;s an entirely different matter. The requirements: - Keep box height and width the same - Keep font [...]]]></description>
			<content:encoded><![CDATA[<p>Creating an image out of text in ImageMagick is easy, if you have a static string. If, on the other hand, you have a string of varying lengths, and you want to keep the same font size, it&#8217;s an entirely different matter.</p>
<p>The requirements:<br />
- Keep box height and width the same<br />
- Keep font size the same<br />
- Incoming string lengths vary<br />
- Add &#8220;ellipses&#8221; if strings are too long, cut off at readable point (between words)</p>
<p>This simple idea is actually quite trickier than we thought.</p>
<h2>newPseudoImage()</h2>
<p>This method is very handy. With the &#8220;caption&#8221; prefixing the string, ImageMagick renders the text as an image, problem is that the font size is determined by the best fit. </p>
<p><a href="http://momentusmedia.com/blog/wp-content/uploads/2012/04/blog2.png"><img src="http://momentusmedia.com/blog/wp-content/uploads/2012/04/blog2.png" alt="" width="100" height="100" /></a> <a href="http://momentusmedia.com/blog/wp-content/uploads/2012/04/blog1.png"><img src="http://momentusmedia.com/blog/wp-content/uploads/2012/04/blog1.png" alt="" width="100" height="100" /></a></p>
<pre>
<code>
setBackgroundColor("transparent");
$words-&amp;gt;setOption("fill","white");
$words-&amp;gt;newPseudoImage($x,$y, "caption: ".$text); 

$im-&amp;gt;compositeImage($words, Imagick::COMPOSITE_OVER,0,0);
$im-&amp;gt;setImageFormat( "png") ;
header( "Content-Type: image/png" );
echo $im;
?&amp;gt;</code>
</pre>
<h2>AnnotateImage()</h2>
<p>The old school way is to use ImageMagick&#8217;s AnnotateImage() method. This allows you to create a drawable object with static font size. Yay! But you have to provide it with a string that is already short enough, otherwise the words will scroll right off. Note use of &#8220;wordwrap()&#8221; method to create new lines at a certain character point. I hard-coded this as 15, based on trial and error. More on this later.</p>
<p><img src="http://momentusmedia.com/blog/wp-content/uploads/2012/04/blog3b.png" alt="" width="100" height="100" /> </p>
<pre>
<code>newImage($x,$y,new ImagickPixel("blue"));

$draw = new ImagickDraw();
$draw-&amp;gt;setFillColor("white");
$draw-&amp;gt;setFontSize("12");
$im-&amp;gt;annotateImage($draw, 10,14,0,$text);

$im-&amp;gt;setImageFormat( "png") ;
header( "Content-Type: image/png" );
echo $im;

?&amp;gt;</code>
</pre>
<p>So, we&#8217;re almost there. To further leverage wordwrap(), we need to know the character length of the box. To cut the string properly, we need to know how many rows are in the box. Using those, we can snip it appropriately and add the ellipses. There&#8217;s still one more handy method in our arsenal. Introducing&#8230; </p>
<h2>queryFontMetrics()</h2>
<p>This method gives you pixel lengths based on a string and a font. With this information we can create either an average character length in pixels, or a ratio that we can apply to the long string, i.e. our string is 3x as big as required, cut it in thirds.</p>
<p><a href="http://momentusmedia.com/blog/wp-content/uploads/2012/04/blog41.png"><img src="http://momentusmedia.com/blog/wp-content/uploads/2012/04/blog41.png" alt="" width="100" height="100" class="aligncenter size-full wp-image-2141" /></a></p>
<pre>
<code>newImage($x,$y,new ImagickPixel("blue"));

$draw = new ImagickDraw();
$draw-&amp;gt;setFillColor("white");
$draw-&amp;gt;setFontSize(10);

$metrics = $im-&amp;gt;queryFontMetrics($draw, $text);

/* how many rows in box? */
$rows = round($y/$metrics['textHeight'])-1; /* less 1 for vertical padding */

/* extend to one long row to compare with metrics */
$single_status_px = $rows * $x;

/* create shorter string by applying ratio */
$px_ratio = round($single_status_px / $metrics["textWidth"],2);
$status_length_char = strlen($text);
$cutoff_char_point = round($status_length_char * $px_ratio);
$short_string = substr($text,0,$cutoff_char_point);

/* cutoff last element, which could be a partial word, and add ellipses */
$words = explode(" ",$short_string);
array_pop($words);
$short_string_final = implode($words, " ");
$short_string_final .= "...";

/* make new lines and add to image */
$short_string_final = wordwrap($short_string_final, round(strlen($short_string_final)/$rows));

$y2= $metrics['textHeight'] + 3;
$im-&amp;gt;annotateImage($draw,3,$y2,0,$short_string_final);

$im-&amp;gt;setImageFormat( "png") ;
header( "Content-Type: image/png" );
echo $im;
?&amp;gt;</code>
</pre>
<h2>Review</h2>
<p>So the solution is a series of steps. First, queryFontMetrics() to find pixel length with applied font, create ratio to dynamic string, use PHP&#8217;s wordwrap() function to gracefully find a cutting point, and then use annotateImage() to output the text to the image.</p>
<p>As you can see, it needs some improvement. Getting queryFontMetrics() on each line is CPU intensive (IM calls are) especially if it&#8217;s in a loop, adding characters to fill a slotted width. I also played with getting an average character width, but that resulted in uglier results than this. </p>
<h2>More Reading</h2>
<p><a href="http://www.imagemagick.org/Usage/text/">ImageMagick Test Functions</a><br />
<a href="http://valokuva.org/?p=93">Mikko&#8217;s blog post on Typesetting</a><br />
<a href="http://php.net/manual/en/function.imagettfbbox.php">GD&#8217;s imagettfbbox() method is very similar to queryFontMetrics()</a></p>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=2107</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Call It An App</title>
		<link>http://momentusmedia.com/blog/?p=2073</link>
		<comments>http://momentusmedia.com/blog/?p=2073#comments</comments>
		<pubDate>Tue, 27 Mar 2012 00:24:40 +0000</pubDate>
		<dc:creator>Anna</dc:creator>
				<category><![CDATA[App Development]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=2073</guid>
		<description><![CDATA[There&#8217;s this evolution of the meaning behind &#8220;app.&#8221; From iPhones to Facebook, I encounter requests with increasing &#8220;appiness.&#8221; What is it? Or rather, what is it not? So the term app comes from &#8220;application&#8221;, and we all know you don&#8217;t really have any kind of fun in applications. You write term papers in one. Or, [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s this evolution of the meaning behind &#8220;app.&#8221; From iPhones to Facebook, I encounter requests with increasing &#8220;appiness.&#8221; What is it? Or rather, what is it not?</p>
<p>So the term app comes from &#8220;application&#8221;, and we all know you don&#8217;t really have any kind of fun in applications. You write term papers in one. Or, worse, it&#8217;s the software that pops up when I hook up my scanner.</p>
<p>Applications have:<br />
- state (They keep track of the user and preferences, the last thing you did here.)<br />
- navigation, the &#8220;back button&#8221;<br />
- menu items (functions like edit, etc.)</p>
<p>I can&#8217;t think of one application that has gone viral on Facebook.</p>
<p>Most of us play games on Facebook. Games have:<br />
- state (They keep track of the user and preferences, the last thing you did here.)<br />
- levels, progression<br />
- leaderboard</p>
<p>While games have very high and repeated usage, I wouldn&#8217;t say they&#8217;re viral. Collaborative gaming, though, with its repeated share opportunities, could be viral (but sometimes are just spammy).</p>
<p>Our version of apps are more about experience and engagement. We leverage the Social Graph to create an insight for the user and the brand. It&#8217;s an enhanced use of Facebook to explore commonality. The best terms, so far, are a double-word combinations: social project, branded engagement, or marketing engagement. I know, it&#8217;s not ideal. It&#8217;s like a marketing campaign, with social data, for a specific client.</p>
<p>The strength in not having, nor wanting, to serve users with menus and navigations, is that we can get across a simple idea faster, which results in more virality. We&#8217;ve learned that, because perhaps the minimal landscape and canvas, that you really need to limit the options for users. Basically one image, one button, one graphic. You&#8217;re nested in a highly complex interface already, so keep it simple.</p>
<p>This style of modular design isn&#8217;t new, and is quite popular in mobile, too. As Facebook becomes increasingly mobile- at last glance 40% of our users for one client was on mobile- apps have to become more and more un-application-like.</p>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=2073</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Telling your Brand Story through the Lens of the Customers</title>
		<link>http://momentusmedia.com/blog/?p=2084</link>
		<comments>http://momentusmedia.com/blog/?p=2084#comments</comments>
		<pubDate>Fri, 23 Mar 2012 01:45:42 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=2084</guid>
		<description><![CDATA[Online social networks have changed the nature of the relationship between a consumer and a brand. The traditional consumer/brand relationship was developed through repeated push marketing by the brand where an individual identified with some aspect of the brand’s product, image or message. The problem for many companies is that the very things that make [...]]]></description>
			<content:encoded><![CDATA[<p>Online social networks have changed the nature of the relationship between a consumer and a brand. The traditional consumer/brand relationship was developed through repeated push marketing by the brand where an individual identified with some aspect of the brand’s product, image or message. The problem for many companies is that the very things that make push marketing effective—tight, relatively centralized operational control over a well-defined set of channels and touch points—hold it back in the era of engagement.</p>
<p>Social media has turned this channel dynamic upside down. Brands who are successful on social have learned that it’s not about blasting out their message, but engaging and connecting with people on an individual and emotional level.  (You can find some basic resources on best practices for publishing on the social web at Buddy Media’s <a href="mailto:http://www.buddymedia.com/resources/white-papers">White Papers</a> resource center)</p>
<p>One example of this comes from the <a href="mailto:http://www.slideshare.net/EdelmanDigital/8095-white-paper">Edelman Digital 8095 report</a>, where Michael Penman, senior director of global marketing at Levis Strauss recognized this new genre of customer influence:</p>
<p><em>&#8220;We have to let go a lot. As a brand, I think we were a company, among others, who felt that tight control of the brand and saying what our voice is was crucial up until probably a couple of years ago. We&#8217;re essentially a brand now that is based on co-creation, self-expression, and originality&#8221;</em></p>
<p>Another way to look at co-creation, self-expression and originality is telling the brand story through the lens of the customers. This approach humanizes a brand by adding an authentic voice that individuals connect with. Paul Adams, a thought leader on the social web, inventor of google circles and a currently working with Brands on Facebook wrote a book called  “<a href="mailto:http://www.amazon.com/Grouped-groups-friends-influence-social/dp/0321804112/ref=sr_1_1%3Fs=books%26ie=UTF8%26qid=1332466042%26sr=1-1">Grouped: How small groups of friends are the key to influence on the social web.</a> ” He describes fundamentally how proliferation of content works on the social web.</p>
<p><em>&#8220;When we think about how information spreads, we need to understand that the only way it can pass between these independent groups of friends is through the unique individual who connects them. In other words, the only way information can spread through a large population is through many regular people just like you.&#8221;</em></p>
<p>Co-created, user generated or brand generated content from the lens of customers, bloggers, musicians, photographers, stylists and other participants foster the connection between the individual and a brand. Taking this sort of approach will produce naturally engaging content that will be will be well received by your audience as well as gain prominence via Facebook’s Edgeranker. Here are a few examples of content from Levi&#8217;s* that help tell the brand story through the lens of a customer.</p>
<p><a href="http://momentusmedia.com/blog/wp-content/uploads/2012/03/levis1.jpg">
<a href='http://momentusmedia.com/blog/?attachment_id=2085' title='Levis blogger '><img width="150" height="150" src="http://momentusmedia.com/blog/wp-content/uploads/2012/03/levis1-150x150.jpg" class="attachment-thumbnail" alt="Levis blogger" title="Levis blogger" /></a>
<a href='http://momentusmedia.com/blog/?attachment_id=2086' title='Levis Friends Roast'><img width="150" height="150" src="http://momentusmedia.com/blog/wp-content/uploads/2012/03/levis2-150x150.jpg" class="attachment-thumbnail" alt="Levis Friends Roast" title="Levis Friends Roast" /></a>
<a href='http://momentusmedia.com/blog/?attachment_id=2087' title='Levi&#039;s connecting with product'><img width="150" height="150" src="http://momentusmedia.com/blog/wp-content/uploads/2012/03/levis3-150x150.jpg" class="attachment-thumbnail" alt="Levi&#039;s connecting with product" title="Levi&#039;s connecting with product" /></a>
</p>
<p></a></p>
<p>*Disclaimer: Levi&#8217;s is a client</p>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=2084</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding App to Tab in Facebook</title>
		<link>http://momentusmedia.com/blog/?p=2053</link>
		<comments>http://momentusmedia.com/blog/?p=2053#comments</comments>
		<pubDate>Thu, 15 Mar 2012 22:35:06 +0000</pubDate>
		<dc:creator>Anna</dc:creator>
				<category><![CDATA[App Development]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=2053</guid>
		<description><![CDATA[Want to add your application to a Facebook page&#8217;s tab? Use this url: https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&#38;next=YOUR_URL Where YOUR_URL is the canvas url &#8211; the real site of the app on your domain (not the path in Facebook). More info: Apps on Facebook- Page Tabs. I posted this because I&#8217;m always searching for this link, and thought I&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>Want to add your application to a Facebook page&#8217;s tab? Use this url:</p>
<div style="font-family:Courier"><a href="https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&amp;next=YOUR_URL">https://www.facebook.com/dialog/pagetab?app_id=YOUR_APP_ID&amp;next=YOUR_URL</a></div>
<p></p>
<p>Where YOUR_URL is the canvas url &#8211; the real site of the app on your domain (not the path in Facebook).</p>
<p>More info: <a href="https://developers.facebook.com/docs/appsonfacebook/pagetabs/">Apps on Facebook- Page Tabs</a>. </p>
<p>I posted this because I&#8217;m always searching for this link, and thought I&#8217;d increase the chances of finding it simply and easily by blogging about it!</p>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=2053</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Single biggest takeaway from the Facebook Marketing Conference</title>
		<link>http://momentusmedia.com/blog/?p=2040</link>
		<comments>http://momentusmedia.com/blog/?p=2040#comments</comments>
		<pubDate>Fri, 09 Mar 2012 01:35:37 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=2040</guid>
		<description><![CDATA[Brand marketers rejoice, Facebook just gave you an immensely powerful toolset that was introduced last week at the Fmc. By now, you probably have a grasp of their implementation of timeline, ad tools, reach generator etc. In case you haven’t, here is a summary on Techcrunch on the “Key Takeaways From The Facebook Marketing Conference.” [...]]]></description>
			<content:encoded><![CDATA[<p>Brand marketers rejoice, Facebook just gave you an immensely powerful toolset that was introduced last week at the Fmc. By now, you probably have a grasp of their implementation of timeline, ad tools, reach generator etc. In case you haven’t, here is a summary on Techcrunch on the “<a href="mailto:http://techcrunch.com/2012/03/04/facebook-marketing-conference/">Key Takeaways From The Facebook Marketing Conference</a>.”  However, amidst the product hoopla, you may have missed the thesis behind Facebook’s vision for brands.</p>
<p>The biggest takeaway is the shift in focus from advertising to stories. Mike Hoefflinger, Director of Global Business marketing highlighted the difference between advertising and stories in his <a href="mailto:http://www.livestream.com/fbmarketingtalks/video%3FclipId=pla_492af8a6-434c-4fa8-9a2e-585c535e2e7a%26utm_source=lslibrary%26utm_medium=ui-thumb">keynote</a>.  He talked about how throughout history stories have always been fundamental to human interaction. But brands weren’t able to engage in storytelling at the necessary scale that modern business required. This bore the genesis of advertising. With Facebook’s growth to a network of 800 million people, they have fostered enough connections so that brands can evolve back to organic story telling. When you engage in story telling versus advertising, you allow your customers and advocates to tell the brand story through their unique personal lens.</p>
<p>You can see this vision of stories integrated into how their new advertising products work. All premium ads are built directly off of the stories published on the brand’s Timeline. These ads can appear on the desktop and mobile news feed as a natural part of the core Facebook user experience and not just a side bar. These are stories and not ads.</p>
<p>So how do you create compelling stories? A brand must think about the types of content that drive people to share with others. This concept was important enough to have another keynote on “<a href="mailto:http://www.livestream.com/fbmarketingtalks/video%3FclipId=pla_47aa9d9f-6de0-4b77-b438-00a4d486e4d4%26utm_source=lslibrary%26utm_medium=ui-thumb">what people share</a>.”  At Momentus Media, we’ve dedicated the past couple years to understanding sharing and virality and as a result have built applications that have been installed over 100 million times.  From a brand perspective, the crux is understanding the intersection between what people share and your brand attributes.</p>
<p><a href="http://momentusmedia.com/blog/wp-content/uploads/2012/03/whats-shareable.png"><img class="alignnone size-medium wp-image-2047" src="http://momentusmedia.com/blog/wp-content/uploads/2012/03/whats-shareable-300x222.png" alt="" width="300" height="222" /></a></p>
<p>If you have questions, comments, criticisms or want to learn more ping me at <a href="mailto:rob@momentusmedia.com">rob@momentusmedia.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=2040</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Executive Summary (just for you): Facebook Marketing Conference</title>
		<link>http://momentusmedia.com/blog/?p=1981</link>
		<comments>http://momentusmedia.com/blog/?p=1981#comments</comments>
		<pubDate>Mon, 05 Mar 2012 02:52:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=1981</guid>
		<description><![CDATA[In case you didn&#8217;t watch the whole thing either, here&#8217;s a 1-minute summary of Josh Constine&#8217;s excellent post on takeaways from last week&#8217;s Facebook Marketing Conference. 1. Reach Generator FB is releasing an ad feature called Reach Generator that guarantees impressions of Page posts to 75% of a page&#8217;s fans over the course of a [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.cubancouncil.com/uploads/project_images/logo_facebook-rgb-7inch2.png.648x0_q90_replace_alpha.jpg" class="alignnone" width="500"/><br />
In case you didn&#8217;t watch the whole thing either, here&#8217;s a 1-minute summary of Josh Constine&#8217;s <a href="http://techcrunch.com/2012/03/04/facebook-marketing-conference/">excellent post</a> on takeaways from last week&#8217;s Facebook Marketing Conference.</p>
<div>
<div><strong>1. Reach Generator</strong></div>
<div>FB is releasing an ad feature called Reach Generator that guarantees impressions of Page posts to 75% of a page&#8217;s fans over the course of a month.  Nice, although it&#8217;s only available through premium ad accounts that FB manages.</div>
<p>&nbsp;</p>
</div>
<div><strong>2. Timeline for Brand Pages</strong></div>
<div>
<div>- You can no longer have a default landing tab &#8212; this just means pages have to rely more on advertising apps through the feed and ads, but this should not be a big deal because very little traffic to pages comes from organic visits anyway.</div>
</div>
<div>- You can &#8220;pin&#8221; a post to the top of your page so it stays there forever</div>
<div>- Fans can now send direct messages to pages</div>
<div>
<br /></p>
<div><strong>3. New ad units</strong></div>
<div>There&#8217;s new real estate for ads on the logout page and in the mobile news feed.</div>
<p>&nbsp;</p>
<div><strong>4. Offers</strong></div>
<div>The &#8220;Offers&#8221; feature is a new type of post available in the page publisher and directly emails the user a voucher or code when they click on the offer.  It will be available to pages &#8220;in the next few weeks&#8221;.</div>
<p>&nbsp;</p>
<div><strong>5. Real-time Insights</strong></div>
<div>Previously insights on posts took 2 days to refresh, now they will be available 5-10 minutes after posts are published.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=1981</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We have some exciting news to announce.</title>
		<link>http://momentusmedia.com/blog/?p=1960</link>
		<comments>http://momentusmedia.com/blog/?p=1960#comments</comments>
		<pubDate>Thu, 23 Feb 2012 19:45:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=1960</guid>
		<description><![CDATA[Facebook approached Momentus a couple of months back because members of the growth and engagement team were impressed by the way we designed and built social applications. Our apps have been installed by more than 100 million people and we&#8217;ve had the opportunity of working with some great brands. After months of discussion with Facebook [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook approached Momentus a couple of months back because members of the growth and engagement team were impressed by the way we designed and built social applications. Our apps have been installed by more than 100 million people and we&#8217;ve had the opportunity of working with some <a title="Case Studies" href="http://momentusmedia.com/" target="_blank">great brands</a>.</p>
<p>After months of discussion with Facebook and internally, we decided we wanted to join Facebook in some way. The opportunity of applying all of our learnings to a product of such scale was hard to pass up. Also important to us was being able to continue growing Momentus. The set-up we came to was that <a title="Carina Koo" href="http://www.facebook.com/carinakoo" target="_blank">Carina</a>, my co-founder, would lead the Momentus team in building awesome social apps, and I (<a title="Chris Turitzin" href="http://www.facebook.com/turitzin" target="_blank">Chris</a>) would move to Facebook to help lead growth projects.</p>
<p>This means Momentus clients will still be able to release chart-topping social apps, and I will be able to apply everything I have learned at Momentus working at Facebook.</p>
<p>The science behind sharing is in its infancy. With this new opportunity, we push forward in our mission to help define how it all works.</p>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=1960</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Levi&#8217;s: Holiday Friends Roast</title>
		<link>http://momentusmedia.com/blog/?p=1806</link>
		<comments>http://momentusmedia.com/blog/?p=1806#comments</comments>
		<pubDate>Thu, 02 Feb 2012 21:08:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Brands]]></category>
		<category><![CDATA[Case Studies]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=1806</guid>
		<description><![CDATA[This season we helped Levi&#8217;s achieve their goals of spreading brand awareness for their 2011 holiday theme, &#8220;Here come the holidays, there goes my sanity&#8221;.  Levi&#8217;s Holiday Friends Roast is an app where users are able to warmly mock their friends by adding fun pre-populated superlatives like &#8220;Most likely to get a little too crazy at the [...]]]></description>
			<content:encoded><![CDATA[<p>This season we helped Levi&#8217;s achieve their goals of spreading brand awareness for their 2011 holiday theme, &#8220;Here come the holidays, there goes my sanity&#8221;.  Levi&#8217;s Holiday Friends Roast is an app where users are able to warmly mock their friends by adding fun pre-populated superlatives like &#8220;Most likely to get a little too crazy at the holiday party&#8221; or  &#8221;Most likely to get lucky under the mistletoe&#8221; to friends photos.  During the selection process users experience a personalized banner at the bottom of app screen containing holiday gift inspiration for each of the friends they chose to roast.  After generating the images users could then instantly share their creations with their friends on Facebook. The images shared were made made into a photo album on Facebook, posted to their wall, and friends auto tagged.</p>
<p><strong>RESULTS: </strong></p>
<ul>
<li>60,000 users in under once month</li>
</ul>
<p><a href="http://momentusmedia.com/blog/wp-content/uploads/2011/12/Levisfriend1.jpg"><img class="aligncenter size-full wp-image-1808" title="Levisfriend1" src="http://momentusmedia.com/blog/wp-content/uploads/2011/12/Levisfriend1.jpg" alt="" width="620" height="586" /></a></p>
<p><a href="http://momentusmedia.com/blog/wp-content/uploads/2011/12/Levisfriend2.jpg"><img class="aligncenter size-full wp-image-1809" title="Levisfriend2" src="http://momentusmedia.com/blog/wp-content/uploads/2011/12/Levisfriend2.jpg" alt="" width="620" height="453" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=1806</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone and Android App &#8211; Digital Business Card</title>
		<link>http://momentusmedia.com/blog/?p=1920</link>
		<comments>http://momentusmedia.com/blog/?p=1920#comments</comments>
		<pubDate>Wed, 11 Jan 2012 00:07:37 +0000</pubDate>
		<dc:creator>Anna</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=1920</guid>
		<description><![CDATA[We have a native mobile app available for quick and easy networking. Simply enter in the contact&#8217;s email, and a personal note (optional) and it will send a pre-formatted email with default subject and body copy. Setup the default fields before an event, then when you&#8217;re hand-shaking and making great connections, you can easily tap [...]]]></description>
			<content:encoded><![CDATA[<p>We have a native mobile app available for quick and easy networking. Simply enter in the contact&#8217;s email, and a personal note (optional) and it will send a pre-formatted email with default subject and body copy. Setup the default fields before an event, then when you&#8217;re hand-shaking and making great connections, you can easily tap in an email address and drop them a line.</p>
<p>- Android Marketplace - <a href="https://market.android.com/details?id=com.momentusmedia.digitalbusinesscard">for Droid</a></p>
<p>- iPhone- <a href="http://itunes.apple.com/us/app/digital-business-card/id493867804?mt=8">in iTunes</a></p>
<p><img src="http://momentusmedia.com/blog/wp-content/uploads/2012/01/Screenshot-2012.01.08-13.32.00-200x300.png" alt="" width="100" /> <img src="http://momentusmedia.com/blog/wp-content/uploads/2012/01/Screenshot-2012.01.08-13.31.46.png" alt="" width="100" /> <img src="http://momentusmedia.com/blog/wp-content/uploads/2012/01/Screenshot-2012.01.08-13.37.45.png" alt="" width="100" /></p>
<p><a href="http://www.youtube.com/v/m0XAVfO60TY">Demo of Android app</a></p>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=1920</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Newsfeed 98x higher CTR than Ticker</title>
		<link>http://momentusmedia.com/blog/?p=1903</link>
		<comments>http://momentusmedia.com/blog/?p=1903#comments</comments>
		<pubDate>Thu, 29 Dec 2011 22:47:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Virality]]></category>

		<guid isPermaLink="false">http://momentusmedia.com/blog/?p=1903</guid>
		<description><![CDATA[We analyzed 8 Facebook apps that we admin to see how the Ticker and Newsfeed compare in driving traffic to apps. Looking at the data in 2 different ways shows that the Facebook Newsfeed is about 100x more effective in driving traffic than Ticker. Our data set is 8 different apps totalling 67,000 installs over a [...]]]></description>
			<content:encoded><![CDATA[<p>We analyzed 8 Facebook apps that we admin to see how the Ticker and Newsfeed compare in driving traffic to apps. Looking at the data in 2 different ways shows that the <strong>Facebook Newsfeed is about 100x more effective in driving traffic than Ticker.</strong></p>
<p>Our data set is 8 different apps totalling 67,000 installs over a 30 day period.</p>
<p><a href="http://momentusmedia.com/blog/wp-content/uploads/2011/12/Screen-Shot-2011-12-29-at-1.20.58-PM.png"><img title="Screen Shot 2011-12-29 at 1.20.58 PM" src="http://momentusmedia.com/blog/wp-content/uploads/2011/12/Screen-Shot-2011-12-29-at-1.20.58-PM.png" alt="" width="625" height="167" /></a></p>
<h3>Comparing CTR</h3>
<p>CTR (click through rate) shows how often people click on stories they see in feeds, so the calcuation is CTR = Clicks/Impressions. We see an average click rate of 0.03% for Ticker and 2.94% for Newsfeed<strong>. Newsfeed has 98x higher CTR than Ticker.</strong></p>
<h3>Comparing Total Referral Traffic</h3>
<p>We then analyzed how much traffic was sent from Newsfeed and Ticker. We totalled up all the Story Clicks for all apps. During the 30 day period, Ticker gave 562 clicks and Newsfeed gave 64,017. <strong>Newsfeed is sending 114x more traffic than Ticker.</strong></p>
<h3>Notes</h3>
<p>The apps we analyzed are not Open Graph enabled, so the only ticker stories they create are &#8220;App Used&#8221; stories, like this:</p>
<p><a href="http://momentusmedia.com/blog/wp-content/uploads/2011/12/Screen-Shot-2011-12-29-at-11.19.39-AM.png"><img title="Screen Shot 2011-12-29 at 11.19.39 AM" src="http://momentusmedia.com/blog/wp-content/uploads/2011/12/Screen-Shot-2011-12-29-at-11.19.39-AM.png" alt="" width="251" height="53" /></a></p>
<p>Stories like &#8220;Chris read Lindsay Lohan arrested!&#8221; could receive higher click rates. Additionally, &#8220;App Used&#8221; stories will only appear in the &#8220;Apps Ticker&#8221; which is shown while users are in the App Canvas. Open Graph created stories would appear on Facebook.com. Once we have an app with significant Open Graph stories created, we&#8217;ll do an analysis on this too.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://momentusmedia.com/blog/?feed=rss2&#038;p=1903</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

