<?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"
	>

<channel>
	<title>Geeklanka</title>
	<atom:link href="http://www.geeklanka.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geeklanka.com</link>
	<description>Sri Lanka's geek blog aggregator</description>
	<pubDate>Fri, 12 Mar 2010 01:10:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Help me : Bugs per 1000 line of code .. Agile dev aproach vs Traditional development aproach ??</title>
		<link>http://projectized.blogspot.com/2010/03/help-me-bugs-per-1000-line-of-code.html</link>
		<comments>http://projectized.blogspot.com/2010/03/help-me-bugs-per-1000-line-of-code.html#comments</comments>
		<pubDate>Fri, 12 Mar 2010 01:10:00 +0000</pubDate>
		<dc:creator>PROJECTIZED</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-13538254.post-5693725547263419394</guid>
		<description><![CDATA[I have come across some papers for same projects done based on traditional approach and Agile approach, which proves that Agile approaches have delivered significant better results. Some are from Starlabs SCRUM papers.Im in the process of customising an Agile framework and curious about following.Have you come across in any comparisons that the bug per [...]]]></description>
			<content:encoded><![CDATA[I have <span class="blsp-spelling-corrected">come across</span> some papers for same projects done based on traditional approach and Agile approach, which proves that Agile approaches have delivered significant better results. Some are from <span class="blsp-spelling-error">Starlabs</span> SCRUM papers.<br /><br /><span class="blsp-spelling-error">Im</span> in the process of customising an Agile framework and curious about following.<br /><br />Have you come across in any comparisons that the bug per line of code based on traditional software development vs agile development especially when test focused and test driven approaches are used. ?<br />Yeah I understand the complexity of the comparison based on iterative deliveries, but what <span class="blsp-spelling-error">Im</span> looking at is the accumulated picture over the iterative deliveries throughout the project compared to the test results of the same project which is done with traditional approaches.<br />What I need to know is whether there is a significant difference in test results as we see many points that it should be..<br />Appreciate your help on this ..!<br /><p></p><p></p><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13538254-5693725547263419394?l=projectized.blogspot.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>http://projectized.blogspot.com/2010/03/help-me-bugs-per-1000-line-of-code.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SharpSvn: A Primer</title>
		<link>http://feedproxy.google.com/~r/merill/~3/d9vl10q2K_k/</link>
		<comments>http://feedproxy.google.com/~r/merill/~3/d9vl10q2K_k/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 00:03:14 +0000</pubDate>
		<dc:creator>Merill Fernando's Web Log</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://merill.net/2010/03/sharpsvn-a-primer/</guid>
		<description><![CDATA[The SharpSvn library basically gives you a .NET interface to all the operations that you would normally perform through a tool like TortoiseSVN.
I found myself needing this exact library while writing a tool that changes files that have been checked out from SVN. 
The problem with manipulating files that are under SVN is that you [...]]]></description>
			<content:encoded><![CDATA[<p>The SharpSvn library basically gives you a .NET interface to all the operations that you would normally perform through a tool like TortoiseSVN.</p>
<p>I found myself needing this exact library while writing a tool that changes files that have been checked out from SVN. </p>
<p>The problem with manipulating files that are under SVN is that you need to be careful about renaming files (and sometimes even deleting). If you don’t do it through the SVN api then you will end up with duplicates files/folders in SVN since SVN thinks that it’s a new file.</p>
<p>To solve this I finally got a chance to crack open the SharpSVN library which is used by my favourite AnkhSVN.</p>
<p>1. Download the latest library from <a href="http://sharpsvn.open.collab.net/">http://sharpsvn.open.collab.net/</a>. You have to pick between either 1.5 or 1.6. I went with 1.6 and didn’t run into any issues. I think this is based on the version of the SVN server that your connecting to.</p>
<p>2. In your Visual Studio project add a reference to the following assemblies.    <br />- SharpSvn.dll     <br />- SharpSvn.UI.dll (Only needed if you need the UI to prompt for login)</p>
<p>3. If like me your building on a 64 bit OS and you want your app to run on a 32 bit OS, make sure the project that references the SharpSvn.dll is set to Build for the x86 Platform. (Build –&gt; Configuration Manager – Solution Platform)</p>
<p>4. Write your code using the SvnClient object. Here are some samples from the SharpSvn Wiki and some that I wrote.</p>
<p><strong>CheckOut</strong></p>
<div>
<div>
<pre><span>public</span> <span>void</span> CheckOut()</pre>
<p><!--CRLF--></p>
<pre>{</pre>
<p><!--CRLF--></p>
<pre>  <span>using</span> (SvnClient client = <span>new</span> SvnClient())</pre>
<p><!--CRLF--></p>
<pre>  {</pre>
<p><!--CRLF--></p>
<pre>     client.CheckOut(</pre>
<p><!--CRLF--></p>
<pre>       <span>new</span> Uri(<span>&quot;http://svn.collab.net/repos/svn/trunk/contrib&quot;</span>),</pre>
<p><!--CRLF--></p>
<pre>       <span>@&quot;c:\wc&quot;</span>);</pre>
<p><!--CRLF--></p>
<pre>  } </pre>
<p><!--CRLF--></p>
<pre>}</pre>
<p><!--CRLF--></div>
</div>
<p>Add new files to the working copy</p>
<div>
<div>
<pre><span>using</span>(SvnClient client = <span>new</span> SvnClient())</pre>
<p><!--CRLF--></p>
<pre>{</pre>
<p><!--CRLF--></p>
<pre>  SvnAddArgs args = <span>new</span> SvnAddArgs();</pre>
<p><!--CRLF--></p>
<pre>  <span>// TODO: Set optional settings on args</span></pre>
<p><!--CRLF--></p>
<pre>&#160;</pre>
<p><!--CRLF--></p>
<pre>  client.Add(<span>@&quot;C:\file\in\workingcopy&quot;</span>, args);</pre>
<p><!--CRLF--></p>
<pre>}</pre>
<p><!--CRLF--></div>
</div>
<p><strong>Check if a given path is a valid SVN working copy</strong></p>
<div>
<div>
<pre><span>public</span> <span>static</span> <span>bool</span> IsWorkingCopy(<span>string</span> path)</pre>
<p><!--CRLF--></p>
<pre>{</pre>
<p><!--CRLF--></p>
<pre>    <span>using</span> (var client = GetSvnClient())</pre>
<p><!--CRLF--></p>
<pre>    {</pre>
<p><!--CRLF--></p>
<pre>        var uri = client.GetUriFromWorkingCopy(path);</pre>
<p><!--CRLF--></p>
<pre>&#160;</pre>
<p><!--CRLF--></p>
<pre>        <span>return</span> uri != <span>null</span>;</pre>
<p><!--CRLF--></p>
<pre>    }</pre>
<p><!--CRLF--></p>
<pre>}</pre>
<p><!--CRLF--></div>
</div>
<p><strong>Find out if a particular folder/file has been marked for deletion.</strong></p>
<div>
<div>
<pre><span>public</span> <span>static</span> <span>bool</span> IsDeleted(<span>string</span> path)</pre>
<p><!--CRLF--></p>
<pre>{</pre>
<p><!--CRLF--></p>
<pre>    <span>if</span>(!IsWorkingCopy(path)) <span>return</span> <span>false</span>;</pre>
<p><!--CRLF--></p>
<pre>&#160;</pre>
<p><!--CRLF--></p>
<pre>    <span>bool</span> isDeleted;</pre>
<p><!--CRLF--></p>
<pre>    <span>using</span> (var client = GetSvnClient())</pre>
<p><!--CRLF--></p>
<pre>    {</pre>
<p><!--CRLF--></p>
<pre>        Collection&lt;SvnStatusEventArgs&gt; args;</pre>
<p><!--CRLF--></p>
<pre>        client.GetStatus(path, <span>out</span> args);</pre>
<p><!--CRLF--></p>
<pre>        isDeleted = args.Count &gt; 0 &amp;&amp; args[0].LocalContentStatus == SvnStatus.Deleted;</pre>
<p><!--CRLF--></p>
<pre>    }</pre>
<p><!--CRLF--></p>
<pre>    <span>return</span> isDeleted;</pre>
<p><!--CRLF--></p>
<pre>}</pre>
<p><!--CRLF--></div>
</div>
<div>&#160;</div>
<div>&#160;</div>
<p>What’s even more awesome about the guys who wrote this library actively support it (even over twitter, thanks <a href="http://twitter.com/srijken">http://twitter.com/srijken</a>!).</p>
<p>And that was even before I found out that they have a ready made .wxs file for integrating the .dlls into my WiX installer package. Awesome!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fmerill.net%2F2010%2F03%2Fsharpsvn-a-primer%2F&amp;linkname=SharpSvn%3A%20A%20Primer">Share/Save</a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/merill?a=d9vl10q2K_k:4B4ToWSCj9A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/merill?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/merill?a=d9vl10q2K_k:4B4ToWSCj9A:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/merill?i=d9vl10q2K_k:4B4ToWSCj9A:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/merill/~4/d9vl10q2K_k" height="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/merill/~3/d9vl10q2K_k/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Chamara’s Lifestream for 2010-03-11</title>
		<link>http://feedproxy.google.com/~r/Apramana/~3/jZP99ccKhRM/</link>
		<comments>http://feedproxy.google.com/~r/Apramana/~3/jZP99ccKhRM/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 15:45:00 +0000</pubDate>
		<dc:creator>Apramana</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://apramana.com/tweets/chamaras-lifestream-for-2010-03-11/</guid>
		<description><![CDATA[
You can turn off the sun, but I&#39;m still gonna shine. #
Chamara’s Lifestream for 2010-03-10: I&#39;ve never seen you looking so gorgeous as you did tonight . #
Chamara’s Lif&#8230; http://bit.ly/bWyDdl #

                &#169; Chamara Peiris - visit Apramana for more great [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>You can turn off the sun, but I&#39;m still gonna shine. <a href="http://twitter.com/chamara/statuses/10327551429" class="aktt_tweet_time">#</a></li>
<li>Chamara’s Lifestream for 2010-03-10: I&#39;ve never seen you looking so gorgeous as you did tonight . #<br />
Chamara’s Lif&#8230; <a href="http://bit.ly/bWyDdl" rel="nofollow">http://bit.ly/bWyDdl</a> <a href="http://twitter.com/chamara/statuses/10282588686" class="aktt_tweet_time">#</a></li>
</ul>
                <p>&copy; Chamara Peiris - visit <a href="http://www.apramana.com">Apramana</a> for more great content.</p>            

<!-- Begin TwitThis script (http://twitthis.com/) -->
<div>


&lt;!--
document.write('<a href=";"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" /></a>');
//--&gt;

</div>
<!-- /End -->

<img src="http://feeds.feedburner.com/~r/Apramana/~4/jZP99ccKhRM" height="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/Apramana/~3/jZP99ccKhRM/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Workflow does not start automatically when bulk inserting items</title>
		<link>http://feedproxy.google.com/~r/merill/~3/HG5C_-0vz8E/</link>
		<comments>http://feedproxy.google.com/~r/merill/~3/HG5C_-0vz8E/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 22:18:27 +0000</pubDate>
		<dc:creator>Merill Fernando's Web Log</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://merill.net/2010/03/workflow-does-not-start-automatically-when-bulk-inserting-items/</guid>
		<description><![CDATA[This had me tripped for a while. I was bulk inserting items (~800) to a list which had event receivers as well as a workflow attached. 
The problem was that the workflow was not being triggered. Or if it did it just hung at In Progress.
After poking around for more than an hour I discovered [...]]]></description>
			<content:encoded><![CDATA[<p>This had me tripped for a while. I was bulk inserting items (~800) to a list which had event receivers as well as a workflow attached. </p>
<p>The problem was that the workflow was not being triggered. Or if it did it just hung at In Progress.</p>
<p>After poking around for more than an hour I discovered that if I inserted a single item it worked. So to fix the issue I added a ten second sleep (Thread.Sleep) between the inserts and the workflows are triggering away happily.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fmerill.net%2F2010%2F03%2Fworkflow-does-not-start-automatically-when-bulk-inserting-items%2F&amp;linkname=Workflow%20does%20not%20start%20automatically%20when%20bulk%20inserting%20items">Share/Save</a><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/merill?a=HG5C_-0vz8E:xcNZBtgcYo0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/merill?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/merill?a=HG5C_-0vz8E:xcNZBtgcYo0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/merill?i=HG5C_-0vz8E:xcNZBtgcYo0:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/merill/~4/HG5C_-0vz8E" height="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/merill/~3/HG5C_-0vz8E/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Chamara’s Lifestream for 2010-03-10</title>
		<link>http://feedproxy.google.com/~r/Apramana/~3/VQMhkG1T8Bg/</link>
		<comments>http://feedproxy.google.com/~r/Apramana/~3/VQMhkG1T8Bg/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 15:45:00 +0000</pubDate>
		<dc:creator>Apramana</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://apramana.com/tweets/chamaras-lifestream-for-2010-03-10/</guid>
		<description><![CDATA[
I&#39;ve never seen you looking so gorgeous as you did tonight . #
Chamara’s Lifestream for 2010-03-09: scoopler.com, Sri Lankan Challenge to Google Search Engine. Good work guys. K&#8230; http://bit.ly/cVvoMm #

                &#169; Chamara Peiris - visit Apramana for more great content. [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>I&#39;ve never seen you looking so gorgeous as you did tonight . <a href="http://twitter.com/chamara/statuses/10278861949" class="aktt_tweet_time">#</a></li>
<li>Chamara’s Lifestream for 2010-03-09: scoopler.com, Sri Lankan Challenge to Google Search Engine. Good work guys. K&#8230; <a href="http://bit.ly/cVvoMm" rel="nofollow">http://bit.ly/cVvoMm</a> <a href="http://twitter.com/chamara/statuses/10239216502" class="aktt_tweet_time">#</a></li>
</ul>
                <p>&copy; Chamara Peiris - visit <a href="http://www.apramana.com">Apramana</a> for more great content.</p>            

<!-- Begin TwitThis script (http://twitthis.com/) -->
<div>


&lt;!--
document.write('<a href=";"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" /></a>');
//--&gt;

</div>
<!-- /End -->

<img src="http://feeds.feedburner.com/~r/Apramana/~4/VQMhkG1T8Bg" height="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/Apramana/~3/VQMhkG1T8Bg/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sri Lanka Geek Blog for T-Shirts &#124; Mugs &#124; Computers 2010-03-10 02:26:00</title>
		<link>http://www.blog.lankangeeks.com/2010/03/welankangeeks-receive-more-than-10.html</link>
		<comments>http://www.blog.lankangeeks.com/2010/03/welankangeeks-receive-more-than-10.html#comments</comments>
		<pubDate>Wed, 10 Mar 2010 02:26:00 +0000</pubDate>
		<dc:creator>Lankan Geeks Blog</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:blogger.com,1999:blog-6673717081140900424.post-2801291636374507840</guid>
		<description><![CDATA[We,Lankangeeks receive more than 10 emails asking for customised t-shirts and we always try to serve them as much as we can.Below is the one of them asking for 4x4x4=32 Samples ??? Dear service providers,Please see below the information for T-Shirts.Short sleeve T-shirts with collar and rib, just like Polo / Crocodile.(Sizes according to USA [...]]]></description>
			<content:encoded><![CDATA[<span>We,Lankangeeks receive more than 10 emails asking for customised t-shirts and we always try to serve them as much as we can.Below is the one of them asking for 4x4x4=32 Samples ??? </span><br /><br /><span>Dear service providers,<br /><br />Please see below the information for T-Shirts.<br /><br />Short sleeve T-shirts with collar and rib, just like Polo / Crocodile.<br /><br />(Sizes according to USA / Europe sizes)<br /><br />1200 pcs M<br />240 pcs S<br />960 pcs L<br />240 pcs XL<br /><br />We need 4 samples in 4 sizes for below colors;<br />Light PINK.<br />LILAC<br />Blue<br />Purple<br /><br />(Pls see attached the pictures/design)<br /><br /><br />******************************************************************************</span><br /><span>We only make 1 sample if the quantity is less than 100 if you need more samples like requested above then that can be addressed in a different way with the company marketing departments  .</span><br /><span></span><br /><span>Hot Line 0716901094 /0716901098 or </span><a href="mailto:nish@lankangeeks.com"><span>nish@lankangeeks.com</span></a><span> (response time 30 min)</span><br /><a href="http://4.bp.blogspot.com/_-ilCsJlrLt0/S5cEAc7teeI/AAAAAAAAADo/9L0wyuQrlpc/s1600-h/backside.jpg"><span><img border="0" alt="" src="http://4.bp.blogspot.com/_-ilCsJlrLt0/S5cEAc7teeI/AAAAAAAAADo/9L0wyuQrlpc/s320/backside.jpg" /></span></a><span><br /></span><a href="http://4.bp.blogspot.com/_-ilCsJlrLt0/S5cEAJyWUNI/AAAAAAAAADg/9hdtivw_hpQ/s1600-h/front01.jpg"><span><img border="0" alt="" src="http://4.bp.blogspot.com/_-ilCsJlrLt0/S5cEAJyWUNI/AAAAAAAAADg/9hdtivw_hpQ/s320/front01.jpg" /></span></a><span> </span><br /><div><span>Let us know your customized t-shirts orders for parties/events/trips/etc to 0716901094 -Nish</span></div><div><span>We are ready to serve you with high quality T-shirts.</span></div><div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6673717081140900424-2801291636374507840?l=www.blog.lankangeeks.com' alt='' /></div>]]></content:encoded>
			<wfw:commentRss>http://www.blog.lankangeeks.com/2010/03/welankangeeks-receive-more-than-10.html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BlogEngine.NET</title>
		<link>http://www.welasharp.net/Default.aspx?blogid=2010030902&showblogitem=yes</link>
		<comments>http://www.welasharp.net/Default.aspx?blogid=2010030902&showblogitem=yes#comments</comments>
		<pubDate>Tue, 09 Mar 2010 16:14:32 +0000</pubDate>
		<dc:creator>Wela's Blog</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:www.welasharp.net://5c3d742ce5a06c7b32ece3b59be46832</guid>
		<description><![CDATA[
		When it comes to my blog I never wanted to use any of those ready made tools even though I knew those tools had everything needed and fully featured. All I wanted to do was to build it from the scratch ... just to feel good. I even started developing the second version ages ago [...]]]></description>
			<content:encoded><![CDATA[
		<p>When it comes to my blog I never wanted to use any of those ready made tools even though I knew those tools had everything needed and fully featured. All I wanted to do was to build it from the scratch ... just to feel good. I even started developing the second version ages ago but never got a chance to complete due to the busy scheudle and seems like never will be able to :(</p>
		<p>Last Sunday started working on customizing BlogEngine.NET for another site and I'm suprised by the simplicity it gives when customizing the UI.?Within 2-3 hours I managed to change the entier UI to the new look and feel I wanted. It was simple and clear.</p>
		<p>Right now i'm thinking of migrating my good old blog to BlogEngine.NET ... any thoughts guys?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.welasharp.net/Default.aspx?blogid=2010030902&showblogitem=yes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Brazilian Churrasco and &#8216;Api Nodanna Live!&#8217;</title>
		<link>http://www.welasharp.net/Default.aspx?blogid=2010030901&showblogitem=yes</link>
		<comments>http://www.welasharp.net/Default.aspx?blogid=2010030901&showblogitem=yes#comments</comments>
		<pubDate>Tue, 09 Mar 2010 16:07:25 +0000</pubDate>
		<dc:creator>Wela's Blog</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">tag:www.welasharp.net://8a89508db7f6fb320facd7fb96df2124</guid>
		<description><![CDATA[
		
				Last Sunday I went to the Lavinia Breeze with family to have dinner. Expectations were high as the advertising is good and more importantly I have been to a 'real' Brazilian restaurent when I was in LA last november. So wanted to have the Churrasco again.
		Experience @ the lavinia breeze?was utterly dissapointing. For that price [...]]]></description>
			<content:encoded><![CDATA[
		<p>
				<img src="http://profile.ak.fbcdn.net/object3/702/42/n59423434439_5076.jpg" />Last Sunday I went to the Lavinia Breeze with family to have dinner. Expectations were high as the advertising is good and more importantly I have been to a 'real' Brazilian restaurent when I was in LA last november. So wanted to have the <a href="http://en.wikipedia.org/wiki/Churrasco">Churrasco</a> again.</p>
		<p>Experience @ the lavinia breeze?was utterly dissapointing. For that price there are plenty of good restaurents in Colombo to have a good meal. We were there for about an hour and they served meat only twice and even for that I had to remind couple of times. I'm not an expert in?grilling meat, but i'm sure I can do a better job in preparing meat. Last?BBQ we did with couple of friends was pretty awsome. Also had to ask and remind again after 15 minutes just to get a water bottle. May be there was something wrong with me ... because a group in the next table who came much later was served pretty fast.</p>
		<p>Anyways i'm NEVER going there again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.welasharp.net/Default.aspx?blogid=2010030901&showblogitem=yes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Chamara’s Lifestream for 2010-03-09</title>
		<link>http://feedproxy.google.com/~r/Apramana/~3/DrE5QmzjG6U/</link>
		<comments>http://feedproxy.google.com/~r/Apramana/~3/DrE5QmzjG6U/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 15:45:00 +0000</pubDate>
		<dc:creator>Apramana</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://apramana.com/tweets/chamaras-lifestream-for-2010-03-09/</guid>
		<description><![CDATA[
scoopler.com, Sri Lankan Challenge to Google Search Engine. Good work guys. Keep it up. #
You are what I never knew I always wanted. #
PubSubHubbub!!! #
Chamara’s Lifestream for 2010-03-08: Hip-Hop &#38; R&#38;B Superstar &#34;AKON&#34; going to be in Sri Lanka on the 24th of April,&#8230; http://bit.ly/cKhqV0 #

          [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>scoopler.com, Sri Lankan Challenge to Google Search Engine. Good work guys. Keep it up. <a href="http://twitter.com/chamara/statuses/10229656471" class="aktt_tweet_time">#</a></li>
<li>You are what I never knew I always wanted. <a href="http://twitter.com/chamara/statuses/10226925117" class="aktt_tweet_time">#</a></li>
<li>PubSubHubbub!!! <a href="http://twitter.com/chamara/statuses/10214520007" class="aktt_tweet_time">#</a></li>
<li>Chamara’s Lifestream for 2010-03-08: Hip-Hop &amp; R&amp;B Superstar &quot;AKON&quot; going to be in Sri Lanka on the 24th of April,&#8230; <a href="http://bit.ly/cKhqV0" rel="nofollow">http://bit.ly/cKhqV0</a> <a href="http://twitter.com/chamara/statuses/10182084039" class="aktt_tweet_time">#</a></li>
</ul>
                <p>&copy; Chamara Peiris - visit <a href="http://www.apramana.com">Apramana</a> for more great content.</p>            

<!-- Begin TwitThis script (http://twitthis.com/) -->
<div>


&lt;!--
document.write('<a href=";"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" /></a>');
//--&gt;

</div>
<!-- /End -->

<img src="http://feeds.feedburner.com/~r/Apramana/~4/DrE5QmzjG6U" height="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/Apramana/~3/DrE5QmzjG6U/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Chamara’s Lifestream for 2010-03-08</title>
		<link>http://feedproxy.google.com/~r/Apramana/~3/Kq9Qfnz7FN8/</link>
		<comments>http://feedproxy.google.com/~r/Apramana/~3/Kq9Qfnz7FN8/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 15:45:00 +0000</pubDate>
		<dc:creator>Apramana</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://apramana.com/tweets/chamaras-lifestream-for-2010-03-08/</guid>
		<description><![CDATA[
Hip-Hop &#38; R&#38;B Superstar &#34;AKON&#34; going to be in Sri Lanka on the 24th of April, 2010. #
Chamara’s Lifestream for 2010-03-07: new hopes!!! rising!!! #
Chamara’s Lifestream for 2010-03-06: What a wonderfu&#8230; http://bit.ly/99Su2j #

                &#169; Chamara Peiris - visit Apramana for [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Hip-Hop &amp; R&amp;B Superstar &quot;AKON&quot; going to be in Sri Lanka on the 24th of April, 2010. <a href="http://twitter.com/chamara/statuses/10151855932" class="aktt_tweet_time">#</a></li>
<li>Chamara’s Lifestream for 2010-03-07: new hopes!!! rising!!! #<br />
Chamara’s Lifestream for 2010-03-06: What a wonderfu&#8230; <a href="http://bit.ly/99Su2j" rel="nofollow">http://bit.ly/99Su2j</a> <a href="http://twitter.com/chamara/statuses/10130207553" class="aktt_tweet_time">#</a></li>
</ul>
                <p>&copy; Chamara Peiris - visit <a href="http://www.apramana.com">Apramana</a> for more great content.</p>            

<!-- Begin TwitThis script (http://twitthis.com/) -->
<div>


&lt;!--
document.write('<a href=";"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" /></a>');
//--&gt;

</div>
<!-- /End -->

<img src="http://feeds.feedburner.com/~r/Apramana/~4/Kq9Qfnz7FN8" height="1">]]></content:encoded>
			<wfw:commentRss>http://feedproxy.google.com/~r/Apramana/~3/Kq9Qfnz7FN8/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
