<?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 Guy Rutenberg</title>
	<atom:link href="http://www.guyrutenberg.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.guyrutenberg.com</link>
	<description>Keeping track of what I do</description>
	<lastBuildDate>Tue, 07 Feb 2012 23:33:30 +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 radio.py &#8211; A CLI frontend to Online Radio by world clock</title>
		<link>http://www.guyrutenberg.com/radiopy/comment-page-1/#comment-167830</link>
		<dc:creator>world clock</dc:creator>
		<pubDate>Tue, 07 Feb 2012 23:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/?page_id=179#comment-167830</guid>
		<description>radio.py &#8211; A CLI frontend to Online Radio by Guy Rutenberg - just great!</description>
		<content:encoded><![CDATA[<p>radio.py &#8211; A CLI frontend to Online Radio by Guy Rutenberg &#8211; just great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LaTeX for TiddlyWiki &#8211; A MathJax Plugin by Francis</title>
		<link>http://www.guyrutenberg.com/2011/06/25/latex-for-tiddlywiki-a-mathjax-plugin/comment-page-1/#comment-167373</link>
		<dc:creator>Francis</dc:creator>
		<pubDate>Mon, 06 Feb 2012 16:49:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=825#comment-167373</guid>
		<description>Winter Young, thank you so much for the TiddlersBarPlugin fix! It was driving me crazy.</description>
		<content:encoded><![CDATA[<p>Winter Young, thank you so much for the TiddlersBarPlugin fix! It was driving me crazy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Multibyte String Truncate Modifier for Smarty &#8211; mb_truncate by TECHSARA &#187; smarty mb_truncate</title>
		<link>http://www.guyrutenberg.com/2007/12/04/multibyte-string-truncate-modifier-for-smarty-mb_truncate/comment-page-1/#comment-165158</link>
		<dc:creator>TECHSARA &#187; smarty mb_truncate</dc:creator>
		<pubDate>Tue, 31 Jan 2012 08:11:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/2007/12/04/multibyte-string-truncate-modifier-for-smarty-mb_truncate/#comment-165158</guid>
		<description>[...] Truncate String  smarty mb_truncate    カテゴリー: PHP タグ:         コメント (0) トラックバック (0) [...]</description>
		<content:encoded><![CDATA[<p>[...] Truncate String  smarty mb_truncate    カテゴリー: PHP タグ:         コメント (0) トラックバック (0) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LaTeX for TiddlyWiki &#8211; A MathJax Plugin by rafi</title>
		<link>http://www.guyrutenberg.com/2011/06/25/latex-for-tiddlywiki-a-mathjax-plugin/comment-page-1/#comment-164135</link>
		<dc:creator>rafi</dc:creator>
		<pubDate>Sat, 28 Jan 2012 10:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=825#comment-164135</guid>
		<description>Hi,

I am new to tiddlywiki. I&#039;ve copied the plugin and installed mathjax (which works). However, when I&#039;ve copied the example I did not see the Latex formula just the Tex script.

Any idea why?

Thanks,</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am new to tiddlywiki. I&#8217;ve copied the plugin and installed mathjax (which works). However, when I&#8217;ve copied the example I did not see the Latex formula just the Tex script.</p>
<p>Any idea why?</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Configuring Lighttpd for CakePHP by vodmat</title>
		<link>http://www.guyrutenberg.com/2009/01/24/configuring-lighttpd-for-cakephp/comment-page-1/#comment-162086</link>
		<dc:creator>vodmat</dc:creator>
		<pubDate>Sat, 21 Jan 2012 09:00:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=252#comment-162086</guid>
		<description>Thank you, this was very usefull.</description>
		<content:encoded><![CDATA[<p>Thank you, this was very usefull.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Batch Renaming Using sed by Guy</title>
		<link>http://www.guyrutenberg.com/2009/01/12/batch-renaming-using-sed/comment-page-1/#comment-159431</link>
		<dc:creator>Guy</dc:creator>
		<pubDate>Fri, 13 Jan 2012 13:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=229#comment-159431</guid>
		<description>Coming back to the issue, I&#039;m feeling python is more suitable. A bit longer but safer (no shell escaping problems).

&lt;pre lang=&quot;python&quot;&gt;
import os
import re

[os.rename(s,re.sub(r&quot;(\d{4})(\d{2})&quot;,r&quot;\1-\2&quot;,s)) for s in os.listdir(&#039;.&#039;)]
&lt;/pre&gt;
The example above separates year-month dates using a dash (201201 -&gt; 2012-01).</description>
		<content:encoded><![CDATA[<p>Coming back to the issue, I&#8217;m feeling python is more suitable. A bit longer but safer (no shell escaping problems).</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">os</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">re</span>
&nbsp;
<span style="color: black;">&#91;</span><span style="color: #dc143c;">os</span>.<span style="color: black;">rename</span><span style="color: black;">&#40;</span>s,<span style="color: #dc143c;">re</span>.<span style="color: black;">sub</span><span style="color: black;">&#40;</span>r<span style="color: #483d8b;">&quot;(<span style="color: #000099; font-weight: bold;">\d</span>{4})(<span style="color: #000099; font-weight: bold;">\d</span>{2})&quot;</span>,r<span style="color: #483d8b;">&quot;<span style="color: #000099; font-weight: bold;">\1</span>-<span style="color: #000099; font-weight: bold;">\2</span>&quot;</span>,s<span style="color: black;">&#41;</span><span style="color: black;">&#41;</span> <span style="color: #ff7700;font-weight:bold;">for</span> s <span style="color: #ff7700;font-weight:bold;">in</span> <span style="color: #dc143c;">os</span>.<span style="color: black;">listdir</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'.'</span><span style="color: black;">&#41;</span><span style="color: black;">&#93;</span></pre></div></div>

<p>The example above separates year-month dates using a dash (201201 -> 2012-01).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing CSV to Evolution by Guy</title>
		<link>http://www.guyrutenberg.com/2011/08/26/importing-csv-to-evolution/comment-page-1/#comment-159386</link>
		<dc:creator>Guy</dc:creator>
		<pubDate>Fri, 13 Jan 2012 11:43:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=855#comment-159386</guid>
		<description>Today I&#039;ve tried to import my contacts again, and it seems the two weird problems were fixed.</description>
		<content:encoded><![CDATA[<p>Today I&#8217;ve tried to import my contacts again, and it seems the two weird problems were fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on usb 1-4: device descriptor read/64, error -71 by linksys WSusb600N fails to load at boot, until usb cable plugged out and in again</title>
		<link>http://www.guyrutenberg.com/2008/06/26/usb-1-4-device-descriptor-read64-error-71/comment-page-1/#comment-156705</link>
		<dc:creator>linksys WSusb600N fails to load at boot, until usb cable plugged out and in again</dc:creator>
		<pubDate>Fri, 06 Jan 2012 21:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=62#comment-156705</guid>
		<description>[...] WSusb600N fails to load at boot, until usb cable plugged out and in again     I found this on usb 1-4: device descriptor read/64, error -71 by Guy Rutenberg   [...]</description>
		<content:encoded><![CDATA[<p>[...] WSusb600N fails to load at boot, until usb cable plugged out and in again     I found this on usb 1-4: device descriptor read/64, error -71 by Guy Rutenberg   [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Clean URLs (Permalinks) for WordPress on Lighttpd by pj</title>
		<link>http://www.guyrutenberg.com/2008/05/24/clean-urls-permalinks-for-wordpress-on-lighttpd/comment-page-1/#comment-155619</link>
		<dc:creator>pj</dc:creator>
		<pubDate>Wed, 04 Jan 2012 11:54:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=58#comment-155619</guid>
		<description>Hi Guy, this works like a charm!

Thank you!!</description>
		<content:encoded><![CDATA[<p>Hi Guy, this works like a charm!</p>
<p>Thank you!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LaTeX for TiddlyWiki &#8211; A MathJax Plugin by Winter Young</title>
		<link>http://www.guyrutenberg.com/2011/06/25/latex-for-tiddlywiki-a-mathjax-plugin/comment-page-1/#comment-155291</link>
		<dc:creator>Winter Young</dc:creator>
		<pubDate>Tue, 03 Jan 2012 17:04:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=825#comment-155291</guid>
		<description>Hi, this article is great, saved my ass! Thanks a lot!

But there&#039;s a bug that caused this plugin can interfere with other plugins, like TiddlersBarPlugin. The problem is about the timing of overriding story.displayTiddler. 

The process that backs up the original displayTiddler function should be done at the moment the overriding actually takes place instead of being done at the plugin loading stage.

The fix is to add this statement
&lt;pre lang=&quot;javascript&quot;&gt;
config.extensions.MathJax.displayTiddler_old = story.displayTiddler;
&lt;/pre&gt;
before
&lt;pre lang=&quot;javascript&quot;&gt;
story.displayTiddler = config.extensions.MathJax.displayTiddler;
&lt;/pre&gt;
and delete the statement
&lt;pre lang=&quot;javascript&quot;&gt;
displayTiddler_old = story.displayTiddler;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hi, this article is great, saved my ass! Thanks a lot!</p>
<p>But there&#8217;s a bug that caused this plugin can interfere with other plugins, like TiddlersBarPlugin. The problem is about the timing of overriding story.displayTiddler. </p>
<p>The process that backs up the original displayTiddler function should be done at the moment the overriding actually takes place instead of being done at the plugin loading stage.</p>
<p>The fix is to add this statement</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">config.<span style="color: #660066;">extensions</span>.<span style="color: #660066;">MathJax</span>.<span style="color: #660066;">displayTiddler_old</span> <span style="color: #339933;">=</span> story.<span style="color: #660066;">displayTiddler</span><span style="color: #339933;">;</span></pre></div></div>

<p>before</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">story.<span style="color: #660066;">displayTiddler</span> <span style="color: #339933;">=</span> config.<span style="color: #660066;">extensions</span>.<span style="color: #660066;">MathJax</span>.<span style="color: #660066;">displayTiddler</span><span style="color: #339933;">;</span></pre></div></div>

<p>and delete the statement</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">displayTiddler_old <span style="color: #339933;">=</span> story.<span style="color: #660066;">displayTiddler</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.327 seconds -->

