<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Juggling Bits</title>
	<atom:link href="http://jugglingbits.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jugglingbits.wordpress.com</link>
	<description>thomas11's technical blog</description>
	<lastBuildDate>Thu, 14 Feb 2013 20:40:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on A better less, playing nice with git by tiziano88</title>
		<link>http://jugglingbits.wordpress.com/2010/03/24/a-better-less-playing-nice-with-git/#comment-187</link>
		<dc:creator><![CDATA[tiziano88]]></dc:creator>
		<pubDate>Thu, 14 Feb 2013 20:40:18 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/?p=311#comment-187</guid>
		<description><![CDATA[Great, I added -F and -X to my LESS variable, and I could not figure out why it was not displaying the escape codes correctly, now it&#039;s fixed! Thanks a lot!]]></description>
		<content:encoded><![CDATA[<p>Great, I added -F and -X to my LESS variable, and I could not figure out why it was not displaying the escape codes correctly, now it&#8217;s fixed! Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java-based JavaScript unit testing with Rhino by Edy Hinzen</title>
		<link>http://jugglingbits.wordpress.com/2009/10/28/java-based-javascript-unit-testing-with-rhino/#comment-182</link>
		<dc:creator><![CDATA[Edy Hinzen]]></dc:creator>
		<pubDate>Mon, 20 Aug 2012 17:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/?p=29#comment-182</guid>
		<description><![CDATA[Hi Thomas!

Thanks a lot for this post. I didn&#039;t work with Rhino before and had (nearly) immediate succes realizing your code.
In your sample, there are some declarations missing; I think it&#039;s due to the BLOG-Format.
Let me try to say it in pseudo-code.
It reads
 public  T eval(String js, Class returnType)
but should be
public [less-than]T[greater-than] T eval(String js, Class[less-than]T[greater-than] returnType)

Kind regards
Edy Hinzen]]></description>
		<content:encoded><![CDATA[<p>Hi Thomas!</p>
<p>Thanks a lot for this post. I didn&#8217;t work with Rhino before and had (nearly) immediate succes realizing your code.<br />
In your sample, there are some declarations missing; I think it&#8217;s due to the BLOG-Format.<br />
Let me try to say it in pseudo-code.<br />
It reads<br />
 public  T eval(String js, Class returnType)<br />
but should be<br />
public [less-than]T[greater-than] T eval(String js, Class[less-than]T[greater-than] returnType)</p>
<p>Kind regards<br />
Edy Hinzen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Weekend Triple Billionaire at SWAT4LS 2009 by Ubiquinol Reviews</title>
		<link>http://jugglingbits.wordpress.com/2010/01/24/weekend-triple-billionaire-at-swat4ls-2009/#comment-171</link>
		<dc:creator><![CDATA[Ubiquinol Reviews]]></dc:creator>
		<pubDate>Sat, 10 Mar 2012 10:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/?p=283#comment-171</guid>
		<description><![CDATA[&lt;strong&gt;Ubiquinol Reviews...&lt;/strong&gt;

[...]Weekend Triple Billionaire at SWAT4LS 2009 &#171; Juggling Bits[...]...]]></description>
		<content:encoded><![CDATA[<p><strong>Ubiquinol Reviews&#8230;</strong></p>
<p>[...]Weekend Triple Billionaire at SWAT4LS 2009 &laquo; Juggling Bits[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mocking LWP::UserAgent with POST redirection by Karen Etheridge</title>
		<link>http://jugglingbits.wordpress.com/2010/04/11/mocking-lwpuseragent-with-post-redirection/#comment-169</link>
		<dc:creator><![CDATA[Karen Etheridge]]></dc:creator>
		<pubDate>Mon, 06 Feb 2012 19:15:08 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/2010/04/11/mocking-lwpuseragent-with-post-redirection/#comment-169</guid>
		<description><![CDATA[You should also take a look at Test::Mock::LWP::UserAgent on the CPAN.]]></description>
		<content:encoded><![CDATA[<p>You should also take a look at Test::Mock::LWP::UserAgent on the CPAN.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A better less, playing nice with git by edam</title>
		<link>http://jugglingbits.wordpress.com/2010/03/24/a-better-less-playing-nice-with-git/#comment-123</link>
		<dc:creator><![CDATA[edam]]></dc:creator>
		<pubDate>Thu, 23 Dec 2010 15:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/?p=311#comment-123</guid>
		<description><![CDATA[A better solution, so that the way you set up less for use with git is not set globally, is to set git&#039;s pager to use less as you require. For example:

git config --global core.pager &#039;less $LESS -FRXS&#039;

That way, you can set your LESS environment variable how you like it and still get git to use less the way you describe.]]></description>
		<content:encoded><![CDATA[<p>A better solution, so that the way you set up less for use with git is not set globally, is to set git&#8217;s pager to use less as you require. For example:</p>
<p>git config &#8211;global core.pager &#8216;less $LESS -FRXS&#8217;</p>
<p>That way, you can set your LESS environment variable how you like it and still get git to use less the way you describe.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java-based JavaScript unit testing with Rhino by thomas11</title>
		<link>http://jugglingbits.wordpress.com/2009/10/28/java-based-javascript-unit-testing-with-rhino/#comment-87</link>
		<dc:creator><![CDATA[thomas11]]></dc:creator>
		<pubDate>Sun, 19 Sep 2010 16:42:10 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/?p=29#comment-87</guid>
		<description><![CDATA[Hi Janaki, thanks for the feedback.

My memory is a bit vague on this because I didn&#039;t work with this code for months. However, the Rhino API doc seems to indicate that it&#039;s possible: http://www.mozilla.org/rhino/apidocs/org/mozilla/javascript/Context.html#jsToJava%28java.lang.Object,%20java.lang.Class%29.

Good luck finding the LiveConnect documentation, my brief attempt wasn&#039;t successful.]]></description>
		<content:encoded><![CDATA[<p>Hi Janaki, thanks for the feedback.</p>
<p>My memory is a bit vague on this because I didn&#8217;t work with this code for months. However, the Rhino API doc seems to indicate that it&#8217;s possible: <a href="http://www.mozilla.org/rhino/apidocs/org/mozilla/javascript/Context.html#jsToJava%28java.lang.Object,%20java.lang.Class%29" rel="nofollow">http://www.mozilla.org/rhino/apidocs/org/mozilla/javascript/Context.html#jsToJava%28java.lang.Object,%20java.lang.Class%29</a>.</p>
<p>Good luck finding the LiveConnect documentation, my brief attempt wasn&#8217;t successful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testing Wicket ListViews using IVisitor by Dan</title>
		<link>http://jugglingbits.wordpress.com/2009/11/05/testing-wicket-listviews-using-ivisitor/#comment-86</link>
		<dc:creator><![CDATA[Dan]]></dc:creator>
		<pubDate>Sun, 19 Sep 2010 01:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/?p=222#comment-86</guid>
		<description><![CDATA[Thanks!  Just what I was looking for...]]></description>
		<content:encoded><![CDATA[<p>Thanks!  Just what I was looking for&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java-based JavaScript unit testing with Rhino by Janaki Ram</title>
		<link>http://jugglingbits.wordpress.com/2009/10/28/java-based-javascript-unit-testing-with-rhino/#comment-85</link>
		<dc:creator><![CDATA[Janaki Ram]]></dc:creator>
		<pubDate>Thu, 16 Sep 2010 14:56:43 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/?p=29#comment-85</guid>
		<description><![CDATA[Hi,

Thanks a lot  for this post!

I have a basic question regarding the usage of Context.jsToJava. Does this API only work for basic data types such as String, Integer, Boolean and it does not work for user defined types? I mean, can I convert user defined JS types to user defined Java types?

Janaki]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks a lot  for this post!</p>
<p>I have a basic question regarding the usage of Context.jsToJava. Does this API only work for basic data types such as String, Integer, Boolean and it does not work for user defined types? I mean, can I convert user defined JS types to user defined Java types?</p>
<p>Janaki</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Semantic hacking: RDF in Perl by thomas11</title>
		<link>http://jugglingbits.wordpress.com/2010/06/20/semantic-hacking-rdf-in-perl-presentation/#comment-71</link>
		<dc:creator><![CDATA[thomas11]]></dc:creator>
		<pubDate>Mon, 21 Jun 2010 09:28:38 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/2010/06/20/semantic-hacking-rdf-in-perl-presentation/#comment-71</guid>
		<description><![CDATA[Hey, thanks for your interest. I&#039;d love to spread the word to the Perl world, but I&#039;m not sure yet whether I&#039;m up for the Ironman challenge :-) I&#039;ll think about some more things to write about soon.]]></description>
		<content:encoded><![CDATA[<p>Hey, thanks for your interest. I&#8217;d love to spread the word to the Perl world, but I&#8217;m not sure yet whether I&#8217;m up for the Ironman challenge :-) I&#8217;ll think about some more things to write about soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Semantic hacking: RDF in Perl by poisonbit</title>
		<link>http://jugglingbits.wordpress.com/2010/06/20/semantic-hacking-rdf-in-perl-presentation/#comment-70</link>
		<dc:creator><![CDATA[poisonbit]]></dc:creator>
		<pubDate>Sun, 20 Jun 2010 16:22:40 +0000</pubDate>
		<guid isPermaLink="false">http://jugglingbits.wordpress.com/2010/06/20/semantic-hacking-rdf-in-perl-presentation/#comment-70</guid>
		<description><![CDATA[Very interesting... I lack the German for the slides... but scripts are funny to read.

You could tag your nice Perl related posts as &quot;Ironman&quot; and join your feed here:

    http://ironman.enlightenedperl.org/new_feed

It could be nice to spread your posts to the Perl world community  :-)]]></description>
		<content:encoded><![CDATA[<p>Very interesting&#8230; I lack the German for the slides&#8230; but scripts are funny to read.</p>
<p>You could tag your nice Perl related posts as &#8220;Ironman&#8221; and join your feed here:</p>
<p>    <a href="http://ironman.enlightenedperl.org/new_feed" rel="nofollow">http://ironman.enlightenedperl.org/new_feed</a></p>
<p>It could be nice to spread your posts to the Perl world community  :-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
