<?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>Free Flowing Code</title>
	<atom:link href="http://www.freeflowingcode.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.freeflowingcode.com/blog</link>
	<description>Go ahead. Pour a cup.</description>
	<lastBuildDate>Thu, 17 Jun 2010 17:08:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Multiple Websites using IIS in WindowsXP</title>
		<link>http://www.freeflowingcode.com/blog/windows/multiple-websites-using-iis-on-windowsxp</link>
		<comments>http://www.freeflowingcode.com/blog/windows/multiple-websites-using-iis-on-windowsxp#comments</comments>
		<pubDate>Thu, 17 Jun 2010 17:08:06 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[IIS]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[WindowsXP]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=129</guid>
		<description><![CDATA[In some cases, you just need multiple websites for development, rather then virtual directories.
Windows 7 handles this just fine, but WindowsXP does not, you have to either create another website via script or code.
OR just download this awesome Dutch software http://www.firstserved.net/help/downloads
Don&#8217;t worry about the site not being in English, scroll down to the download link, [...]]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/windows/multiple-websites-using-iis-on-windowsxp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String ReplaceAll with Flex and Actionscript</title>
		<link>http://www.freeflowingcode.com/blog/flex/string-replace-all-with-flex-and-actionscript</link>
		<comments>http://www.freeflowingcode.com/blog/flex/string-replace-all-with-flex-and-actionscript#comments</comments>
		<pubDate>Mon, 14 Jun 2010 15:56:45 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[RegEx]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=123</guid>
		<description><![CDATA[This is one of those standards you keep coming back to.
Using RegEx is the quickest way to replace all string values, using the /g flag to make the replace work for all instances in the string.
For something simple you&#8217;d do this
myString = myString.replace(/text to find/g, &#8220;replace text with this&#8221;);
but if there&#8217;s any special characters, remember [...]]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/flex/string-replace-all-with-flex-and-actionscript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installed Adobe Flash Player Is Not a Debugger</title>
		<link>http://www.freeflowingcode.com/blog/flex/installed-adobe-flash-player-is-not-a-debugger</link>
		<comments>http://www.freeflowingcode.com/blog/flex/installed-adobe-flash-player-is-not-a-debugger#comments</comments>
		<pubDate>Sat, 05 Jun 2010 00:15:35 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[FlashBuilder]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=118</guid>
		<description><![CDATA[After uninstalled a Stand-alone version of Flex Builder and installing Adobe CS5 Premium which comes bundled with Flash Builder, I was treated to this lovely error message when trying to debug an app that had previously worked fine.]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/flex/installed-adobe-flash-player-is-not-a-debugger/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex &#8211; Handy ComboBox function</title>
		<link>http://www.freeflowingcode.com/blog/flex/flex-handy-combobox-function</link>
		<comments>http://www.freeflowingcode.com/blog/flex/flex-handy-combobox-function#comments</comments>
		<pubDate>Sat, 27 Mar 2010 06:26:07 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[ComboBox]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=114</guid>
		<description><![CDATA[I need to make a ComboBox extension someday that uses this and binds in some way. It seems pretty useful in many situations, but it&#8217;s not quite generic enough yet.
The basic functionality is this&#8230;. take an existing ComboBox that uses a dataprovider &#8211; preferably with objects of some sort, pass in a parameter that exists [...]]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/flex/flex-handy-combobox-function/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check for installed Linux package</title>
		<link>http://www.freeflowingcode.com/blog/linux/check-for-installed-linux-package</link>
		<comments>http://www.freeflowingcode.com/blog/linux/check-for-installed-linux-package#comments</comments>
		<pubDate>Thu, 25 Mar 2010 19:27:28 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[grep]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=111</guid>
		<description><![CDATA[This probably changes with different distro &#8211; I used Ubuntu, so check for package specifics if it doesn&#8217;t work.
To check for installed software that has been installed using apt-get or similar command use this

user@computer:$ dpkg -l &#124; grep packagename

]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/linux/check-for-installed-linux-package/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex DragProxy for container with rounded corners</title>
		<link>http://www.freeflowingcode.com/blog/flex/flex-dragproxy-for-container-with-rounded-corners</link>
		<comments>http://www.freeflowingcode.com/blog/flex/flex-dragproxy-for-container-with-rounded-corners#comments</comments>
		<pubDate>Thu, 25 Mar 2010 16:55:44 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[BitmapAsset]]></category>
		<category><![CDATA[DragProxy]]></category>
		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=106</guid>
		<description><![CDATA[Usually drag proxies in Flex are a simple thing. You take whatever you want to drag, throw it in a bitmap asset and use it or if you are dragging and image, just use the image source directly.
However, there are cases where you need something more complex. I ran into an issue recently while trying [...]]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/flex/flex-dragproxy-for-container-with-rounded-corners/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Measuring HTML line height in Flex</title>
		<link>http://www.freeflowingcode.com/blog/flex/measuring-html-line-height-in-flex</link>
		<comments>http://www.freeflowingcode.com/blog/flex/measuring-html-line-height-in-flex#comments</comments>
		<pubDate>Mon, 22 Mar 2010 05:32:47 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[lineheight]]></category>
		<category><![CDATA[measure]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=101</guid>
		<description><![CDATA[Text and TextArea components in Flex can be wacky. Especially when you&#8217;re trying to autosize and measure the text in them.
One area I have always had problems with is measuring HTML text height. Let&#8217;s say you have a huge font at the top, then several breaks and a smaller font.
Flex just doesn&#8217;t know how to [...]]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/flex/measuring-html-line-height-in-flex/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flex &#8211; Multiple initializers</title>
		<link>http://www.freeflowingcode.com/blog/flex/flex-multiple-initializers</link>
		<comments>http://www.freeflowingcode.com/blog/flex/flex-multiple-initializers#comments</comments>
		<pubDate>Mon, 22 Mar 2010 04:35:14 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[advanceddatagrid]]></category>
		<category><![CDATA[dataprovider]]></category>
		<category><![CDATA[errors]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=98</guid>
		<description><![CDATA[I love error messages that are vague and don&#8217;t really spell out what the problem is, especially when you&#8217;re first learning a new language or technology.
Most of the time a google search turns up the answer pretty quickly, but this one didn&#8217;t turn up much.
Luckily, it turned out to be a typo: I forgot to [...]]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/flex/flex-multiple-initializers/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SQL Last Updated Trigger</title>
		<link>http://www.freeflowingcode.com/blog/sql/sql-last-updated-trigger</link>
		<comments>http://www.freeflowingcode.com/blog/sql/sql-last-updated-trigger#comments</comments>
		<pubDate>Mon, 22 Mar 2010 04:26:47 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[sql trigger datetime]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=91</guid>
		<description><![CDATA[This will no doubt be old hat for anyone who&#8217;s worked with SQL, but the other day I was going through some code snippets and came across this little gem.
I know I got it off a blog post somewhere, but never recorded where, so to anyone who&#8217;s ever posted this&#8230;Thanks!
This is pretty generic, if you [...]]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/sql/sql-last-updated-trigger/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symbolic Links</title>
		<link>http://www.freeflowingcode.com/blog/linux/symbolic-links</link>
		<comments>http://www.freeflowingcode.com/blog/linux/symbolic-links#comments</comments>
		<pubDate>Sun, 21 Mar 2010 05:32:01 +0000</pubDate>
		<dc:creator>Brian Coleman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[wp-syntax]]></category>

		<guid isPermaLink="false">http://www.freeflowingcode.com/blog/?p=85</guid>
		<description><![CDATA[Symbolic Links are used in Linux (and UNIX I guess) to point to a file or directory from within another directory. Like a shortcut in Windows.
When developing on my new Linux box, especially when SSH&#8217;d in, I need symbolic links, for example to restart apache quickly or point to put a pointer in my public_html [...]]]></description>
		<wfw:commentRss>http://www.freeflowingcode.com/blog/linux/symbolic-links/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

