<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>tell somebody • who cares</title>
	<atom:link href="http://tellsomebodywhocares.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tellsomebodywhocares.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 17 Sep 2006 21:42:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tellsomebodywhocares.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>tell somebody • who cares</title>
		<link>http://tellsomebodywhocares.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tellsomebodywhocares.wordpress.com/osd.xml" title="tell somebody • who cares" />
	<atom:link rel='hub' href='http://tellsomebodywhocares.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Returning a record count with ROW_NUMBER</title>
		<link>http://tellsomebodywhocares.wordpress.com/2006/09/17/returning-a-record-count-with-row_number/</link>
		<comments>http://tellsomebodywhocares.wordpress.com/2006/09/17/returning-a-record-count-with-row_number/#comments</comments>
		<pubDate>Sun, 17 Sep 2006 21:28:07 +0000</pubDate>
		<dc:creator>tellsomebodywhocares</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://tellsomebodywhocares.wordpress.com/2006/09/17/returning-a-record-count-with-row_number/</guid>
		<description><![CDATA[I&#8217;ve just used SQL Server 2005&#8242;s new ROW_NUMBER function for returning paged recordsets. Typically a query returns all the rows to ColdFusion (or your language of choice), and then paging is managed from that client. But this means that if you have 1000 rows, and are only displaying 25 at a time, you&#8217;re throwing away [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tellsomebodywhocares.wordpress.com&amp;blog=406039&amp;post=7&amp;subd=tellsomebodywhocares&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just used SQL Server 2005&#8242;s new ROW_NUMBER function for returning paged recordsets. Typically a query returns all the rows to ColdFusion (or your language of choice), and then paging is managed from that client. But this means that if you have 1000 rows, and are only displaying 25 at a time, you&#8217;re throwing away the other 975 each time, which is just plain wasteful. There are some methods for avoiding this using temporary tables etc., but personally I had never bothered.</p>
<p>However, being wasteful is bad, so in the interests of saving dolphins and all other good things, I decided to give it a go (wow, <a href="http://tellsomebodywhocares.wordpress.com/2006/09/12/ajaxselect/" title="AjaxSelect">Ajax</a> last week, ROW_NUMBER this week!). Everything was quite simple, with more than enough helpful examples found through Google. That was, until I realised that there&#8217;s no way to identify the total number of records available. I like to show something like &#8220;Showing records 11 &#8211; 20 of 57&#8243;, but using ROW_NUMBER only returns the actual number of rows, eg. 10 in this example.</p>
<p>The most common solution was to create a stored procedure encapsulating the query, which then includes an OUTPUT variable assigned using something like &#8221;SELECT COUNT(*) FROM&#8230;&#8221;. I didn&#8217;t like this solution because if I have a huge complicated query, I have to write it out twice (and potentially edit it twice each time I make a change). Plus I&#8217;m sure that this doubles the workload on SQL, since it&#8217;s essentially running the same query twice.</p>
<p>I fiddled a bit with CTEs, and found a solution which works quite nicely.</p>
<p style="font-size:8pt;font-family:Courier New;">WITH List AS (<br />
SELECT ROW_NUMBER() OVER (ORDER BY ClientName ASC) AS Row, ClientID, ClientName<br />
FROM Clients<br />
),<br />
ListRecordCount AS (<br />
SELECT *<br />
FROM List, (SELECT MAX(Row) AS RecordCount FROM List) AS RC<br />
)<br />
SELECT *<br />
FROM ListRecordCount<br />
WHERE Row &gt; 10 AND Row &lt;= 20</p>
<p>As you can see, the record count is joined as a new column to each row of the existing query. So just read the &#8220;RecordCount&#8221; column from any row of the results, and you have your solution. I&#8217;m not much of a SQL expert, so I can&#8217;t say for sure that I haven&#8217;t committed some SQL sin, but I would guess that since the query only runs a single time, it must be more efficient than other solutions I have seen. At the very least I don&#8217;t have to write a stored procedure for every query, and I only have to edit it in 1 place.</p>
<p>.::S::.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tellsomebodywhocares.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tellsomebodywhocares.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tellsomebodywhocares.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tellsomebodywhocares.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tellsomebodywhocares.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tellsomebodywhocares.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tellsomebodywhocares.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tellsomebodywhocares.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tellsomebodywhocares.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tellsomebodywhocares.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tellsomebodywhocares.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tellsomebodywhocares.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tellsomebodywhocares.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tellsomebodywhocares.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tellsomebodywhocares.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tellsomebodywhocares.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tellsomebodywhocares.wordpress.com&amp;blog=406039&amp;post=7&amp;subd=tellsomebodywhocares&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tellsomebodywhocares.wordpress.com/2006/09/17/returning-a-record-count-with-row_number/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1c2b7cc7e8d1575bf7685c821663969c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">who cares</media:title>
		</media:content>
	</item>
		<item>
		<title>AjaxSelect</title>
		<link>http://tellsomebodywhocares.wordpress.com/2006/09/12/ajaxselect/</link>
		<comments>http://tellsomebodywhocares.wordpress.com/2006/09/12/ajaxselect/#comments</comments>
		<pubDate>Tue, 12 Sep 2006 23:54:50 +0000</pubDate>
		<dc:creator>tellsomebodywhocares</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://tellsomebodywhocares.wordpress.com/2006/09/12/ajaxselect/</guid>
		<description><![CDATA[For a few years now I have been using the ColdFusion ActiveSelect custom tag for dynamically populating drop down boxes. ActiveSelect loads all the options as a wddx object in the JavaScript of the page, and then builds up the options as required. The only problem is that as the size of the select boxes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tellsomebodywhocares.wordpress.com&amp;blog=406039&amp;post=6&amp;subd=tellsomebodywhocares&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For a few years now I have been using the ColdFusion ActiveSelect custom tag for dynamically populating drop down boxes. ActiveSelect loads all the options as a wddx object in the JavaScript of the page, and then builds up the options as required. The only problem is that as the size of the select boxes increase, so too does the initial page download, because every possible option needs to be catered for. For some of my pages, this has gradually increased the page size to 700K.</p>
<p>So with all the hype about Ajax, and the fact that I&#8217;ve been itching to find the time to give it a go (yes, I know it&#8217;s been around for ages, I&#8217;ve been busy), I thought it was about time to figure it out. I had a quick look at a few different ColdFusion AJAX implementations, and chose <a target="_blank" href="http://www.lalabird.com/">JSMX</a> - mostly because it looked the simplest and I could actually understand the implementation after reading through it once.</p>
<p>I used the ActiveSelect framework as a foundation, which will reduce code change as I migrate. I&#8217;ve only got my version up on a single test page so far, but it looks like it&#8217;s working quite nicely. I&#8217;m looking forward to gettting my feet more into the whole Ajax thing, but I&#8217;m busy with a huge &#8221;re-factoring&#8221; project at the moment, and I&#8217;ll only get around to play with the interface later this year, or beginning of next year.</p>
<p>I&#8217;ve zipped up the code I used in case anybody else is looking for a ColdFusion component / custom tag to dynamically fill drop down boxes. I tried to find something similar at first so that I wouldn&#8217;t need to do it myself, but couldn&#8217;t, so perhaps this will help someone else out. It&#8217;s version 0.0.0.1, so I&#8217;m not responsible for anything that goes wrong. I&#8217;ve called it AjaxSelect until somebody sues me for stealing their name. You&#8217;ll need to customise it to get it working in your environment, but it should be a start. And if you think I code badly&#8230; &#8221;tell somebody • who cares&#8221; :)</p>
<p>.::S::.</p>
<p>PS&#8230; doesn&#8217;t look like I can upload while I&#8217;m not hosting with my own provider, so I&#8217;ll find a place to host it later. Who knows, maybe I&#8217;ll be up to version 0.0.0.2 by then!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tellsomebodywhocares.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tellsomebodywhocares.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tellsomebodywhocares.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tellsomebodywhocares.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tellsomebodywhocares.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tellsomebodywhocares.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tellsomebodywhocares.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tellsomebodywhocares.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tellsomebodywhocares.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tellsomebodywhocares.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tellsomebodywhocares.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tellsomebodywhocares.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tellsomebodywhocares.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tellsomebodywhocares.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tellsomebodywhocares.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tellsomebodywhocares.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tellsomebodywhocares.wordpress.com&amp;blog=406039&amp;post=6&amp;subd=tellsomebodywhocares&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tellsomebodywhocares.wordpress.com/2006/09/12/ajaxselect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1c2b7cc7e8d1575bf7685c821663969c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">who cares</media:title>
		</media:content>
	</item>
		<item>
		<title>Observations and irritations</title>
		<link>http://tellsomebodywhocares.wordpress.com/2006/09/12/observations-and-irritations/</link>
		<comments>http://tellsomebodywhocares.wordpress.com/2006/09/12/observations-and-irritations/#comments</comments>
		<pubDate>Tue, 12 Sep 2006 20:52:46 +0000</pubDate>
		<dc:creator>tellsomebodywhocares</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://tellsomebodywhocares.wordpress.com/2006/09/12/observations-and-irritations/</guid>
		<description><![CDATA[Maybe I&#8217;m just a miserable sod, but I have a long list of things that irritate me. I&#8217;m sure I&#8217;ll work my way through the list as time passes, but the most recent incident was on the way home today when someone decided to use their windscreen washers while driving in front of me. Typically [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tellsomebodywhocares.wordpress.com&amp;blog=406039&amp;post=5&amp;subd=tellsomebodywhocares&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Maybe I&#8217;m just a miserable sod, but I have a long list of things that irritate me. I&#8217;m sure I&#8217;ll work my way through the list as time passes, but the most recent incident was on the way home today when someone decided to use their windscreen washers while driving in front of me.</p>
<p>Typically on the way to work in the morning or back home at night, with the sun sitting quite low and shining through their windscreens, people are blinded by the glare of dust and dirt on their windscreens that has accumulated in the 3 months since they last washed their car. So with me driving behind them, they decide it would be a good time to use their windscreen wipers. Of course, the water and dirt from their windscreens must go somewhere, and since they aren&#8217;t standing still, it is propelled over their car&#8230; directly into the windscreen of my car, that is actually clean&#8230; well, it was, until then.</p>
<p>On a similar subject is people that water their garden, leaving the sprinkler on for 4 hours until they have flooded the entire street. Driving through the muddy water produces a nice spray of dirt all of the sides of the car. If you&#8217;re really lucky, you&#8217;ll have somebody in front of you who races through the water, spraying a muddy mist all over the front of the car. And when you hit the jackpot, a truck will come past in the opposite direction and catch any spots that have been missed so far. I&#8217;m tempted to knock on the door of the garden&#8217;s owner, and make them clean my car again. Or at the very least take a swipe at their head with a baseball bat. Maybe spend an hour lecturing them about droughts in Africa or something.</p>
<p>Enough bitching. I&#8217;ve been noticing something quite clever and long overdue. One of those things that when you see it for the first time you wonder why they haven&#8217;t been doing it for years already (well they probably have in the rest of the world, we&#8217;re always a couple of years behind schedule here in South Africa). It&#8217;s LEDs for traffic lights. They&#8217;re much brighter, and I&#8217;m sure the biggest advantage is that they don&#8217;t burn out. Plus if one LED dies, there are a couple of hundred others that carry on working. All the fancy new cars like BMW etc have been using them as brake lights for a while, so somebody was bound to think of it sooner or later.</p>
<p>.::S::.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tellsomebodywhocares.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tellsomebodywhocares.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tellsomebodywhocares.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tellsomebodywhocares.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tellsomebodywhocares.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tellsomebodywhocares.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tellsomebodywhocares.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tellsomebodywhocares.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tellsomebodywhocares.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tellsomebodywhocares.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tellsomebodywhocares.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tellsomebodywhocares.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tellsomebodywhocares.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tellsomebodywhocares.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tellsomebodywhocares.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tellsomebodywhocares.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tellsomebodywhocares.wordpress.com&amp;blog=406039&amp;post=5&amp;subd=tellsomebodywhocares&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tellsomebodywhocares.wordpress.com/2006/09/12/observations-and-irritations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1c2b7cc7e8d1575bf7685c821663969c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">who cares</media:title>
		</media:content>
	</item>
		<item>
		<title>Is anybody listening?</title>
		<link>http://tellsomebodywhocares.wordpress.com/2006/09/09/is-anybody-listening/</link>
		<comments>http://tellsomebodywhocares.wordpress.com/2006/09/09/is-anybody-listening/#comments</comments>
		<pubDate>Sat, 09 Sep 2006 21:39:33 +0000</pubDate>
		<dc:creator>tellsomebodywhocares</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://tellsomebodywhocares.wordpress.com/2006/09/09/is-anybody-listening/</guid>
		<description><![CDATA[I&#8217;ve been pondering writing a blog for ages now. The only thing putting me off was whether I&#8217;d ever have time to update it. So I&#8217;m warning you in advance, postings may be sparse. Also, there&#8217;s something egotistical about capturing random thoughts and expecting anybody else to be interested enough to read them. Nevertheless, I often [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tellsomebodywhocares.wordpress.com&amp;blog=406039&amp;post=3&amp;subd=tellsomebodywhocares&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been pondering writing a blog for ages now. The only thing putting me off was whether I&#8217;d ever have time to update it. So I&#8217;m warning you in advance, postings may be sparse.</p>
<p>Also, there&#8217;s something egotistical about capturing random thoughts and expecting anybody else to be interested enough to read them. Nevertheless, I often find myself wanting to tell people things, so I thought I might as well give it a go. Consider it cheap therapy and a bit of self-indulgence.</p>
<p>.::S::.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tellsomebodywhocares.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tellsomebodywhocares.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tellsomebodywhocares.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tellsomebodywhocares.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tellsomebodywhocares.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tellsomebodywhocares.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tellsomebodywhocares.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tellsomebodywhocares.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tellsomebodywhocares.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tellsomebodywhocares.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tellsomebodywhocares.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tellsomebodywhocares.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tellsomebodywhocares.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tellsomebodywhocares.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tellsomebodywhocares.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tellsomebodywhocares.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tellsomebodywhocares.wordpress.com&amp;blog=406039&amp;post=3&amp;subd=tellsomebodywhocares&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tellsomebodywhocares.wordpress.com/2006/09/09/is-anybody-listening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1c2b7cc7e8d1575bf7685c821663969c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">who cares</media:title>
		</media:content>
	</item>
	</channel>
</rss>
