<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Social Ebola</title>
	<atom:link href="http://socialebola.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://socialebola.wordpress.com</link>
	<description></description>
	<lastBuildDate>Thu, 23 Feb 2012 19:29:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='socialebola.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Social Ebola</title>
		<link>http://socialebola.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://socialebola.wordpress.com/osd.xml" title="Social Ebola" />
	<atom:link rel='hub' href='http://socialebola.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Learn XAML + WP7 development right on your phone by writing and trying out samples!</title>
		<link>http://socialebola.wordpress.com/2012/02/23/learn-xaml-wp7-development-right-on-your-phone-by-writing-and-trying-out-samples/</link>
		<comments>http://socialebola.wordpress.com/2012/02/23/learn-xaml-wp7-development-right-on-your-phone-by-writing-and-trying-out-samples/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 09:12:26 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[Dev]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=398</guid>
		<description><![CDATA[We are really excited about our newest app! Now, the app is definitely targeted at the geekier users out there, but we think it’s really really cool! Here’s the deal – you can use XAML  and Javascript to try out &#8230; <a href="http://socialebola.wordpress.com/2012/02/23/learn-xaml-wp7-development-right-on-your-phone-by-writing-and-trying-out-samples/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=398&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We are really excited about our newest app! Now, the app is definitely targeted at the geekier users out there, but we think it’s really really cool!</p>
<p>Here’s the deal – you can use XAML  and Javascript to try out Windows Phone 7.5 development right on your phone or through a browser. Load the app, create a new sample (or edit an existing one) and play around with XAML and see it right on your phone. Instead of C#, you will be using Javascript, but otherwise, you can tinker and play with it.</p>
<p>If you want  to join the beta, <a href="mailto:socialebola[at]live[dot]com">email us</a> (you will need to fix up the address)!</p>
<p>An entire sample is self contained inside one file. Here’s what a newly created sample looks like:</p>
<pre class="csharpcode" style="width:665px;height:323px;"><span class="kwrd">&lt;</span><span class="html">UserControl</span> <span class="attr">xmlns:toolkit</span><span class="kwrd">="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"</span>
    <span class="attr">xmlns</span><span class="kwrd">="http://schemas.microsoft.com/winfx/2006/xaml/presentation"</span>
    <span class="attr">xmlns:x</span><span class="kwrd">="http://schemas.microsoft.com/winfx/2006/xaml"</span>
    <span class="attr">xmlns:d</span><span class="kwrd">="http://schemas.microsoft.com/expression/blend/2008"</span>
    <span class="attr">xmlns:mc</span><span class="kwrd">="http://schemas.openxmlformats.org/markup-compatibility/2006"</span>
    <span class="attr">mc:Ignorable</span><span class="kwrd">="d"</span>
    <span class="attr">FontFamily</span><span class="kwrd">="{StaticResource PhoneFontFamilyNormal}"</span>
    <span class="attr">FontSize</span><span class="kwrd">="{StaticResource PhoneFontSizeNormal}"</span>
    <span class="attr">Foreground</span><span class="kwrd">="{StaticResource PhoneForegroundBrush}"</span>
    <span class="attr">xmlns:sys</span><span class="kwrd">="clr-namespace:System;assembly=mscorlib"</span>
    <span class="attr">d:DesignHeight</span><span class="kwrd">="480"</span> <span class="attr">d:DesignWidth</span><span class="kwrd">="480"</span><span class="kwrd">&gt;</span>

  <span class="rem">&lt;!--</span>
<span class="rem"> Thanks for using the Javascript/Xaml app!</span>
<span class="rem"> Each XAML file has 3 major parts:</span>
<span class="rem"> 1. The XAML itself - this describes the UI.</span>
<span class="rem"> 2. The Javascript code - this controls what happens in the sample</span>
<span class="rem"> 3. The manifest - gives the title of the sample + some more optional information</span>
<span class="rem"> --&gt;</span>
  <span class="kwrd">&lt;</span><span class="html">UserControl.Resources</span><span class="kwrd">&gt;</span>
    <span class="rem">&lt;!-- </span>
<span class="rem"> The manifest contains information about the sample </span>
<span class="rem"> Title - contains the name of the sample</span>
<span class="rem"> IconUri - The URI for the icon of the sample.</span>
<span class="rem"> Under the Author element, you have 2 other elements</span>
<span class="rem"> Name - the name of the author of the sample</span>
<span class="rem"> WebSite - Uri for the web site of the author</span>
<span class="rem"> --&gt;</span>
    <span class="kwrd">&lt;</span><span class="html">sys:String</span> <span class="attr">x:Key</span><span class="kwrd">="_manifest"</span> <span class="attr">xml:space</span><span class="kwrd">="preserve"</span><span class="kwrd">&gt;</span>
      <span class="kwrd">&lt;!</span>[CDATA[
      <span class="kwrd">&lt;</span><span class="html">SnippetManifest</span><span class="kwrd">&gt;</span>
        <span class="kwrd">&lt;</span><span class="html">Author</span><span class="kwrd">&gt;</span>
          <span class="kwrd">&lt;</span><span class="html">Name</span><span class="kwrd">&gt;</span>SocialEbola User<span class="kwrd">&lt;/</span><span class="html">Name</span><span class="kwrd">&gt;</span>
          <span class="kwrd">&lt;</span><span class="html">WebSite</span><span class="kwrd">&gt;</span>http://socialebola.wordpress.com<span class="kwrd">&lt;/</span><span class="html">WebSite</span><span class="kwrd">&gt;</span>
        <span class="kwrd">&lt;/</span><span class="html">Author</span><span class="kwrd">&gt;</span>
        <span class="kwrd">&lt;</span><span class="html">EntryPoint</span><span class="kwrd">&gt;</span>
          <span class="kwrd">&lt;</span><span class="html">Title</span><span class="kwrd">&gt;</span>[Default Template]<span class="kwrd">&lt;/</span><span class="html">Title</span><span class="kwrd">&gt;</span>
          <span class="rem">&lt;!--&lt;IconUri&gt;http://server/something.png&lt;/IconUri&gt; --&gt;</span>
        <span class="kwrd">&lt;/</span><span class="html">EntryPoint</span><span class="kwrd">&gt;</span>
      <span class="kwrd">&lt;/</span><span class="html">SnippetManifest</span><span class="kwrd">&gt;</span>
 ]]<span class="kwrd">&gt;</span>
    <span class="kwrd">&lt;/</span><span class="html">sys:String</span><span class="kwrd">&gt;</span>
    <span class="rem">&lt;!-- The following code will be loaded and executed when the XAML is done loading. --&gt;</span>
    <span class="kwrd">&lt;</span><span class="html">sys:String</span> <span class="attr">x:Key</span><span class="kwrd">="_code"</span> <span class="attr">xml:space</span><span class="kwrd">="preserve"</span><span class="kwrd">&gt;</span>
      <span class="kwrd">&lt;!</span>[CDATA[
        // The hosting environment has an event called "Loaded". That event will fire when the sample starts.
        // The following shows how you hook the event and.
        host.add_Loaded(function()
        {
          // First thing we will do, is show an alert saying we are loaded.
          alert("loaded!");

          // Now, we will hook the other events we want to handle - namely, the button click event.
          // host.UI contains all the named controls in the XAML so you can easily access them:
          host.UI.button1.add_Click(function()
            {
              // Here, we wil change the text on the button when it's clicked.
              host.UI.button1.Content = "Hello XAML world!";
            });
          });
        });
      ]]<span class="kwrd">&gt;</span>
    <span class="kwrd">&lt;/</span><span class="html">sys:String</span><span class="kwrd">&gt;</span>
  <span class="kwrd">&lt;/</span><span class="html">UserControl.Resources</span><span class="kwrd">&gt;</span>
  <span class="kwrd">&lt;</span><span class="html">Grid</span> <span class="attr">x:Name</span><span class="kwrd">="LayoutRoot"</span><span class="kwrd">&gt;</span>
    <span class="kwrd">&lt;</span><span class="html">Button</span> <span class="attr">x:Name</span><span class="kwrd">="button1"</span> <span class="attr">Content</span><span class="kwrd">="Press me!"</span><span class="kwrd">&gt;&lt;/</span><span class="html">Button</span><span class="kwrd">&gt;</span>
  <span class="kwrd">&lt;/</span><span class="html">Grid</span><span class="kwrd">&gt;</span>
