<?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 Richard Peng</title>
	<atom:link href="http://richardpeng.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://richardpeng.com</link>
	<description>Web and Python Developer in Maryland</description>
	<lastBuildDate>Mon, 14 Mar 2011 03:45:32 +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 Kindelabra &#8211; Manage your Kindle Collections by 使用 Kindelabra 管理你的 Kindle Collections — Padevices</title>
		<link>http://richardpeng.com/projects/kindelabra/#comment-302</link>
		<dc:creator>使用 Kindelabra 管理你的 Kindle Collections — Padevices</dc:creator>
		<pubDate>Mon, 14 Mar 2011 03:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardpeng.com/#comment-302</guid>
		<description>[...] Kindle Collections 的软件，那么由 Richard Peng 所开发的 Kindelabra [...]</description>
		<content:encoded><![CDATA[<p>[...] Kindle Collections 的软件，那么由 Richard Peng 所开发的 Kindelabra [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kindelabra &#8211; Manage your Kindle Collections by el eReader Castizo - Organiza tus &#8216;Colecciones&#8217; con Kindelabra</title>
		<link>http://richardpeng.com/projects/kindelabra/#comment-300</link>
		<dc:creator>el eReader Castizo - Organiza tus &#8216;Colecciones&#8217; con Kindelabra</dc:creator>
		<pubDate>Sat, 12 Mar 2011 17:05:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardpeng.com/#comment-300</guid>
		<description>[...] Más info y descargas: Kindelabra. [...]</description>
		<content:encoded><![CDATA[<p>[...] Más info y descargas: Kindelabra. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kindelabra &#8211; Manage your Kindle Collections by kindle帖子收藏 &#60; XH@Sonix:~Who</title>
		<link>http://richardpeng.com/projects/kindelabra/#comment-295</link>
		<dc:creator>kindle帖子收藏 &#60; XH@Sonix:~Who</dc:creator>
		<pubDate>Wed, 09 Mar 2011 04:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardpeng.com/#comment-295</guid>
		<description>[...] Kindelabra  kindle看新闻 library.nu 常去下载ebook的网站 书仓网 [...]</description>
		<content:encoded><![CDATA[<p>[...] Kindelabra  kindle看新闻 library.nu 常去下载ebook的网站 书仓网 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kindelabra &#8211; Manage your Kindle Collections by Kindle Collection分类管理软件：KindleLabra &#124; 数码池塘</title>
		<link>http://richardpeng.com/projects/kindelabra/#comment-270</link>
		<dc:creator>Kindle Collection分类管理软件：KindleLabra &#124; 数码池塘</dc:creator>
		<pubDate>Fri, 18 Feb 2011 16:51:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardpeng.com/#comment-270</guid>
		<description>[...] Kindlelabra包括了Win和Linux下的版本，官方地址如下： http://www.richardpeng.com/projects/kindelabra/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Kindlelabra包括了Win和Linux下的版本，官方地址如下： <a href="http://www.richardpeng.com/projects/kindelabra/" rel="nofollow">http://www.richardpeng.com/projects/kindelabra/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Find text in files by rpeng</title>
		<link>http://richardpeng.com/2010/07/22/find-text-in-files/#comment-14</link>
		<dc:creator>rpeng</dc:creator>
		<pubDate>Mon, 26 Jul 2010 06:24:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardpeng.com/?p=82#comment-14</guid>
		<description>Your command is much more concise. Thanks for the tip!</description>
		<content:encoded><![CDATA[<p>Your command is much more concise. Thanks for the tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resize Album Art by Curran</title>
		<link>http://richardpeng.com/2010/07/20/album-art/#comment-9</link>
		<dc:creator>Curran</dc:creator>
		<pubDate>Mon, 26 Jul 2010 05:26:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardpeng.com/?p=10#comment-9</guid>
		<description>This script is useful if you use Rockbox on older devices (such as the 3rd gen iPod).  It resizes album art (named &quot;cover.jpg&quot;) and reduces the color to 4 shades of gray.
&lt;pre class=&quot;brush:bash&quot;&gt;
#!/bin/bash
convert cover.jpg -resize 64x64! -colorspace Gray -colors 4 /tmp/TMPcoverIN.xpm
echo &quot;/* XPM */
static char *covernd_[] = {
/* columns rows colors chars-per-pixel */
\&quot;64 64 4 1\&quot;,
\&quot;  c #000000\&quot;,
\&quot;. c #555555\&quot;,
\&quot;X c #AAAAAA\&quot;,
\&quot;o c #FFFFFF\&quot;,&quot; &gt; /tmp/TMPcoverOUT.xpm
tail -n+9 /tmp/TMPcoverIN.xpm &gt;&gt; /tmp/TMPcoverOUT.xpm
convert /tmp/TMPcoverOUT.xpm cover.bmp
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>This script is useful if you use Rockbox on older devices (such as the 3rd gen iPod).  It resizes album art (named &#8220;cover.jpg&#8221;) and reduces the color to 4 shades of gray.</p>
<pre class="brush:bash">
#!/bin/bash
convert cover.jpg -resize 64x64! -colorspace Gray -colors 4 /tmp/TMPcoverIN.xpm
echo "/* XPM */
static char *covernd_[] = {
/* columns rows colors chars-per-pixel */
\"64 64 4 1\",
\"  c #000000\",
\". c #555555\",
\"X c #AAAAAA\",
\"o c #FFFFFF\"," &gt; /tmp/TMPcoverOUT.xpm
tail -n+9 /tmp/TMPcoverIN.xpm &gt;&gt; /tmp/TMPcoverOUT.xpm
convert /tmp/TMPcoverOUT.xpm cover.bmp
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Find text in files by Curran</title>
		<link>http://richardpeng.com/2010/07/22/find-text-in-files/#comment-6</link>
		<dc:creator>Curran</dc:creator>
		<pubDate>Mon, 26 Jul 2010 04:21:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardpeng.com/?p=82#comment-6</guid>
		<description>How does this differ from:
&lt;pre class=&quot;brush:bash&quot;&gt;grep -Iilr &#039;search phrase&#039; .&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>How does this differ from:</p>
<pre class="brush:bash">grep -Iilr 'search phrase' .</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: richardpeng.com @ 2012-02-22 13:45:57 -->
