<?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>NINNYPANTS</title>
	<atom:link href="http://ninnypants.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ninnypants.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 02 Feb 2012 01:32:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>404 Issues with WP Rewrite</title>
		<link>http://ninnypants.com/blog/2011/10/31/404-issues-with-wp-rewrite/</link>
		<comments>http://ninnypants.com/blog/2011/10/31/404-issues-with-wp-rewrite/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 17:00:08 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP Rewrite]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=987</guid>
		<description><![CDATA[The last couple days I&#8217;ve struggled with adding custom rewrite rules to WordPress so that a user can edit settings for their account on the front end. The code and methods are straight forward enough and can be found on the codex page. But I was running into an issue where when I went to [...]]]></description>
			<content:encoded><![CDATA[<p>The last couple days I&#8217;ve struggled with adding custom rewrite rules to WordPress so that a user can edit settings for their account on the front end. The code and methods are straight forward enough and can be found on the <a href="http://codex.wordpress.org/Function_Reference/WP_Rewrite">codex page</a>. But I was running into an issue where when I went to the edit page and passed a custom parameter it would throw a 404 error. I dug through all the filters I could find having to do with query vars and every time I output the query vars I would see page_id=0 which was causing the 404. I could figure out why that variable was being set to 0. After hours of digging I was finally looking through the source of the WP class and found it calling a function called <a href="http://codex.wordpress.org/Function_Reference/get_page_by_path">get_page_by_path</a>on the codex page I noticed that when it was called for a sub page the value would be passed in like so:</p><pre class="crayon-plain-tag"><code>get_page_by_path('parent-page/sub-page');</code></pre><p>The issue was that I was passing just the sub page page name in with my request.</p><pre class="crayon-plain-tag"><code>function gcc_insert_rewrite_rules( $rules ){
	$newrules = array();
	$newrules['my-account/(edit-location)/(.*)/?$'] = 'index.php?post_type=page&amp;amp;pagename=$matches[1]&amp;amp;location_name=$matches[2]';
	return $newrules + $rules;
}</code></pre><p>A simple change in the regular expression was all that was needed to get the correct page and stop the 404.</p><pre class="crayon-plain-tag"><code>function gcc_insert_rewrite_rules( $rules ){
	$newrules = array();
	$newrules['(my-account/edit-location)/(.*)/?$'] = 'index.php?post_type=page&amp;amp;pagename=$matches[1]&amp;amp;location_name=$matches[2]';
	return $newrules + $rules;
}</code></pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/10/31/404-issues-with-wp-rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://ninnypants.com/blog/2011/08/07/976/</link>
		<comments>http://ninnypants.com/blog/2011/08/07/976/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 04:32:30 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[Quote]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=976</guid>
		<description><![CDATA[People never realize just how important a dog is until it&#8217;s too late. In life we get yelled at and cursed and kicked around, but when we&#8217;re gone, people wish they had us back.Hank the Cowdog]]></description>
			<content:encoded><![CDATA[<blockquote><p>People never realize just how important a dog is until it&#8217;s too late. In life we get yelled at and cursed and kicked around, but when we&#8217;re gone, people wish they had us back.<cite>Hank the Cowdog</cite></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/08/07/976/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detect Timthumb</title>
		<link>http://ninnypants.com/blog/2011/08/04/detect-timthumb/</link>
		<comments>http://ninnypants.com/blog/2011/08/04/detect-timthumb/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 02:39:55 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[timthumb]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[zero-day]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=965</guid>
		<description><![CDATA[There was recently a scare over a zero day vulnerability it timthumb timthumb pushed a fix out right away. I&#8217;ve seen people posting saying they didn&#8217;t know where to look for timthumb.php or if their themes used it so I threw together a quick plugin to find references to timthumb in your WordPress install. The [...]]]></description>
			<content:encoded><![CDATA[<p>There was recently a scare over a <a href="http://markmaunder.com/2011/zero-day-vulnerability-in-many-wordpress-themes/">zero day vulnerability it timthumb </a>timthumb pushed a fix out right away. I&#8217;ve seen people posting saying they didn&#8217;t know where to look for timthumb.php or if their themes used it so I threw together a quick plugin to find references to timthumb in your WordPress install.</p>
<p>The Detect Plugin page will be blank if timthumb is not detected anywhere in your themes or plugins.</p>
<p>Download: <a href="http://ninnypants.com/blog/2011/08/04/detect-timthumb/detect-timthumb/" rel="attachment wp-att-966">detect-timthumb</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/08/04/detect-timthumb/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Red</title>
		<link>http://ninnypants.com/blog/2011/07/19/red/</link>
		<comments>http://ninnypants.com/blog/2011/07/19/red/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 02:25:21 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[Daily Photo]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=957</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://ninnypants.com/2011/07/red/dsc_0106/" rel="attachment wp-att-958"><img class="alignnone size-medium wp-image-958" title="DSC_0106" src="http://ninnypants.com/wp-content/uploads/2011/07/DSC_0106-600x739.jpg" alt="" width="600" height="739" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/07/19/red/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You are not running out of time</title>
		<link>http://ninnypants.com/blog/2011/07/18/you-are-not-running-out-of-time/</link>
		<comments>http://ninnypants.com/blog/2011/07/18/you-are-not-running-out-of-time/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 01:15:35 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=953</guid>
		<description><![CDATA[These questions are also why comparisons don’t really make any sense. Julius Caesar was weeping for all the wrong reasons. Alexander and he had different visions, they were looking to build different things in different times. Similarly, it was meaningless for my 17-year-old self to measure myself against a very different person’s desires at a [...]]]></description>
			<content:encoded><![CDATA[<blockquote class="unst"><p>These questions are also why comparisons don’t really make any sense. Julius Caesar was weeping for all the wrong reasons. Alexander and he had different visions, they were looking to build different things in different times. Similarly, it was meaningless for my 17-year-old self to measure myself against a very different person’s desires at a completely different time and place. In doing so, I was denying my own dreams, and trying to live someone else’s – and that too, dreams I imagined that person to have, without knowing what their dreams really were. Maybe all Bill Gates was trying to do at 17 was impress his high school crush. Maybe Alexander was trying to live up to the dreams of his father. The reality is that nobody will ever know!<br />
<cite>via <a href="http://rahulbijlani.com/essays/you-are-not-running-out-of-time-essay/">You are not running out of time &#8211; Rahul Bijlani</a></cite></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/07/18/you-are-not-running-out-of-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sugar</title>
		<link>http://ninnypants.com/blog/2011/06/13/sugar/</link>
		<comments>http://ninnypants.com/blog/2011/06/13/sugar/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 05:02:18 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[Dogs]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=905</guid>
		<description><![CDATA[Sugar was a 1 ½ year-old boxer pit bull mix. I found her while taking my neighbors on a tour of the shelter. She had a litter of two-day-old puppies with her in the kennel. She&#8217;d had them in the shelter right before I picked her up. It took a little convincing, but Kelly said [...]]]></description>
			<content:encoded><![CDATA[<p>Sugar was a 1 ½ year-old boxer pit bull mix. I found her while taking my neighbors on a tour of the shelter. She had a litter of two-day-old puppies with her in the kennel. She&#8217;d had them in the shelter right before I picked her up.</p>
<p>It took a little convincing, but Kelly said we could bring them home. Sugar was an excellent mamma. We had to lure her out of the shelter with one of her puppies because she wouldn&#8217;t go anywhere until she was sure they were with her. When we got her home and were getting everything situated she crawled into the puppies box and laid right on top of them; because she was nervous about the other dogs being near them. For the first week we could barely get her away from her puppies long enough to go to the bathroom. She would go out and do her business then rush back to her puppies.</p>
<p>Once we had moved her puppies her personality started to show through a lot more. She would snuggle on the couch with Ireland, the little girl who Kelly babysits. She would also get really excited for our morning walks. She would run around the front room, jump into the air, spin in circles and bounce in and out of play bows.</p>
<p><a href="http://caws.org">CAWS</a> took Sugar in after we moved her puppies, and she was adopted by a nice young couple. She seemed very happy the last time we saw her.</p>
<h3>The Puppies</h3>
<p>Sugar&#8217;s puppies were the hardest group of puppies we&#8217;ve done so far. I attribute the difficulty to the fact that we took them during the winter, and weren&#8217;t well equipped to do so. When we took on Mia&#8217;s puppies it was the middle of the summer, so we were able to keep them outside most of the time. We weren&#8217;t quite so lucky with this group since we got them at the beginning of December. They stayed in a crate at the foot of our bed until they were big enough to walk around. Once they reached that point we moved them to a fenced in area in the laundry room.</p>
<p>Things didn&#8217;t get too bad until they were about 8-weeks-old then things started getting out of hand. They made such a mess of their run that it had to be cleaned everyday if not twice daily, and that didn&#8217;t even take care of the smell. It was extremely hard to keep them clean as well. We would take them out clean the cage, and give them baths, but as soon as we put them back they would poop everywhere and get it all over themselves. They also couldn&#8217;t go outside without freezing, so they ended up with a lot of pent-up energy. Any time you would walk by they would cry and jump up on the fence.</p>
<p>We were finally able to move them to <a href="http://foautah.org/adoptionCenter/furburbia.asp">Furburbia</a> which was better equipped to handle them once they were 12-weeks-old. They still managed to make a good sized mess once there though. We drove them up to <a href="http://foautah.org/adoptionCenter/furburbia.asp">Furburbia</a>, and right as we got there one of them puked all over in their crate. We took them in and bathed them, and as soon as they were clean and in the kennels they pooped everywhere, and got it all over themselves. We ended up bathing them twice.</p>
<p>I&#8217;m sure they&#8217;ve since been adopted, but we couldn&#8217;t keep a very close watch on them.</p>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/06/13/sugar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Doggelganger</title>
		<link>http://ninnypants.com/blog/2011/06/10/doggelganger/</link>
		<comments>http://ninnypants.com/blog/2011/06/10/doggelganger/#comments</comments>
		<pubDate>Sat, 11 Jun 2011 02:10:08 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[Dogs]]></category>
		<category><![CDATA[doggelganger]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=921</guid>
		<description><![CDATA[I found an interesting piece of software tonight. Doggelganger compares an image of your face to a database of adoptable dogs, and identifies the best match for you. If the software truly does do facial comparison on the dogs in the database it could have lots of interesting applications in dog identification.]]></description>
			<content:encoded><![CDATA[<p>I found an interesting piece of software tonight. <a href="http://www.doggelganger.co.nz/">Doggelganger</a> compares an image of your face to a database of adoptable dogs, and identifies the best match for you. If the software truly does do facial comparison on the dogs in the database it could have lots of interesting applications in dog identification.</p>
<p><a href="http://ninnypants.com/blog/2011/06/10/doggelganger/screen-shot-2011-06-10-at-7-52-23-pm/" rel="attachment wp-att-922"><img class="alignnone size-medium wp-image-922" title="Screen shot 2011-06-10 at 7.52.23 PM" src="http://ninnypants.com/wp-content/uploads/2011/06/Screen-shot-2011-06-10-at-7.52.23-PM-600x296.png" alt="" width="600" height="296" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/06/10/doggelganger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lesson&#8217;s From Fashion&#8217;s Free Culture</title>
		<link>http://ninnypants.com/blog/2011/06/01/lessons-from-fashions-free-culture/</link>
		<comments>http://ninnypants.com/blog/2011/06/01/lessons-from-fashions-free-culture/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 23:35:02 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=913</guid>
		<description><![CDATA[Really interesting talk on how the fashion industry thrives without patents and copyrights. The video is very relevent to a lot of the news I&#8217;ve read about software patents and patent trolls.]]></description>
			<content:encoded><![CDATA[<div class="span-9">
<p><object width="334" height="326" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/JohannaBlakley_2009X-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/JohannaBlakely-2009X.embed_thumbnail.jpg&amp;vw=320&amp;vh=240&amp;ap=0&amp;ti=866&amp;lang=&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=johanna_blakley_lessons_from_fashion_s_free_culture;year=2010;theme=a_taste_of_tedx;theme=design_like_you_give_a_damn;theme=tales_of_invention;theme=art_unusual;theme=the_creative_spark;theme=not_business_as_usual;theme=women_reshaping_the_world;theme=unconventional_explanations;event=TEDxUSC;tag=Business;tag=Culture;tag=Design;tag=creativity;tag=fashion;tag=law;tag=media;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="pluginspace" value="http://www.macromedia.com/go/getflashplayer" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><embed width="334" height="326" type="application/x-shockwave-flash" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" allowFullScreen="true" allowScriptAccess="always" wmode="transparent" bgColor="#ffffff" flashvars="vu=http://video.ted.com/talks/dynamic/JohannaBlakley_2009X-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/JohannaBlakely-2009X.embed_thumbnail.jpg&amp;vw=320&amp;vh=240&amp;ap=0&amp;ti=866&amp;lang=&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=johanna_blakley_lessons_from_fashion_s_free_culture;year=2010;theme=a_taste_of_tedx;theme=design_like_you_give_a_damn;theme=tales_of_invention;theme=art_unusual;theme=the_creative_spark;theme=not_business_as_usual;theme=women_reshaping_the_world;theme=unconventional_explanations;event=TEDxUSC;tag=Business;tag=Culture;tag=Design;tag=creativity;tag=fashion;tag=law;tag=media;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" pluginspace="http://www.macromedia.com/go/getflashplayer" allowfullscreen="true" allowscriptaccess="always" /></object></p>
<p>Really interesting talk on how the fashion industry thrives without patents and copyrights. The video is very relevent to a lot of the news I&#8217;ve read about software patents and patent trolls.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/06/01/lessons-from-fashions-free-culture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hack Utah</title>
		<link>http://ninnypants.com/blog/2011/05/25/hack-utah/</link>
		<comments>http://ninnypants.com/blog/2011/05/25/hack-utah/#comments</comments>
		<pubDate>Wed, 25 May 2011 11:30:12 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[hacking]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[hackutah]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=907</guid>
		<description><![CDATA[In the last week I&#8217;ve become very interested in how much a group of hackers could change the landscape of an area just by providing apps that open up data resources and make them easier to access and use. I initially got the idea from @onyxfish&#8216;s Hack Tyler project. However, what I’m most interested in [...]]]></description>
			<content:encoded><![CDATA[<p>In the last week I&#8217;ve become very interested in how much a group of <a href="http://en.wikipedia.org/wiki/Hacker_%28programmer_subculture%29">hackers</a> could change the landscape of an area just by providing apps that open up data resources and make them easier to access and use. I initially got the idea from <a href="http://twitter.com/onyxfish">@onyxfish</a>&#8216;s Hack Tyler project.</p>
<blockquote class="unst"><p>However, what I’m most interested in focusing on is how I can improve the things I don’t like, either through application of will or technology or both:</p>
<ul>
<li>Tyler has a reasonably extensive bus system, but its online schedule is only available as a <a title="Tyler Bus Route Map" href="http://www.cityoftyler.org/Portals/0/uploads/departments/transit/Bus%20Route%20Map%201-10-08.pdf" target="_blank">PDF</a>. (You can probably already see where this is going, right?)</li>
<li>The local newspaper,&nbsp;<a title="The Tyler Morning Telegraph" href="http://www.tylerpaper.com/" target="_blank">The Tyler Morning Telegraph</a>&nbsp;circulates to nearly a third of the city’s population according to the&nbsp;<a title="Access Bureau of Circulations" href="http://abcas3.accessabc.com/ecirc/newsform.asp" target="_blank">Access Bureau of Circulations</a>, but I could find virtually no information about the politics of local government online.</li>
<li>Smith County’s only method of finding a polling place online is with a <a title="Smith County Map Viewer" href="http://www.smith-county.com/flexviewer/index.html" target="_blank">clumsy map viewing application</a>.</li>
<li>The <a title="City of Tyler" href="http://www.cityoftyler.org/" target="_blank">city</a> and <a title="Smith County" href="http://www.smith-county.com/" target="_blank">county</a> both make significant amounts of data available online (surprising given their small size), but no one seems to have done any analysis of it (disappointing since the town has four colleges).</li>
</ul>
<p>The list goes on. Tyler has information that could be freed. Tyler has government that could be opened. Tyler has news that could be hacked. Moreover, Tyler has an almost completely unexploited market. There are no hackers there. The small number of high-tech businesses that exist in the region are either web development shops serving local businesses or robotics companies.<br />
<cite><a href="http://hacktyler.com/post/5322426478/to-find-myself-in-the-other-place">hacktyler.com</a></cite></p></blockquote>
<p>The thing I&#8217;m currently most interested in is archiving and cross referencing things like City/County/State Code. I&#8217;m sure the reason for this is because I&#8217;ve recently been looking into Provo City&#8217;s dog code, and wanted to look at the minutes that applied to a certain section. The only minutes available online were those for 2010 and 2011 so I called the city recorder and requested the minutes I needed. When on the phone with her I got the impression that she knew exactly what files I needed and would email them to me that day, but it has now been two weeks and I still haven&#8217;t heard anything. I find it strange that it&#8217;s strange that public information like that is so hard to get ahold of which is one of the problems I&#8217;d like to solve.</p>
<p>On top of that there seems to be plenty of information available. Provo has a lot of things like video and gis data available online, and the state of Utah seems to have quite a bit available too; as does Salt Lake City I&#8217;m sure. I hope to compile lists of these data sources at <a href="http://hackutah.com">hackutah.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/05/25/hack-utah/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Washington Animal Rescue League</title>
		<link>http://ninnypants.com/blog/2011/05/19/the-washington-animal-rescue-league/</link>
		<comments>http://ninnypants.com/blog/2011/05/19/the-washington-animal-rescue-league/#comments</comments>
		<pubDate>Thu, 19 May 2011 22:04:02 +0000</pubDate>
		<dc:creator>ninnypants</dc:creator>
				<category><![CDATA[Rescue]]></category>

		<guid isPermaLink="false">http://ninnypants.com/?p=887</guid>
		<description><![CDATA[I&#8217;ve had this sitting in my drafts for a while now. It would be great if we could get more shelters running like this. In Utah we are lucky enough have No More Homeless Pets which provides spay/neuter, vaccinations and many other veterinary services at reduced prices, but I&#8217;d really like to see more shelters [...]]]></description>
			<content:encoded><![CDATA[<div class="span-13"><p><a href="http://ninnypants.com/blog/2011/05/19/the-washington-animal-rescue-league/"><em>Click here to view the embedded video.</em></a></p>I&#8217;ve had this sitting in my drafts for a while now. It would be great if we could get more shelters running like this. In Utah we are lucky enough have <a href="http://utahpets.org">No More Homeless Pets</a> which provides spay/neuter, vaccinations and many other veterinary services at reduced prices, but I&#8217;d really like to see more shelters move towards this standard.</div>
]]></content:encoded>
			<wfw:commentRss>http://ninnypants.com/blog/2011/05/19/the-washington-animal-rescue-league/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

