<?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>nexTThought</title>
	<atom:link href="http://nextthought.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nextthought.wordpress.com</link>
	<description>never forget to look after the next thought</description>
	<lastBuildDate>Wed, 22 Jun 2011 12:47:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='nextthought.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/171a3417e5db6d5bcff0bb3242a5bc1e?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>nexTThought</title>
		<link>http://nextthought.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nextthought.wordpress.com/osd.xml" title="nexTThought" />
	<atom:link rel='hub' href='http://nextthought.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to Change DISQUS&#8217;s Threaded Comments to RTL</title>
		<link>http://nextthought.wordpress.com/2011/06/22/how-to-change-disquss-threaded-comments-to-rtl/</link>
		<comments>http://nextthought.wordpress.com/2011/06/22/how-to-change-disquss-threaded-comments-to-rtl/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 20:33:46 +0000</pubDate>
		<dc:creator>Asad.</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[DISQUS]]></category>
		<category><![CDATA[FireBug]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Orchard]]></category>
		<category><![CDATA[Perisan]]></category>
		<category><![CDATA[RTL]]></category>

		<guid isPermaLink="false">http://nextthought.wordpress.com/?p=51</guid>
		<description><![CDATA[I discovered DISQUS a few days ago and tried to work with it on my local Orchard playground. The process of adding DISQUS to the featured blog was as easy as some clicks. There&#8217;s a module, you install it and disable the internal commenting system and it&#8217;s done. Based on the fact that I&#8217;m working [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=51&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I discovered <a class="zem_slink" title="DISQUS" href="http://www.disqus.com/" rel="homepage">DISQUS</a> a few days ago and tried to work with it on my local <a title="The Orchard Project" href="http://orchardproject.net" target="_blank">Orchard</a> playground. The process of adding DISQUS to the featured blog was as easy as some clicks. There&#8217;s a module, you install it and disable the internal commenting system and it&#8217;s done. Based on the fact that I&#8217;m working on a site with <a class="zem_slink" title="Persian language" href="http://en.wikipedia.org/wiki/Persian_language" rel="wikipedia">Persian language</a> as the primary content language, adding DISQUS needed a little tweak.</p>
<p>The threaded comments view are originally <a class="zem_slink" title="Writing system" href="http://en.wikipedia.org/wiki/Writing_system" rel="wikipedia">left to right</a>. Ok, it&#8217;s the default for everything; almost every language is left to right except Persian, <a class="zem_slink" title="Hebrew language" href="http://en.wikipedia.org/wiki/Hebrew_language" rel="wikipedia">Hebrew</a>, <a class="zem_slink" title="Arabic language" href="http://en.wikipedia.org/wiki/Arabic_language" rel="wikipedia">Arabic</a> and <a class="zem_slink" title="Urdu" href="http://en.wikipedia.org/wiki/Urdu" rel="wikipedia">Urdu</a> from what I recall. So what if I want to have the threaded comments in my Persian website to look really <a class="zem_slink" title="Right-to-left" href="http://en.wikipedia.org/wiki/Right-to-left" rel="wikipedia">right to left</a>? In general terms you can find the best guidelines and tops and tricks on <a title="RTL This" href="http://rtl-this.com" target="_blank">rtl-this.com</a>. But what DISQUS does generating threaded comments needs attention.</p>
<p>Here are the possible actions one can take:</p>
<ol>
<li>DISQUS supports custom <a class="zem_slink" title="Cascading Style Sheets" href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" rel="wikipedia">CSS</a>. You can find the appropriate stylesheet classes and override them in &#8220;Appearance&#8221; menu in DISQUS admin panel. Make sure to put a <span style="color:#ff0000;">!important</span> at the end of each attribute.</li>
<li>Alternatively you can add <a class="zem_slink" title="JQuery" href="http://jquery.com/" rel="homepage">jQuery</a> scripts on your site template to work this solution out on the client side. A partial approach looked like what you see in the following</li>
</ol>
<blockquote>
<pre class="brush: jscript;">
// Find all li's which are children of the main comments part
// and reverse the left and right margines.
$(&quot;#dsq-comments &gt; li&quot;).each(
function(){
var l = $(this).css(&quot;margin-left&quot;);
$(this).css(&quot;margin-right&quot;, l);
$(this).css(&quot;margin-left&quot;, &quot;0px&quot;);
} );
// This list could continue...
$(&quot;.dsq-comment-message&quot;).css(&quot;text-align&quot;, &quot;right&quot;);
$(&quot;.dsq-comment-message&quot;).css(&quot;direction&quot;, &quot;rtl&quot;);
$(&quot;.dsq-comment-footer&quot;).css(&quot;direction&quot;, &quot;rtl&quot;);
$(&quot;.dsq-comment-header&quot;).css(&quot;direction&quot;, &quot;rtl&quot;);
</pre>
</blockquote>
<p>I check the above script in <a title="FireBug - Firefox addon" href="http://getfirebug.com/" target="_blank">FireBug</a> and it worked so I just added this to my local site. I will be blogging more about this. Meanwhile I ask the DISQUS team to find a workaround for this <a class="zem_slink" title="Right-to-left" href="http://en.wikipedia.org/wiki/Right-to-left" rel="wikipedia">RTL</a> issue for such languages. Sometimes margin-left&#8217;s should change to margin-right&#8217;s.</p>
<br />Filed under: <a href='http://nextthought.wordpress.com/category/general/'>General</a> Tagged: <a href='http://nextthought.wordpress.com/tag/disqus/'>DISQUS</a>, <a href='http://nextthought.wordpress.com/tag/firebug/'>FireBug</a>, <a href='http://nextthought.wordpress.com/tag/jquery/'>jQuery</a>, <a href='http://nextthought.wordpress.com/tag/orchard/'>Orchard</a>, <a href='http://nextthought.wordpress.com/tag/perisan/'>Perisan</a>, <a href='http://nextthought.wordpress.com/tag/rtl/'>RTL</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nextthought.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nextthought.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nextthought.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nextthought.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nextthought.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nextthought.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nextthought.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nextthought.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nextthought.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nextthought.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nextthought.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nextthought.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nextthought.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nextthought.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=51&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nextthought.wordpress.com/2011/06/22/how-to-change-disquss-threaded-comments-to-rtl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a94c4621a1ee1762c971b75fe7a1ece?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">nextthought</media:title>
		</media:content>
	</item>
		<item>
		<title>C# Async Functions</title>
		<link>http://nextthought.wordpress.com/2011/01/05/c-async-functions/</link>
		<comments>http://nextthought.wordpress.com/2011/01/05/c-async-functions/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 08:19:24 +0000</pubDate>
		<dc:creator>Asad.</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Parallelization]]></category>

		<guid isPermaLink="false">http://nextthought.wordpress.com/?p=48</guid>
		<description><![CDATA[I was reviewing the new C# specification and the changes that Async Functions made to my beloved language and saw the below section. The outcome has two impression, First it’s funny! Seeing 5 identical phrase in a series in a programming language expression is strange and funny, admit it. But other than that it is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=48&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was reviewing the new <a class="zem_slink" title="C Sharp (programming language)" rel="homepage" href="http://msdn2.microsoft.com/en-us/vcsharp/aa336809.aspx">C#</a> specification and the changes that <a class="zem_slink" title="Asynchrony" rel="wikipedia" href="http://en.wikipedia.org/wiki/Asynchrony">Async</a> Functions made to my beloved language and saw the below section. The outcome has two impression, First it’s funny! Seeing 5 identical phrase in a series in a <a class="zem_slink" title="Programming language" rel="wikipedia" href="http://en.wikipedia.org/wiki/Programming_language">programming language</a> expression is strange and funny, admit it. But other than that it is definitely complex. It shows all the grammatical and lexical efforts behind the scene for developing such robust and non-nonsense language. Thank you guys, I love the way C# is growing. Thanks.</p>
<blockquote>
<h2 style="margin:10pt 0 0;"><span style="font-family:Cambria;"><span style="font-size:13pt;color:#4f81bd;"><span style="font-weight:bold;">Syntax</span></span></span></h2>
<p class="MsoNormal" style="line-height:13pt;margin:0 0 10pt;"><span style="font-family:Calibri;"><span style="font-size:11pt;color:#000000;">The grammar of C# is extended as follows:</span></span></p>
<p class="Grammar" style="line-height:12.5pt;text-indent:-.25in;margin:0 0 6pt .75in;"><span style="color:#000000;"><span style="font-family:Calibri;"><span style="font-size:11pt;"><em>method-modifier:<br />
…</em></span></span><br />
<span class="Codefragment"><span style="font-family:Consolas;"><span style="font-size:10pt;">async</span></span></span><sub><span style="font-family:Calibri;"><span style="font-size:11pt;"><em>opt</em></span></span></sub></span></p>
<p class="Grammar" style="line-height:12.5pt;text-indent:-.25in;margin:0 0 6pt .75in;"><span style="color:#000000;"><span style="font-family:Calibri;"><span style="font-size:11pt;"><em>lambda-expression:</em></span></span><br />
<span class="Codefragment"><span style="font-family:Consolas;"><span style="font-size:10pt;">async</span></span></span><span style="font-family:Calibri;"><em><sub><span style="font-size:11pt;">opt</span></sub><span style="font-size:11pt;"> anonymous-function-signature </span></em></span><span style="font-size:11pt;"><span style="font-family:Consolas;">=&gt;</span></span><span style="font-family:Calibri;"><span style="font-size:11pt;"><em> anonymous-function-body</em></span></span></span></p>
<p class="Grammar" style="line-height:12.5pt;text-indent:-.25in;margin:0 0 6pt .75in;"><span style="color:#000000;"><span style="font-family:Calibri;"><span style="font-size:11pt;"><em><a class="zem_slink" title="Anonymous function" rel="wikipedia" href="http://en.wikipedia.org/wiki/Anonymous_function">anonymous-method</a>-expression:</em></span></span><br />
<span class="Codefragment"><span style="font-family:Consolas;"><span style="font-size:10pt;">async</span></span></span><span style="font-family:Calibri;"><em><sub><span style="font-size:11pt;">opt</span></sub><span style="font-size:11pt;"> </span></em></span><span class="Codefragment"><span style="font-family:Consolas;"><span style="font-size:10pt;">delegate</span></span></span><span style="font-family:Calibri;"><em><span style="font-size:11pt;"> </span><span style="font-size:11pt;">explicit-anonymous-function-signature<sub>opt</sub> block</span></em></span></span></p>
<p class="MsoNormal" style="line-height:13pt;margin:0 0 10pt;"><span style="color:#000000;"><span style="font-family:Calibri;"><span style="font-size:11pt;">The </span></span><span class="Codefragment"><span style="line-height:12pt;"><span style="font-family:Consolas;"><span style="font-size:10pt;">async</span></span></span></span><span style="font-family:Calibri;"><span style="font-size:11pt;"> modifier is not allowed on <em>method-declaration</em>s where the <em>method-body</em> is a ‘</span></span><span class="Codefragment"><span style="line-height:12pt;"><span style="font-family:Consolas;"><span style="font-size:10pt;">;</span></span></span></span><span style="font-family:Calibri;"><span style="font-size:11pt;">’.</span></span></span></p>
<p class="MsoNormal" style="line-height:13pt;margin:0 0 10pt;"><span style="color:#000000;"><span style="font-family:Calibri;"><span style="font-size:11pt;">Note that </span></span><span class="Codefragment"><span style="line-height:12pt;"><span style="font-family:Consolas;"><span style="font-size:10pt;">async</span></span></span></span><span style="font-family:Calibri;"><span style="font-size:11pt;"> is a contextual keyword. In all syntactic contexts other than the ones above it is considered an identifier. Thus, the following is allowed (though strongly discouraged!):</span></span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-family:Consolas;"><span style="color:#0000ff;"><span style="font-size:10pt;">using</span></span><span style="font-size:10pt;"><span style="color:#000000;"> </span><span style="color:#2b91af;">async</span><span style="color:#000000;"> = System.Threading.Tasks.</span><span style="color:#2b91af;">Task</span><span style="color:#000000;">;</span></span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-family:Consolas;"><span style="font-size:10pt;color:#000000;">…</span></span></p>
<p><span style="font-family:Consolas;"><span style="background-color:#ffff00;"><span style="line-height:12pt;"><span style="color:#0000ff;"><span style="font-size:10pt;">async</span></span></span><span style="line-height:12pt;"><span style="font-size:10pt;"><span style="color:#000000;"> </span><span style="color:#2b91af;">async</span><span style="color:#000000;"> async(</span><span style="color:#2b91af;">async</span><span style="color:#000000;"> async) { }</span></span></span></span></span></p></blockquote>
<br />Filed under: <a href='http://nextthought.wordpress.com/category/c/'>C#</a>, <a href='http://nextthought.wordpress.com/category/parallelization/'>Parallelization</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nextthought.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nextthought.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nextthought.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nextthought.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nextthought.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nextthought.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nextthought.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nextthought.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nextthought.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nextthought.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nextthought.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nextthought.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nextthought.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nextthought.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=48&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nextthought.wordpress.com/2011/01/05/c-async-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a94c4621a1ee1762c971b75fe7a1ece?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">nextthought</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy New Year</title>
		<link>http://nextthought.wordpress.com/2010/12/31/happy-new-year/</link>
		<comments>http://nextthought.wordpress.com/2010/12/31/happy-new-year/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 19:28:14 +0000</pubDate>
		<dc:creator>Asad.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://nextthought.wordpress.com/?p=43</guid>
		<description><![CDATA[2011! Just like a flash 2010 passed in front of my eyes. It&#8217;s getting unbelievable the way I&#8217;m getting involved with the things happen arround me. Still I love the way my life is going on and technology is in the center of it. I expect we are going to face a lot of new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=43&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>2011! Just like a flash 2010 passed in front of my eyes. It&#8217;s getting unbelievable the way I&#8217;m getting involved with the things happen arround me. Still I love the way my life is going on and technology is in the center of it.</p>
<p>I expect we are going to face a lot of new challenges and progresses. All the fellas from computer and science world, I hope you all a Happy New Year.</p>
<br />Filed under: <a href='http://nextthought.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nextthought.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nextthought.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nextthought.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nextthought.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nextthought.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nextthought.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nextthought.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nextthought.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nextthought.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nextthought.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nextthought.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nextthought.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nextthought.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nextthought.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=43&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nextthought.wordpress.com/2010/12/31/happy-new-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a94c4621a1ee1762c971b75fe7a1ece?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">nextthought</media:title>
		</media:content>
	</item>
		<item>
		<title>Toward the Async World</title>
		<link>http://nextthought.wordpress.com/2010/10/31/toward-the-async-world/</link>
		<comments>http://nextthought.wordpress.com/2010/10/31/toward-the-async-world/#comments</comments>
		<pubDate>Sun, 31 Oct 2010 11:41:28 +0000</pubDate>
		<dc:creator>Asad.</dc:creator>
				<category><![CDATA[F#]]></category>
		<category><![CDATA[Parallelization]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[Async]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">https://nextthought.wordpress.com/2010/10/31/toward-the-async-world/</guid>
		<description><![CDATA[CPUs with multiple cores can run many tasks in parallel. Making the best out of this ability needs more efforts on design side through implementation, test, and profiling which with the introduction of .Net Parallel Extensions we have greater set of tools to starting thinking and living the parallel way. Visual Studio 2010 also ships [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=36&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>CPUs with <a class="zem_slink" title="Multi-core processor" rel="wikipedia" href="http://en.wikipedia.org/wiki/Multi-core_processor">multiple cores</a> can run many tasks in parallel. Making the best out of this ability needs more efforts on design side through implementation, test, and profiling which with the introduction of <a href="http://msdn.microsoft.com/en-us/concurrency/default.aspx" target="_blank">.Net Parallel Extensions</a> we have greater set of tools to starting thinking and living the parallel way.</p>
<p>Visual Studio 2010 also ships with F# as a first class language which should gain more attention in different ways. F# takes your hand and brings you to a very practical functional environment which on top of all of its features adjusts a new way of thinking about programming in particular and software development in general. <a href="http://tomasp.net/blog/parallel-extra-image-pipeline.aspx" target="_blank">F# also speaks a new language in parallel programming</a>. Its simple and efficient way of implementing the parallel life helps programmers and system engineers to provide better software faster; maybe it’s unusual to say but programming in F# has a very similar taste of developing the agile way. Everything you build is the result of functions interaction; growing, extending and fixing the software is just doing the same to the functions. Therefore you just need to think about the functions of the system you are trying to build and build the essential functions that make it in whole.</p>
<p>It seems this aspect of F# (parallel abilities) is affecting other parts of the .Net framework. C# and VB are going to support the new async programming constructs built-in and therefore we are going to have a new road ahead in the parallel land. As a system engineer/software developer, people should reconstruct their building blocks inside their software repositories. We all have a huge amount of code here and there with the biggest overhead of taking care of parallelization (if available) which could be done in a more efficient and faster way. Many different parts of the programs could run in parallel now, which we may have been implementing the usual sequential way. If we think about our pockets and we need to compete in the market, I think we all should think again and think parallel.</p>
<p>This <a href="http://msdn.microsoft.com/en-us/vstudio/async.aspx" target="_blank">Async CTP</a> is in its early stages but I’m sure it will become an uncontrollable giant facing every one of us. Take a look at it.</p>
<br />Filed under: <a href='http://nextthought.wordpress.com/category/f/'>F#</a>, <a href='http://nextthought.wordpress.com/category/parallelization/'>Parallelization</a>, <a href='http://nextthought.wordpress.com/category/software-development/'>Software Development</a> Tagged: <a href='http://nextthought.wordpress.com/tag/net/'>.Net</a>, <a href='http://nextthought.wordpress.com/tag/async/'>Async</a>, <a href='http://nextthought.wordpress.com/tag/c/'>C#</a>, <a href='http://nextthought.wordpress.com/tag/f/'>F#</a>, <a href='http://nextthought.wordpress.com/tag/parallelization/'>Parallelization</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nextthought.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nextthought.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nextthought.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nextthought.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nextthought.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nextthought.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nextthought.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nextthought.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nextthought.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nextthought.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nextthought.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nextthought.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nextthought.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nextthought.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=36&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nextthought.wordpress.com/2010/10/31/toward-the-async-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a94c4621a1ee1762c971b75fe7a1ece?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">nextthought</media:title>
		</media:content>
	</item>
		<item>
		<title>Isn&#8217;t it beautiful?</title>
		<link>http://nextthought.wordpress.com/2010/10/28/isnt-it-beautiful/</link>
		<comments>http://nextthought.wordpress.com/2010/10/28/isnt-it-beautiful/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 19:08:02 +0000</pubDate>
		<dc:creator>Asad.</dc:creator>
				<category><![CDATA[F#]]></category>

		<guid isPermaLink="false">http://nextthought.wordpress.com/?p=29</guid>
		<description><![CDATA[(*     bool isOdd(int n)     {         return ( (n%2) == 1);     }     int sqr(int n)     {         return n*n;     }     main(void)     {         for(int i = 1; i &#60;= 10; i++)    // I know this is stupid!             if(isOdd(i))                 printf("%d ", sqr(i));     } *) #light [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=29&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote style="background-color:#d0d0d0;padding-left:5px;">
<pre style="line-height:normal;"><span style="font-family:Consolas;"><span style="color:#008000;"><span style="font-size:small;">(*</span>
<span style="font-size:small;">    bool isOdd(int n)
    {
        return ( (n%2) == 1);
    }</span></span>
<span style="font-size:small;"><span style="color:#000000;"> </span>
</span></span><span style="font-family:Consolas;"><span style="font-size:small;"><span style="color:#008000;">    int sqr(int n)
    {
        return n*n;
    }</span>
<span style="color:#000000;"> </span>
</span></span><span style="font-family:Consolas;"><span style="font-size:small;"><span style="color:#008000;">    main(void)
    {
        for(int i = 1; i &lt;= 10; i++)    // I know this is stupid!
            if(isOdd(i))
                printf("%d ", sqr(i));
    }
*)</span>
<span style="color:#000000;"> </span>
<span style="color:#0000ff;">#light</span>
</span></span><span style="font-family:Consolas;"><span style="font-size:small;"><span style="color:#000000;">
[1 .. 10]
    |&gt; List.filter (</span><span style="color:#0000ff;">fun</span><span style="color:#000000;"> n </span><span style="color:#0000ff;">-&gt;</span></span></span><span style="font-family:Consolas;"><span style="font-size:small;"><span style="color:#000000;"> n % 2 = 1)
    |&gt; List.map (</span><span style="color:#0000ff;">fun</span><span style="color:#000000;"> n </span><span style="color:#0000ff;">-&gt;</span></span></span><span style="font-family:Consolas;"><span style="font-size:small;"><span style="color:#000000;"> n*n)
    |&gt; List.map (printfn </span><span style="color:#800000;">"%d"</span><span style="color:#000000;">)</span></span></span></pre>
</blockquote>
<br />Filed under: <a href='http://nextthought.wordpress.com/category/f/'>F#</a> Tagged: <a href='http://nextthought.wordpress.com/tag/f/'>F#</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nextthought.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nextthought.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nextthought.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nextthought.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nextthought.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nextthought.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nextthought.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nextthought.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nextthought.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nextthought.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nextthought.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nextthought.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nextthought.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nextthought.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=29&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nextthought.wordpress.com/2010/10/28/isnt-it-beautiful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a94c4621a1ee1762c971b75fe7a1ece?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">nextthought</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting Results the Agile Way!</title>
		<link>http://nextthought.wordpress.com/2010/10/24/getting-results-the-agile-way/</link>
		<comments>http://nextthought.wordpress.com/2010/10/24/getting-results-the-agile-way/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 19:50:24 +0000</pubDate>
		<dc:creator>Asad.</dc:creator>
				<category><![CDATA[Project Management]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[online book]]></category>

		<guid isPermaLink="false">http://nextthought.wordpress.com/?p=18</guid>
		<description><![CDATA[Agile methods of building software are getting more popular each day. The literature is more mature and developed today than five/six years ago. Many software companies and the giants themselves have been successful in adopting their internal processes as well as building tools and patterns to support this methodology. I&#8217;ve read lots of books on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=18&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Agile methods of building software are getting more popular each day. The literature is more mature and developed today than five/six years ago. Many software companies and the giants themselves have been successful in adopting their internal processes as well as building tools and patterns to support this methodology.</p>
<p>I&#8217;ve read lots of books on the topic but <a title="J.D. Meier's Blog" href="http://blogs.msdn.com/b/jmeier/" target="_blank">J.D. Meier</a>&#8216;s book is different. It&#8217;s more exciting when you could read the book online on <a title="Getting Results the Agile Way" href="http://gettingresults.com/wiki/Main_Page" target="_blank">this address</a>. Thank you J.D.</p>
<br />Filed under: <a href='http://nextthought.wordpress.com/category/project-management/'>Project Management</a>, <a href='http://nextthought.wordpress.com/category/software-development/'>Software Development</a> Tagged: <a href='http://nextthought.wordpress.com/tag/agile/'>agile</a>, <a href='http://nextthought.wordpress.com/tag/online-book/'>online book</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nextthought.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nextthought.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nextthought.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nextthought.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nextthought.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nextthought.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nextthought.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nextthought.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nextthought.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nextthought.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nextthought.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nextthought.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nextthought.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nextthought.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=18&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nextthought.wordpress.com/2010/10/24/getting-results-the-agile-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a94c4621a1ee1762c971b75fe7a1ece?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">nextthought</media:title>
		</media:content>
	</item>
		<item>
		<title>F# and simulation strategies</title>
		<link>http://nextthought.wordpress.com/2010/10/23/f-and-simulation-strategies/</link>
		<comments>http://nextthought.wordpress.com/2010/10/23/f-and-simulation-strategies/#comments</comments>
		<pubDate>Sat, 23 Oct 2010 19:56:22 +0000</pubDate>
		<dc:creator>Asad.</dc:creator>
				<category><![CDATA[F#]]></category>
		<category><![CDATA[Simulation]]></category>
		<category><![CDATA[Massive Data Parallelism]]></category>

		<guid isPermaLink="false">https://nextthought.wordpress.com/2010/10/23/f-and-simulation-strategies/</guid>
		<description><![CDATA[Today I had a discussion with a friend in the field who was trying to find a resolution to his problem on simulating a data generation/acquisition network in which he could be able to produce millions of records of data simultaneously and submit them in a database. He was asking for my opinion about my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=14&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I had a discussion with a friend in the field who was trying to find a resolution to his problem on simulating a data generation/acquisition network in which he could be able to produce millions of records of data simultaneously and submit them in a database. He was asking for my opinion about my programming language preference and the overall architecture of the system.</p>
<p>I had many ideas for him ready in my pocket about the architecture and even the object model suitable for the project but when it came to the point of programming language I just had a second thought. It was somehow strange for me not to shout out C# or C++.</p>
<p>As you may have noticed from my initial post in this weblog, it’s been a while I was exploring different aspects of F# which is amazingly beautiful, straightforward, succinct and functional. I guess this whole F# thing is playing my head; you know why? Because it took me about 8 hours to write down a prototype of my idea about my friend’s project and about half an hour to make it real. I’m so much excited about this and it’s killing me to check with him, cause I’m not sure if it’s ok to publish the code.</p>
<p>By the way, what took me to the point of implementing a “blah blah simulator” in F# was curiosity at first, but the precise functional attributes of F# with the help of its active pattern and agents ended up in heaven. You may follow this story on my next one or two posts here by the subject of “F# and simulation strategies”.</p>
<br />Filed under: <a href='http://nextthought.wordpress.com/category/f/'>F#</a>, <a href='http://nextthought.wordpress.com/category/simulation/'>Simulation</a> Tagged: <a href='http://nextthought.wordpress.com/tag/f/'>F#</a>, <a href='http://nextthought.wordpress.com/tag/massive-data-parallelism/'>Massive Data Parallelism</a>, <a href='http://nextthought.wordpress.com/tag/simulation/'>Simulation</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nextthought.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nextthought.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nextthought.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nextthought.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nextthought.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nextthought.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nextthought.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nextthought.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nextthought.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nextthought.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nextthought.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nextthought.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nextthought.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nextthought.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=14&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nextthought.wordpress.com/2010/10/23/f-and-simulation-strategies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a94c4621a1ee1762c971b75fe7a1ece?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">nextthought</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello, World!</title>
		<link>http://nextthought.wordpress.com/2010/10/23/hello-world-2/</link>
		<comments>http://nextthought.wordpress.com/2010/10/23/hello-world-2/#comments</comments>
		<pubDate>Sat, 23 Oct 2010 00:07:34 +0000</pubDate>
		<dc:creator>Asad.</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">https://nextthought.wordpress.com/2010/10/23/hello-world-2/</guid>
		<description><![CDATA[I started a new life again! What am I doing? here’s the very short answer: let greeting = &#8220;Hello, World!&#8221; printfn &#8220;%s&#8221; greeting I’ll get into more detail in my future posts. Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=8&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I started a new life again! What am I doing? here’s the very short answer:</p>
<blockquote style="background-color:#e1e1e1;padding-left:5px;"><p><span style="font-family:Consolas;"><span style="color:#0000ff;">let</span> greeting = <span style="color:#800000;">&#8220;Hello, World!&#8221;</span><br />
printfn <span style="color:#800000;">&#8220;%s&#8221;</span> greeting</span></p></blockquote>
<p>I’ll get into more detail in my future posts.</p>
<br />Filed under: <a href='http://nextthought.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nextthought.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nextthought.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nextthought.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nextthought.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nextthought.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nextthought.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nextthought.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nextthought.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nextthought.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nextthought.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nextthought.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nextthought.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nextthought.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nextthought.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nextthought.wordpress.com&amp;blog=16984647&amp;post=8&amp;subd=nextthought&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nextthought.wordpress.com/2010/10/23/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a94c4621a1ee1762c971b75fe7a1ece?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">nextthought</media:title>
		</media:content>
	</item>
	</channel>
</rss>
