<?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>bogen.org</title>
	<atom:link href="http://www.bogen.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bogen.org</link>
	<description>Now with occasional clarity</description>
	<lastBuildDate>Wed, 16 May 2012 03:08:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Baseball, Swinging, and Cheering</title>
		<link>http://www.bogen.org/2012/05/15/may-2012-video-added/</link>
		<comments>http://www.bogen.org/2012/05/15/may-2012-video-added/#comments</comments>
		<pubDate>Wed, 16 May 2012 03:07:42 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Life in Wisconsin]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.bogen.org/?p=2582</guid>
		<description><![CDATA[It&#8217;s been a long time since I&#8217;ve uploaded a video of either of the kids so I decided to rectify that situation tonight. Enjoy some of their most recent antics.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a long time since I&#8217;ve uploaded a video of either of the kids so I decided to rectify that situation tonight.  Enjoy some of their most recent antics.</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/rZnUFtJYyXs" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2012/05/15/may-2012-video-added/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gallery2 to Zenphoto Migration</title>
		<link>http://www.bogen.org/2012/05/07/gallery2-to-zenphoto-migration/</link>
		<comments>http://www.bogen.org/2012/05/07/gallery2-to-zenphoto-migration/#comments</comments>
		<pubDate>Mon, 07 May 2012 17:42:43 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.bogen.org/?p=2568</guid>
		<description><![CDATA[Recently I migrated my photo album from Gallery2 to Zenphoto. It wasn&#8217;t an easy process because there is no good out-of-the-box tool written for the migration. So, I mashed together some bits and pieces that others had published online, added some of my own perl glue, and came up with the following Frankenstein script that [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I migrated my photo album from <a href="http://gallery.menalto.com/">Gallery2</a> to <a href="http://www.zenphoto.org/">Zenphoto</a>.  It wasn&#8217;t an easy process because there is no good out-of-the-box tool written for the migration.  So, I mashed together some bits and pieces that others had published online, added some of my own perl glue, and came up with the following Frankenstein script that did 85-90% of the work for me.  Because I&#8217;d switched from putting descriptions in the summary field to the title field at some point during my run with Gallery2, I had to hand-import some information.  In addition, if you&#8217;ve used any of Gallery2&#8242;s tags (to add a link to a field or bold some text or something) this script won&#8217;t fix it.  You can probably pretty easily fix all those problems with a few regexes in strategic places below, but I only had a few in my own installation, so it wasn&#8217;t worth the time to build that into this script.</p>
<p>There are a couple of gotchas involved with the script, especially if you have multiple albums in Gallery2 that all have the same name or if you&#8217;re importing something beyond JPEGS and albums.  Reading through the code is definitely worth your time.</p>
<p>When I ran the script, it was against version 2.3.something of Gallery2 and 1.4.3 of zenphoto.</p>
<p>In the spirit of open source and sharing, the script I used is below.  I hope that someone else finds it useful.</p>
<hr />
<p><code><br />
#!/usr/bin/perl<br />
use strict;</p>
<p>##############################################################################<br />
# Define variables</p>
<p>#<br />
# $host is the hostname of your database, probably localhost.<br />
#<br />
my $host = "ZEN_PHOTO_DB_HOST";<br />
my $user = "ZEN_PHOTO_USER";<br />
my $password = "ZEN_PHOTO_USER_PASSWORD";</p>
<p>#<br />
# $gallery2_db is the name of your Gallery2 database.  Change as needed.<br />
#<br />
my $gallery2_db = "gallery2";</p>
<p>#<br />
# This is the prefix in front of your gallery2 database tables.  Change as<br />
# needed.<br />
#<br />
my $gallery2_db_prefix = "g2_";</p>
<p>#<br />
# $zenphoto_db is the name of your zenphoto dataabase.  Change as needed.<br />
#<br />
my $zenphoto_db = "zenphoto";</p>
<p>#<br />
# THis is the prefix in front of your zenphoto database tables.  Change as needed.<br />
#<br />
my $zenphoto_db_prefix = "zp_";</p>
<p>#<br />
# $phototitle determines what the zenphoto title will be based upon<br />
# "title" will use the Gallery2 title of a photo<br />
# "summary" will use the Gallery2 summary of a photo<br />
#<br />
my $phototitle = "title";<br />
##############################################################################</p>
<p>#<br />
# You shouldn't need to change anything below this line, but knowing how<br />
# this world works, your setup might be just different enough that this script<br />
# won't work for you out of the box. If that's the case, you'll definitely<br />
# have to change something below this line, but what, exactly, needs to be changed<br />
# is an exercise for the user.<br />
#</p>
<p>use DBI();</p>
<p>#<br />
# I had two different databases for my data, so I needed two different database<br />
# handles. However, I created one user that had priveleges on both databases,<br />
# so I only needed one username/password combination. Your setup might be<br />
# simpler or more complex and, hence, you might need to adjust these to<br />
# fit your needs.<br />
#<br />
my $dbh_gallery2 = DBI->connect("DBI:mysql:database=$gallery2_db;host=$host",<br />
$user, $password, {'RaiseError' => 1});<br />
my $dbh_zp = DBI->connect("DBI:mysql:database=$zenphoto_db;host=$host",<br />
$user, $password, { RaiseError => 1, AutoCommit => 1 }) ||<br />
die("Could not connect to zenphoto: $!\n");<br />
my $counter = 0;</p>
<p>my $cursor = $dbh_gallery2->prepare("select<br />
  ${gallery2_db_prefix}FileSystemEntity.g_id,<br />
  ${gallery2_db_prefix}FileSystemEntity.g_pathComponent,<br />
  ${gallery2_db_prefix}Item.g_${phototitle},<br />
  ${gallery2_db_prefix}Item.g_description,<br />
  ${gallery2_db_prefix}Item.g_keywords from<br />
  ${gallery2_db_prefix}FileSystemEntity,<br />
  ${gallery2_db_prefix}Item where<br />
  ${gallery2_db_prefix}FileSystemEntity.g_id = ${gallery2_db_prefix}Item.g_id;") ||<br />
die "Prepare error ($DBI::errstr)";</p>
<p>$cursor->execute() || die "Query error ($DBI::errstr)";<br />
#<br />
# Use backticks here becuase some of these are MySQL reserved words. Use<br />
# backticks on everything because it can't hurt.<br />
#<br />
my $sql1 =<br />
  "UPDATE ${zenphoto_db_prefix}images SET `title` = ?, `desc` = ? WHERE<br />
  `filename` = ?";<br />
my $sql2 =<br />
  "UPDATE ${zenphoto_db_prefix}albums SET `title` = ? , `desc`= ? WHERE<br />
  `folder` like ?";<br />
my $sth1 = $dbh_zp->prepare($sql1);<br />
my $sth2 = $dbh_zp->prepare($sql2);<br />
my $rows_affected = 0;<br />
while(defined(my $row = $cursor->fetch)) {<br />
my $id = $row->[0];<br />
my $filenm = $row->[1];<br />
my $summary = $row->[2];<br />
my $description = $row->[3];<br />
$rows_affected = 0;</p>
<p># If you're importing anything other than JPEGS, you'll need to modify the<br />
# the regex below.<br />
if ($filenm =~ /\.jpg/io)<br />
{<br />
  $rows_affected = $sth1->execute($summary, $description, $filenm)<br />
    or die $sth1->errstr;<br />
  print "IMAGE $counter: gallery2 ID $id: $filenm --- $summary --- $description\n";<br />
  unless($rows_affected)<br />
  {<br />
    print("ERROR: Data for $filenm not saved in database.\n");<br />
  }<br />
}<br />
elsif($filenm)<br />
{<br />
#<br />
# You need the wildcard here because the album that you're updating<br />
# is (potentially) at the end of a long string of albums and you<br />
# don't necessarily care about what comes before. Of course,<br />
# if you have multiple nested albums with the same name this logic<br />
# won't work for you. But I didn't have that problem, so it worked<br />
# for me. Your options include renaming some albums in Gallery2<br />
# before running this script or writing your own solution to<br />
# the problem.<br />
#<br />
  $filenm = '%'.$filenm;<br />
  $rows_affected = $sth2->execute($summary, $description, $filenm)<br />
    or die $sth2->errstr;<br />
  print "ALBUM $counter: gallery2 ID $id: $filenm --- $summary --- $description\n";<br />
  unless($rows_affected)<br />
  {<br />
    print("ERROR: Data for $filenm not saved in database.\n");<br />
  }<br />
}<br />
else<br />
{<br />
  print "$counter: filename is NULL --- NOT INCLUDED!\n";<br />
  next;<br />
}<br />
$counter++;</p>
<p>}<br />
$dbh_gallery2->disconnect();<br />
$dbh_zp->disconnect();<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2012/05/07/gallery2-to-zenphoto-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dinah&#8217;s Nicknames</title>
		<link>http://www.bogen.org/2012/05/03/dinahs-nicknames/</link>
		<comments>http://www.bogen.org/2012/05/03/dinahs-nicknames/#comments</comments>
		<pubDate>Thu, 03 May 2012 17:46:49 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Life in Wisconsin]]></category>

		<guid isPermaLink="false">http://www.bogen.org/?p=2562</guid>
		<description><![CDATA[Dinah has accumulated a number of nicknames so far. Some of them are more widely used within the family than others. Garrison insists on calling her &#8220;Boze&#8221;. We&#8217;re not sure how to spell it, nor where it came from, but he uses it two hundred times a day or more. We&#8217;ll be lucky if she [...]]]></description>
			<content:encoded><![CDATA[<p>Dinah has accumulated a number of nicknames so far.  Some of them are more widely used within the family than others.</p>
<p>Garrison insists on calling her &#8220;Boze&#8221;.  We&#8217;re not sure how to spell it, nor where it came from, but he uses it two hundred times a day or more.  We&#8217;ll be lucky if she doesn&#8217;t grow up with that name.  Sarah will occasionally use it while she&#8217;s talking to Garrison about Dinah but I&#8217;ve so far been refusing because I don&#8217;t like it.</p>
<p>Dinah&#8217;s other nicknames include:</p>
<dl>
<dt>Cranky Baby</dt>
<dd>We haven&#8217;t used this one for a while.  When she was much younger she was often inconsolable for anyone who wasn&#8217;t Sarah.  At those times she was definitely Cranky Baby.</dd>
<dt>Little D</dt>
<dd>This one gets some play around the house.  She is the littlest member of the family whose name starts with the letter D so it&#8217;s not even terribly inaccurate.</dd>
<dt>Baby Time</dt>
<dd>This is her newest nickname.  It came about from people wanting to spend time with the baby and since has evolved into a nickname.  Garrison even used it the other day, which I wasn&#8217;t expecting, since it doesn&#8217;t quite lend itself to extended verbal mangling like the word &#8220;Boze&#8221; does.
</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2012/05/03/dinahs-nicknames/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Tooth!</title>
		<link>http://www.bogen.org/2012/05/01/first-tooth/</link>
		<comments>http://www.bogen.org/2012/05/01/first-tooth/#comments</comments>
		<pubDate>Wed, 02 May 2012 02:27:25 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Life in Wisconsin]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.bogen.org/?p=2553</guid>
		<description><![CDATA[Dinah&#8217;s first tooth made its appearance today. She was fairly cranky last night and rather than sleep from 21:00-05:00, as had become her custom, she was up several times during the night. Now that the tooth is out we know why. We can&#8217;t see much of the tooth yet (only the edge of it has [...]]]></description>
			<content:encoded><![CDATA[<p>Dinah&#8217;s first tooth made its appearance today.  She was fairly cranky last night and rather than sleep from 21:00-05:00, as had become her custom, she was up several times during the night.  Now that the tooth is out we know why.  We can&#8217;t see much of the tooth yet (only the edge of it has come through the gum) but the sharp edge can definitely be felt when you put a finger in her mouth.</p>
<p>On another note, I finally copied some photos off our camera, so I&#8217;ve got pictures of our backyard play set below.  Click on the photos for a larger view.</p>

<a href='http://www.bogen.org/2012/05/01/first-tooth/100_1538/' title='Backyard play set from a distance.'><img width="150" height="150" src="http://www.bogen.org/wp-content/uploads/2012/05/100_1538-150x150.jpg" class="attachment-thumbnail" alt="Backyard play set from a distance." title="Backyard play set from a distance." /></a>
<a href='http://www.bogen.org/2012/05/01/first-tooth/100_1539/' title='Backyard play set showing the climbing wall'><img width="150" height="150" src="http://www.bogen.org/wp-content/uploads/2012/05/100_1539-150x150.jpg" class="attachment-thumbnail" alt="Backyard play set showing the climbing wall" title="Backyard play set showing the climbing wall" /></a>

<p>Finally, there are some new <a href="/zenphoto/friends_house_us/kids/2012/page/2">photos in the photo gallery</a> of the kids.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2012/05/01/first-tooth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pictures, Happy Baby, Play Set</title>
		<link>http://www.bogen.org/2012/04/16/pictures-happy-baby-play-set/</link>
		<comments>http://www.bogen.org/2012/04/16/pictures-happy-baby-play-set/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 17:20:03 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Life in Wisconsin]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.bogen.org/?p=2539</guid>
		<description><![CDATA[After a long dry spell, I finally got a number of new photos uploaded to the photo gallery. Dinah is still her extremely happy baby self. She loves to smile at people and she&#8217;s still pretty quiet (probably because it&#8217;s hard to get a word in edgewise with her brother around). She&#8217;s starting to sit [...]]]></description>
			<content:encoded><![CDATA[<p>After a long dry spell, I finally got a number of new photos uploaded to the <a href="/zenphoto/friends_house_us/kids/2012/">photo gallery</a>.</p>
<p>Dinah is still her extremely happy baby self.  She loves to smile at people and she&#8217;s still pretty quiet (probably because it&#8217;s hard to get a word in edgewise with her brother around).  She&#8217;s starting to sit up on her own for longer periods though she&#8217;s still prone to falling over and bonking her head if she&#8217;s left alone for too long.  She has been sleeping through the night more often than not of late which is great for Sarah and I.  She goes to sleep around 21:00 or so every night and <em>usually</em> doesn&#8217;t wake up until 05:00-06:00 in the morning.  We&#8217;ve started her on some solid foods but she hasn&#8217;t really shown a real appreciation of them yet.</p>
<p>In looking back at some old photos it&#8217;s clear that she&#8217;s getting a different experience than Garrison did at the same age.  We did more stuff and went more places with Garrison when he was an infant because we didn&#8217;t have a toddler along with us to suck up all available time and energy.  She&#8217;s spending more time at home and probably getting to do a few less interesting things.</p>
<p>Garrison is still his rambunctious, boundary-testing, three year-old self.  He&#8217;s doing well with his swimming lessons and he&#8217;s been zipping all over the neighborhood on his balance bike that Santa got him for Christmas.  He routinely rides his balance bike (what he calls his &#8220;tippy bike&#8221;) to day care and bike which is probably a half-mile or more each way.  In fact, he&#8217;s doing so well with his bike that we&#8217;ve been considering getting him a bike with pedals and no training wheels to see how he does.</p>
<p>He&#8217;s also been eating more foods of late.  In fact, he often surprises me when we go out to eat with what he&#8217;ll order.  He&#8217;s ordered fish fry in the past, and pulled off the fried breading in order to eat the cod inside.  He ordered grilled cheese the last time we went out which both Sarah and I were concerned that he wouldn&#8217;t eat since he usually doesn&#8217;t eat cheese at home.  However, he promptly gobbled it down when it arrived.  And, in all honesty, he&#8217;s been eating more cheese at home.  He enjoyed some pepperjack cheese that we had recently, as well as some Colby cheese.  All of that is a real change since even a couple of months ago he wouldn&#8217;t touch white cheese at all and would only occasionally eat &#8220;orange cheese&#8221;.</p>
<p>Last weekend, Garrison and I spent most of Saturday building a large play set in our back yard.  It had become obvious to both Sarah and I that he needed a better outlet for his energy in the backyard and after seeing him exert himself freely on other play sets in the neighborhood we started searching for one of our own.  We looked at used play sets and new play sets before deciding to buy a new one and put it together ourselves.  It was delivered by a large lift truck and one guy, despite weighing over seven hundred pounds.  Sarah did an extensive inventory and labeling of the parts (with Dinah&#8217;s help) once I got them all out of the shipping crate.  All that labeling really helped once the assembly process started because it meant that I could look for the properly labeled part instead of having to spend time comparing similar parts to find the right one.</p>
<p>It probably took twelve-fourteen man-hours to uncrate, label, assemble, and clean-up but now the thing is complete.  Garrison has already spent a good deal of time climbing all over it, pretending that it is a ship, and generally enjoying himself immensely, despite the fact that it&#8217;s been somewhat rainy, windy, and cold since we set it up.</p>
<p>This year was the first year that Garrison really got any sort of Easter experience (probably because it&#8217;s the first year that he&#8217;s been old enough to understand it).  My mom was out for the week of the holiday and she helped get Garrison into the mood by practicing hiding eggs with him during the week.  They also dyed eggs together the night before Easter, along with my sister, which Garrison really enjoyed.  Since then, we&#8217;ve been trying to keep his overall Easter candy consumption down to a readable amount since he gets hyped on sugar pretty easily.  So far, he&#8217;s managed to eat all of his chocolate bunny, some of his jelly beans, all of his Peeps, and a few of his chocolate eggs.  Fortunately there isn&#8217;t another candy-centric holiday coming up for quite a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2012/04/16/pictures-happy-baby-play-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do Not Borrow Trouble</title>
		<link>http://www.bogen.org/2012/03/20/do-not-borrow-trouble/</link>
		<comments>http://www.bogen.org/2012/03/20/do-not-borrow-trouble/#comments</comments>
		<pubDate>Wed, 21 Mar 2012 00:05:17 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.bogen.org/?p=2531</guid>
		<description><![CDATA[The other night I went looking for the lyrics to Count This Penny&#8216;s transcendent song, &#8220;Do Not Borrow Trouble&#8221; and I wasn&#8217;t able to find them. So, as a general service to others who might be looking for the same, the transcribed lyrics are below. For those of you aren&#8217;t familiar with the genesis of [...]]]></description>
			<content:encoded><![CDATA[<p>The other night I went looking for the lyrics to <a href="http://countthispenny.com/" title="Count This Penny">Count This Penny</a>&#8216;s transcendent song, &#8220;<a href="http://countthispenny.bandcamp.com/track/do-not-borrow-trouble" title="Count This Penny on bandcamp.com" target="_blank">Do Not Borrow Trouble</a>&#8221; and I wasn&#8217;t able to find them.  So, as a general service to others who might be looking for the same, the transcribed lyrics are below.</p>
<p>For those of you aren&#8217;t familiar with the genesis of this song, the <a href="http://www.wisvetsmuseum.com" title="Wisconsin Veterans Museum">Wisconsin Veterans Museum</a> loaned a number of letters written by a Civil War soldier to Count This Penny for them to write two songs from the soldier&#8217;s perspective.  The songs were released in early March as a limited release 45 and also as digital downloads.  You might also enjoy this <a href="http://www.youtube.com/watch?v=7sZRAjZrbJk" title="YouTube.com">YouTube video</a> that describes the creation of the songs.</p>
<blockquote>
<p>Father, Mother ever dear<br />
I&#8217;m your unworthy son<br />
I seat myself to tell you of<br />
The ground that we have won
</p>
<p>
We look for a fight at Shiloh<br />
In the black heart of Secesh<br />
There&#8217;s a hundred thousand soldiers here<br />
And we can&#8217;t get no rest<br />
And we can&#8217;t get no rest
</p>
<p>Oh…</p>
<p>
The waiting here will use us up<br />
The hardtack&#8217;s hard to take<br />
I&#8217;ll bear it like the others do<br />
And whisper no complaint
</p>
<p>
We&#8217;re a mile from the Tennessee River<br />
Where the peach trees bloom and sway<br />
I&#8217;m way down South in in the land of cotton<br />
That&#8217;s more than some can say<br />
That&#8217;s more than some can say
</p>
<p>Oh…</p>
<p>
Please do not borrow trouble<br />
I am well; I do not fear<br />
And do not believe rumors<br />
I am sure that you will hear
</p>
<p>
I seen old tight ass Stuart<br />
And I asked him how he goes<br />
He does not like the soldiering<br />
No letters come from home<br />
No letters come from home
</p>
<p>Oh…</p>
<p>
Father, Mother ever dear<br />
I&#8217;m your unworthy son<br />
I seat myself to tell you of<br />
The ground that we have won<br />
The ground that we have won
</p>
<p>
Please do not borrow trouble<br />
I am well; I do not fear<br />
And do not believe rumors<br />
I am sure that you will hear
</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2012/03/20/do-not-borrow-trouble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We have mice?</title>
		<link>http://www.bogen.org/2012/02/22/we-have-mice/</link>
		<comments>http://www.bogen.org/2012/02/22/we-have-mice/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 18:05:59 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Life in Wisconsin]]></category>

		<guid isPermaLink="false">http://www.bogen.org/?p=2527</guid>
		<description><![CDATA[Another one of Garrison&#8217;s journal entries from Honeybees. I can only assume that they read a story about a mouse named Moses. Moses is trying to jump in the pool. He is trying to collect fries and hamburgers. He goes into his house when it&#8217;s cold. Mommy, Papa, Nanny, and Grandpa all live there. Moses [...]]]></description>
			<content:encoded><![CDATA[<p>Another one of Garrison&#8217;s journal entries from Honeybees.  I can only assume that they read a story about a mouse named Moses.</p>
<blockquote><p>
Moses is trying to jump in the pool.<br />
He is trying to collect fries and hamburgers.<br />
He goes into his house when it&#8217;s cold.<br />
Mommy, Papa, Nanny, and Grandpa all live there.<br />
Moses is a good mouse.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2012/02/22/we-have-mice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No.</title>
		<link>http://www.bogen.org/2012/01/27/no/</link>
		<comments>http://www.bogen.org/2012/01/27/no/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 00:25:46 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Life in Wisconsin]]></category>

		<guid isPermaLink="false">https://www.bogen.org/2012/01/27/no/</guid>
		<description><![CDATA[Me: &#8220;Why do you say &#8216;No&#8217; to me so much?&#8221; Garrison: &#8220;When you say something wrong I say &#8216;No.&#8217;&#8221; It struck me today that Dinah looks more than a little like Jack-Jack in Disney&#8217;s &#8220;The Incredibles&#8221;. She even has the same crazy curl of hair on top of her head.]]></description>
			<content:encoded><![CDATA[<p>Me: &#8220;Why do you say &#8216;No&#8217; to me so much?&#8221;<br />
Garrison: &#8220;When you say something wrong I say &#8216;No.&#8217;&#8221;</p>
<p>It struck me today that Dinah looks more than a little like Jack-Jack in Disney&#8217;s &#8220;The Incredibles&#8221;. She even has the same crazy curl of hair on top of her head.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2012/01/27/no/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Garrison&#8217;s Journal Entries</title>
		<link>http://www.bogen.org/2011/12/08/garrisons-journal-entries/</link>
		<comments>http://www.bogen.org/2011/12/08/garrisons-journal-entries/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 23:38:23 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Life in Wisconsin]]></category>

		<guid isPermaLink="false">http://www.bogen.org/?p=2512</guid>
		<description><![CDATA[Garrison&#8217;s day care helps the kids keep &#8220;journals.&#8221; Primarily, these are little one page stories each child tells after reading a book or listening to a story. The teachers write down what the kids say and post it on a bulletin board for the parents to read. Below are a couple of samples from Garrison&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Garrison&#8217;s day care helps the kids keep &#8220;journals.&#8221;  Primarily, these are little one page stories each child tells after reading a book or listening to a story.  The teachers write down what the kids say and post it on a bulletin board for the parents to read.  Below are a couple of samples from Garrison&#8217;s journal.</p>
<blockquote><p>These are rainbows. I love rainbows.</p>
<p>On Thursday, the rainbows came to play.</p>
<p>The rainbows got hurt and pushed.  They cried.</p>
<p>I helped them back so they wouldn&#8217;t cry anymore.</p>
<p>I didn&#8217;t push them down.
</p></blockquote>
<p align="center">-=-=-=-=-=</p>
<blockquote><p>
My turkey&#8217;s name is Dinah Emberly. She slept in a nest with eggs.</p>
<p>There were 2 eggs.  The eggs cracked and little eggs came out.</p>
<p>There were more little eggs in the little eggs.</p>
<p>The turkey ate some eggs.  She liked them.  I do too.</p>
<p>She went in the leaf pile to look for bunnies.  She didn&#8217;t find them yet.</p>
<p>Then she went into the hostas to look for them and there they were.</p>
<p>There were 2 bunnies.  The bunnies said, &#8220;Don&#8217;t find me.&#8221;</p>
<p>Dinah said, &#8220;I&#8217;m sorry.&#8221;
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2011/12/08/garrisons-journal-entries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Garrisonisms</title>
		<link>http://www.bogen.org/2011/12/07/more-garrisonisms/</link>
		<comments>http://www.bogen.org/2011/12/07/more-garrisonisms/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 02:46:44 +0000</pubDate>
		<dc:creator>David Bogen</dc:creator>
				<category><![CDATA[Life in Wisconsin]]></category>

		<guid isPermaLink="false">https://www.bogen.org/2011/12/07/more-garrisonisms/</guid>
		<description><![CDATA[Some other Garrisonisms that I forgot the other day.. Hopsabill Hospital Freezy Refridgerator Sword Fwight Sword fight. I&#8217;m not quite sure why it has attracted the extra consonant, but it has.]]></description>
			<content:encoded><![CDATA[<p>Some other Garrisonisms that I forgot the other day..</p>
<p>
<dl>
<dt>Hopsabill</dt>
<dd>Hospital</dd>
</dl>
<p>
<dl>
<dt>Freezy</dt>
<dd>Refridgerator</dd>
</dl>
<p>
<dl>
<dt>Sword Fwight</dt>
<dd>Sword fight. I&#8217;m not quite sure why it has attracted the extra consonant, but it has.</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://www.bogen.org/2011/12/07/more-garrisonisms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

