<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>scollins.org</title>
	
	<link>http://scollins.org</link>
	<description>The Online Home of Stephen Collins</description>
	<pubDate>Fri, 18 Apr 2008 15:03:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/scollins" type="application/rss+xml" /><item>
		<title>The not so simple SQL Statements</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/272941919/</link>
		<comments>http://scollins.org/2008/04/the-not-so-simple-sql-statements/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 15:02:24 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[ASP]]></category>

		<category><![CDATA[CEG]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://scollins.org/?p=124</guid>
		<description><![CDATA[Who would have thought that returning some records would become an all day ordeal. I guess if I had completely thought it through, I might have seen the roadblocks to come, but that&#8217;s not how the day went.
All I wanted to have was a drop down box that when the option was changed to a [...]]]></description>
			<content:encoded><![CDATA[<p>Who would have thought that returning some records would become an all day ordeal. I guess if I had completely thought it through, I might have seen the roadblocks to come, but that&#8217;s not how the day went.</p>
<p>All I wanted to have was a drop down box that when the option was changed to a particular kind of equipment, it would bring back (through some AJAX-y goodness) the last 10 pieces of equipment in that category.</p>
<p>I was only working on the functionality of it at this point. The look and wording of it will change before it gets on the site.</p>
<p>After a few minutes I had it working. Not to difficult. Using AJAX to dynamically change the page on an &#8216;onChange&#8217; event with the drop down box brought back the last 10 pieces of equipment.</p>
<p>It worked, but on closer examination I saw a problem. Since equipment in our database is uploaded in bulk, the last 10 machines are always from the same company, sometimes even 10 of the same model with slightly different specs. What I decided I really wanted was the last 10 machines from 10 different companies.</p>
<p>And THAT is harder than it sounds. For several reasons &#8216;Select DISTINCT&#8217; can not be used and I hunted around the internet for a while and could find nothing that would help me they way I wanted. I was finally able to consult with our company&#8217;s sometimes hanging around .NET programmer (I hate .NET) and he recommended the &#8216;UNION&#8217; function of SQL.</p>
<p>This sounded like a duct tape solution if I ever heard of one, but it does work.</p>
<p>This works by getting a list of the last 10 companies to update in the category you are working with. Then do a series of &#8216;Select TOP 1 *&#8217; statements for each company that you then &#8216;UNION&#8217; together to make the results look like one statement.</p>
<p>For example&#8230;</p>
<p><code>Select Top 1 {COL} from {TABLE} where company = {FIRST COMPANY} UNION Select Top 1 {COL} from {TABLE} where company = {SECOND COMPANY} UNION</code></p>
<p>And so on. You need to keep count of your UNIONS thought, because when you get to the 10th company, you don&#8217;t want to end your statement with &#8216;UNION&#8217; because it will error out. So you pull out the good old</p>
<p><code>i = 0<br />
i = i +1<br />
While i &lt; 10<br />
</code></p>
<p>We&#8217;ve all  used some for of that code block no matter what language you are using to program, but it ended up not working here. It turns out that for some pieces of equipment, the items are so industry specific that there aren&#8217;t 10 different dealers. That means that the code errors out before the end of the SQL statement because there is nothing left to select.</p>
<p>So what needs to be done here is something along these lines&#8230;.</p>
<p><code>SQL = 'Select TOP 1 {COL} from {TABLE} where company = {RECORDSET.COMPANY}'</code></p>
<p><code>while not </code><code>RECORDSET.</code><code>EOF<br />
SQL = SQL &amp; ' UNION '<br />
SQL = SQL &amp; 'Select TOP 1 {COL} from {TABLE} where company = {RECORDSET.COMPANY}'<br />
</code><code>RECORDSET</code><code>.MOVENEXT<br />
WEND</code></p>
<p>What happens here is that the SQL Statement is fired and then it checks to see if there are anymore companies. If so, it adds the UNION tag and the next SQL Select. When there are no more companies to bring equipment back from, it ends the statement and there is no error.</p>
<p>Since RECORDSET.COMPANY should be the last 10 companies that updated, the Select statement won&#8217;t bring back more than 10 records before it gets to the end.</p>
<p>Of course, that couldn&#8217;t be the final problem. Apparently, there are a lot of apostrophe&#8217;s in the company names, so it took a few minutes to figure out how to get the REPLACE function to work in this situation, but that wasn&#8217;t that big of a deal.</p>
<p>Here is a link to the working version of my code.</p>
<p><a href="http://www.constructionequipmentguide.com/ajax.asp">http://www.constructionequipmentguide.com/ajax.asp</a></p>
<p>When I get back to work, I will flesh this out with more accurate code descriptions<br />
.</p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/04/the-not-so-simple-sql-statements/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/04/the-not-so-simple-sql-statements/</feedburner:origLink></item>
		<item>
		<title>2008 == 1999</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/270739455/</link>
		<comments>http://scollins.org/2008/04/2008-1999/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 14:21:57 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<category><![CDATA[ASP]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://scollins.org/?p=123</guid>
		<description><![CDATA[At least for me it does.
1999 was the year my company finally realized it needed to be on the web in some way. I had started to suggest the idea to them in 1996 and they put up a cursory contact information page in 1998, but it wasn&#8217;t until &#8216;99 that they decided to actually [...]]]></description>
			<content:encoded><![CDATA[<p>At least for me it does.</p>
<p>1999 was the year my company finally realized it needed to be on the web in some way. I had started to suggest the idea to them in 1996 and they put up a cursory contact information page in 1998, but it wasn&#8217;t until &#8216;99 that they decided to actually try and create a presence. </p>
<p>I mean, who was I that they would listen to anyway. I was a graphic designer and had been here for less than a year, and the web was still so unknown to to most people and companies.</p>
<p>But &#8216;99 changed all that and we solicited bids from &#8216;Web Development Companies&#8217;. Companies that would handle all aspects of the design from graphics creation, HTML page building and any backend programming that needed to be done.</p>
<p>What we had decided we wanted was to put our newspaper online. We needed an editorial section that would hold that days stories and an archive, and a used equipment section that would consist of a search engine for the equipment and detail pages for each machine.</p>
<p>Well, we ended up with several bids that went from 13,000 all the way up to 100,000 and my company was not prepared for these numbers to say the least.</p>
<p>So I took my shot. I told them I could do it, and they actually believed me.</p>
<p>I still remember the call from my boss over the weekend asking if I thought I would really be able to handle it and I said of course I could (Not mentioning that I had never built a page in my life), and he said that when I came in on Monday, I was no longer to work on the publication, and that my full time job was going to be creating the website. </p>
<p>They did contract the cheapest of the companies to do some backend programming and with them we launched the site in early 2000, and it was probably the busiest, most stressful time of career to that point. But I loved it.</p>
<p>With the exception of one piece of VB Script that I still use, I had re-written all of the code myself within the next 2 or 3 years, and continually updated the look, changed and added features as needed and rolled out updates on a daily or weekly basis for the next 8 years.</p>
<p>But now its happening again. It&#8217;s time for us to move forward and re-build from the ground up, and I&#8217;m getting that feeling again. I stressed and REALLY busy. It&#8217;s time to add things to the site that I have never built before.</p>
<p>I have been asked to stop the incremental updates to the site. To be honest I have been asked to stop doing anything to the site, and now have a month and a half to deliver the look and basic functionality of a new website and 5 other web related products. Including new admin sections, newsletters, and a video library that can do everything that a service like Brightcove can do, but built in house by me.</p>
<p>And then I have another month or so after to make it all work.</p>
<p>It will still be an ASP/SQL site. I hate .NET and moving to PHP/MySQL isn&#8217;t in the cards. Although I do have a PHP version of the site that mirrors the functionality of the active site. I&#8217;m sure it&#8217;s because of my knowledge of ASP vs PHP, but I can&#8217;t get the PHP site to work as fast or as well as the ASP version.</p>
<p>It will of course try to be standards based, having tables only where necessary, and I will use this as an opportunity to add some AJAX-y goodness to the site where appropriate. </p>
<p>And Flash, with the video comes a lot of Flash. We shall see how that goes, but it will be interesting and I&#8217;ll report on it here.</p>
<p>After 12 years of the same company, this could be exactly what the complacent designer needs to get in gear.</p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/04/2008-1999/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/04/2008-1999/</feedburner:origLink></item>
		<item>
		<title>SXSW Interactive Panels</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/249944187/</link>
		<comments>http://scollins.org/2008/03/sxsw-interactive-panels/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 05:56:48 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Interests]]></category>

		<category><![CDATA[Work]]></category>

		<category><![CDATA[Austin]]></category>

		<category><![CDATA[Opinion]]></category>

		<category><![CDATA[SXSW]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://scollins.org/2008/03/sxsw-interactive-panels/</guid>
		<description><![CDATA[Maybe it&#8217;s me, and I think I&#8217;ll post more about the &#8216;South By&#8217; Interactive panels during daylight and better thinking hours, but why does it seem to me that the best panels - meaning the most focused and prepared - are usually run by Brits?
Am I way off here?
]]></description>
			<content:encoded><![CDATA[<p>Maybe it&#8217;s me, and I think I&#8217;ll post more about the &#8216;South By&#8217; Interactive panels during daylight and better thinking hours, but why does it seem to me that the best panels - meaning the most focused and prepared - are usually run by Brits?</p>
<p>Am I way off here?</p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/03/sxsw-interactive-panels/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/03/sxsw-interactive-panels/</feedburner:origLink></item>
		<item>
		<title>Humboldt County - SXSW Movie Premiere</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/249942909/</link>
		<comments>http://scollins.org/2008/03/humboldt-county-sxsw-movie-premiere/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 05:54:11 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Interests]]></category>

		<category><![CDATA[MotionDefined]]></category>

		<category><![CDATA[Movies]]></category>

		<guid isPermaLink="false">http://scollins.org/2008/03/humboldt-county-sxsw-movie-premiere/</guid>
		<description><![CDATA[Just got back from another SXSW movie premiere and posted a review for everyone.
Humboldt County Review
]]></description>
			<content:encoded><![CDATA[<p>Just got back from another SXSW movie premiere and posted a review for everyone.</p>
<p><a href="http://www.motiondefined.com/?/reviews/movie/humboldt_county_sxsw_premiere/">Humboldt County Review</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/03/humboldt-county-sxsw-movie-premiere/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/03/humboldt-county-sxsw-movie-premiere/</feedburner:origLink></item>
		<item>
		<title>Then She Found Me, Helen Hunt’s directorial debut</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/248542237/</link>
		<comments>http://scollins.org/2008/03/then-she-found-me-helen-hunts-directorial-debut/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 22:39:51 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Interests]]></category>

		<category><![CDATA[Movies]]></category>

		<category><![CDATA[SXSW]]></category>

		<guid isPermaLink="false">http://scollins.org/2008/03/then-she-found-me-helen-hunts-directorial-debut/</guid>
		<description><![CDATA[Another write up from SXSW. This time it's Helen Hunt's directorial debut with Then She Found Me, over at the review site.]]></description>
			<content:encoded><![CDATA[<p>Another write up from SXSW. This time it&#8217;s Helen Hunt&#8217;s directorial debut with Then She Found Me, over at the review site.</p>
<p><a href="http://www.motiondefined.com/?/reviews/movie/then_she_found_me_sxsw_premiere/">Then She Found Me review.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/03/then-she-found-me-helen-hunts-directorial-debut/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/03/then-she-found-me-helen-hunts-directorial-debut/</feedburner:origLink></item>
		<item>
		<title>Harold and Kumar</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/248224780/</link>
		<comments>http://scollins.org/2008/03/harlod-and-kumar/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 06:51:55 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Interests]]></category>

		<category><![CDATA[Austin]]></category>

		<category><![CDATA[MotionDefined]]></category>

		<category><![CDATA[Movies]]></category>

		<category><![CDATA[SXSW]]></category>

		<guid isPermaLink="false">http://scollins.org/2008/03/harlod-and-kumar/</guid>
		<description><![CDATA[Just saw the world premiere of Harold and Kumar at SXSW at put together a little review that can be found here.

Was Neil Patrick Harris drunk at the premiere?]]></description>
			<content:encoded><![CDATA[<p>Just saw the world premiere of Harold and Kumar at SXSW at put together a little review that can be found <a href="http://www.motiondefined.com/?/reviews/movie/harold_and_kumar_escape_from_guantanamo_bay/">here</a>.</p>
<p>Was Neil Patrick Harris drunk at the premiere?</p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/03/harlod-and-kumar/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/03/harlod-and-kumar/</feedburner:origLink></item>
		<item>
		<title>Steve Jobs</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/246154270/</link>
		<comments>http://scollins.org/2008/03/steve-jobs/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 14:40:12 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Interests]]></category>

		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Fortune]]></category>

		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://scollins.org/2008/03/steve-jobs/</guid>
		<description><![CDATA[A long and pretty thorough profile of Steve Jobs in Fortune Magazine, right now.]]></description>
			<content:encoded><![CDATA[<p>A long and pretty thorough <a href="http://money.cnn.com/2008/03/02/news/companies/elkind_jobs.fortune/index.htm">profile of Steve Jobs in Fortune Magazine</a>, right now.</p>
<p>When you are written about as much as Steve Jobs is, you can&#8217;t help but rehash some information, but it was a good read never the less.</p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/03/steve-jobs/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/03/steve-jobs/</feedburner:origLink></item>
		<item>
		<title>Dynamic Columns When You Don’t Know How Many Entries There Are in ASP</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/242841244/</link>
		<comments>http://scollins.org/2008/02/dynamic-columns-when-you-dont-know-how-many-entries-there-are-in-asp/#comments</comments>
		<pubDate>Thu, 28 Feb 2008 17:53:14 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<category><![CDATA[ASP]]></category>

		<category><![CDATA[Code]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://scollins.org/2008/02/dynamic-columns-when-you-dont-know-how-many-entries-there-are-in-asp/</guid>
		<description><![CDATA[Here is a small bit of code, using the ASP 'mod' function to help you dynamically create a new row or column.]]></description>
			<content:encoded><![CDATA[<p>Here is a small bit of code, using the ASP &#8216;mod&#8217; function to help you dynamically create a new row or column.</p>
<p>The &#8216;mod&#8217; function is best explained as the remainder of a division problem. 28/9 = 3 Remainder of 1 or put another way 28/9 = 3 with a &#8216;mod&#8217; of 1.</p>
<p>Using that information, we can tell our code to do something different when it hits a certain record in the database. For example, if you are populating a table, and you don&#8217;t know how many records are currently in the database, you might use the &#8216;mod&#8217; function to create a new row automatically after every 5 records.</p>
<p>Say we have a list of companies that we want to present in columns, but at any one moment I don&#8217;t know how many records are in the database, but I do know that I don&#8217;t want to have a column be more than 10 companies deep.</p>
<p>Here is how we might tackle that problem.</p>
<pre>&lt;table id="companies"&gt;
&lt;tr&gt;&lt;td&gt;</pre>
<pre>&lt;%
i = 1</pre>
<pre>do until rs.eof
cellString = "&lt;p&gt;" &amp; rs("Company") &amp; "&lt;/p&gt;"</pre>
<pre>if not i mod 10 = 0 then
response.write(cellString)
else
response.write(cellString)%&gt; &lt;/td&gt;&lt;td&gt; &lt;%
end if</pre>
<pre>i = i + 1</pre>
<pre>rs.movenext
loop</pre>
<pre>%&gt;</pre>
<pre>&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</pre>
<p>What is happening in the code is that we are initially setting i = 1 and then outputting the first company name in a &lt;p&gt; tag. We then loop through the code and add 1 to i  before each new loop until we get to the 10th record, because only at the 10th record does the remainder or &#8216;mod&#8217; = 0.</p>
<p>And then at that point, we insert the company&#8217;s name but we also drop in &lt;/td&gt;&lt;td&gt; to close the current cell and start a new one, in effect creating a new column.</p>
<p>You will note that the opening and closing &lt;td&gt; tags need to be outside of the code or your table format will be all screwed up.</p>
<p>And you can easily change the number of rows in your column by changing mod = 10 to how ever many rows you would like. ie. mod = 20, mod = 30. Other ways to use &#8216;mod&#8217; with minor changes to the above code would be to create new rows when needed, or using &#8216;mod&#8217; to see if you are in an even or odd numbered row to possibly alternate the colors of rows.</p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/02/dynamic-columns-when-you-dont-know-how-many-entries-there-are-in-asp/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/02/dynamic-columns-when-you-dont-know-how-many-entries-there-are-in-asp/</feedburner:origLink></item>
		<item>
		<title>This Week In Photography - TWIP</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/242132414/</link>
		<comments>http://scollins.org/2008/02/this-week-in-photography-twip/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 14:48:53 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Interests]]></category>

		<category><![CDATA[Flickr]]></category>

		<category><![CDATA[Pictures]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://scollins.org/2008/02/this-week-in-photography-twip/</guid>
		<description><![CDATA[Just want to point out a new web site / podcast that has become required listening for me in the last few weeks since I found it.
This Week in Photography
I first found out about the show on the MacBreak Weekly podcast and couldn&#8217;t recommend it more. It has rekindled my photography bug and prompted me [...]]]></description>
			<content:encoded><![CDATA[<p>Just want to point out a new web site / podcast that has become required listening for me in the last few weeks since I found it.</p>
<p><a href="http://www.twipphoto.com/">This Week in Photography</a></p>
<p>I first found out about the show on the MacBreak Weekly podcast and couldn&#8217;t recommend it more. It has rekindled my photography bug and prompted me to join the <a href="http://www.flickr.com/groups/twip/">TWIP Flickr group</a> to promote more interaction.</p>
<p>So, check it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/02/this-week-in-photography-twip/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/02/this-week-in-photography-twip/</feedburner:origLink></item>
		<item>
		<title>IE is kicking my ass today - Big news site redesign</title>
		<link>http://feeds.feedburner.com/~r/scollins/~3/238451294/</link>
		<comments>http://scollins.org/2008/02/ie-is-kicking-my-ass-today-big-news-site-redesign/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 23:28:44 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
		
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://scollins.org/2008/02/ie-is-kicking-my-ass-today-big-news-site-redesign/</guid>
		<description><![CDATA[For some reason I ran into a lot of problems with IE7 on this today, and I was hoping I could get a few comments from around the web.
This is what we have now&#8230;
http://www.cegltd.com/ 
and this is where I have started to go with it&#8230;
http://www.cegltd.com/new_front.asp 
Yeah, we are still working in ASP. I actually wrote a PHP [...]]]></description>
			<content:encoded><![CDATA[<p>For some reason I ran into a lot of problems with IE7 on this today, and I was hoping I could get a few comments from around the web.</p>
<p>This is what we have now&#8230;</p>
<p><a href="http://www.cegltd.com/" target="_blank">http://www.cegltd.com/ </a></p>
<p>and this is where I have started to go with it&#8230;</p>
<p><a href="http://www.cegltd.com/new_front.asp" target="_blank">http://www.cegltd.com/new_front.asp </a></p>
<p>Yeah, we are still working in ASP. I actually wrote a PHP version of the page, but the dynamic image resizing was horrendous. You can <a href="http://www.cegltd.com/test.php">take a look here</a> if you like.</p>
<p>I realize my proficiency in ASP is much greater but thats a huge load time difference.</p>
<p>If anyone has any comments or notices any problems - please - let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://scollins.org/2008/02/ie-is-kicking-my-ass-today-big-news-site-redesign/feed/</wfw:commentRss>
		<feedburner:origLink>http://scollins.org/2008/02/ie-is-kicking-my-ass-today-big-news-site-redesign/</feedburner:origLink></item>
	<feedburner:awareness>http://api.feedburner.com/awareness/1.0/GetFeedData?uri=scollins</feedburner:awareness></channel>
</rss>
