<?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>SeeSharpSoft[dot]NET</title>
	<atom:link href="http://seesharpsoft.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://seesharpsoft.wordpress.com</link>
	<description>A geeks diary based on .NET</description>
	<lastBuildDate>Sat, 30 Jul 2011 21:17:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='seesharpsoft.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>SeeSharpSoft[dot]NET</title>
		<link>http://seesharpsoft.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://seesharpsoft.wordpress.com/osd.xml" title="SeeSharpSoft[dot]NET" />
	<atom:link rel='hub' href='http://seesharpsoft.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Permutations unlimited</title>
		<link>http://seesharpsoft.wordpress.com/2010/11/26/permutations-unlimited/</link>
		<comments>http://seesharpsoft.wordpress.com/2010/11/26/permutations-unlimited/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 15:05:12 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/?p=92</guid>
		<description><![CDATA[Yesterday i stuck on the problem to generate all permutations of the numbers from 0 to 11. I used a common recursive approach and stored all results in a list &#8211; this results in an OutOfMemoryException! And my aim is to have access to all permutations from 0..100. So i decided to write a separate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=92&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday i stuck on the problem to generate all permutations of the numbers from 0 to 11. I used a common recursive approach and stored all results in a list &#8211; this results in an OutOfMemoryException! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  And my aim is to have access to all permutations from 0..100. So i decided to write a separate class for generating permutations of n numbers by implementing a step-by-step permutation-enumerator. This is the piece of code:</p>
<pre class="brush: csharp;">
public class Permutations : IEnumerable&lt;int[]&gt;
{
    private int _n;
    public Permutations(int n)
    {
        _n = n;
    }

    #region IEnumerable&lt;IEnumerable&lt;int&gt;&gt; Members

    public IEnumerator&lt;int[]&gt; GetEnumerator()
    {
        return new PermutationEnumerator(_n);
    }

    #endregion

    #region IEnumerable Members

    System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
    {
        return GetEnumerator();
    }

    #endregion

    private class Pair&lt;F, S&gt;
    {
        public F First { set; get; }
        public S Second { set; get; }

        public Pair(F first, S second)
        {
            First = first;
            Second = second;
        }
    }

    private class PermutationEnumerator : IEnumerator&lt;int[]&gt;
    {
        private int _n;
        public PermutationEnumerator(int n)
        {
            if (n &lt; 0) throw new ArgumentOutOfRangeException(&quot;Only non-negative numbers allowed.&quot;);

            _n = n;

            Reset();
        }

        #region IEnumerator&lt;IEnumerable&lt;int&gt;&gt; Members

        private int[] _current;
        public int[] Current
        {
            get { return _current; }
        }

        #endregion

        #region IDisposable Members

        public void Dispose()
        {
            _depthPositionMap.Clear();
            _depthPositionMap = null;
            _current = null;
        }

        #endregion

        #region IEnumerator Members

        object System.Collections.IEnumerator.Current
        {
            get { return Current; }
        }

        public bool MoveNext()
        {
            _current = null;

            while (_depthPositionMap.Count &gt; 0 &amp;&amp; !GenerateNextPermutation()) ;

            if (_current == null) return false;

            return true;
        }

        public void Reset()
        {
            _current = new int[_n];

            for (int i = 0; i &lt; _n; i++)
            {
                _current[i] = i;
            }

            _depthPositionMap = new SortedList&lt;int, Pair&lt;int, int[]&gt;&gt;();

            _depthPositionMap.Add(0, new Pair&lt;int, int[]&gt;(0, _current));
        }

        #endregion

        private SortedList&lt;int, Pair&lt;int, int[]&gt;&gt; _depthPositionMap = null;

        private bool GenerateNextPermutation()
        {
            int depth = _depthPositionMap.Keys[_depthPositionMap.Count - 1];

            Pair&lt;int, int[]&gt; pair = _depthPositionMap[depth];

            if (depth == pair.Second.Length - 1)
            {
                _current = pair.Second;
                _depthPositionMap.Remove(depth);
                return true;
            }

            if (pair.First == pair.Second.Length)
            {
                _depthPositionMap.Remove(depth);
            }
            else
            {
                int[] elements = pair.Second.ToArray();

                int tmp = elements[pair.First];
                elements[pair.First] = elements[depth];
                elements[depth] = tmp;

                _depthPositionMap.Add(depth + 1, new Pair&lt;int, int[]&gt;(depth + 1, elements));

                pair.First++;
            }

            return false;
        }
    }
}
</pre>
<p>Now its only a small step to create a generic Permutation-class &#8211; and here it is:</p>
<pre class="brush: csharp;">
public class Permutations&lt;T&gt; : Permutations, IEnumerable&lt;IEnumerable&lt;T&gt;&gt;
{
    T[] _elements;

    public Permutations(IEnumerable&lt;T&gt; collection)
        : base(collection.Count())
    {
        _elements = collection.ToArray();
    }

    #region IEnumerable&lt;IEnumerable&lt;T&gt;&gt; Members

    public new IEnumerator&lt;IEnumerable&lt;T&gt;&gt; GetEnumerator()
    {
        using (IEnumerator&lt;int[]&gt; enumerator = base.GetEnumerator())
        {
            while (enumerator.MoveNext())
            {
                T[] result = new T[enumerator.Current.Length];
                for (int i = 0; i &lt; enumerator.Current.Length; i++)
                {
                    result[enumerator.Current[i]] = _elements[i];
                }
                yield return result;
            }
        }
    }

    #endregion
}
</pre>
<p>Feel free to comment this approach&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=92&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2010/11/26/permutations-unlimited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
		<item>
		<title>Robot speaks C#</title>
		<link>http://seesharpsoft.wordpress.com/2010/03/20/robot-speaks-c/</link>
		<comments>http://seesharpsoft.wordpress.com/2010/03/20/robot-speaks-c/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 17:45:12 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/?p=79</guid>
		<description><![CDATA[Some time ago i linked to a programming contest based on the well known boardgame RoboRally. Its also some time ago the results got presented on the page of freiesMagazin. I sent in a KI-player written in C#/Mono, which is disliked by a part of the free-software community &#8211; maybe for a good reason?! (Im [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=79&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some time ago i linked to a <a href="http://www.freiesmagazin.de/zweiter_programmierwettbewerb" target="_blank">programming contest</a> based on the well known boardgame <a href="http://www.wizards.com/roborally" target="_blank">RoboRally</a>. Its also some time ago the results got presented on the page of <a href="http://www.freiesmagazin.de/20091220-gewinner-des-zweiten-programmierwettbewerbs" target="_blank">freiesMagazin</a>. I sent in a KI-player written in C#/Mono, which is disliked by a part of the free-software community &#8211; maybe for a <a href="http://boycottnovell.com/wiki/index.php/Main_Page" target="_blank">good reason</a>?! (Im not into this discussion &#8211; im programming in C#/.NET/Mono for a lot of other good reasons&#8230;) However, i could make my robot win the tournament! My robot and me are very proud of it cause there were a lot of good approaches and programs to resolve the task.</p>
<p>At the beginning my algorithm was just a straight forward Ford-Bellmann after transforming the board and the possible positions of the roboter into a stategraph. I tried to keep the probability in mind while implementing it but after a while i noticed that searching for the best path couldnt get me rid of the problem of not knowing which cards will be next and whether the roboter would be able to follow the path by these cards. But a good friend of mine, Georg Hofmann, gave me a good advice: Monte-Carlo-Simulation. And he also provided the idea of the actual algorithm (i suggest reading the rules of the contest before).<br />
<code><br />
The aim: To get the expected value of needed rounds to reach the target for every field.<br />
Starting values: 1 on every field, 0 for the target field.<br />
Simulation: Draw 8 cards. Calculate for EVERY field (A), which fields can be reached by<br />
these cards and choose the one with the actual lowest expectation value (B). Correct the<br />
expectation value for A as follows: E(A) = 0.9 * E(A) + 0.1 * E(B)<br />
Do the simulation as often as possible to get a good result...<br />
</code><br />
(Of course you have to take care of fields that leads to the dead of the robot &#8211; they need some kind of penalty as well as they dont need to be simulated)<br />
After running these little piece of algorithm (very(!) often) the roboter &#8220;knows&#8221; what to do: Always choose those 5 cards that leads to the field with the lowest expectation value &#8211; its statistically best!</p>
<p>I wrote a more detailed article (in german) about this approach in combination with an introduction into C#/Mono for freiesMagazin. The article will be available at the May 2010 edition of <a href="http://www.freiesmagazin.de" target="_blank">freiesMagazin</a>. But this is not the end of the roboters&#8230; be prepared <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=79&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2010/03/20/robot-speaks-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
		<item>
		<title>Cursors in MSSQL &#8211; Copy/Paste template</title>
		<link>http://seesharpsoft.wordpress.com/2010/02/23/cursors-in-mssql-copypaste-template/</link>
		<comments>http://seesharpsoft.wordpress.com/2010/02/23/cursors-in-mssql-copypaste-template/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 15:14:10 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MSSQL]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/?p=64</guid>
		<description><![CDATA[Reminder: Use unique cursor names! (if calling a procedure inside cursor which uses a cursor itself, the cursor names need to be unique)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=64&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre class="brush: sql;">
    DECLARE @myName varchar(50)
    DECLARE @myDesc varchar(50)

    DECLARE myCursor CURSOR FOR
        SELECT Name, Description
        FROM Table
        WHERE ID = @parameter

    OPEN myCursor
    FETCH NEXT FROM myCursor INTO @myName, @myDesc

    WHILE @@FETCH_STATUS = 0
    BEGIN
        PRINT @myName + '; ' + @myDesc
        FETCH NEXT FROM myCursor INTO @myName, @myDesc
    END

    CLOSE myCursor
    DEALLOCATE myCursor
</pre>
<p>Reminder: Use unique cursor names! (if calling a procedure inside cursor which uses a cursor itself, the cursor names need to be unique)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=64&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2010/02/23/cursors-in-mssql-copypaste-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
		<item>
		<title>Clipboard event handling</title>
		<link>http://seesharpsoft.wordpress.com/2009/11/04/clipboard-event-handling/</link>
		<comments>http://seesharpsoft.wordpress.com/2009/11/04/clipboard-event-handling/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 16:15:02 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/?p=62</guid>
		<description><![CDATA[And another very nice site i found here: An very good example how to keep track of clipboardcontent. No time to go into deeper details&#8230; maybe later, just follow the link by now!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=62&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>And another very nice site i found <a href="http://www.radsoftware.com.au/articles/clipboardmonitor.aspx" target="_blank">here</a>: An very good example how to keep track of clipboardcontent. No time to go into deeper details&#8230; maybe later, just follow the link by now!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=62&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2009/11/04/clipboard-event-handling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
		<item>
		<title>Reading binary data in C#</title>
		<link>http://seesharpsoft.wordpress.com/2009/10/28/reading-binary-data-in-c/</link>
		<comments>http://seesharpsoft.wordpress.com/2009/10/28/reading-binary-data-in-c/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 13:19:14 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[IO]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/?p=57</guid>
		<description><![CDATA[This caption is taken directly from an article i found here. The final result of this post is the following code:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=57&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This caption is taken directly from an article i found <a href="http://www.yoda.arachsys.com/csharp/readbinary.html">here</a>. The final result of this post is the following code:</p>
<pre class="brush: csharp;">
/// &lt;summary&gt;
/// Reads data from a stream until the end is reached. The
/// data is returned as a byte array. An IOException is
/// thrown if any of the underlying IO calls fail.
/// &lt;/summary&gt;
/// &lt;param name=&quot;stream&quot;&gt;The stream to read data from&lt;/param&gt;
/// &lt;param name=&quot;initialLength&quot;&gt;The initial buffer length&lt;/param&gt;
public static byte[] ReadFully (Stream stream, int initialLength)
{
    // If we've been passed an unhelpful initial length, just
    // use 32K.
    if (initialLength &lt; 1)
    {
        initialLength = 32768;
    }

    byte[] buffer = new byte[initialLength];
    int read=0;

    int chunk;
    while ( (chunk = stream.Read(buffer, read, buffer.Length-read)) &gt; 0)
    {
        read += chunk;

        // If we've reached the end of our buffer, check to see if there's
        // any more information
        if (read == buffer.Length)
        {
            int nextByte = stream.ReadByte();

            // End of stream? If so, we're done
            if (nextByte==-1)
            {
                return buffer;
            }

            // Nope. Resize the buffer, put in the byte we've just
            // read, and continue
            byte[] newBuffer = new byte[buffer.Length*2];
            Array.Copy(buffer, newBuffer, buffer.Length);
            newBuffer[read]=(byte)nextByte;
            buffer = newBuffer;
            read++;
        }
    }
    // Buffer is now too big. Shrink it.
    byte[] ret = new byte[read];
    Array.Copy(buffer, ret, read);
    return ret;
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=57&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2009/10/28/reading-binary-data-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
		<item>
		<title>Charlie Winston &#8211; Buy before die</title>
		<link>http://seesharpsoft.wordpress.com/2009/10/24/charlie-winston-buy-before-die/</link>
		<comments>http://seesharpsoft.wordpress.com/2009/10/24/charlie-winston-buy-before-die/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 13:01:45 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/2009/10/24/charlie-winston-buy-before-die/</guid>
		<description><![CDATA[Not all european people might have heard this name before – but they should! His single first “Like a hobo” is more often played in the radio in the last days. And this time for a good reason: Its great! Not only the single – the whole CD “Hobo” is! And if u ask me: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=56&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Not all european people might have heard this name before – but they should! His single first “Like a hobo” is more often played in the radio in the last days. And this time for a good reason: Its great! Not only the single – the whole CD “Hobo” is! And if u ask me: The song “Like a hobo” is not my favorite, but neverless its rocks like the whole album. It might be hard for you to listen more than the first 3 songs, cause u will repeat them endlessly!! So remember the name: <a href="http://www.charliewinston.de/" target="_blank">Charlie Winston</a>. Give it a try…</p>
<p>PS: I dont get paid for any commercial, im just enthusiastic <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=56&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2009/10/24/charlie-winston-buy-before-die/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
		<item>
		<title>.Net 3.* Language Extensions</title>
		<link>http://seesharpsoft.wordpress.com/2009/10/22/net-3-language-extensions/</link>
		<comments>http://seesharpsoft.wordpress.com/2009/10/22/net-3-language-extensions/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 09:37:45 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/2009/10/22/net-3-language-extensions/</guid>
		<description><![CDATA[A good site with examples for the language extension feature of .Net 3.* can be found here. As a shortcut look at this example taken from linked site:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=53&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A good site with examples for the language extension feature of .Net 3.* can be found <a href="http://weblogs.asp.net/scottgu/archive/2007/03/13/new-orcas-language-feature-extension-methods.aspx" target="_blank">here</a>. As a shortcut look at this example taken from linked site:</p>
<pre class="brush: csharp;">public static bool In(this object o, IEnumerable c)
{
  foreach(object i in c)
  {
    if(i.Equals(o)) return true;
  }
  return false;
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=53&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2009/10/22/net-3-language-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
		<item>
		<title>What the fuck is WUBI?!</title>
		<link>http://seesharpsoft.wordpress.com/2009/10/20/what-the-fuck-is-wubi/</link>
		<comments>http://seesharpsoft.wordpress.com/2009/10/20/what-the-fuck-is-wubi/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 22:13:22 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/2009/10/20/what-the-fuck-is-wubi/</guid>
		<description><![CDATA[The answer is as easy as the program itself: Its an ubuntu installer for windows. If u are a windows user but sometimes u need a linux u could install yourself a virtual machine. I used VirtualBox for a long time – it was great but it was slow! As i decided to switch to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=50&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The answer is as easy as the program itself: Its an <a href="http://wubi-installer.org/" target="_blank">ubuntu installer for windows</a>. If u are a windows user but sometimes u need a linux u could install yourself a virtual machine.</p>
<p>I used <a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a> for a long time – it was great but it was slow! As i decided to switch to Windows 7 i also decided to try an alternativ and what i found was WUBI. And now im happy: Its easier to install than a virtual machine, no need for an extra partition and its fast! The only sad thing: Switching between Windows and Ubuntu needs a computer restart…</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=50&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2009/10/20/what-the-fuck-is-wubi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
		<item>
		<title>RoboRally &#8211; Roboter meets AI</title>
		<link>http://seesharpsoft.wordpress.com/2009/10/17/roborally-roboter-meets-ai/</link>
		<comments>http://seesharpsoft.wordpress.com/2009/10/17/roborally-roboter-meets-ai/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 08:09:54 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Mono]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/?p=48</guid>
		<description><![CDATA[A friend sent me an email with a link to a little programming contest. The aim is to program an AI for a roboter that should find a way from the origin to the destination &#8211; the rules are deeply inspired by the boardgame RoboRally. The reward may not be worth to invest time at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=48&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A friend sent me an email with a link to a little <a href="http://www.freiesmagazin.de/20090927-zweiter-programmierwettbewerb-gestartet" target="_blank">programming contest</a>. The aim is to program an AI for a roboter that should find a way from the origin to the destination &#8211; the rules are deeply inspired by the boardgame RoboRally. The reward may not be worth to invest time at all but to see a little robot moving around the holes and splippering over oil is great fun &#8211; u always hope that he might be clever enough to reach his aim and dont stuck&#8230; so, do it!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=48&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2009/10/17/roborally-roboter-meets-ai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
		<item>
		<title>Binary Search Tree and Red-Black Tree in C#</title>
		<link>http://seesharpsoft.wordpress.com/2009/10/04/binary-search-tree-and-red-black-tree-in-c/</link>
		<comments>http://seesharpsoft.wordpress.com/2009/10/04/binary-search-tree-and-red-black-tree-in-c/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 00:27:19 +0000</pubDate>
		<dc:creator>GeeK</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://seesharpsoft.wordpress.com/?p=44</guid>
		<description><![CDATA[Willing to implement some missing(?) base functionality in my own library to extend .NET i found these articles: Working with Red-Black Trees in C#, An Extensive Examination of Data Structures and Implementing a Red-Black Tree in C#. While the first seems to be exactly what i was looking for, the second article on MSN provides [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=44&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Willing to implement some missing(?) base functionality in my own library to extend .NET i found these articles: <a href="http://www.devx.com/DevX/Article/36196/0/page/1">Working with Red-Black Trees in C#</a>, <a href="http://msdn.microsoft.com/en-us/library/ms364091%28VS.80%29.aspx">An Extensive Examination of Data Structures</a> and <a href="http://www.jaltiere.com/?p=53">Implementing a Red-Black Tree in C#</a>.<br />
While the first seems to be exactly what i was looking for, the second article on MSN provides some additional reading about datastructures. The sourcecode examples are somehow outdated cause they are written for .NET 2.0 but neverless its quite basic knowledge for everyone well explained. The last article reminds me at some point how i would have done it 10 years before <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  I didnt read it at all, just got a quick look at the sources and my first thought was: Too much lines of code for a Red-Black Tree! But i should give it a second try &#8211; also the rest of the blog holds some extensive examples of different programming patterns. And you can never know enough about it&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/seesharpsoft.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/seesharpsoft.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/seesharpsoft.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/seesharpsoft.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/seesharpsoft.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/seesharpsoft.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/seesharpsoft.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/seesharpsoft.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/seesharpsoft.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/seesharpsoft.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/seesharpsoft.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/seesharpsoft.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/seesharpsoft.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/seesharpsoft.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=seesharpsoft.wordpress.com&amp;blog=9519203&amp;post=44&amp;subd=seesharpsoft&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://seesharpsoft.wordpress.com/2009/10/04/binary-search-tree-and-red-black-tree-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d8e3a254473bbd50e778de0600e4ed9f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">GeeK</media:title>
		</media:content>
	</item>
	</channel>
</rss>
