<?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>BestW8Apps.com</title>
	<atom:link href="http://bestw8apps.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bestw8apps.com</link>
	<description>&#34;Best&#34; Windows 8 Applications</description>
	<lastBuildDate>Wed, 19 Dec 2012 21:58:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4</generator>
		<item>
		<title>Roman Empire in the Windows Store 8!</title>
		<link>http://bestw8apps.com/2012/11/roman-empire-in-the-windows-store-8/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=roman-empire-in-the-windows-store-8</link>
		<comments>http://bestw8apps.com/2012/11/roman-empire-in-the-windows-store-8/#comments</comments>
		<pubDate>Wed, 07 Nov 2012 20:33:35 +0000</pubDate>
		<dc:creator>Best W8 Apps</dc:creator>
				<category><![CDATA[Roman Empire]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[windows 8]]></category>
		<category><![CDATA[Windows 8 Store]]></category>
		<category><![CDATA[winforum.eu]]></category>

		<guid isPermaLink="false">http://bestw8apps.com/?p=185</guid>
		<description><![CDATA[We are happy to announce that Roman Empire is available in the Windows Store starting NOW! Give it a try, install it, have fun and send us your feedback! There is a trial that will let you play without any<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://bestw8apps.com/2012/11/roman-empire-in-the-windows-store-8/">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
			<content:encoded><![CDATA[<p>We are happy to announce that Roman Empire is available in the Windows Store starting NOW! Give it a try, install it, have fun and send us your feedback!</p>
<p>There is a trial that will let you play without any limitation for the first 10 levels!</p>
<p><strong>Try it now:</strong> <a href="http://apps.microsoft.com/webpdp/en-US/app/roman-empire/18a56d6a-901f-4f84-aba9-4d57b91e64b9">http://apps.microsoft.com/webpdp/en-US/app/roman-empire/18a56d6a-901f-4f84-aba9-4d57b91e64b9</a></p>
<p><a href="http://bestw8apps.com/wp-content/uploads/2012/11/Screen2-Copy.png"><img class="alignnone size-full wp-image-187" title="Screen2 - Copy" src="http://bestw8apps.com/wp-content/uploads/2012/11/Screen2-Copy.png" alt="" width="1366" height="768" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://bestw8apps.com/2012/11/roman-empire-in-the-windows-store-8/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to change image’s color (RGB) at runtime in Windows 8</title>
		<link>http://bestw8apps.com/2012/08/how-to-change-images-color-rgb-at-runtime-in-windows-8/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-change-images-color-rgb-at-runtime-in-windows-8</link>
		<comments>http://bestw8apps.com/2012/08/how-to-change-images-color-rgb-at-runtime-in-windows-8/#comments</comments>
		<pubDate>Sun, 19 Aug 2012 15:35:39 +0000</pubDate>
		<dc:creator>Dev Dept</dc:creator>
				<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Change image color]]></category>
		<category><![CDATA[color swap]]></category>
		<category><![CDATA[Process image]]></category>
		<category><![CDATA[RGB]]></category>
		<category><![CDATA[windows 8]]></category>

		<guid isPermaLink="false">http://bestw8apps.com/?p=111</guid>
		<description><![CDATA[Problem You have an image of unit (sprite) in your game and you would like to dynamically change selected colors. You would like to get units that will look the same for one player and different than others. Let&#8217;s say<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://bestw8apps.com/2012/08/how-to-change-images-color-rgb-at-runtime-in-windows-8/">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
			<content:encoded><![CDATA[<h3>Problem</h3>
<p>You have an image of unit (sprite) in your game and you would like to dynamically change selected colors. You would like to get units that will look the same for one player and different than others. Let&#8217;s say Player one has units with red shield, Player two uses blue color.</p>
<p>Red and blue dummy example:</p>
<p><img src="http://bestw8apps.com/wp-content/uploads/2012/08/081912_1535_Howtochange1.png" alt="" /></p>
<p><img src="http://bestw8apps.com/wp-content/uploads/2012/08/081912_1535_Howtochange2.png" alt="" /></p>
<p>You can use two different images prepared by designer but then your application size will be increased. If your unit&#8217;s graphic is 10KB and you support ten players with ten colors, you get 100KB size. Now, if your animation is in 8 different directions, you will have 800KB instead of 80KB and it&#8217;s just for one sprite!</p>
<h3>RGB Solution</h3>
<p>The most convenient way to do that (as far as I know) is to use <a href="http://msdn.microsoft.com/en-us/library/system.drawing.imaging.colorpalette.aspx">ColorPalette</a> class but unfortunately it&#8217;s not supported in new Windows 8. If we don&#8217;t have access to colors, we can only go through pixels and change them manually. <img src='http://bestw8apps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>We don&#8217;t have <strong>SetPixel</strong> and <strong>GetPixel</strong> methods on Bitmap or WriteableBitmap classes so following example will <strong>NOT</strong> work:</p>
<pre class="brush: csharp; title: ; wrap-lines: true; notranslate">
Bitmap bitmap = LoadBitmap(&quot;Sprite.png&quot;);
for (int x = 0; x &lt; bitmap.Width; x++)
{
    for (int y = 0; y &lt; bitmap.Height; y++)
    {
        if (bitmap.GetPixel(x, y) == Color.Red)
        {
            bitmap.SetPixel(x, y, Color.Blue);
        }
    }
}
</pre>
<p>We have to go really deep and work on pixels directly. We will detect color to swap and replace pixel&#8217;s values.</p>
<h5>XAML:</h5>
<pre class="brush: xml; title: ; wrap-lines: true; notranslate">
&lt;Grid Background=&quot;{StaticResource ApplicationPageBackgroundThemeBrush}&quot;&gt;
    &lt;StackPanel&gt;
        &lt;Button Content=&quot;Load image (Red to Cyan)&quot; Click=&quot;Button_Click_1&quot; /&gt;
        &lt;Image x:Name=&quot;image&quot; Stretch=&quot;None&quot;/&gt;
    &lt;/StackPanel&gt;
&lt;/Grid&gt;
</pre>
<h5>Load Image and call &#8220;SwitchColors&#8221; method:</h5>
<pre class="brush: csharp; title: ; notranslate">
private async void Button_Click_1(object sender, RoutedEventArgs e)
{
    FileOpenPicker picker = new FileOpenPicker();
    picker.SuggestedStartLocation = PickerLocationId.PicturesLibrary;
    picker.FileTypeFilter.Add(&quot;.png&quot;);
    StorageFile file = await picker.PickSingleFileAsync();

    if (file != null)
    {
        using (IRandomAccessStream fileStream = await file.OpenAsync(Windows.Storage.FileAccessMode.Read))
        {
            BitmapDecoder decoder = await BitmapDecoder.CreateAsync(fileStream);

            PixelDataProvider pixelData = await decoder.GetPixelDataAsync(
                BitmapPixelFormat.Bgra8,
                BitmapAlphaMode.Straight,
                new BitmapTransform(),
                ExifOrientationMode.IgnoreExifOrientation,
                ColorManagementMode.DoNotColorManage);

            byte[] sourcePixels = pixelData.DetachPixelData();
            await ThreadPool.RunAsync(new WorkItemHandler(
                (IAsyncAction action) =&gt;
                {
                    sourcePixels = SwitchColor(sourcePixels, decoder.PixelWidth, decoder.PixelHeight, Colors.Red, Colors.Cyan);
                }
                ));

            var writeableBitmap = new WriteableBitmap((int)decoder.PixelWidth, (int)decoder.PixelHeight);
            using (Stream stream = writeableBitmap.PixelBuffer.AsStream())
            {
                await stream.WriteAsync(sourcePixels, 0, sourcePixels.Length);
            }

            // Redraw the image
            image.Source = writeableBitmap;
        }
    }
}
</pre>
<h5>Method &#8220;SwitchColors&#8221;:</h5>
<pre class="brush: csharp; title: ; notranslate">
private byte[] SwitchColor(byte[] sourcePixels, uint pixelWidth, uint pixelHeight, Color colorFrom, Color colorTo)
{
    int resultIndex = 0;

    // 4 bytes required for each pixel
    byte cFromB = colorFrom.B;
    byte cFromG = colorFrom.G;
    byte cFromR = colorFrom.R;
    byte cFromA = colorFrom.A;

    byte cToB = colorTo.B;
    byte cToG = colorTo.G;
    byte cToR = colorTo.R;
    byte cToA = colorTo.A;

    for (int y = 0; y &lt; pixelHeight; y++)
    {
        for (int x = 0; x &lt; pixelWidth; x++)
        {
            if (sourcePixels[resultIndex] == cFromG &amp;&amp; sourcePixels[resultIndex + 1] == cFromB &amp;&amp;
                sourcePixels[resultIndex + 2] == cFromR &amp;&amp; sourcePixels[resultIndex + 3] == cFromA)
            {
                sourcePixels[resultIndex] = cToB;
                sourcePixels[resultIndex + 1] = cToG;
                sourcePixels[resultIndex + 2] = cToR;
                sourcePixels[resultIndex + 3] = cToA;
            }
            resultIndex += 4;
        }
    }

    return sourcePixels;
}
</pre>
<h5>Results</h5>
<p>Image before and after (Red to Blue)</p>
<p><img src="http://bestw8apps.com/wp-content/uploads/2012/08/081912_1535_Howtochange3.png" alt="" /> <img src="http://bestw8apps.com/wp-content/uploads/2012/08/081912_1535_Howtochange4.png" alt="" /></p>
<p>Sprite before and after (Red to Green and to Cyan)</p>
<p><img src="http://bestw8apps.com/wp-content/uploads/2012/08/081912_1535_Howtochange5.png" alt="" /></p>
<p><img src="http://bestw8apps.com/wp-content/uploads/2012/08/081912_1535_Howtochange6.png" alt="" /></p>
<p><img src="http://bestw8apps.com/wp-content/uploads/2012/08/081912_1535_Howtochange7.png" alt="" /></p>
<p>I am changing only one single color. For our applications we will have some shadows and we would need to do that for at least few more (e.g. Red: {255, 255, 0, 0}, {255, 254, 0, 0}, {255, 253, 0, 0}).</p>
<p>There is also alternative to use HSL but that&#8217;s different story, not for today.</p>
<h4>Optimization</h4>
<p>If you know that Alpha channel will not change, don&#8217;s set it in the IF statement. You might also know that shield on the image starts on specific pixel {e.g. 300, 300}, so don&#8217;t iterate from 0 till end of the image.</p>
<h3>Resources</h3>
<ul>
<li>Download source code: <a href="http://bestw8apps.com/wp-content/uploads/2012/08/ChangeImagePoC.zip">link</a></li>
</ul>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://bestw8apps.com/2012/08/how-to-change-images-color-rgb-at-runtime-in-windows-8/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to use jQuery with WinJS</title>
		<link>http://bestw8apps.com/2012/08/how-to-use-jquery-with-winjs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-use-jquery-with-winjs</link>
		<comments>http://bestw8apps.com/2012/08/how-to-use-jquery-with-winjs/#comments</comments>
		<pubDate>Sun, 19 Aug 2012 13:59:47 +0000</pubDate>
		<dc:creator>R&#38;D Dept</dc:creator>
				<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[WinJs]]></category>

		<guid isPermaLink="false">http://bestw8apps.com/?p=75</guid>
		<description><![CDATA[Building my first Windows 8 Store application with Java Script project template results with unexpected discovery. I become curious how new WinJS works with Windows 8 application presentation layout so I started by reading couple MSDN articles about it. I<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://bestw8apps.com/2012/08/how-to-use-jquery-with-winjs/">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
			<content:encoded><![CDATA[<p>Building my first Windows 8 Store application with Java Script project template results with unexpected discovery. I become curious how new WinJS works with Windows 8 application presentation layout so I started by reading couple MSDN articles about it. I was truly surprised seeing so classic JavaScript implementation in included code examples :</p>
<pre class="brush: jscript; title: ; wrap-lines: true; notranslate">
var userName = document.getElementById(&quot;nameInput&quot;).value;
</pre>
<p>My natural question was can it be done in more fancy way ? How about using jQuery instead ? Why not so I&#8217;ve included jQuery library in my default.html page just like that :</p>
<pre class="brush: xml; title: ; wrap-lines: true; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
 &lt;meta charset=&quot;utf-8&quot; /&gt;
 &lt;title&gt;HelloWorld&lt;/title&gt;
 &lt;!-- WinJS references --&gt;
 &lt;link href=&quot;//Microsoft.WinJS.1.0/css/ui-dark.css&quot; rel=&quot;stylesheet&quot;/&gt;
 &lt;script src=&quot;//Microsoft.WinJS.1.0/js/base.js&quot;&gt;&lt;/script&gt;
 &lt;script src=&quot;//Microsoft.WinJS.1.0/js/ui.js&quot;&gt;&lt;/script&gt;
 &lt;!-- External references --&gt;
 &lt;script src=&quot;http://code.jquery.com/jquery-1.8.0.min.js&quot;&gt;&lt;/script&gt;
 &lt;!-- HelloWorld references --&gt;
 &lt;link href=&quot;/css/default.css&quot; rel=&quot;stylesheet&quot; /&gt;
 &lt;script src=&quot;/js/default.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
 &lt;p&gt;Content goes here&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>and then replace <em>getElementById()</em> with jQuery syntax :</p>
<pre class="brush: jscript; title: ; wrap-lines: true; notranslate">
userName = $(&quot;#nameInput&quot;).val();
</pre>
<p>Unfortunately it results with an error:</p>
<p><strong><em>0x800a1391 – JavaScript runtime error: &#8216;$&#8217; is undefined.</em></strong></p>
<p>It takes me a while to understand that jQuery library can&#8217;t be load. In fact none of external references can. Windows 8 Metro application is not a web application so trying to use non-project references will fail. That&#8217;s certainly hard to understand at first especially when Windows 8 application is seen from web developer perspective.</p>
<h3>Solution</h3>
<p>To make jQuery work with WinJS the source code of the library needs to be include in the project by adding <em>jquery-1.8.0.min.js</em> file as an existing item.</p>
<p style="text-align: center;"><img class="aligncenter" title="jQuery element inside Solution Explorer" src="http://bestw8apps.com/wp-content/uploads/2012/08/081912_1359_HowtousejQu1.png" alt="" width="284" height="202" /></p>
<p>And then in the &lt;head&gt; section of the <em>default.js</em> referenced as</p>
<pre class="brush: xml; title: ; wrap-lines: true; notranslate">
&lt;!-- External references --&gt;
 &lt;script src=&quot; /js/jquery-1.8.0.min.js&quot;&gt;&lt;/script&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bestw8apps.com/2012/08/how-to-use-jquery-with-winjs/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Migrating Windows RP application to Windows 8 RTM – XAMLParseException</title>
		<link>http://bestw8apps.com/2012/08/migrating-windows-rp-application-to-windows-8-rtm-xamlparseexception/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=migrating-windows-rp-application-to-windows-8-rtm-xamlparseexception</link>
		<comments>http://bestw8apps.com/2012/08/migrating-windows-rp-application-to-windows-8-rtm-xamlparseexception/#comments</comments>
		<pubDate>Sat, 18 Aug 2012 18:38:47 +0000</pubDate>
		<dc:creator>Dev Dept</dc:creator>
				<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[XAML]]></category>
		<category><![CDATA[Dot in the project's name]]></category>
		<category><![CDATA[windows 8]]></category>
		<category><![CDATA[XAML parsing failed]]></category>
		<category><![CDATA[XAMLParseException]]></category>

		<guid isPermaLink="false">http://bestw8apps.com/?p=25</guid>
		<description><![CDATA[After I installed new Windows 8 with new Visual Studio 2012 I expected smooth migration of my projects. However one small issue cost me about one hour of investigation. I checked &#8220;Migrating your Release Preview app to Windows 8&#8243; doc but<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://bestw8apps.com/2012/08/migrating-windows-rp-application-to-windows-8-rtm-xamlparseexception/">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
			<content:encoded><![CDATA[<p>After I installed new Windows 8 with new Visual Studio 2012 I expected smooth migration of my projects. However one small issue cost me about one hour of investigation. I checked <a href="http://www.microsoft.com/en-us/download/details.aspx?id=30706">&#8220;Migrating your Release Preview app to Windows 8&#8243;</a> doc but I didn&#8217;t find any information about my issue.  So I am sharing following post that I hope will save someone&#8217;s time.</p>
<h2>Error</h2>
<p>I opened my project in new VS 2012. It compiled without any problems. I just had to change &#8220;<em>OSMinVersion</em>&#8221; and &#8220;<em>OSMaxVersionTested</em>&#8221; to 6.2.1. However when I run it, I got <strong>XAMLParseException</strong> with error</p>
<p><em>&#8220;{&#8220;XAML parsing failed.&#8221;}&#8221;.<br />
</em></p>
<h4>StackTrace:</h4>
<pre class="brush: plain; title: ; notranslate">
at Windows.UI.Xaml.Application.LoadComponent(Object component, Uri resourceLocator, ComponentResourceLocation componentResourceLocation)
at Shopping.Game.Controls.EndGameWindow.InitializeComponent() in \Shopping\Shopping.Game\obj\x86\Debug\Windows\EndGameWindow.g.i.cs:line 44
at Shopping.Game.Controls.EndGameWindow..ctor() in \Shopping\Shopping.Game\Windows\EndGameWindow.xaml.cs:line 28
at Shopping.Shopping_XamlTypeInfo.XamlTypeInfoProvider.Activate_6_EndGameWindow() in \Shopping\Shopping\obj\x86\Debug\XamlTypeInfo.g.cs:line 135
at Shopping.Shopping_XamlTypeInfo.XamlUserType.ActivateInstance() in \Shopping\Shopping\obj\x86\Debug\XamlTypeInfo.g.cs:line 404
</pre>
<p>My solution contains few projects and I keep &#8220;&#8221;EndGameWindow&#8221; UserControl in &#8220;Shopping.Game&#8221; project. Project &#8220;Shopping&#8221; is a main one.</p>
<p>I commented out everything from EndGameWindow.xaml and EndGameWindow.xaml.cs files but it still failed. Even for new created UserControls.</p>
<h2>Problem</h2>
<p>What I found? I found that inside the files {fielname}.g.i.cs under path obj/x86/Debug/ generated URL contains wrong project name, instead of &#8220;Shopping.Game&#8221; it was &#8220;Shopping_Game&#8221;.</p>
<pre class="brush: csharp; title: ; wrap-lines: true; notranslate">
global::System.Uri(&quot;ms-appx:///Shopping_Game/Controls/EndGameWindow.xaml&quot;)
</pre>
<p><a href="http://bestw8apps.com/wp-content/uploads/2012/08/DotInTheName1.png"><img class="alignnone size-full wp-image-41" title="Dot in the project's name" src="http://bestw8apps.com/wp-content/uploads/2012/08/DotInTheName1.png" alt="" width="560" height="42" /></a></p>
<h2>Solution</h2>
<p>Solution is super simple, don&#8217;t put dots in the project&#8217;s name. I didn&#8217;t check what would happen if I would manually change the value in the {filename}.g.i.cs file as this is auto generated file and my changes would be overwritten with compilation. I just renamed my project. I don&#8217;t use dot anymore in the name, which was my kind of naming convention. It was always working in VS 2010 and VS 2012 RC, but I can live without it. <img src='http://bestw8apps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>How to change the name? Go to project&#8217;s properties and update <strong>Assembly name</strong>. I changed as well <strong>Default namespace</strong> and project&#8217;s name in the solution, just to have everything nice and clean.</p>
<p><img src="http://bestw8apps.com/wp-content/uploads/2012/08/081812_1838_MigrationWi2.png" alt="" /></p>
<p><img src="http://bestw8apps.com/wp-content/uploads/2012/08/081812_1838_MigrationWi3.png" alt="" /></p>
<h3><em>[Edit 08/19/2012]</em> Fix</h3>
<p>Thanks to <a href="http://timheuer.com/blog/">Tim Heuer</a> we now know that there is a hotfix available for described issue. To get it, just follow this link: <a href="http://support.microsoft.com/kb/2739194">http://support.microsoft.com/kb/2739194</a>. Awesome! <img src='http://bestw8apps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bestw8apps.com/2012/08/migrating-windows-rp-application-to-windows-8-rtm-xamlparseexception/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://bestw8apps.com/2012/08/welcome/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=welcome</link>
		<comments>http://bestw8apps.com/2012/08/welcome/#comments</comments>
		<pubDate>Sun, 12 Aug 2012 17:31:16 +0000</pubDate>
		<dc:creator>Best W8 Apps</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bestw8apps.com/?p=1</guid>
		<description><![CDATA[Welcome on our official website. Here you will find information about our products and development issues that we had to overcome. We will try to publish technical and marketing posts and we hope you will visit us more often! ..or<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://bestw8apps.com/2012/08/welcome/">Read more &#8250;</a></div><!-- end of .read-more -->]]></description>
			<content:encoded><![CDATA[<p>Welcome on our official website. Here you will find information about our products and development issues that we had to overcome. We will try to publish technical and marketing posts and we hope you will visit us more often! <img src='http://bestw8apps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>..or just use RSS and visit us only when there is something new <img src='http://bestw8apps.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bestw8apps.com/2012/08/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
