<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	>
<channel>
	<title>Comments on: It&#8217;s Not That Easy Drinking Green</title>
	<atom:link href="http://www.josephzitt.com/wordpress/archives/44/feed" rel="self" type="application/rss+xml" />
	<link>http://www.josephzitt.com/wordpress/archives/44</link>
	<description>Joseph Zitt on writing, selling, and considering books and music.</description>
	<pubDate>Wed, 07 Jan 2009 00:28:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Steven Hart</title>
		<link>http://www.josephzitt.com/wordpress/archives/44/comment-page-1#comment-866</link>
		<dc:creator>Steven Hart</dc:creator>
		<pubDate>Mon, 19 Mar 2007 20:06:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.josephzitt.com/wordpress/archives/44#comment-866</guid>
		<description>You didn't give any green beer to the penguin, did you? Because that would be wrong, you know. Making a penguin drink green beer, I mean. Even if it is a stuffed penguin.</description>
		<content:encoded><![CDATA[<p>You didn&#8217;t give any green beer to the penguin, did you? Because that would be wrong, you know. Making a penguin drink green beer, I mean. Even if it is a stuffed penguin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mssmas</title>
		<link>http://www.josephzitt.com/wordpress/archives/44/comment-page-1#comment-864</link>
		<dc:creator>mssmas</dc:creator>
		<pubDate>Mon, 19 Mar 2007 16:30:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.josephzitt.com/wordpress/archives/44#comment-864</guid>
		<description>You deserve that million dollar bill for customer service!
(glad you are writing here again, missed you)</description>
		<content:encoded><![CDATA[<p>You deserve that million dollar bill for customer service!<br />
(glad you are writing here again, missed you)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jane the Em Quot</title>
		<link>http://www.josephzitt.com/wordpress/archives/44/comment-page-1#comment-859</link>
		<dc:creator>Jane the Em Quot</dc:creator>
		<pubDate>Mon, 19 Mar 2007 00:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.josephzitt.com/wordpress/archives/44#comment-859</guid>
		<description>How did the Moses thing go? Or is that next weekend?  Inquiring minds want to know.

Jane (back from Nashville, see blog for preliminary details)</description>
		<content:encoded><![CDATA[<p>How did the Moses thing go? Or is that next weekend?  Inquiring minds want to know.</p>
<p>Jane (back from Nashville, see blog for preliminary details)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Cowan</title>
		<link>http://www.josephzitt.com/wordpress/archives/44/comment-page-1#comment-857</link>
		<dc:creator>John Cowan</dc:creator>
		<pubDate>Sun, 18 Mar 2007 16:07:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.josephzitt.com/wordpress/archives/44#comment-857</guid>
		<description>Arrgh, looks like the code got truncated in the middle of a line thanks to the less-than operator.  I'll try that part again:

$m-- if $phi - $otry (less-than) $try - $phi;
my $work = $hshift + $m;
my $hour = int($work / 60);
my $min = $work - ($hour * 60);
print "For a $shift-hour shift, break after $hour hours, $min minutes.\n";

Note that the stupid "$m[em-dash]" should be "$m minus minus".  To run, say "work-break 4".</description>
		<content:encoded><![CDATA[<p>Arrgh, looks like the code got truncated in the middle of a line thanks to the less-than operator.  I&#8217;ll try that part again:</p>
<p>$m&#8211; if $phi - $otry (less-than) $try - $phi;<br />
my $work = $hshift + $m;<br />
my $hour = int($work / 60);<br />
my $min = $work - ($hour * 60);<br />
print &#8220;For a $shift-hour shift, break after $hour hours, $min minutes.\n&#8221;;</p>
<p>Note that the stupid &#8220;$m[em-dash]&#8221; should be &#8220;$m minus minus&#8221;.  To run, say &#8220;work-break 4&#8243;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Cowan</title>
		<link>http://www.josephzitt.com/wordpress/archives/44/comment-page-1#comment-856</link>
		<dc:creator>John Cowan</dc:creator>
		<pubDate>Sun, 18 Mar 2007 16:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.josephzitt.com/wordpress/archives/44#comment-856</guid>
		<description>Well, I wrote a little Perl program to figure it for me.  It says the start of your break should come at 2 hours 22 minutes for a 4-hour shift and 1 hour 45 minutes (as you say) for a 3-hour shift.  Here's the code:

#!/usr/bin/perl -w

use strict;

my $break = 10;                         # break time in minutes
my $shift = shift;                      # shift in hours
my $hshift = ($shift * 60 - $break) / 2;        # half a working shift in minutes
my $phi = 1.618033989;                  # the Golden Ratio
my $m;                                  # offset in minutes
my $try;                                # latest approx to phi
my $otry;                               # previous approx to phi

for ($m = 0; $m  $phi;
        }

$m-- if $phi - $otry </description>
		<content:encoded><![CDATA[<p>Well, I wrote a little Perl program to figure it for me.  It says the start of your break should come at 2 hours 22 minutes for a 4-hour shift and 1 hour 45 minutes (as you say) for a 3-hour shift.  Here&#8217;s the code:</p>
<p>#!/usr/bin/perl -w</p>
<p>use strict;</p>
<p>my $break = 10;                         # break time in minutes<br />
my $shift = shift;                      # shift in hours<br />
my $hshift = ($shift * 60 - $break) / 2;        # half a working shift in minutes<br />
my $phi = 1.618033989;                  # the Golden Ratio<br />
my $m;                                  # offset in minutes<br />
my $try;                                # latest approx to phi<br />
my $otry;                               # previous approx to phi</p>
<p>for ($m = 0; $m  $phi;<br />
        }</p>
<p>$m&#8211; if $phi - $otry</p>
]]></content:encoded>
	</item>
</channel>
</rss>
