<?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>I Are Nick</title>
	<atom:link href="http://iarenick.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://iarenick.com</link>
	<description>I Are Nick...Who Am You?</description>
	<lastBuildDate>Fri, 23 Apr 2010 02:12:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>MYSQL : Ordering by Numbers</title>
		<link>http://iarenick.com/?p=24</link>
		<comments>http://iarenick.com/?p=24#comments</comments>
		<pubDate>Fri, 23 Apr 2010 02:12:16 +0000</pubDate>
		<dc:creator>Nick Searle</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[order by]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://iarenick.com/?p=24</guid>
		<description><![CDATA[I came across this post today in search of being able to order a varcahr field by the true number value. When running a normal "ORDER BY column_name", your data will be returned to you in an order of the 0 to 9 based off the first character. I found a quick and simple solution - wrap your column_name with the absolute value, ABS(), function.]]></description>
			<content:encoded><![CDATA[<p>I came across this post today in search of being able to order a <a href="http://en.wikipedia.org/wiki/Varchar" target="_blank">varcahr</a> field by the true number value. When running a normal &#8220;ORDER BY <em>column_name&#8221;</em>, your data will be returned to you in an order of the 0 to 9 based off the first character. I found a quick and simple solution &#8211; wrap your <em>column_name</em> with the absolute value, <a href="http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html#function_abs" target="_blank">ABS()</a>, function.</p>
<p><strong><span style="text-decoration: underline;">Quick Example</span></strong></p>
<p>$query = &#8220;SELECT * FROM <em>table_name</em> ORDER BY ABS(<em>retail_price</em>) DESC &#8220;;</p>
<p>In this example, I selected all of the data from my table and ordered it by the <em>retail_price </em>column, descending from 9-0.</p>
<p>And here is the link for an in depth walk-through of this - <a href="http://www.lost-in-code.com/programming/mysql/mysql-order-by-numbers/" target="_blank">http://www.lost-in-code.com/programming/mysql/mysql-order-by-numbers/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://iarenick.com/?feed=rss2&amp;p=24</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash/SwfObject, Z-Index &amp; Windows</title>
		<link>http://iarenick.com/?p=21</link>
		<comments>http://iarenick.com/?p=21#comments</comments>
		<pubDate>Wed, 14 Apr 2010 17:57:30 +0000</pubDate>
		<dc:creator>Nick Searle</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[swfobject]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[z-index]]></category>

		<guid isPermaLink="false">http://iarenick.com/?p=21</guid>
		<description><![CDATA[So, @cointilt and I debugged an issue that we ran into while developing a website. For some odd reason when we embedded the flash element using swfobject all of our divs that should have been floating above the flash holder, were not. The interesting thing is that it was only happening on all Windows browsers [...]]]></description>
			<content:encoded><![CDATA[<p>So, @cointilt and I debugged an issue that we ran into while developing a website. For some odd reason when we embedded the flash element using <a title="SwfObject" href="http://code.google.com/p/swfobject/" target="_blank">swfobject</a> all of our divs that should have been floating above the flash holder, were not. The interesting thing is that it was only happening on all Windows browsers and no Mac browsers. Hmmmm&#8230;.after searching a little bit, I came across this post in <a href="http://stackoverflow.com/questions/712476/change-the-z-index-of-flash-content/712492#712492" target="_blank">Stackoverlow</a> which simply said to set your wmode to transparent. So, low and behold, if you are trying to run a z-index on flash objects and div elements, set your wmode parameter to transparent.</p>
]]></content:encoded>
			<wfw:commentRss>http://iarenick.com/?feed=rss2&amp;p=21</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE6 is finally near its end</title>
		<link>http://iarenick.com/?p=17</link>
		<comments>http://iarenick.com/?p=17#comments</comments>
		<pubDate>Tue, 02 Feb 2010 23:59:54 +0000</pubDate>
		<dc:creator>Nick Searle</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[IE6]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://iarenick.com/?p=17</guid>
		<description><![CDATA[Google finally made the right decision in dropping support for IE6, beginning March 1, 2010. We need the big dogs to make the moves for us web developers, and this is what they are doing. IE6 has caused many problems and stress for the entire online development world. Let&#8217;s get rid of this horrible Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>Google finally made the right decision in dropping support for IE6, beginning March 1, 2010. We need the big dogs to make the moves for us web developers, and this is what they are doing. IE6 has caused many problems and stress for the entire online development world. Let&#8217;s get rid of this horrible Microsoft product!</p>
<p><a href="http://www.digitaltrends.com/computing/google-to-stop-supporting-internet-explorer-6/" target="_blank">http://www.digitaltrends.com/computing/google-to-stop-supporting-internet-explorer-6/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://iarenick.com/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pat Forde Says it Right</title>
		<link>http://iarenick.com/?p=10</link>
		<comments>http://iarenick.com/?p=10#comments</comments>
		<pubDate>Sat, 09 Jan 2010 20:55:54 +0000</pubDate>
		<dc:creator>Nick Searle</dc:creator>
				<category><![CDATA[Sports]]></category>
		<category><![CDATA[bcs]]></category>
		<category><![CDATA[boise state]]></category>
		<category><![CDATA[BSU]]></category>
		<category><![CDATA[cfb]]></category>
		<category><![CDATA[college football]]></category>

		<guid isPermaLink="false">http://iarenick.com/?p=10</guid>
		<description><![CDATA[This recent Pat Forde posting on ESPN.com has been flooding like wild fire through tweets and posts the last few days. To say the least, BSU deserves a fair shot at being ranked #1 in the 2010 pre-season rankings. But, in my honest opinion, returning 21 of it&#8217;s 22 starters from last year&#8217;s team and [...]]]></description>
			<content:encoded><![CDATA[<p>This recent Pat Forde posting on ESPN.com has been flooding like wild fire through tweets and posts the last few days. To say the least, BSU deserves a fair shot at being ranked #1 in the 2010 pre-season rankings. But, in my honest opinion, returning 21 of it&#8217;s 22 starters from last year&#8217;s team and grabbing it&#8217;s second Fiesta Bowl victory won&#8217;t be enough for BSU to earn a spot in the top 3 ranks. But thanks for a great article and believing in us Pat.</p>
<p><a title="No. 1 in 2010? It's a no-brainer" href="http://sports.espn.go.com/espn/columns/story?columnist=forde_pat&amp;id=4807492&amp;sportCat=ncf">http://sports.espn.go.com/espn/columns/story?columnist=forde_pat&amp;id=4807492&amp;sportCat=ncf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://iarenick.com/?feed=rss2&amp;p=10</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Boarding Passes</title>
		<link>http://iarenick.com/?p=5</link>
		<comments>http://iarenick.com/?p=5#comments</comments>
		<pubDate>Thu, 07 Jan 2010 02:39:48 +0000</pubDate>
		<dc:creator>Nick Searle</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[boarding passes]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://iarenick.com/?p=5</guid>
		<description><![CDATA[I came across an interesting article today that discussed why airport boarding passes are horribly designed. Loved the design ideas I came across and the links that were posted. Enjoy! http://passfail.squarespace.com/]]></description>
			<content:encoded><![CDATA[<p>I came across an interesting article today that discussed why airport boarding passes are horribly designed. Loved the design ideas I came across and the links that were posted. Enjoy!</p>
<p><a title="Redesigning the Boarding Pass" href="http://passfail.squarespace.com/">http://passfail.squarespace.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://iarenick.com/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back in Action</title>
		<link>http://iarenick.com/?p=4</link>
		<comments>http://iarenick.com/?p=4#comments</comments>
		<pubDate>Wed, 23 Dec 2009 02:17:54 +0000</pubDate>
		<dc:creator>Nick Searle</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://iarenick.com/?p=4</guid>
		<description><![CDATA[So, I&#8217;ve come to agreement with my inner self that it&#8217;s time to start blogging/writing/expressing my thoughts on a steady basis. It&#8217;s about damn time, huh? Well, keep tuned for some of my ramblings on sports, technology, music, advertising, and marketing.]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve come to agreement with my inner self that it&#8217;s time to start blogging/writing/expressing my thoughts on a steady basis. It&#8217;s about damn time, huh? Well, keep tuned for some of my ramblings on sports, technology, music, advertising, and marketing.</p>
]]></content:encoded>
			<wfw:commentRss>http://iarenick.com/?feed=rss2&amp;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
