<?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>Fahnz Mode</title>
	<atom:link href="http://fahnzmode.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fahnzmode.com</link>
	<description></description>
	<lastBuildDate>Wed, 15 Jun 2011 23:13:52 +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>These Dev Thoughts</title>
		<link>http://fahnzmode.com/2011/01/these-dev-thoughts/</link>
		<comments>http://fahnzmode.com/2011/01/these-dev-thoughts/#comments</comments>
		<pubDate>Sat, 15 Jan 2011 03:57:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fahnzmode.com/?p=177</guid>
		<description><![CDATA[If, in the middle of development, you realize you&#8217;d like to change naming standards that you started with &#8211; DON&#8217;T. At least not unless you&#8217;re going to the trouble of refactoring what&#8217;s already in place. It&#8217;s almost always easier to retool it all later than end up with a mix of standards that need to [...]]]></description>
		<wfw:commentRss>http://fahnzmode.com/2011/01/these-dev-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transact SQL LastIndexOf Function</title>
		<link>http://fahnzmode.com/2011/01/transact-sql-lastindexof-function/</link>
		<comments>http://fahnzmode.com/2011/01/transact-sql-lastindexof-function/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 17:38:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[snippits]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[tsql]]></category>

		<guid isPermaLink="false">http://fahnzmode.com/?p=164</guid>
		<description><![CDATA[I can&#8217;t help but think there may be a more efficient way to do this, but I&#8217;m posting here anyway. I welcome updates to make this better&#8230; CREATE FUNCTION LastIndexOf ( @substring nvarchar(max), @stringToSearch nvarchar(max) ) RETURNS int AS BEGIN RETURN LEN(@stringToSearch) - LEN(@substring) + 2 - CHARINDEX(REVERSE(@substring), REVERSE(@stringToSearch)) END GO I still can&#8217;t believe [...]]]></description>
		<wfw:commentRss>http://fahnzmode.com/2011/01/transact-sql-lastindexof-function/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HuntMyState.com Launched</title>
		<link>http://fahnzmode.com/2010/10/huntmystate-com-launched/</link>
		<comments>http://fahnzmode.com/2010/10/huntmystate-com-launched/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 06:37:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Launch]]></category>

		<guid isPermaLink="false">http://fahnzmode.com/?p=157</guid>
		<description><![CDATA[It was a long time coming, but HuntMyState.com has officially launched! Geared towards high SEO and maintainability, this is one of my favorite sites I&#8217;ve worked on from the past few years. Excellent design by Ken Zarecki. Good hunting!]]></description>
		<wfw:commentRss>http://fahnzmode.com/2010/10/huntmystate-com-launched/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript Binary Search Function</title>
		<link>http://fahnzmode.com/2010/08/javascript-binary-search-function/</link>
		<comments>http://fahnzmode.com/2010/08/javascript-binary-search-function/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 19:37:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://fahnzmode.com/?p=123</guid>
		<description><![CDATA[I was looking into binary search functions lately and decided to comment this JavaScript binary search function I found (original is at http://www.dweebd.com/javascript/binary-search-an-array-in-javascript/) to help ensure that I had a good grasp on everything that was going on in it. Thought it might be useful for others, so I expanded my comments (read: commented the [...]]]></description>
		<wfw:commentRss>http://fahnzmode.com/2010/08/javascript-binary-search-function/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Automatically Add/Remove Self-Labeling for Textboxes</title>
		<link>http://fahnzmode.com/2010/07/automatically-addremove-self-labeling-for-textboxes/</link>
		<comments>http://fahnzmode.com/2010/07/automatically-addremove-self-labeling-for-textboxes/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 18:38:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[wcag]]></category>

		<guid isPermaLink="false">http://fahnzmode.com/?p=121</guid>
		<description><![CDATA[This is simple and I&#8217;m sure that many have done this (or something similar) already, but I recently had to go through a website and retro-fit all textboxes with jQuery to automatically remove the &#8220;self label&#8221; value when the user clicks in the box. Instead of doing all of these individually, I came up with [...]]]></description>
		<wfw:commentRss>http://fahnzmode.com/2010/07/automatically-addremove-self-labeling-for-textboxes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Mobile Web Still Sucks</title>
		<link>http://fahnzmode.com/2010/02/the-mobile-web-still-sucks/</link>
		<comments>http://fahnzmode.com/2010/02/the-mobile-web-still-sucks/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 00:14:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://fahnzmode.com/?p=107</guid>
		<description><![CDATA[As everyone expected, browsing the web on our mobile devices has become steadily more prominent. The browsers available on our phones have become more robust and feel more like desktop browsers, but you know something? They&#8217;re not. Ooh, that&#8217;s too rich for my browser I increasingly find myself using the Opera browser on my HTC [...]]]></description>
		<wfw:commentRss>http://fahnzmode.com/2010/02/the-mobile-web-still-sucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symantec Website Fail</title>
		<link>http://fahnzmode.com/2010/02/symantec-website-fail/</link>
		<comments>http://fahnzmode.com/2010/02/symantec-website-fail/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 22:18:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WTF]]></category>

		<guid isPermaLink="false">http://fahnzmode.com/?p=98</guid>
		<description><![CDATA[&#8220;This solution requires that you use Internet Explorer. If this page is open in any other Web browser, open it in Internet Explorer.&#8221; This was just too crazy not to post. Got this message from a page on the Symantec site after getting an error from the Symantec Endpoint Protection software we have at the [...]]]></description>
		<wfw:commentRss>http://fahnzmode.com/2010/02/symantec-website-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Base CSS Font Sizes Gone Wild (plus bonus CSS reset!)</title>
		<link>http://fahnzmode.com/2010/02/base-css-font-sizes-gone-wild/</link>
		<comments>http://fahnzmode.com/2010/02/base-css-font-sizes-gone-wild/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 19:59:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Browser Compatibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://fahnzmode.com/?p=90</guid>
		<description><![CDATA[I&#8217;ve been working on my version of a CSS &#8220;reset&#8221; file lately trying to achieve a gentler reset than the big ones out there. Specifically, I don&#8217;t want to reset everything all the way to zero; I&#8217;d just like better control over what those defaults end up being (cross-browser of course). So, I&#8217;ve got almost [...]]]></description>
		<wfw:commentRss>http://fahnzmode.com/2010/02/base-css-font-sizes-gone-wild/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Website Launch GO! Dance Project Saint Louis Gets a New Look</title>
		<link>http://fahnzmode.com/2010/01/website-launch-go/</link>
		<comments>http://fahnzmode.com/2010/01/website-launch-go/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 18:50:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Website Launch]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mailchimp]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[stlouis]]></category>

		<guid isPermaLink="false">http://fahnzmode.com/?p=79</guid>
		<description><![CDATA[After working on it off-and-on for &#8230;what? Over a year? We have finally launched the new website for my wife&#8217;s dance studio: Dance Project Saint Louis. Design by Ken, code by me, content by Dance Project. It&#8217;s running WordPress and took me longer than expected to get all the little things worked out. That just [...]]]></description>
		<wfw:commentRss>http://fahnzmode.com/2010/01/website-launch-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Standards. Who Cares?</title>
		<link>http://fahnzmode.com/2010/01/web-standards-why-you-should-give-a/</link>
		<comments>http://fahnzmode.com/2010/01/web-standards-why-you-should-give-a/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 19:20:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[wcag]]></category>

		<guid isPermaLink="false">http://comet88.com/?p=48</guid>
		<description><![CDATA[Web standards, accessibility, WCAG, XHTML, CSS, blah, blah, blah&#8230; My web pages look just fine. Why should I care about the so-called &#8220;web standards&#8221;? Well, do you care that your car was built with and tested for safety standards? Do you care that if you buy a DVD, it will just work in the player [...]]]></description>
		<wfw:commentRss>http://fahnzmode.com/2010/01/web-standards-why-you-should-give-a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