<span class="kwrd">&lt;/</span><span class="html">UserControl</span><span class="kwrd">&gt;</span></pre>
<h2>Using the App</h2>
<h2></h2>
<p>The JavaScript code is embedded within the XAML and will execute when the sample is loaded (more on that later)</p>
<p>The app comes with a few samples installed – you can see them on the main page of the application (tapping and holding a sample shows you various options available for you:</p>
<table width="600" border="0" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="300"><a href="http://socialebola.files.wordpress.com/2012/02/image.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" src="http://socialebola.files.wordpress.com/2012/02/image_thumb.png?w=259&#038;h=429" alt="image" width="259" height="429" border="0" /></a></td>
<td valign="top" width="300"><a href="http://socialebola.files.wordpress.com/2012/02/image1.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" src="http://socialebola.files.wordpress.com/2012/02/image_thumb1.png?w=262&#038;h=434" alt="image" width="262" height="434" border="0" /></a></td>
</tr>
</tbody>
</table>
<p>If you choose to edit the sample, you can actually do that on the phone (though it’s terribly inconvinient). Because of that, the app gives you a way of looking at your samples with the web-browser that makes for a slightly better editing environment.</p>
<p>Tapping the plus icon and the “create new” button will create a new ‘empty’ sample you can use to try things out in. Note that you can also point to any URL that contains XAML – you don’t have to use our servers.</p>
<table width="600" border="0" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="300"><a href="http://socialebola.files.wordpress.com/2012/02/image2.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" src="http://socialebola.files.wordpress.com/2012/02/image_thumb2.png?w=262&#038;h=434" alt="image" width="262" height="434" border="0" /></a></td>
<td valign="top" width="300"><a href="http://socialebola.files.wordpress.com/2012/02/image3.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" src="http://socialebola.files.wordpress.com/2012/02/image_thumb3.png?w=263&#038;h=435" alt="image" width="263" height="435" border="0" /></a></td>
</tr>
</tbody>
</table>
<p>After being created, you can choose to email yourself the web links so you can edit the XAML on a desktop (you can do the same thing – email the links – by going to the properties of a sample).</p>
<p>When editing a sample on the phone, you are presented with a pivot that contains the XAML and the JavasScript code (when saving, the code will be placed back inside the XAML):</p>
<table width="600" border="0" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="300"><a href="http://socialebola.files.wordpress.com/2012/02/image4.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" src="http://socialebola.files.wordpress.com/2012/02/image_thumb4.png?w=261&#038;h=432" alt="image" width="261" height="432" border="0" /></a></td>
<td valign="top" width="300"><a href="http://socialebola.files.wordpress.com/2012/02/image5.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" src="http://socialebola.files.wordpress.com/2012/02/image_thumb5.png?w=263&#038;h=435" alt="image" width="263" height="435" border="0" /></a></td>
</tr>
</tbody>
</table>
<p>If you use the edit link provided, you get a very simple text editing web page. Changing the XAML In that page and hitting “save” stores the sample back on the server. Refreshing the sample on the phone then pulls it down to the phone for testing.</p>
<h2></h2>
<h2>What does the XAML looks like</h2>
<p>The XAML has three main parts to it – the XAML itself that behaves as the container, the manifest (has some meta data about the sample) and the code. Both the code and the manifest are embedded as strings inside the Resources of the XAML file.</p>
<p>Here’s what the manifest looks like:</p>
<pre class="csharpcode" style="width:639px;height:293px;">  <span class="kwrd">&lt;</span><span class="html">UserControl.Resources</span><span class="kwrd">&gt;</span>
    <span class="kwrd">&lt;</span><span class="html">sys:String</span> <span class="attr">x:Key</span><span class="kwrd">="_manifest"</span> <span class="attr">xml:space</span><span class="kwrd">="preserve"</span><span class="kwrd">&gt;</span>
      <span class="kwrd">&lt;!</span>[CDATA[
      <span class="kwrd">&lt;</span><span class="html">SnippetManifest</span><span class="kwrd">&gt;</span>
        <span class="kwrd">&lt;</span><span class="html">Author</span><span class="kwrd">&gt;</span>
          <span class="kwrd">&lt;</span><span class="html">Name</span><span class="kwrd">&gt;</span>SocialEbola User<span class="kwrd">&lt;/</span><span class="html">Name</span><span class="kwrd">&gt;</span>
          <span class="kwrd">&lt;</span><span class="html">WebSite</span><span class="kwrd">&gt;</span>http://socialebola.wordpress.com<span class="kwrd">&lt;/</span><span class="html">WebSite</span><span class="kwrd">&gt;</span>
        <span class="kwrd">&lt;/</span><span class="html">Author</span><span class="kwrd">&gt;</span>
        <span class="kwrd">&lt;</span><span class="html">EntryPoint</span><span class="kwrd">&gt;</span>
          <span class="kwrd">&lt;</span><span class="html">Title</span><span class="kwrd">&gt;</span>[Default Template]<span class="kwrd">&lt;/</span><span class="html">Title</span><span class="kwrd">&gt;</span>
          <span class="rem">&lt;!--&lt;IconUri&gt;http://server/something.png&lt;/IconUri&gt; --&gt;</span>
        <span class="kwrd">&lt;/</span><span class="html">EntryPoint</span><span class="kwrd">&gt;</span>
      <span class="kwrd">&lt;/</span><span class="html">SnippetManifest</span><span class="kwrd">&gt;</span>
 ]]<span class="kwrd">&gt;</span></pre>
<p>The only really important bit is the &lt;Title&gt; element in there, which governs what you will see in the list of samples.</p>
<p>The code is similarly embedded – again, here’s the default JavaScript code that you get when starting a new sample:</p>
<pre class="csharpcode" style="width:639px;height:247px;">    <span class="kwrd">&lt;</span><span class="html">sys:String</span> <span class="attr">x:Key</span><span class="kwrd">="_code"</span> <span class="attr">xml:space</span><span class="kwrd">="preserve"</span><span class="kwrd">&gt;</span>
      <span class="kwrd">&lt;!</span>[CDATA[
        // The hosting environment has an event called "Loaded". That event will fire when the sample starts.
        // The following shows how you hook the event and.
        host.add_Loaded(function()
        {
          // First thing we will do, is show an alert saying we are loaded.
          alert("loaded!");

          // Now, we will hook the other events we want to handle - namely, the button click event.
          // host.UI contains all the named controls in the XAML so you can easily access them:
          host.UI.button1.add_Click(function()
            {
              // Here, we wil change the text on the button when it's clicked.
              host.UI.button1.Content = "Hello XAML world!";
            });
          });
        });
      ]]<span class="kwrd">&gt;</span></pre>
