<?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>Fruits, nuts, and berries</title>
	<atom:link href="http://www.garriber.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.garriber.org</link>
	<description>Musings by Jen (and occasionally Michael)</description>
	<lastBuildDate>Mon, 05 Jan 2009 04:48:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Consolidated WordPress</title>
		<link>http://www.garriber.org/?p=66</link>
		<comments>http://www.garriber.org/?p=66#comments</comments>
		<pubDate>Mon, 05 Jan 2009 04:42:34 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>
		<category><![CDATA[Zeteo]]></category>

		<guid isPermaLink="false">http://www.garriber.org/?p=66</guid>
		<description><![CDATA[This blog hasn&#8217;t gotten much love since the 52 Churches project started.  I was really tempted to just delete it.  Quite frankly, keeping track of multiple installations of Word Press gets old.  Don&#8217;t get me wrong, I love WordPress.  We&#8217;ve been pretty happy with our hosting service from BlueHost, and the blog has been a [...]]]></description>
			<content:encoded><![CDATA[<p>This blog hasn&#8217;t gotten much love since <a title="The 52 Churches Project" href="http://52churches.garriber.org" target="_blank">the 52 Churches project</a> started.  I was really tempted to just delete it.  Quite frankly, keeping track of multiple installations of <a title="WordPress" href="http://www.wordpress.org" target="_blank">Word Press</a> gets old.  Don&#8217;t get me wrong, I love WordPress.  We&#8217;ve been pretty happy with our hosting service from <a title="BlueHost" href="http://www.bluehost.com" target="_blank">BlueHost</a>, and the blog has been a good outlet for Jen, but maintaining 4 (now 6) of these monsters was getting old.</p>
<p>I needed a better solutions.  A little digging on-line came across an approach at <a title="This n' That" href="http://me.mywebsight.ws/" target="_self">This n&#8217; That</a> for <a title="Inspiration for wp-config.php mods" href="http://me.mywebsight.ws/2006/08/11/host-multiple-wp-sites-on-one-installation/" target="_blank">modifying wp-config.php to adjust the prefix.</a> It was close, but not quite what I wanted.  Basically, Mr. Kaplan was advocating adding some PHP code to the wp-config.php file that looked like:<br />
<code>// table prefix, for hosting multiple installations in the same db.<br />
$table_prefix = ereg_replace('^(www\.)', '', $_SERVER['HTTP_HOST']);<br />
$table_prefix =  ereg_replace('\.', '', $table_prefix);<br />
$table_prefix  = $table_prefix . '_';</code></p>
<p>What this does is throw away the www and any periods (full stops for those of you inclined towards the Queen&#8217;s English) in the domain name and use the rest of it as the prefix.  This is fine, but it&#8217;s suboptimal when it comes to long domain names.  MySQL has a limit of <a href="http://dev.mysql.com/doc/refman/5.0/en/identifiers.html">64 bytes</a> for the table name, but that would have to be shared with the stripped down FQDN and the native WordPress table names.  If you have a domain name like <a title="Schools are for Fish" href="http://schoolsareforfish.garriber.org" target="_blank">schoolsareforfish.garriber.org</a>, you start pressing into that limit pretty quickly.  Nonetheless it gave me the inspiration I needed for the solutions I was looking for.  My thanks to Mr. Kaplan for his insight.</p>
<p>My other complaint is that it ended up making a multi-line change in a WordPress source file, albeit a configuration file.  I wanted something substantially more self contained.  My solution was this: create a php file in the wordpress root directory that does the prefix determination and have it return the desired prefix.  For example, you could create a file called prefixgen.php.  That file might look something like this:</p>
<p><code><br />
&lt; ?php<br />
#figure out *which* site we're hitting<br />
if(preg_match("/subsite1/", $_SERVER['HTTP_HOST'])) {<br />
$prefix='ss1_';<br />
}<br />
elseif(preg_match("/subsite2/", $_SERVER['HTTP_HOST'])) {<br />
$prefix='ss2_';<br />
}<br />
else {<br />
$prefix='main_';<br />
}<br />
return $prefix;<br />
? &gt;<br />
</code><br />
<em>Note: I&#8217;ve put spaces between the &#8216;&lt;&#8217; and the &#8216;?&#8217; to keep from confusing the computers</em></p>
<p>This does a pretty sloppy match.  If the domain the user hits <em>contains</em> subsite1, it will map the prefix to &#8216;ss1_&#8217;.  This is useful as it lets users go to www.subsite1.mysite.com, or direct to subsite1.mysite.com (assuming your DNS mappings and hosting provider are set up to support both).  It does the same thing for subsite2.  If nothing else it falls through to the main site (prefix &#8216;main_&#8217;).  In this way, any DNS entry that resolves to your installation and gets to the right directory, but doesn&#8217;t map to a subsite, will go to your main site.</p>
<p>The update to wp-config.php becomes trivial.  Change the prefix line to read:<br />
<code><br />
$table_prefix  = include 'prefixgen.php';<br />
</code></p>
<p>Presto!  Clean and self contained.  I&#8217;m a very happy camper.  I now have a single directory with a single set of WordPress files serving all of our different sites.  The sites are all stored in one database which makes for easier server side backups.  My &#8220;installations&#8221; at my hosting provider have become symbolic links to a single WordPress directory and, best of all, instead of having to manually update multiple WordPress installations, I just update one to upgrade.  Maybe I&#8217;ll let Jen keep this blog.  Maybe I&#8217;ll just take it over instead.  I could change the tag line to &#8220;Bits, Bytes, and Querries&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=66</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Family Culture</title>
		<link>http://www.garriber.org/?p=63</link>
		<comments>http://www.garriber.org/?p=63#comments</comments>
		<pubDate>Thu, 25 Oct 2007 17:18:38 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[Zeteo]]></category>

		<guid isPermaLink="false">http://www.garriber.org/?p=63</guid>
		<description><![CDATA[I don&#8217;t think that unschooling means ditching your family culture. Some families find their adventure enhanced by staying up all night, watching a lot of television, playing every new computer game, and revolving meal times that run the full gamut of colourful convenience foods, carbonated beverages, and corn syrups. Some family cultures place greater emphasis [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t think that unschooling means ditching your family culture.</p>
<p>Some families find their adventure enhanced by staying up all night,<br />
watching a lot of television, playing every new computer game, and<br />
revolving meal times that run the full gamut of colourful convenience<br />
foods, carbonated beverages, and corn syrups.</p>
<p>Some family cultures place greater emphasis on consistent family<br />
connections (sitting down to dinner together, for example), work done<br />
together, more time spent in the &#8220;adult world,&#8221; and dietary<br />
restrictions (because of religion, health, or even simply budgetary or<br />
sustainability reasons).</p>
<p>Our family culture, for example, includes very little television, but<br />
a whole lot of interaction with the woods, with animals, and with<br />
heavy machinery (at last count: a mule, a road grader, a D-6, a<br />
43-horse tractor, a CNC router, and a sawmill). Alaetheia, 11,<br />
attended strawbale school with us, has nearly finished her house<br />
plans, and plans to break ground on her house come spring.</p>
<p>I&#8217;d encourage you to integrate unschooling into your family culture,<br />
not try to integrate your family&#8217;s culture into someone else&#8217;s picture<br />
of unschooling.</p>
<p>&#8211;Jen</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=63</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sir, I exist!</title>
		<link>http://www.garriber.org/?p=62</link>
		<comments>http://www.garriber.org/?p=62#comments</comments>
		<pubDate>Fri, 19 Oct 2007 20:06:35 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.garriber.org/?p=62</guid>
		<description><![CDATA[Apparently, my internet connection is channeling the Universe via Stephen Crane today. &#8211;Jen A man said to the universe: &#8220;Sir, I exist!&#8221; &#8220;However,&#8221; replied the universe, &#8220;The fact has not created in me a sense of obligation” Stephen Crane]]></description>
			<content:encoded><![CDATA[<h1 style="margin: 0pt; font-size: 12px">Apparently, my internet connection is channeling the Universe via Stephen Crane today.</h1>
<p>&#8211;Jen</p>
<p>A man said to the universe: &#8220;Sir, I exist!&#8221;</p>
<p>&#8220;However,&#8221; replied the universe,</p>
<p>&#8220;The fact has not created in me a sense of obligation”</p>
<p>Stephen Crane</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=62</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving servers</title>
		<link>http://www.garriber.org/?p=61</link>
		<comments>http://www.garriber.org/?p=61#comments</comments>
		<pubDate>Wed, 17 Oct 2007 05:21:12 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Geek Stuff]]></category>

		<guid isPermaLink="false">http://garriber.angryspinner.com/?p=61</guid>
		<description><![CDATA[garriber.org is moving off of our trusty Pentium M server and to an external hosting provider. As much as I love having my own local server, the ongoing energy consumption is a problem. The downside of this: fewer pictures. The upside: more likely to be on and available if you pop by to say hi. [...]]]></description>
			<content:encoded><![CDATA[<p>garriber.org is moving off of our trusty Pentium M server and to an external hosting provider.  As much as I love having my own local server, the ongoing energy consumption is a problem.  The downside of this:  fewer pictures.  The upside:  more likely to be on and available if you pop by to say hi.</p>
<p>Note:  as part of the this transition all of the old pictures are broken.  If you come across an old post that seems to imply a picture and has a lovely 4 digit number where one ought to be, engage your imagination and assume that something context appropriate used to be there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=61</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading to Little People</title>
		<link>http://www.garriber.org/?p=41</link>
		<comments>http://www.garriber.org/?p=41#comments</comments>
		<pubDate>Thu, 06 Sep 2007 19:18:46 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[Reading Lists]]></category>

		<guid isPermaLink="false">http://garriber.angryspinner.com/?p=41</guid>
		<description><![CDATA[I was recently asked for reading suggestions for a family who tried Grimm&#8217;s with their 3yo, but didn&#8217;t care for the violence and death. My intital list is as follows: The Hundred Dresses by Estes Stuart Little by White The Mouse and the Motorcycle by Cleary Charlotte&#8217;s Web (White again) The Wizard of Oz (the [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently asked for reading suggestions for a family who tried Grimm&#8217;s with their 3yo, but didn&#8217;t care for the violence and death.</p>
<p>My intital list is as follows:</p>
<p>The Hundred Dresses by Estes<br />
Stuart Little by White<br />
The Mouse and the Motorcycle by Cleary<br />
Charlotte&#8217;s Web (White again)<br />
The Wizard of Oz (the series&#8211;which I&#8217;d rather poke my eyes out with sticks than read aloud, but my Dd, then 3 and 4 absolutely LOVED).<br />
Holes by Sachar<br />
The Wind in the Willows by Grahame<br />
The Fledgling by Langton (Dd LOVED this book . . . but was very distressed when she concluded she couldn&#8217;t learn to fly)<br />
A Series of Unfortunate Events by Snicket (these are immensely fun to read aloud)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=41</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John Taylor Gatto on Libraries</title>
		<link>http://www.garriber.org/?p=60</link>
		<comments>http://www.garriber.org/?p=60#comments</comments>
		<pubDate>Thu, 30 Aug 2007 02:51:04 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[Zeteo]]></category>

		<guid isPermaLink="false">http://garriber.angryspinner.com/?p=60</guid>
		<description><![CDATA[As it turns out, it&#8217;s Gatto, not Holt, who has the library analogy. &#8211;Jen CONFEDERACY OF DUNCES: THE TYRANNY OF COMPULSORY SCHOOLING by John Taylor Gatto &#8220;Begin with the setting and social arrangement of a library. The ones I&#8217;ve visited all over the country invariably are comfortable and quiet, places where you can read rather [...]]]></description>
			<content:encoded><![CDATA[<p>As it turns out, it&#8217;s Gatto, not Holt, who has the library analogy.</p>
<p>&#8211;Jen<br />
CONFEDERACY OF DUNCES:<br />
THE TYRANNY OF COMPULSORY SCHOOLING<br />
by John Taylor Gatto</p>
<p>&#8220;Begin with the setting and social arrangement of a library. The ones<br />
I&#8217;ve visited all over the country invariably are comfortable and<br />
quiet, places where you can read rather than just pretend to read. How<br />
important this silence is. Schools are never silent. People of all<br />
ages work side by side in libraries, not just a pack of age-segregated<br />
kids. For some reason, libraries do not segregate by age nor do they<br />
presume to segregate readers by questionable tests of reading ability.<br />
Just as the people who decoded the secrets of farming or of the<br />
forests and oceans were not segregated by age or test scores, the<br />
library seems to have intuited that common human judgment is adequate<br />
to most learning decisions.</p>
<p>The librarian doesn&#8217;t tell me what to read, doesn&#8217;t tell me the<br />
sequence of reading I have to follow, doesn&#8217;t grade my reading.<br />
Librarians act as if they trust their customers. The librarian lets me<br />
ask my own questions and helps me when I need help, not when the<br />
library decides I need it. If I feel like reading in the same place<br />
all day long, that seems to be OK with the library. It doesn&#8217;t tell me<br />
to stop reading at regular intervals by ringing a bell in my ear. The<br />
library keeps its nose out of my home, too. It doesn&#8217;t send letters to<br />
my mother reporting on my library behavior; it doesn&#8217;t make<br />
recommendations or issue orders on how I should use my time spent<br />
outside of the library.</p>
<p>The library doesn&#8217;t have a tracking system. Everyone is mixed together<br />
there, and no private files exist detailing my past victories and<br />
defeats as a patron. If the books I want are available, I get them by<br />
requesting them &#8211; even if that deprives some more gifted reader, who<br />
comes a minute later. The library doesn&#8217;t presume to determine which<br />
of us is more qualified to read that book; it doesn&#8217;t play favorites.<br />
It is a very class-blind, talent-blind place, appropriately reflecting<br />
our historic political ideals in a way that puts schools to shame.</p>
<p>The public library isn&#8217;t into public humiliation the way schools seem<br />
to be. It never posts ranked lists of good and bad readers for all to<br />
see. Presumably it considers good reading its own reward, not<br />
requiring additional accolades, and it has resisted the temptation to<br />
hold up good reading as a moral goad to bad readers. One of the<br />
strangest differences between libraries and schools, in New York City<br />
at least, is that you almost never see a kid behaving badly in a<br />
library or waving a gun there &#8211; even though bad kids have exactly the<br />
same access to libraries as good kids do. Bad kids seem to respect<br />
libraries, a curious phenomenon which may well be an unconscious<br />
response to the automatic respect libraries bestow blindly on<br />
everyone. Even people who don&#8217;t like to read like libraries from time<br />
to time; in fact, they are such generally wonderful places I wonder<br />
why we haven&#8217;t made them compulsory &#8211; and all alike, of course, too.</p>
<p>Here&#8217;s another angle to consider: the library never makes predictions<br />
about my general future based on my past reading habits, nor does it<br />
hint that my days will be happier if I read Shakespeare rather than<br />
Barbara Cartland. The library tolerates eccentric reading habits<br />
because it realizes that free men and women are often very eccentric.</p>
<p>And finally, the library has real books, not schoolbooks. Its volumes<br />
are not written by collective pens or picked by politically correct<br />
screening committees. Real books conform only to the private<br />
curriculum of each writer, not to the invisible curriculum of some<br />
German collective agenda. The one exception to this is children&#8217;s<br />
books &#8211; but no sensible child ever reads those things, so the damage<br />
from them is minimal.</p>
<p>Real books are deeply subversive of collectivization. They are the<br />
best known way to escape herd behavior, because they are vehicles<br />
transporting their reader into deep caverns of absolute solitude where<br />
nobody else can visit: No two people ever read the same great book.<br />
Real books disgust the totalitarian mind because they generate<br />
uncontrollable mental growth &#8211; and it cannot be monitored!<br />
Television has entered the classroom because it is a collective<br />
mechanism and, as such, much superior to textbooks; similarly, slides,<br />
audio tapes, group games, and so on meet the need to collectivize,<br />
which is a central purpose of mass schooling. This is the famous<br />
&#8220;socialization&#8221; that schools do so well. Schoolbooks, on the other<br />
hand, are paper tools that reinforce school routines of close-order<br />
drill, public mythology, endless surveillance, global ranking, and<br />
constant intimidation.</p>
<p>That&#8217;s what the questions at the end of chapters are designed to do,<br />
to bring you back to a reality in which you are subordinate. Nobody<br />
really expects you to answer those questions, not even the teacher;<br />
they work their harm solely by being there. That is their genius.<br />
Schoolbooks are a crowd-control device. Only the very innocent and<br />
well-schooled see any difference between good ones and bad ones; both<br />
kinds do the same work. In that respect they are much like television<br />
programming, the function of which, as a plug in narcotic, is<br />
infinitely more powerful than any trivial differences between good<br />
programs and bad.</p>
<p>Real books educate, schoolbooks school, and thus libraries and library<br />
policies are a major clue to the reform of American schooling. When<br />
you take the free will and solitude out of education it becomes<br />
schooling. You can&#8217;t have it both ways.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=60</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unschooling Parent as Librarian (a metaphor)</title>
		<link>http://www.garriber.org/?p=59</link>
		<comments>http://www.garriber.org/?p=59#comments</comments>
		<pubDate>Fri, 03 Aug 2007 01:50:51 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://garriber.angryspinner.com/?p=59</guid>
		<description><![CDATA[My daughter has the most wonderful relationship with the reference librarian at our local branch. The librarian is just tickled to have this little elf march up to her and say things like, &#8220;I really like X books because of Y. Do you know of something similar?&#8221; or, one I overheard the other day, &#8220;No, [...]]]></description>
			<content:encoded><![CDATA[<p>My daughter has the most wonderful relationship with the reference<br />
librarian at our local branch. The librarian is just tickled to have<br />
this little elf march up to her and say things like, &#8220;I really like X<br />
books because of Y. Do you know of something similar?&#8221; or, one I<br />
overheard the other day, &#8220;No, I&#8217;m sorry, I didn&#8217;t really care for Z .<br />
. . I prefer fiction with more . . . character development.&#8221;</p>
<p>The librarian looked over her shoulder at me, and I shrugged back at<br />
her&#8211;the kid knows what she likes. So the librarian (I love this<br />
woman), went back to it . . . trying to find something that the kid<br />
would like.</p>
<p>We got a copy of the _Gateways to the Great Books_ the other day. She<br />
decided to read Hemingway&#8217;s &#8220;The Killers&#8221; to me the other day. I&#8217;d<br />
never considered Hemingway for the Jr. High set . . . but it makes<br />
sense that she&#8217;d take to it. The thing about Hemingway that annoys so<br />
many people (the short sentences that take a while to get there) is<br />
what makes him very readable, especially aloud.</p>
<p>I think it&#8217;s <strike>Holt</strike> (it&#8217;s Gatto) who has a developed metaphor about libraries and<br />
unschooling . . . the librarian (unschooling parent) doesn&#8217;t tell you<br />
what to read, what order to read in, doesn&#8217;t quiz you after you&#8217;ve<br />
read . . . the librarian helps you find things that are of interest to<br />
you, helps you lay your hands on things you want, gives<br />
recommendations of things you might want in the future. The librarian<br />
doesn&#8217;t tell you the book is too easy or too hard for you, doesn&#8217;t<br />
make you read the whole book of gardening when all you&#8217;re interested<br />
in is the chapter on composting, and doesn&#8217;t ask you to read aloud to<br />
determine your level of comprehension. The librarian helps you find<br />
other people if you want to start a book group, other works by an<br />
author you like, and information on where to go once you&#8217;ve outreached<br />
the capabilities of the library or the librarian.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=59</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Super Cool Skein</title>
		<link>http://www.garriber.org/?p=58</link>
		<comments>http://www.garriber.org/?p=58#comments</comments>
		<pubDate>Tue, 19 Jun 2007 20:33:50 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Fiber]]></category>
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://garriber.angryspinner.com/?p=58</guid>
		<description><![CDATA[I got a skein in the mail yesterday from Habu Textiles. I do believe it&#8217;s from my No Sheep Skein Swap Secret Pal. It&#8217;s beeautiful. It&#8217;s the 98 Blue Kasuri http://www.habutextiles.com/webfile/a-64.html I played around with it this morning on four-aughts (size 0000 needles).]]></description>
			<content:encoded><![CDATA[<p>I got a skein in the mail yesterday from Habu Textiles.</p>
<p>I do believe it&#8217;s from my No Sheep Skein Swap Secret Pal.<br />
 <img src='http://www.garriber.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>It&#8217;s beeautiful.</p>
<p>It&#8217;s the 98 Blue Kasuri</p>
<p>http://www.habutextiles.com/webfile/a-64.html</p>
<p>I played around with it this morning on four-aughts (size 0000 needles).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=58</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Adventures of Blossom the Goat</title>
		<link>http://www.garriber.org/?p=57</link>
		<comments>http://www.garriber.org/?p=57#comments</comments>
		<pubDate>Mon, 18 Jun 2007 16:27:19 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Animals]]></category>
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://garriber.angryspinner.com/?p=57</guid>
		<description><![CDATA[Got my goat back! Here&#8217;s Blossom&#8217;s adventures, as far as I can piece them back together: Thursday, June 7th, Blossom arrives from friends in Idaho. Saturday, June 9th, Blossom takes off for the hills some time in the afternoon/evening. Sunday, June 10th, my dad thinks he spots her across the lake. Michael, Alaetheia, and I [...]]]></description>
			<content:encoded><![CDATA[<p>Got my goat back!</p>
<p>Here&#8217;s Blossom&#8217;s adventures, as far as I can piece them back together:</p>
<p>Thursday, June 7th, Blossom arrives from friends in Idaho.<br />
Saturday, June 9th, Blossom takes off for the hills some time in the<br />
afternoon/evening.<br />
Sunday, June 10th, my dad thinks he spots her across the lake.<br />
Michael, Alaetheia, and I hike in to find a white boat (not a white<br />
goat) bobbing (not grazing) in the water (not on the shore). Feeling<br />
pretty stupid and tired and sweaty from the mile+ hike, I go ahead and<br />
call to the folks in the boat, &#8220;Excuse me! Have you seen a little<br />
white goat?&#8221; to which they say, &#8220;No&#8221; in a tone that indicates they think I&#8217;m as weird as I feel.</p>
<p>But I don&#8217;t care, because I already feel dumb, and now I&#8217;m<br />
doubly goat-depressed.<br />
We put up signs at the post boxes and the post office.<br />
We go into a goat funk.<br />
We go into goat mourning.<br />
We come back out of the funk.<br />
Friday, June 15th we get a call from some folks who had the goat back<br />
on Sat. and Sun., but she ran off again. Now we at least have an idea<br />
of which way she went (because &#8220;head for the hills&#8221; pretty much is<br />
omni-directional from our place).</p>
<p>My dad saw a bob cat.<br />
This was before we got the goat.<br />
The coyotes are raising their pups.<br />
We&#8217;re not hopeful.</p>
<p>Saturday, June 16th, we put up more signs&#8211;eight&#8211;on our way to town.<br />
We start getting calls:<br />
First, a gal who thinks she saw our goat on Craigslist.<br />
<a href="http://spokane.craigslist.org/pet/349381398.html">http://spokane.craigslist.org/pet/349381398.html</a><br />
Then some folks who had her briefly, but she was making their dogs (a<br />
Neufie and a St. Bernard) cower, so they took her to friends.<br />
Then a guy who says, &#8220;I think my friends have your goat.<br />
Incidentally, I&#8217;m one of the folks who was on the boat you were<br />
hollering at on Sunday . . .&#8221;</p>
<p>Exactly one week after we lost her, we are reunited with Blossom,<br />
who&#8217;s only a little worse for the wear. Actually, she&#8217;s not worse for<br />
the wear at all. She&#8217;s pretty spiffy.<br />
 <img src='http://www.garriber.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=57</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No Sheep Skein Swap Pal</title>
		<link>http://www.garriber.org/?p=56</link>
		<comments>http://www.garriber.org/?p=56#comments</comments>
		<pubDate>Thu, 07 Jun 2007 22:05:42 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Fiber]]></category>
		<category><![CDATA[Musings]]></category>

		<guid isPermaLink="false">http://garriber.angryspinner.com/?p=56</guid>
		<description><![CDATA[Hooray!  My pal has persisted and made contact!  Hooray!]]></description>
			<content:encoded><![CDATA[<p>Hooray!  My pal has persisted and made contact!  Hooray!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.garriber.org/?feed=rss2&amp;p=56</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
