<?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 blueleftistconstructor</title>
	<atom:link href="http://www.blueleftistconstructor.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blueleftistconstructor.com</link>
	<description>a place for code</description>
	<lastBuildDate>Wed, 05 Oct 2011 04:38:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Mac Ports Load / Unload a Process (like postgres) by robottaway</title>
		<link>http://www.blueleftistconstructor.com/2011/05/12/mac-ports-load-unload-a-process-like-postgres/#comment-190</link>
		<dc:creator>robottaway</dc:creator>
		<pubDate>Wed, 05 Oct 2011 04:38:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.blueleftistconstructor.com/?p=128#comment-190</guid>
		<description>Great, glad I could help! I keep a lot of these blog posts for my own good. I can&#039;t tell you how often a year goes by and I forget something then spend half and hour finding the information I need. So I always try and keep a record in one of my blogs ;)</description>
		<content:encoded><![CDATA[<p>Great, glad I could help! I keep a lot of these blog posts for my own good. I can&#8217;t tell you how often a year goes by and I forget something then spend half and hour finding the information I need. So I always try and keep a record in one of my blogs <img src='http://www.blueleftistconstructor.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mac Ports Load / Unload a Process (like postgres) by Off Rhoden</title>
		<link>http://www.blueleftistconstructor.com/2011/05/12/mac-ports-load-unload-a-process-like-postgres/#comment-189</link>
		<dc:creator>Off Rhoden</dc:creator>
		<pubDate>Tue, 04 Oct 2011 16:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.blueleftistconstructor.com/?p=128#comment-189</guid>
		<description>Thanks for this little post.  I had installed Memcached using MacPorts and it defaults to using 64M, but I needed 128M.  I was able to edit:

sudo vi /Library/LaunchDaemons/org.macports.memcached.plist

and change 64 to 128 (the &#039;-m&#039; option).  A quick &#039;unload&#039;/ &#039;load&#039; and I was in business.</description>
		<content:encoded><![CDATA[<p>Thanks for this little post.  I had installed Memcached using MacPorts and it defaults to using 64M, but I needed 128M.  I was able to edit:</p>
<p>sudo vi /Library/LaunchDaemons/org.macports.memcached.plist</p>
<p>and change 64 to 128 (the &#8216;-m&#8217; option).  A quick &#8216;unload&#8217;/ &#8216;load&#8217; and I was in business.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jython, building a project that uses jars, and thoughts on better tool by robottaway</title>
		<link>http://www.blueleftistconstructor.com/2010/11/28/jython-building-a-project-that-uses-jars-and-thoughts-on-better-tool/#comment-80</link>
		<dc:creator>robottaway</dc:creator>
		<pubDate>Tue, 18 Jan 2011 20:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.blueleftistconstructor.com/?p=76#comment-80</guid>
		<description>Hi Russ,

I think this&#039;ll add everything in a Maven repo to the classpath, no? That&#039;s fine and does the job but what I&#039;d like to see is a less than brute force approach.

A well designed tool would allow for creating packaged applications that use Jython with respect to jars. Being able to easily use Maven to create a project and package it as a war would be the optimum.

I&#039;d like to see a way to do both Django and Pylons/Pyramid projects this way. Run one Maven command to generate a Pylons project, then you add the libs you need in the setup.py like normal, but then Maven install the proper jars and generate the war file for deployment.

BTW I give you mad props for the use of &quot;tr&quot;!</description>
		<content:encoded><![CDATA[<p>Hi Russ,</p>
<p>I think this&#8217;ll add everything in a Maven repo to the classpath, no? That&#8217;s fine and does the job but what I&#8217;d like to see is a less than brute force approach.</p>
<p>A well designed tool would allow for creating packaged applications that use Jython with respect to jars. Being able to easily use Maven to create a project and package it as a war would be the optimum.</p>
<p>I&#8217;d like to see a way to do both Django and Pylons/Pyramid projects this way. Run one Maven command to generate a Pylons project, then you add the libs you need in the setup.py like normal, but then Maven install the proper jars and generate the war file for deployment.</p>
<p>BTW I give you mad props for the use of &#8220;tr&#8221;!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Jython, building a project that uses jars, and thoughts on better tool by Russ McLoughlin</title>
		<link>http://www.blueleftistconstructor.com/2010/11/28/jython-building-a-project-that-uses-jars-and-thoughts-on-better-tool/#comment-57</link>
		<dc:creator>Russ McLoughlin</dc:creator>
		<pubDate>Tue, 21 Dec 2010 07:18:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.blueleftistconstructor.com/?p=76#comment-57</guid>
		<description>If you are using maven this may do the trick and save you from having a lib folder in your code repo. Adding every jar in your maven repository does seem like a bit of a shotgun approach.

&lt;code&gt;
#!/bin/bash                                                                                                                                                                                                    

JYTHON=/usr/bin/jython
M2_PATH=~/.m2/repository/

CLASSPATH=`find $M2_PATH -name &quot;*.jar&quot; &#124; tr &quot;\\n&quot; &quot;:&quot;`

$JYTHON -Dpython.path=$CLASSPATH $1
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>If you are using maven this may do the trick and save you from having a lib folder in your code repo. Adding every jar in your maven repository does seem like a bit of a shotgun approach.</p>
<p><code><br />
#!/bin/bash                                                                                                                                                                                                    </p>
<p>JYTHON=/usr/bin/jython<br />
M2_PATH=~/.m2/repository/</p>
<p>CLASSPATH=`find $M2_PATH -name "*.jar" | tr "\\n" ":"`</p>
<p>$JYTHON -Dpython.path=$CLASSPATH $1<br />
</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