<p>As you can see, the first thing the code does, is hook up the “Loaded” event on the host object – that event will be fired when the sample starts up (like the HTML body load event).</p>
<p>The code then alerts that it’s loaded.</p>
<p>Finally, the code hooks the Click event of the button that’s in the XAML by using the host.UI object (the UI object will have all of XAML named controls in it).</p>
<p>That’s it for now – we are going to post a few more blogs about what you can do, but if you get into the beta, we urge you to try it out and tell us what you think</p>
<p>Here are links to the two examples that come preinstalled:</p>
<p><a title="http://www.socialebola.com/Wpjs/Blob.ashx/Sample.Fin" href="http://www.socialebola.com/Wpjs/Blob.ashx/Sample.Fin">http://www.socialebola.com/Wpjs/Blob.ashx/Sample.Fin</a></p>
<p><a href="http://www.socialebola.com/Wpjs/Blob.ashx/Sample.Conv">http://www.socialebola.com/Wpjs/Blob.ashx/Sample.Conv</a></p>
<p>This app would not have been possible w/o the following open source projects:</p>
<p>JINT project on CodePlex (<a href="http://jint.codeplex.com">http://jint.codeplex.com</a>)</p>
<p>Joel Martinez&#8217;s JINT porting to WP7 (<a href="http://www.codecube.com">http://www.codecube.com</a>)</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/398/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/398/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/398/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=398&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/02/23/learn-xaml-wp7-development-right-on-your-phone-by-writing-and-trying-out-samples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/02/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/02/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/02/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/02/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/02/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/02/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Fail++ Poll results &amp; new release!</title>
		<link>http://socialebola.wordpress.com/2012/02/15/fail-poll-results-new-release/</link>
		<comments>http://socialebola.wordpress.com/2012/02/15/fail-poll-results-new-release/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 00:00:26 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[Fail++]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=383</guid>
		<description><![CDATA[We just released version 2.3 of Fail++ to the marketplace. In it, you will find what you have voted for. Here are the poll results: &#160; Search won out by a large margin – so you will see it on &#8230; <a href="http://socialebola.wordpress.com/2012/02/15/fail-poll-results-new-release/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=383&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We just released version 2.3 of Fail++ to the marketplace. In it, you will find what you have voted for. Here are the poll results:</p>
<p><iframe src="http://r.office.microsoft.com/r/rlidExcelEmbed?su=-4860866720721724317&#038;Fi=SDBC8ABB78B2DD1C63!8198&#038;ak=t%3d0%26s%3d0%26v%3d!AEMkQc7Gt_bDDww&#038;kip=1&#038;wdAllowInteractivity=False&#038;Item=Chart%201" width="483" height="318" frameborder="0" scrolling="no"></iframe>
<p>&nbsp;</p>
<p>Search won out by a large margin – so you will see it on the app in the next 24 hours or so.</p>
<p>The other options were having an Ad-free version and supporting twitter, which you clearly did not want.</p>
<p>Enjoy, and thanks for participating in the poll!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/383/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/383/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/383/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=383&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/02/15/fail-poll-results-new-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>
	</item>
		<item>
		<title>Two-Tap Reminder Feb 2012 poll results are in!</title>
		<link>http://socialebola.wordpress.com/2012/02/12/two-tap-reminder-feb-2012-poll-results-are-in/</link>
		<comments>http://socialebola.wordpress.com/2012/02/12/two-tap-reminder-feb-2012-poll-results-are-in/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 23:57:10 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[TwoTapReminder]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=381</guid>
		<description><![CDATA[Here are the results of the Two Tap Reminder in-app poll that ended in February 2012: &#160; The three options you had were: Pin to start – this allows you to pin certain reminder types to the start-screen so that &#8230; <a href="http://socialebola.wordpress.com/2012/02/12/two-tap-reminder-feb-2012-poll-results-are-in/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=381&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here are the results of the Two Tap Reminder in-app poll that ended in February 2012:</p>
<p><iframe src="http://r.office.microsoft.com/r/rlidExcelEmbed?su=-4860866720721724317&#038;Fi=SDBC8ABB78B2DD1C63!7987&#038;ak=t%3d0%26s%3d0%26v%3d!ADVL3Z0CT_bGsRo&#038;kip=1&#038;wdAllowInteractivity=False&#038;Item=Chart%201" width="483" height="318" frameborder="0" scrolling="no"></iframe>
<p>&nbsp;</p>
<p>The three options you had were:</p>
<ul>
<li><strong>Pin to start</strong> – this allows you to pin certain reminder types to the start-screen so that access is even faster.</li>
<li><strong>More quick-time options</strong> – in Two Tap Reminder, when you schedule a reminder, you can just click how long in the future you want it to fire (in 30 minutes, for example). This option would have given users more control over these options.</li>
<li><strong>Make custom time easier – </strong>When selecting to set a reminder to a specific time, you use the standard Windows Phone way of doing it (the “rolling” data/time option). This would make it easier (more tap, less rolling).</li>
</ul>
<p>Most of those who voted wanted to get the ability to pin as the next feature.. And so, we give you:</p>
<table border="0" cellspacing="0" cellpadding="2" width="600">
<tbody>
<tr>
<td valign="top" width="300"><a href="http://socialebola.files.wordpress.com/2012/02/ss6.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="SS6" border="0" alt="SS6" src="http://socialebola.files.wordpress.com/2012/02/ss6_thumb.png?w=259&#038;h=429" width="259" height="429"></a></td>
<td valign="top" width="300"><a href="http://socialebola.files.wordpress.com/2012/02/ss5.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="SS5" border="0" alt="SS5" src="http://socialebola.files.wordpress.com/2012/02/ss5_thumb.png?w=260&#038;h=430" width="260" height="430"></a></td>
</tr>
</tbody>
</table>
<p>The update should make it to your phone in the next few days – it’s going through certification right now.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/381/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/381/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/381/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=381&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/02/12/two-tap-reminder-feb-2012-poll-results-are-in/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/02/ss6_thumb.png" medium="image">
			<media:title type="html">SS6</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/02/ss5_thumb.png" medium="image">
			<media:title type="html">SS5</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook Birthday Tile is off the market temporarily</title>
		<link>http://socialebola.wordpress.com/2012/02/08/facebook-birthday-tile-is-off-the-market-temporarily/</link>
		<comments>http://socialebola.wordpress.com/2012/02/08/facebook-birthday-tile-is-off-the-market-temporarily/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 04:43:44 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=375</guid>
		<description><![CDATA[We were contacted by the marketplace and asked to remove the Facebook Birthday Tile due to copyright infringements. We will be changing the name of the app to “Social Birthday Tile” instead and republish to the marketplace quickly. Please be &#8230; <a href="http://socialebola.wordpress.com/2012/02/08/facebook-birthday-tile-is-off-the-market-temporarily/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=375&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>We were contacted by the marketplace and asked to remove the Facebook Birthday Tile due to copyright infringements.</p>
<p>We will be changing the name of the app to “Social Birthday Tile” instead and republish to the marketplace quickly.</p>
<p>Please be advised hat you will NOT need to reinstall or re-pay for the app – this is just a name change.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/375/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/375/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/375/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=375&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/02/08/facebook-birthday-tile-is-off-the-market-temporarily/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>
	</item>
		<item>
		<title>Trying out the Inneractive WP7 Ad SDK</title>
		<link>http://socialebola.wordpress.com/2012/01/26/trying-out-the-inneractive-wp7-ad-sdk/</link>
		<comments>http://socialebola.wordpress.com/2012/01/26/trying-out-the-inneractive-wp7-ad-sdk/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 06:05:37 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[Ads]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[Developer]]></category>
		<category><![CDATA[Inneractive]]></category>
		<category><![CDATA[PubCenter]]></category>
		<category><![CDATA[Windows Phone]]></category>
		<category><![CDATA[WP7Dev]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=369</guid>
		<description><![CDATA[A few weeks ago, we rolled out updates our apps that had the ability to display ads from a company called inneractive. They contacted us specifically a few weeks ago (not a mass email) and said that they can provide &#8230; <a href="http://socialebola.wordpress.com/2012/01/26/trying-out-the-inneractive-wp7-ad-sdk/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=369&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago, we rolled out updates our apps that had the ability to display ads from a company called <a href="http://inner-active.com/">inneractive</a>. They contacted us specifically a few weeks ago (not a mass email) and said that they can provide “an average eCPM that is 3 times the industry standard”. At that point, our apps were using PubCenter and we decided to give it a shot. </p>
<h2>Integration</h2>
<p>Integrating with their control (download after <a href="http://console.inner-active.com/iamp/publisher/register">registering here</a>) was pretty easy – we already have an extensible mechanism for ads and their SDK seemed to be well engineered (though it uses a different mechanism than others). It took all of 20 minutes to extend our clients and server to support them.</p>
<p>Instead of providing you with a control, they give you a class you call into with a parent Grid element as a parameter and the ad “takes over” that element. An interesting approach that’s easy enough to use.</p>
<h2>Their Dashboard</h2>
<p>Inneractive’s dashboard is much fancier than PubCenter and gives you much better/complete stats. It’s also purdy and works great on the Windows Phone browser (something PubCenter does not do as well on)</p>
<p><a href="http://socialebola.files.wordpress.com/2012/01/image6.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://socialebola.files.wordpress.com/2012/01/image_thumb6.png?w=546&#038;h=261" width="546" height="261"></a></p>
<p>If you go to “Analytics” it gives you exact information regarding where the ads got requested from, how many requests etc. Nice stuff!</p>
<h2>Pilot</h2>
<p>We ran two pilots. In one (a week or so ago), we diverted 25% of all the traffic from Fail++ to the new ad. Today, we again changed the ads and diverted 100% of all traffic from Fail++ (except for people using the Nodo app) to use the new Ad.</p>
<p>We then compared the results to what PubCenter gave us.</p>
<h2>Bottom line</h2>
<p>Results may vary. Your apps are not the same as our apps. But for us the results were very disappointing.</p>
<p>PubCenter out-performs Inneractive by a large factor on Windows Phone 7. Not only was the eCPM far lower, so were the impressions. We are going to stop using their SDK altogether, until such time that we see other people getting better results from them.</p>
<p>Other than that, my communication with them was very positive and professional. They are prompt to answer emails for the most part and seem to be eager to have people try their new platform.</p>
<p>If you tried them out, let us know what you saw.</p>
<h2>Warning</h2>
<p>One warning if you decide to go register with them though.. Do NOT use a password you use on other sites – also, don’t use any password you would not want somebody to see. They store passwords in clear-text on their web site and will send them to you (clear text) in email. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/369/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/369/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/369/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=369&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/01/26/trying-out-the-inneractive-wp7-ad-sdk/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/01/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>BackgroundCreation crashes the Designer</title>
		<link>http://socialebola.wordpress.com/2012/01/25/backgroundcreation-crashes-the-designer/</link>
		<comments>http://socialebola.wordpress.com/2012/01/25/backgroundcreation-crashes-the-designer/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 07:22:14 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[BackgroundCreation]]></category>
		<category><![CDATA[BitmapImage]]></category>
		<category><![CDATA[Crash]]></category>
		<category><![CDATA[Designer]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=363</guid>
		<description><![CDATA[Windows Phone Mango introduced a new enum value to bitmap creation that will actually load and decode the image on a background thread instead of on the UI thread. In some cases, that gives noticeable perf benefits, but there are &#8230; <a href="http://socialebola.wordpress.com/2012/01/25/backgroundcreation-crashes-the-designer/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=363&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Windows Phone Mango introduced a new enum value to bitmap creation that will actually load and decode the image on a background thread instead of on the UI thread. In some cases, that gives noticeable perf benefits, but there are a few things that are problematic about it.</p>
<h3>Default is everything</h3>
<p>For <a href="http://blogs.msdn.com/b/slmperf/archive/2011/06/13/off-thread-decoding-of-images-on-mango-how-it-impacts-you-application.aspx">some very good reasons</a>, this behavior is off by default. Developers need to opt-in to it.</p>
<p>That also means though, that 99% of the apps out there are just not using it. That’s not a big deal in most cases, but in some, it can make your app feel much snappier.</p>
<h3>So where’s the crash?</h3>
<p>In Visual Studio, if you try to use this property, under certain circumstances, the designer will crash (show an error on the designer surface):</p>
<pre style="width:639px;height:89px;" class="csharpcode">System.Reflection.TargetInvocationException
Exception has been thrown by the target of an invocation.
   at System.RuntimeMethodHandle._InvokeMethodFast(IRuntimeMethodInfo method, Object target, Object[] arguments, SignatureStruct&amp; sig, MethodAttributes methodAttributes, RuntimeType typeOwner)
   at System.RuntimeMethodHandle.InvokeMethodFast(IRuntimeMethodInfo method, Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeType typeOwner)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
   at System.Delegate.DynamicInvokeImpl(Object[] args)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)

System.InvalidOperationException
Layout measurement <span class="kwrd">override</span> of element <span class="str">'Microsoft.Windows.Design.Platform.SilverlightViewProducer+SilverlightContentHost'</span> should not <span class="kwrd">return</span> PositiveInfinity <span class="kwrd">as</span> its DesiredSize, even <span class="kwrd">if</span> Infinity <span class="kwrd">is</span> passed <span class="kwrd">in</span> <span class="kwrd">as</span> available size.
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Designer.DeviceSkinViewPresenter.DeviceDesignerBackground.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at Microsoft.Windows.Design.Interaction.DesignerView.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Designer.Viewport.MeasureOverride(Size availableSize)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ScrollContentPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.ScrollViewer.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ContentPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Control.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Interop.HwndSource.SetLayoutSize()
   at System.Windows.Interop.HwndSource.set_RootVisualInternal(Visual <span class="kwrd">value</span>)
   at MS.Internal.DeferredHwndSource.ProcessQueue(Object sender, EventArgs e)</pre>
<h3>So what’s the problem?</h3>
<p>The issue is with the runtime used in Visual Studio to display the WP7 XAML. Visual Studio 2010 uses the Silverlight engine for this and the Silverlight engine apparently does not have that enum value implemented – and so, if there’s a design time DataContext applied in XAML, Silverlight craps out and crashes, causing the error message you see.</p>
<h3></h3>
<h3>How do you solve it?</h3>
<p>There may be a bunch of ways of solving it, but mine involves a Converter. Use the &lt;Image&gt; XAML element as you usually would, but in the Binding of the Source, apply the attached converter with the relevant parameters:</p>
<pre class="csharpcode">&lt;Image Source=<span class="str">"{Binding Path=MyImage, Converter={StaticResource RuntimeImageLoaderConverter1}, ConverterParameter=bd}"</span>/&gt;
</pre>
<p>The converter obviously needs to be declared in the Resources of the page or control. The interesting bit is the use of the converter parameters:</p>
<p>ConverterParameter=bd</p>
<p>“b” will make sure the image gets loaded in the background (the aforementioned BackgroundCreation flag) and “d” will make sure that it’s delay loaded.</p>
<p>That’s it – once you use the designer, the system will load the image normally (no funky flags) when in the designer and with the relevant flags when actually running on the phone.</p>
<h3>How does it work?</h3>
<p>It’s pretty simple, the converter checks to see if it’s in the design environment and if it is, it will default-create the Image. Otherwise, it will use the relevant flags (it also makes sure it knows how to load string URIs and regular URIs):</p>
<pre style="width:639px;height:197px;" class="csharpcode"><span class="kwrd">public</span> <span class="kwrd">class</span> RuntimeImageLoaderConverter : IValueConverter
{

    <span class="kwrd">public</span> <span class="kwrd">object</span> Convert(<span class="kwrd">object</span> <span class="kwrd">value</span>, Type targetType, <span class="kwrd">object</span> parameter, System.Globalization.CultureInfo culture)
    {
        Uri uri = <span class="kwrd">null</span>;
        <span class="kwrd">if</span> (<span class="kwrd">value</span> <span class="kwrd">is</span> Uri)
        {
            uri = (Uri)<span class="kwrd">value</span>;
        }
        <span class="kwrd">else</span> <span class="kwrd">if</span> (<span class="kwrd">value</span> <span class="kwrd">is</span> String)
        {
            <span class="kwrd">string</span> s = (<span class="kwrd">string</span>)<span class="kwrd">value</span>;
            <span class="kwrd">if</span> (s.StartsWith(<span class="str">"/"</span>))
            {
                Uri.TryCreate(s, UriKind.Relative, <span class="kwrd">out</span> uri);
            }
            <span class="kwrd">else</span>
            {
                Uri.TryCreate(s, UriKind.Absolute, <span class="kwrd">out</span> uri);
            }
        }

        BitmapCreateOptions options = BitmapCreateOptions.None;

        <span class="kwrd">string</span> p = parameter <span class="kwrd">as</span> <span class="kwrd">string</span>;
        <span class="kwrd">if</span> (p != <span class="kwrd">null</span> &amp;&amp; GetIsInDesignMode())
        {
            <span class="kwrd">if</span> (p.Contains(<span class="str">"b"</span>) || p.Contains(<span class="str">"B"</span>))
            {
                options |= BitmapCreateOptions.BackgroundCreation;
            }

            <span class="kwrd">if</span> (p.Contains(<span class="str">"d"</span>) || p.Contains(<span class="str">"D"</span>))
            {
                options |= BitmapCreateOptions.DelayCreation;
            }
        }

        BitmapImage result = <span class="kwrd">null</span>;
        <span class="kwrd">if</span> (uri != <span class="kwrd">null</span>)
        {
            result = <span class="kwrd">new</span> BitmapImage();
            result.CreateOptions = options;
            result.UriSource = uri;
        }

        <span class="kwrd">return</span> result;
    }</pre>
<p>That’s about it. Hope this helps someone. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://apps.socialebola.com/Downloads/BackgroundCreation/PhoneApp5.zip">Download</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/363/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/363/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/363/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=363&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/01/25/backgroundcreation-crashes-the-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>
	</item>
		<item>
		<title>How to add a word to the WP7 dictionary</title>
		<link>http://socialebola.wordpress.com/2012/01/25/how-to-add-a-word-to-the-wp7-dictionary/</link>
		<comments>http://socialebola.wordpress.com/2012/01/25/how-to-add-a-word-to-the-wp7-dictionary/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 06:54:29 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=361</guid>
		<description><![CDATA[This blog is not intended as a generic WP7 blog, but every now and again, I realized there are some features that are a little more hidden than others (that’s a nice way of saying “undiscoverable”) that people generally don’t &#8230; <a href="http://socialebola.wordpress.com/2012/01/25/how-to-add-a-word-to-the-wp7-dictionary/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=361&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This blog is not intended as a generic WP7 blog, but every now and again, I realized there are some features that are a little more hidden than others (that’s a nice way of saying “undiscoverable”) that people generally don’t know about..</p>
<p>With that, here’s how you add a word to the WP7 dictionary:</p>
<p>1. I typed “ftfy” (Fixed That For Ya). As you can see, the word is not in the dictionary:</p>
<p><a href="http://socialebola.files.wordpress.com/2012/01/image4.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://socialebola.files.wordpress.com/2012/01/image_thumb4.png?w=350&#038;h=230" width="350" height="230"></a></p>
<p>2. To add it, tap on it:</p>
<p><a href="http://socialebola.files.wordpress.com/2012/01/image5.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://socialebola.files.wordpress.com/2012/01/image_thumb5.png?w=350&#038;h=217" width="350" height="217"></a></p>
<p>3. Tap on the “+ ftfy”. That’s it – the word is now added to your dictionary.</p>
<p>Bonus:</p>
<p>When WP autocorrects a word that it doesn’t know (and that you typed correctly), tap on the word, the original “wrong” word will appear at the left-most side of the auto-correct strip. Tap that word, the correction WP7 did will be replaced with the original word you tapped in. Now, tap the word again, and you will be able to add it to the dictionary.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/361/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/361/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/361/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=361&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/01/25/how-to-add-a-word-to-the-wp7-dictionary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/01/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/01/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Hidden blog in Fail++</title>
		<link>http://socialebola.wordpress.com/2012/01/18/hidden-blog-in-fail/</link>
		<comments>http://socialebola.wordpress.com/2012/01/18/hidden-blog-in-fail/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 07:51:32 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[Apps]]></category>
		<category><![CDATA[Fail++]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=348</guid>
		<description><![CDATA[If you are a reader of this blog, or of Twitter, you get an extra blog on your Fail++ app! “After 12”. Please email us by using the “Feedback” tile on the app, and we will enable it for you.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=348&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are a reader of this blog, or of Twitter, you get an extra blog on your Fail++ app! “After 12”.</p>
<p>Please email us by using the “Feedback” tile on the app, and we will enable it for you.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=348&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/01/18/hidden-blog-in-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>
	</item>
		<item>
		<title>Developer tool for nicer marketplace screenshots</title>
		<link>http://socialebola.wordpress.com/2012/01/18/developer-tool-for-nicer-marketplace-screenshots/</link>
		<comments>http://socialebola.wordpress.com/2012/01/18/developer-tool-for-nicer-marketplace-screenshots/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 05:33:01 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[Dev]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=345</guid>
		<description><![CDATA[If you look at screenshots in the Marketplace that show the Start Screen, you will notice something strange – they all look the same – usually an Internet Explorer tile and a tile for the app. There are 2 reasons &#8230; <a href="http://socialebola.wordpress.com/2012/01/18/developer-tool-for-nicer-marketplace-screenshots/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=345&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you look at screenshots in the Marketplace that show the Start Screen, you will notice something strange – they all look the same – usually an Internet Explorer tile and a tile for the app. There are 2 reasons devs don’t show more tiles:</p>
<p>1. Sometimes, you don’t want the start screen to be too “noisy”</p>
<p>2. It’s impossible with the default emulator provided by Microsoft.</p>
<p>The issue is that the emulator does not come with full functionality – it instead comes with IE and Settings (and if you dig around, you can also pin Local Scout and specific contacts).</p>
<p align="left">If you want to add more icons (phone, outlook, text, xbox etc) to your screenshots, use the following tool – it creates mock tiles on the emulator to make it look like you have more apps pinned:</p>
<p><a href="http://socialebola.files.wordpress.com/2012/01/pic.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="pic" border="0" alt="pic" src="http://socialebola.files.wordpress.com/2012/01/pic_thumb.png?w=148&#038;h=244" width="148" height="244"></a></p>
<p>The tool is pretty simple – it gives you a bunch of buttons to pin the wanted tiles:</p>
<p><a href="http://socialebola.files.wordpress.com/2012/01/pic1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="pic" border="0" alt="pic" src="http://socialebola.files.wordpress.com/2012/01/pic_thumb1.png?w=279&#038;h=364" width="279" height="364"></a></p>
<p>To get the tool working, you will need to deploy it to your emulator using the Deployment tool. Enjoy!</p>
<p><a href="http://apps.socialebola.com/downloads/SEDevTools/SEDevTools.xap">Download</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/345/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/345/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/345/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=345&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/01/18/developer-tool-for-nicer-marketplace-screenshots/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/01/pic_thumb.png" medium="image">
			<media:title type="html">pic</media:title>
		</media:content>

		<media:content url="http://socialebola.files.wordpress.com/2012/01/pic_thumb1.png" medium="image">
			<media:title type="html">pic</media:title>
		</media:content>
	</item>
		<item>
		<title>Twitter clients anyone?</title>
		<link>http://socialebola.wordpress.com/2012/01/17/twitter-clients-anyone/</link>
		<comments>http://socialebola.wordpress.com/2012/01/17/twitter-clients-anyone/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 05:00:11 +0000</pubDate>
		<dc:creator>SocialEbola</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://socialebola.wordpress.com/?p=338</guid>
		<description><![CDATA[Hey folks – I am looking for a twitter client (PC/WP7 preferable, will use web if no other option) that will allow me to track a hash-tag (search), but filter out specific users/retweets. Does anyone know about something like that?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=338&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hey folks – I am looking for a twitter client (PC/WP7 preferable, will use web if no other option) that will allow me to track a hash-tag (search), but filter out specific users/retweets.</p>
<p>Does anyone know about something like that?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/socialebola.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/socialebola.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/socialebola.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/socialebola.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/socialebola.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/socialebola.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/socialebola.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/socialebola.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/socialebola.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/socialebola.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/socialebola.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/socialebola.wordpress.com/338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/socialebola.wordpress.com/338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/socialebola.wordpress.com/338/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=socialebola.wordpress.com&amp;blog=17348383&amp;post=338&amp;subd=socialebola&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://socialebola.wordpress.com/2012/01/17/twitter-clients-anyone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8244e0e5b4f0b228d9bfe8cbf8f00358?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shaharprish</media:title>
		</media:content>
	</item>
	</channel>
</rss>
