<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Tempos's Feed - Programmer's Heaven</title>
    <link>http://www.programmersheaven.com/feed/User/589675/RSS.aspx</link>
    <description>Events at Programmer's Heaven related to the user Tempos.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 23:38:18 -0700</pubDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <item>
      <title>If "This post has been deleted", please don't show in search results</title>
      <link>http://www.programmersheaven.com/mb/coopprojects/427195/427195/ReadMessage.aspx#427195</link>
      <description>&lt;p&gt;Posted a '&lt;a href="http://www.programmersheaven.com/mb/coopprojects/427195/427195/ReadMessage.aspx#427195"&gt;new message&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/coopprojects/Board.aspx"&gt;Co-operative Projects&lt;/a&gt; forum.&lt;/p&gt;So I took a break... If "This post has been deleted", please don't show them in the forum list. Thanks.&lt;br /&gt;
&lt;br /&gt;
Haha, an edit count as "Oops! Our flood and SPAM control thinks you're posting too much (SPAM or otherwise). If you think we should not have prevented you from posting this message, please contact the webmaster. Waiting a little while should also help.", seriously? From your cool domain name I thought this site would be tops! Well maybe it's just a short term problem. :)&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/coopprojects/427195/427195/ReadMessage.aspx#427195</guid>
      <pubDate>Thu, 02 Feb 2012 18:56:08 -0700</pubDate>
    </item>
    <item>
      <title>Re: C# programmer to assist on project(s) for free</title>
      <link>http://www.programmersheaven.com/mb/coopprojects/426669/427191/ReadMessage.aspx#427191</link>
      <description>&lt;p&gt;Posted a '&lt;a href="http://www.programmersheaven.com/mb/coopprojects/426669/427191/ReadMessage.aspx#427191"&gt;reply&lt;/a&gt; on the &lt;a href="http://www.programmersheaven.com/mb/coopprojects/Board.aspx"&gt;Co-operative Projects&lt;/a&gt; forum.&lt;/p&gt;I am so itching to make an XNA game myself and LOVE math handling classes, but am too busy with my current personal project, and work.&lt;br /&gt;
&lt;br /&gt;
You seem lite on requirements, unless you have these skill yourself (I'm bragging a bit in adding them)... What about extensions, functions (static procedures should not be called a method, methods operate on an instance not a class), enum, collections (more specific than lists), and exceptions? Also if you want multi-player; authentication protocols, multi-threading, data modeling, and database experiences.&lt;br /&gt;
&lt;br /&gt;
Why do you want Windows Forms experience?&lt;br /&gt;
&lt;br /&gt;
While BitConverter is nice, it doesn't test bits. Here is a class that will help you (and me) facilitate bit testing...&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;public static class Bit
{
	public static uint And(string number1, string number2)
	{
		return (ToNumber(number1) &amp;amp; ToNumber(number2));
	}

	public static uint And(uint number1, uint number2)
	{
		return (number1 &amp;amp; number2);
	}

	public static uint Or(string number1, string number2)
	{
		return (ToNumber(number1) | ToNumber(number2));
	}

	public static uint Or(uint number1, uint number2)
	{
		return (number1 | number2);
	}

	public static uint XOr(string number1, string number2)
	{
		return (ToNumber(number1) ^ ToNumber(number2));
	}

	public static uint XOr(uint number1, uint number2)
	{
		return (number1 ^ number2);
	}

	public static uint Not(string number)
	{
		return (~ToNumber(number));
	}

	public static uint Not(uint number)
	{
		return (~number);
	}

	public static uint LeftShift(string number, int numberOfDigits)
	{
		return (ToNumber(number) &amp;lt;&amp;lt; numberOfDigits);
	}

	public static uint LeftShift(uint number, int numberOfDigits)
	{
		return (number &amp;lt;&amp;lt; numberOfDigits);
	}

	public static uint RightShift(string number, int numberOfDigits)
	{
		return (ToNumber(number) &amp;gt;&amp;gt; numberOfDigits);
	}

	public static uint RightShift(uint number, int numberOfDigits)
	{
		return (number &amp;gt;&amp;gt; numberOfDigits);
	}

	public static bool TestBit(string number, int bitPosition)
	{
		return ((ToNumber(number) &amp;amp; (uint)Math.Pow(2, bitPosition)) != 0);
	}

	public static bool TestBit(uint number, int bitPosition)
	{
		return ((number &amp;amp; (uint)Math.Pow(2, bitPosition)) != 0);
	}

	public static uint ClearBitmask(string number, string mask)
	{
		return ClearBit(ToNumber(number), ToNumber(mask));
	}

	public static uint ClearBitmask(uint number, uint mask)
	{
		return ClearBit(number, mask);
	}

	public static uint SetBitmask(string number, string mask)
	{
		return SetBit(ToNumber(number), ToNumber(mask));
	}

	public static uint SetBitmask(uint number, uint mask)
	{
		return SetBit(number, mask);
	}

	public static byte SetBit(byte mask, byte srcValue)
	{
		srcValue ^= (byte)(((byte)(-1 ^ srcValue)) &amp;amp; mask);
		return srcValue;
	}

	public static byte ClearBit(byte mask, byte srcValue)
	{
		srcValue ^= (byte)(((byte)(0 ^ srcValue)) &amp;amp; mask);
		return srcValue;
	}

	public static uint SetBit(uint mask, uint srcValue)
	{
		srcValue ^= (((uint)(-1 ^ srcValue)) &amp;amp; mask);
		return srcValue;
	}

	public static uint ClearBit(uint mask, uint srcValue)
	{
		srcValue ^= (((uint)(0 ^ srcValue)) &amp;amp; mask);
		return srcValue;
	}

	public static string ToBinary(string number)
	{
		return ToBinary(ToNumber(number));
	}

	public static string ToBinary(uint number)
	{
		try
		{
			return Convert.ToString(number, 2);
		}
		catch
		{
			return "0";
		}
	}

	public static uint ToValue(string numberString)
	{
		try
		{
			return Convert.ToUInt32(numberString, 2);
		}
		catch
		{
			return 0;
		}
	}

	public static uint ToNumber(string numberString)
	{
		try
		{
			return Convert.ToUInt32(numberString);
		}
		catch
		{
			return 0;
		}
	}
}&lt;/pre&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/coopprojects/426669/427191/ReadMessage.aspx#427191</guid>
      <pubDate>Thu, 02 Feb 2012 18:30:30 -0700</pubDate>
    </item>
  </channel>
</rss>