<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FruitBatInShades Code &#187; My Stuff</title>
	<atom:link href="http://www.fruitbatscode.com/tag/my-stuff/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fruitbatscode.com</link>
	<description>Where the fruitbat keeps his notes</description>
	<lastBuildDate>Thu, 17 Nov 2011 12:20:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>c# Coalesce function</title>
		<link>http://www.fruitbatscode.com/net/c/c-coalesce-function</link>
		<comments>http://www.fruitbatscode.com/net/c/c-coalesce-function#comments</comments>
		<pubDate>Wed, 16 Nov 2011 09:18:25 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[My Stuff]]></category>
		<category><![CDATA[Util-a-day]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=474</guid>
		<description><![CDATA[When you&#8217;ve been working heavily with c# for a few days, coalesce jumps into your head for a lot of c# issues. Heres a little helper to provide coalesce in .net /// &#60;summary&#62; /// Returns the first non null value, same as SQL's COALESCE() /// &#60;/summary&#62; /// &#60;param name=&#34;p&#34;&#62;Args array&#60;/param&#62; /// &#60;returns&#62;First non null value&#60;/returns&#62; [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/c/c-coalesce-function/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery &#8211; Syncing select options</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-syncing-select-options</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-syncing-select-options#comments</comments>
		<pubDate>Fri, 04 Nov 2011 10:01:46 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=467</guid>
		<description><![CDATA[I had a requirement for a series of select boxes that required the related one to only allow selections above the first. I created a little utility function that enables and disables the options based on a function you supply.  Usage is pretty simple. Pass in the first and second select as jQuery objects, then [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-syncing-select-options/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UAD8: Query String Builder</title>
		<link>http://www.fruitbatscode.com/net/c/uad8-query-string-builder</link>
		<comments>http://www.fruitbatscode.com/net/c/uad8-query-string-builder#comments</comments>
		<pubDate>Sun, 13 Mar 2011 11:40:21 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[My Stuff]]></category>
		<category><![CDATA[Util-a-day]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=451</guid>
		<description><![CDATA[Ever had controls that need to add to the Query String but not duplicate or erase what&#8217;s already there? This is a little utility I dug out and just changed to use a generic dictionary recently. Just use it as you would a normal dictionary. When you instantiate a copy it picks up the current [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/c/uad8-query-string-builder/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery equal height columns</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-equal-height-columns</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-equal-height-columns#comments</comments>
		<pubDate>Wed, 12 May 2010 15:19:56 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=381</guid>
		<description><![CDATA[Sometimes equal height columns via css can be an absolute nightmare! If you&#8217;re using jQuery for other items on the page you can cheat with the following function : function setEqualHeight(items) { var highest = 0; items.each( function(){ current = $(this).height(); if(current &#62; highest){ highest = current; } }); items.height(highest); }; It just loops the [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-equal-height-columns/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CMS Update &#8211; Preparing for BETA!</title>
		<link>http://www.fruitbatscode.com/cms/cms-update-preparing-for-release</link>
		<comments>http://www.fruitbatscode.com/cms/cms-update-preparing-for-release#comments</comments>
		<pubDate>Thu, 04 Feb 2010 21:37:25 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=368</guid>
		<description><![CDATA[It&#8217;s been a bit quite round here recently! Don&#8217;t be fooled! The CMS is more or less finished. Just refactoring and preparing bits and bobs. The actual core itself hasn&#8217;t really changed in 6 months and is independent from the CMS, it handles all the page, content and control creation with a single base class that you [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/cms/cms-update-preparing-for-release/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IE7/8 and hover on empty elements</title>
		<link>http://www.fruitbatscode.com/css/ie78-and-hover-on-empty-elements</link>
		<comments>http://www.fruitbatscode.com/css/ie78-and-hover-on-empty-elements#comments</comments>
		<pubDate>Tue, 17 Nov 2009 10:35:40 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=356</guid>
		<description><![CDATA[I had an annoying problem with IE8 today. In the CMS, toolbars appear when you hover over a content block or the page content. All I&#8217;ve done is user div:hover. IE though does not recognise the object if its background is set to transparent and is empty. If you set a background colour then it [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/css/ie78-and-hover-on-empty-elements/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Rendered Html From a Control</title>
		<link>http://www.fruitbatscode.com/net/c/get-rendered-html-from-a-control</link>
		<comments>http://www.fruitbatscode.com/net/c/get-rendered-html-from-a-control#comments</comments>
		<pubDate>Mon, 16 Nov 2009 12:32:53 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=352</guid>
		<description><![CDATA[Whilst working on the CMS I needed to be able to pass back the html a control will render when the user first adds it. The control doesn&#8217;t exist on the page yet as the sections are added via javascript. It was very easy to pass in StringWriter to the render function to get the [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/c/get-rendered-html-from-a-control/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript dictionary &amp; getIds</title>
		<link>http://www.fruitbatscode.com/javascript/javascript-dictionary-getids</link>
		<comments>http://www.fruitbatscode.com/javascript/javascript-dictionary-getids#comments</comments>
		<pubDate>Sun, 11 Oct 2009 17:14:57 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=333</guid>
		<description><![CDATA[<p>Coming from a .net background I must admit to missing many of the features that the framework provides like Hastables, 
			Dictionaries and Lists. I've just come up with a really simple dictionary class that I use to hold results from my id parsing routine.</p>]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/javascript-dictionary-getids/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery fbisCalendar</title>
		<link>http://www.fruitbatscode.com/javascript/jquery/jquery-fbiscalendar</link>
		<comments>http://www.fruitbatscode.com/javascript/jquery/jquery-fbiscalendar#comments</comments>
		<pubDate>Fri, 18 Sep 2009 18:36:04 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=308</guid>
		<description><![CDATA[Here is my first freely available jQuery plug-in.  There are a few more to follow soon including a form builder and a file explorer Overview I know there are a million calendar selectors out there but I needed one that covered historical dates (1800-2100).  It displays either as a in place calendar in the page [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/javascript/jquery/jquery-fbiscalendar/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CMS Framework &#8211; Update</title>
		<link>http://www.fruitbatscode.com/net/cms-framework-update</link>
		<comments>http://www.fruitbatscode.com/net/cms-framework-update#comments</comments>
		<pubDate>Sun, 16 Aug 2009 15:48:16 +0000</pubDate>
		<dc:creator>fbis</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[My Stuff]]></category>

		<guid isPermaLink="false">http://www.fruitbatscode.com/?p=304</guid>
		<description><![CDATA[Been a bit quiet round here lately but not because I&#8217;ve not been working on it I&#8217;ve been using it for a project at work and converting a lot of my stuff to be compatible with it.  It&#8217;s running  a site atm and doing well. Alpha State Mainly in alpha because things may yet change [...]]]></description>
		<wfw:commentRss>http://www.fruitbatscode.com/net/cms-framework-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

