<?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 for John&#039;s Blog</title>
	<atom:link href="http://john.nachtimwald.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://john.nachtimwald.com</link>
	<description>My little blog</description>
	<lastBuildDate>Sat, 21 Jan 2012 00:48:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Ebook Creation Workflow by John</title>
		<link>http://john.nachtimwald.com/2011/12/13/ebook-creation-workflow/comment-page-1/#comment-1652</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sat, 21 Jan 2012 00:48:47 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=989#comment-1652</guid>
		<description>I would be InDesign (for ebook creation only) on the same level as Jutoh and Atlantis Word Processor. I have not used it myself but people I know who do have not been able to tell me any compelling reason to use it over other tools. The only big draw I can see of InDesign is it&#039;s ability to create both digital and print. If you only need to create eBooks the big issue with InDesign is it&#039;s large price tag.</description>
		<content:encoded><![CDATA[<p>I would be InDesign (for ebook creation only) on the same level as Jutoh and Atlantis Word Processor. I have not used it myself but people I know who do have not been able to tell me any compelling reason to use it over other tools. The only big draw I can see of InDesign is it&#8217;s ability to create both digital and print. If you only need to create eBooks the big issue with InDesign is it&#8217;s large price tag.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ebook Creation Workflow by Debbi</title>
		<link>http://john.nachtimwald.com/2011/12/13/ebook-creation-workflow/comment-page-1/#comment-1651</link>
		<dc:creator>Debbi</dc:creator>
		<pubDate>Thu, 19 Jan 2012 14:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=989#comment-1651</guid>
		<description>What about using InDesign CS5? How does that fit into the workflow of an epub?</description>
		<content:encoded><![CDATA[<p>What about using InDesign CS5? How does that fit into the workflow of an epub?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ebook Creation Workflow by Curtis Hox</title>
		<link>http://john.nachtimwald.com/2011/12/13/ebook-creation-workflow/comment-page-1/#comment-1592</link>
		<dc:creator>Curtis Hox</dc:creator>
		<pubDate>Thu, 15 Dec 2011 09:13:42 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=989#comment-1592</guid>
		<description>Great info, John! Big help!</description>
		<content:encoded><![CDATA[<p>Great info, John! Big help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Duplicity Backup Script by John</title>
		<link>http://john.nachtimwald.com/2010/08/07/duplicity-backup-script/comment-page-1/#comment-1579</link>
		<dc:creator>John</dc:creator>
		<pubDate>Wed, 07 Dec 2011 01:48:26 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=464#comment-1579</guid>
		<description>Restore is handled by duplicity. When a URL comes before a local directory it works in restore mode. See http://duplicity.nongnu.org/duplicity.1.html for details. However, my backup script does not handle restore. This would need to be done manually using duplicity directly.</description>
		<content:encoded><![CDATA[<p>Restore is handled by duplicity. When a URL comes before a local directory it works in restore mode. See <a href="http://duplicity.nongnu.org/duplicity.1.html" rel="nofollow">http://duplicity.nongnu.org/duplicity.1.html</a> for details. However, my backup script does not handle restore. This would need to be done manually using duplicity directly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Duplicity Backup Script by Peter</title>
		<link>http://john.nachtimwald.com/2010/08/07/duplicity-backup-script/comment-page-1/#comment-1578</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 06 Dec 2011 18:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=464#comment-1578</guid>
		<description>Thanks for that.  And to restore, you just use duplicity?</description>
		<content:encoded><![CDATA[<p>Thanks for that.  And to restore, you just use duplicity?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Duplicity Backup Script by John</title>
		<link>http://john.nachtimwald.com/2010/08/07/duplicity-backup-script/comment-page-1/#comment-1577</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 06 Dec 2011 12:03:45 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=464#comment-1577</guid>
		<description>FULLDAYS=”30D” and MAXFULL=3 are easy to change constants used by the script. They are not part of duplicity itself.

FULLDAYS set to 30D says that we want a full backup every 30 days. By default the script does incremental backups based upon the last full backup. I want to force a full backup every 30 days.

MAXFULL is how many full backups to keep around. A full backup being set to 30 days means that I only store the last 3 months (or so) of backups.

The idea is to do incremental backups most of the time but do a full backup every so often to make it easier to do a restore if necessary. Also only store the last 3 months of backups. Anything older will be automatically deleted.</description>
		<content:encoded><![CDATA[<p>FULLDAYS=”30D” and MAXFULL=3 are easy to change constants used by the script. They are not part of duplicity itself.</p>
<p>FULLDAYS set to 30D says that we want a full backup every 30 days. By default the script does incremental backups based upon the last full backup. I want to force a full backup every 30 days.</p>
<p>MAXFULL is how many full backups to keep around. A full backup being set to 30 days means that I only store the last 3 months (or so) of backups.</p>
<p>The idea is to do incremental backups most of the time but do a full backup every so often to make it easier to do a restore if necessary. Also only store the last 3 months of backups. Anything older will be automatically deleted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Duplicity Backup Script by Peter</title>
		<link>http://john.nachtimwald.com/2010/08/07/duplicity-backup-script/comment-page-1/#comment-1576</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Tue, 06 Dec 2011 11:54:55 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=464#comment-1576</guid>
		<description>Forgive the basic question (Very new to duplicity), and need something to backup my wordpress databases.  What do the following options do?

FULLDAYS=&quot;30D&quot;
MAXFULL=3</description>
		<content:encoded><![CDATA[<p>Forgive the basic question (Very new to duplicity), and need something to backup my wordpress databases.  What do the following options do?</p>
<p>FULLDAYS=&#8221;30D&#8221;<br />
MAXFULL=3</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Formatting Tips: Raised Initial by Curtis Hox</title>
		<link>http://john.nachtimwald.com/2011/09/27/formatting-tips-raised-initial/comment-page-1/#comment-1547</link>
		<dc:creator>Curtis Hox</dc:creator>
		<pubDate>Fri, 18 Nov 2011 09:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=938#comment-1547</guid>
		<description>John

Finally got back around to formatting one of ebooks. I used your initial capital suggestion. So simple! But works like a charm. Thanks.</description>
		<content:encoded><![CDATA[<p>John</p>
<p>Finally got back around to formatting one of ebooks. I used your initial capital suggestion. So simple! But works like a charm. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Retrieve Formatting Set by QSyntaxHighlighter by Jason</title>
		<link>http://john.nachtimwald.com/2011/10/29/retrieve-formatting-set-by-qsyntaxhighlighter/comment-page-1/#comment-1491</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sat, 29 Oct 2011 21:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=977#comment-1491</guid>
		<description>Trixy.</description>
		<content:encoded><![CDATA[<p>Trixy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Nook Covers Not Showing Up by Sean N</title>
		<link>http://john.nachtimwald.com/2011/08/21/nook-covers-not-showing-up/comment-page-1/#comment-1473</link>
		<dc:creator>Sean N</dc:creator>
		<pubDate>Sun, 16 Oct 2011 06:19:10 +0000</pubDate>
		<guid isPermaLink="false">http://john.nachtimwald.com/?p=888#comment-1473</guid>
		<description>Thanks for the tip.

WHile this work beautifully on Nook Color, It does not seem to help Nook for Android (I could boot the nook color to Android 2.3 via SD and have tried this). Moreover the default cover in Nook for Android is totally messed up to begin with, so this becomes more of an issue.

Does anyone know how Nook for Android handles cover?

Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for the tip.</p>
<p>WHile this work beautifully on Nook Color, It does not seem to help Nook for Android (I could boot the nook color to Android 2.3 via SD and have tried this). Moreover the default cover in Nook for Android is totally messed up to begin with, so this becomes more of an issue.</p>
<p>Does anyone know how Nook for Android handles cover?</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

