<?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>Smiths R Us &#187; photo</title>
	<atom:link href="http://smithsrus.com/tag/photo/feed/" rel="self" type="application/rss+xml" />
	<link>http://smithsrus.com</link>
	<description>Technology, home automation, usability, and whatever else amuses me.</description>
	<lastBuildDate>Fri, 27 Jan 2012 17:28:40 +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>Detecting When Gravatar Has No Image</title>
		<link>http://smithsrus.com/detecting-when-gravatar-has-no-image/</link>
		<comments>http://smithsrus.com/detecting-when-gravatar-has-no-image/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 16:31:51 +0000</pubDate>
		<dc:creator>Doug Smith</dc:creator>
				<category><![CDATA[Gravatar]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[address book]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://smithsrus.com/?p=149</guid>
		<description><![CDATA[[This information in this post is out of date. Please see Gravatar, AppleScript, and the OS X Address Book Revisited for more current information.] We&#8217;re on our way to building an AppleScript to update all of the contacts in your Mac Address Book with pictures from the Gravatar service. This is part 3 of the [...]]]></description>
			<content:encoded><![CDATA[<p><em>[This information in this post is out of date. Please see <a href="http://smithsrus.com/gravatar-applescript-and-the-os-x-address-book-revisited/">Gravatar, AppleScript, and the OS X Address Book Revisited</a> for more current information.]</em><br />
<hr />
<p>We&#8217;re on our way to building an <a href="http://www.apple.com/applescript/">AppleScript</a> to update all of the contacts in your Mac Address Book with pictures from the <a href="http://gravatar.com/">Gravatar</a> service. This is part 3 of the series.</p>
<p>Part 1, <a href="http://smithsrus.com/gravatar-applescript-and-address-book-pictures/">Gravatar, AppleScript, and Address Book Pictures</a>, introduced the topic and ended with a short AppleScript to construct a Gravatar URL given an e-mail address.</p>
<p>Then in part 2, <a href="http://smithsrus.com/setting-an-address-book-picture-with-applescript/">Setting an Address Book Picture with AppleScript</a>, we built a script showing how to successfully set a contact photo in Address Book.</p>
<p>Now we need to detect when the Gravatar service does not have an image on file for a given e-mail address.<span id="more-149"></span> The problem is that Gravatar does one of several things when it doesn&#8217;t have a matching image: return a default image, return an image you specify, or generate an image in one of several styles. But in every case it returns an image.</p>
<p>This is all well and good if you&#8217;re displaying Gravatars on a blog comments page. The Gravatar URL ends up inside an img tag and this keeps it dead simple. It&#8217;s also nice for everyone to get some kind of avatar even if they haven&#8217;t created one.</p>
<p>But for our purposes we don&#8217;t need a default image that ends up being attached to a contact. Not only does it clutter our contacts, but it would make it more difficult if we later wanted our script to only update contacts with no existing picture and leave the others alone.</p>
<p>Detecting a no match condition would also be useful in a WordPress plugin even if a default image was used. For example, I&#8217;ve always wanted to display some sort of indicator and a link to Gravatar for those who don&#8217;t have a Gravatar yet. If we can detect that a default image was used then we can set a CSS class on the image or do other creative things.</p>
<p>So how do we tell if there is no image match? It&#8217;s simple with a little undocumented trick in the Gravatar URL.</p>
<p>There is a d= parameter where we can specify a default image to return when there is no match. If we set that to null by using two empty URL encoded quotes then instead of a default image we get nothing. For example:</p>
<p><code></p>
<p>http://www.gravatar.com/avatar/1bc47906dcb8f3661bae9a8448e49a8a?d=%22%22</p>
<p></code></p>
<p>For our Address Book script we need to save the image to a file anyway so we just check for the existence of the file or a zero size. We can skip that entry or take other action if there is nothing there.</p>
<p>In the case of a WordPress plugin it might be less convenient because we may have to hit the Gravatar servers twice; once to check for a no match condition, then again to get the image with whatever default we actually want. Of course, if we use a local default file then it would still only be one call to the Gravatar service but that rules out using one of the cool generated defaults.</p>
<p>(If any of the Gravatar folks are listening, it would be great to have an option in the URL that means I&#8217;m using this for further processing and not in an img tag then also pass back some sort of status telling if the image is a default.)</p>
<p>Here&#8217;s a demonstration AppleScript that makes use of the above technique to download a Gravatar for a given e-mail address and take action only if there was a matched image: (<a href="applescript://com.apple.scripteditor?action=new&#038;script=--%20Download%20a%20Gravatar%20image%20and%20see%20if%20it%27s%20a%20match%20or%20default.%0D--%20Released%20under%20GPL.%0D--%20by%20Doug%20Smith%2C%20http%3A//smithsrus.com%0D%0D--%20The%20e-mail%20address%20to%20look%20up.%0Dset%20email%20to%20%22someone%40somewhere.com%22%0D%0D--%20Calculate%20an%20MD5%20for%20the%20e-mail%20address.%0Dset%20md5_email%20to%20do%20shell%20script%20%22md5%20-q%20-s%20%60echo%20%22%20%26%20email%20%26%20%22%20%7C%20tr%20%27%5B%3Aupper%3A%5D%27%20%27%5B%3Alower%3A%5D%27%60%22%0D%0D--%20Construct%20the%20Gravatar%20URL.%0Dset%20grav_url%20to%20quoted%20form%20of%20%28%22http%3A//gravatar.com/avatar/%22%20%26%20md5_email%20%26%20%22%3Fd%3D%22%20%26%20%22%2522%2522%22%20as%20text%29%0D%0D--%20Make%20a%20file%20name%20in%20which%20to%20temporarily%20save%20the%20Gravatar.%0Dset%20grav_file%20to%20%28path%20to%20temporary%20items%29%20%26%20%22gravatar%22%20%26%20md5_email%20%26%20%22.jpg%22%20as%20text%0Dset%20grav_POSIX_file%20to%20quoted%20form%20of%20POSIX%20path%20of%20grav_file%0D%0D--%20Download%20the%20Gravatar%20image%20to%20the%20temporary%20file%20with%20a%20timeout%20of%2010%20seconds.%0Ddo%20shell%20script%20%22curl%20%22%20%26%20grav_url%20%26%20%22%20-m%2010%20-o%20%22%20%26%20grav_POSIX_file%0D%0Dtell%20application%20%22System%20Events%22%0D%09if%20exists%20file%20grav_file%20then%0D%09%09tell%20me%20to%20display%20dialog%20%22Yes%2C%20we%20have%20a%20matching%20Gravatar%20downloaded%20to%20%22%20%26%20grav_POSIX_file%20%26%20%22.%22%20buttons%20%7B%22Okay%22%7D%20default%20button%201%0D%09%09delete%20file%20grav_file%0D%09else%0D%09%09tell%20me%20to%20display%20dialog%20%22Sorry%2C%20there%20was%20no%20matching%20Gravatar.%22%20buttons%20%7B%22Okay%22%7D%20default%20button%201%0D%09end%20if%0Dend%20tell%0D">Open in Script Editor</a>)</p>
<p><ins datetime="2009-03-25T17:21:43+00:00">(Updated with a small bug fix on 03/25/2009.)</ins><br />
<ins datetime="2009-04-23T13:56:48+00:00">(Updated on 04/23/2009 to remove my testing e-mail address and display the downloaded file path.)</ins></p>

<div class="wp_syntax"><div class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">-- Download a Gravatar image and see if it's a match or default.</span>
<span style="color: #808080; font-style: italic;">-- Released under GPL.</span>
<span style="color: #808080; font-style: italic;">-- by Doug Smith, http://smithsrus.com</span>
&nbsp;
<span style="color: #808080; font-style: italic;">-- The e-mail address to look up.</span>
<span style="color: #ff0033; font-weight: bold;">set</span> email <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;someone@somewhere.com&quot;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">-- Calculate an MD5 for the e-mail address.</span>
<span style="color: #ff0033; font-weight: bold;">set</span> md5_email <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">do shell script</span> <span style="color: #009900;">&quot;md5 -q -s `echo &quot;</span> <span style="color: #000000;">&amp;</span> email <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot; | tr '[:upper:]' '[:lower:]'`&quot;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">-- Construct the Gravatar URL.</span>
<span style="color: #ff0033; font-weight: bold;">set</span> grav_url <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">quoted form</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #000000;">&#40;</span><span style="color: #009900;">&quot;http://gravatar.com/avatar/&quot;</span> <span style="color: #000000;">&amp;</span> md5_email <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot;?d=&quot;</span> <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot;%22%22&quot;</span> <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span><span style="color: #000000;">&#41;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">-- Make a file name in which to temporarily save the Gravatar.</span>
<span style="color: #ff0033; font-weight: bold;">set</span> grav_file <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#40;</span><span style="color: #0066ff;">path to</span> temporary <span style="color: #0066ff;">items</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot;gravatar&quot;</span> <span style="color: #000000;">&amp;</span> md5_email <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot;.jpg&quot;</span> <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span>
<span style="color: #ff0033; font-weight: bold;">set</span> grav_POSIX_file <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">quoted form</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">POSIX path</span> <span style="color: #ff0033; font-weight: bold;">of</span> grav_file
&nbsp;
<span style="color: #808080; font-style: italic;">-- Download the Gravatar image to the temporary file with a timeout of 10 seconds.</span>
<span style="color: #0066ff;">do shell script</span> <span style="color: #009900;">&quot;curl &quot;</span> <span style="color: #000000;">&amp;</span> grav_url <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot; -m 10 -o &quot;</span> <span style="color: #000000;">&amp;</span> grav_POSIX_file
&nbsp;
<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;System Events&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">exists</span> <span style="color: #0066ff;">file</span> grav_file <span style="color: #ff0033; font-weight: bold;">then</span>
		<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">me</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">display dialog</span> <span style="color: #009900;">&quot;Yes, we have a matching Gravatar downloaded to &quot;</span> <span style="color: #000000;">&amp;</span> grav_POSIX_file <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot;.&quot;</span> <span style="color: #0066ff;">buttons</span> <span style="color: #000000;">&#123;</span><span style="color: #009900;">&quot;Okay&quot;</span><span style="color: #000000;">&#125;</span> default button <span style="color: #000000;">1</span>
		<span style="color: #0066ff;">delete</span> <span style="color: #0066ff;">file</span> grav_file
	<span style="color: #ff0033; font-weight: bold;">else</span>
		<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">me</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">display dialog</span> <span style="color: #009900;">&quot;Sorry, there was no matching Gravatar.&quot;</span> <span style="color: #0066ff;">buttons</span> <span style="color: #000000;">&#123;</span><span style="color: #009900;">&quot;Okay&quot;</span><span style="color: #000000;">&#125;</span> default button <span style="color: #000000;">1</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">if</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span></pre></div></div>

<p>Well, we&#8217;re almost to our goal of a <a href="http://smithsrus.com/filling-mac-address-book-pictures-with-gravatars/">script to automatically update all of our Address Book contacts with Gravatars</a>. I&#8217;ll put it all together next time in <a href="http://smithsrus.com/filling-mac-address-book-pictures-with-gravatars/">part 4</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://smithsrus.com/detecting-when-gravatar-has-no-image/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Setting an Address Book Picture with AppleScript</title>
		<link>http://smithsrus.com/setting-an-address-book-picture-with-applescript/</link>
		<comments>http://smithsrus.com/setting-an-address-book-picture-with-applescript/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 00:15:20 +0000</pubDate>
		<dc:creator>Doug Smith</dc:creator>
				<category><![CDATA[Gravatar]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[address book]]></category>
		<category><![CDATA[applescript]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://smithsrus.com/?p=148</guid>
		<description><![CDATA[[This information in this post is out of date. Please see Gravatar, AppleScript, and the OS X Address Book Revisited for more current information.] In part 1, Gravatar, AppleScript, and Address Book Pictures, we covered the basics of getting a Gravatar URL with AppleScript. The end goal is to automatically update all of our Address [...]]]></description>
			<content:encoded><![CDATA[<p><em>[This information in this post is out of date. Please see <a href="http://smithsrus.com/gravatar-applescript-and-the-os-x-address-book-revisited/">Gravatar, AppleScript, and the OS X Address Book Revisited</a> for more current information.]</em><br />
<hr />
<p>In part 1, <a href="http://smithsrus.com/gravatar-applescript-and-address-book-pictures/">Gravatar, AppleScript, and Address Book Pictures</a>, we covered the basics of getting a <a href="http://gravatar.com/">Gravatar</a> URL with <a href="http://www.apple.com/applescript/">AppleScript</a>. The end goal is to automatically update all of our Address Book pictures with Gravatars in one fell swoop.</p>
<p>There are a couple tricky things we need to solve to reach our goal. They aren&#8217;t difficult; just not well documented, if at all.</p>
<p>In this post I&#8217;ll show you how to update a contact picture with AppleScript.<span id="more-148"></span></p>
<p>Let&#8217;s get started.</p>
<p>We know from the Gravatar documentation that it returns images in jpeg format. Now according to the AppleScript dictionary for Address Book, the person class has an image element that is in TIFF format. So we&#8217;ll have to convert the image.</p>
<p>In addition, Address Book is very particular about how it gets an image. The only way I could make it work was to have the actual TIFF picture data loaded into a variable then set the contact&#8217;s picture to that. I couldn&#8217;t just refer to a file, even if it was already a TIFF.</p>
<p>Fortunately, there&#8217;s no need to go through a big conversion script or call on other applications. You can simply open a jpeg file from AppleScript and read the contents into a variable while coercing it to TIFF format.</p>
<p>Here is a demonstration script showing how it works: (<a href="applescript://com.apple.scripteditor?action=new&amp;script=--%20Set%20an%20Address%20Book%20contact%20photo%20from%20a%20jpeg%20file.%0D--%20Released%20under%20GPL.%0D--%20by%20Doug%20Smith%2C%20http%3A//smithsrus.com%0D--%0D--%20This%20is%20for%20demonstration%20purposes.%20It%20only%20works%20on%20the%20first%20selected%20%0D--%20contact%20in%20Address%20Book%20and%20contains%20little%20error%20checking.%20Note%20that%0D--%20the%20picture%20displayed%20will%20not%20change%20until%20you%20select%20a%20different%20record%0D--%20then%20come%20back%20to%20the%20original%20record%20so%20it%20can%20refresh.%0D%0Dtell%20application%20%22Address%20Book%22%0D%09set%20AB_contacts%20to%20selection%0D%09%0D%09if%20number%20of%20items%20in%20AB_contacts%20%3D%201%20then%0D%09%09set%20one_contact%20to%20item%201%20of%20AB_contacts%0D%09%09%0D%09%09set%20pict_file%20to%20choose%20file%20of%20type%20%22JPEG%22%20with%20prompt%20%22Choose%20a%20jpeg%20file%22%0D%09%09open%20for%20access%20pict_file%0D%09%09set%20pict_data%20to%20read%20pict_file%20as%20%22TIFF%22%0D%09%09close%20access%20pict_file%0D%09%09%0D%09%09set%20image%20of%20one_contact%20to%20pict_data%0D%09end%20if%0Dend%20tell%0D">Open in Script Editor</a>)</p>

<div class="wp_syntax"><div class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">-- Set an Address Book contact photo from a jpeg file.</span>
<span style="color: #808080; font-style: italic;">-- Released under GPL.</span>
<span style="color: #808080; font-style: italic;">-- by Doug Smith, http://smithsrus.com</span>
<span style="color: #808080; font-style: italic;">--</span>
<span style="color: #808080; font-style: italic;">-- This is for demonstration purposes. It only works on the first selected</span>
<span style="color: #808080; font-style: italic;">-- contact in Address Book and contains little error checking. Note that</span>
<span style="color: #808080; font-style: italic;">-- the picture displayed will not change until you select a different record</span>
<span style="color: #808080; font-style: italic;">-- then come back to the original record so it can refresh.</span>
&nbsp;
<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Address Book&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> AB_contacts <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">selection</span>
&nbsp;
	<span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">number</span> <span style="color: #ff0033; font-weight: bold;">of</span> <span style="color: #0066ff;">items</span> <span style="color: #ff0033; font-weight: bold;">in</span> AB_contacts <span style="color: #000000;">=</span> <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">then</span>
		<span style="color: #ff0033; font-weight: bold;">set</span> one_contact <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">item</span> <span style="color: #000000;">1</span> <span style="color: #ff0033; font-weight: bold;">of</span> AB_contacts
&nbsp;
		<span style="color: #ff0033; font-weight: bold;">set</span> pict_file <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">choose file</span> <span style="color: #ff0033; font-weight: bold;">of</span> type <span style="color: #009900;">&quot;JPEG&quot;</span> <span style="color: #ff0033; font-weight: bold;">with</span> prompt <span style="color: #009900;">&quot;Choose a jpeg file&quot;</span>
		<span style="color: #0066ff;">open</span> for access pict_file
		<span style="color: #ff0033; font-weight: bold;">set</span> pict_data <span style="color: #ff0033; font-weight: bold;">to</span> read pict_file <span style="color: #ff0033;">as</span> <span style="color: #009900;">&quot;TIFF&quot;</span>
		<span style="color: #0066ff;">close</span> access pict_file
&nbsp;
		<span style="color: #ff0033; font-weight: bold;">set</span> image <span style="color: #ff0033; font-weight: bold;">of</span> one_contact <span style="color: #ff0033; font-weight: bold;">to</span> pict_data
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">if</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span></pre></div></div>

<p>It&#8217;s worth noting that my attempts to get the picture data into a variable Address Book accepted by means other than reading a file were not successful. For example, I tried using a shell call to curl to download a file and return the results to a variable. That would have been nice for our purpose of downloading a Gravatar image. If anyone has any further insight on that please let me know.</p>
<p>That&#8217;s all for this post. Stay tuned for part 3 when I&#8217;ll cover <a href="http://smithsrus.com/detecting-when-gravatar-has-no-image/">Detecting When Gravatar Has No Image to Match an E-mail Address</a>. Then in part 4 we&#8217;ll put it all together with a <a href="http://smithsrus.com/filling-mac-address-book-pictures-with-gravatars/">Script to Update Address Book Contacts with Gravatar Images</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://smithsrus.com/setting-an-address-book-picture-with-applescript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mostly Cats Dumpster</title>
		<link>http://smithsrus.com/mostly-cats-dumpster/</link>
		<comments>http://smithsrus.com/mostly-cats-dumpster/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 04:19:13 +0000</pubDate>
		<dc:creator>Doug Smith</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[cats]]></category>
		<category><![CDATA[dumpster]]></category>
		<category><![CDATA[joke]]></category>
		<category><![CDATA[photo]]></category>

		<guid isPermaLink="false">http://smithsrus.com/mostly-cats-dumpster/</guid>
		<description><![CDATA[This dumpster was in the back of a local shopping center in Loves Park, IL. The label immediately caught my attention as being funny (sorry cat lovers). This was the only dumpster in a row of several with a name label, so it stands out among the others. I later found out that it was [...]]]></description>
			<content:encoded><![CDATA[<p>This dumpster was in the back of a local shopping center in Loves Park, IL. The label immediately caught my attention as being funny (sorry cat lovers). This was the only dumpster in a row of several with a name label, so it stands out among the others. I later found out that it was owned by <em>Mostly Cats Veterinary Clinic</em>, which had their office in the building. </p>
<p><img src='http://smithsrus.com/wp-content/uploads/2007/10/mostlycats.jpg' alt='Mostly Cats Veterinary Clinic Dumpster' /></p>
<p>Update: This is a repost of some of my older site content. The veterinary clinic has since moved to a new location. I&#8217;m happy to report that they took their dumpster with them and it still has the label.</p>
]]></content:encoded>
			<wfw:commentRss>http://smithsrus.com/mostly-cats-dumpster/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

