<?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 Fast, Stable, Cheap - Pick One</title>
	<atom:link href="http://blog.kamilkisiel.net/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.kamilkisiel.net</link>
	<description>Software, HPC, and other geeky things.</description>
	<lastBuildDate>Thu, 30 Jun 2011 08:53:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>Comment on Updating the Firmware on a BCR2000 without the Behringer Update Utility by nexenta</title>
		<link>http://blog.kamilkisiel.net/2007/11/updating-the-firmware-on-a-bcr2000-without-the-behringer-update-utility.html/comment-page-1#comment-188</link>
		<dc:creator>nexenta</dc:creator>
		<pubDate>Thu, 30 Jun 2011 08:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/2007/11/updating-the-firmware-on-a-bcr2000-without-the-behringer-update-utility.html#comment-188</guid>
		<description>If you are on Mac is more simplistic. Download SysEx Librarian from http://www.snoize.com/SysExLibrarian/  (free software) and run on Mac. Download the latest firmware update from Behringer site -&gt; Support -&gt; Download and Drivers section. Just load the downloaded firmware in SysEx Librarian and you will see the file starting to be uploaded on the BCR unit. No need for Midi interface, just with the usb default cable. Also no need for booting in LOAD mode. Hope it helps.</description>
		<content:encoded><![CDATA[<p>If you are on Mac is more simplistic. Download SysEx Librarian from http://www.snoize.com/SysExLibrarian/  (free software) and run on Mac. Download the latest firmware update from Behringer site -&gt; Support -&gt; Download and Drivers section. Just load the downloaded firmware in SysEx Librarian and you will see the file starting to be uploaded on the BCR unit. No need for Midi interface, just with the usb default cable. Also no need for booting in LOAD mode. Hope it helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickly open the source of a Python module from the command-line by Anonymous</title>
		<link>http://blog.kamilkisiel.net/2011/01/quickly-open-the-source-of-a-python-module-from-the-command-line.html/comment-page-1#comment-187</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 08 Jan 2011 16:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/?p=136#comment-187</guid>
		<description>Oops, that was a badly sanitized example, but the problem remains that I can&#039;t open a module inside an egg, because the path it returns doesn&#039;t exist in the filesystem.

&lt;code&gt;
mbp-luke:~ luke$ export EDITOR=`which vim`
mbp-luke:~ luke$ pysource genshi.template.base
Opens a blank vim editor saying:
&quot;/Library/Python/2.6/site-packages/Genshi-0.6-py2.6.egg/genshi/template/base.py&quot; [New DIRECTORY]
&lt;/code&gt;

or...

&lt;code&gt;
mbp-luke:~ luke$ export EDITOR=`which cat`
mbp-luke:~ luke$ pysource genshi.template.base
cat: /Library/Python/2.6/site-packages/Genshi-0.6-py2.6.egg/genshi/template/base.py: Not a directory
&lt;/code&gt;

Are some editors able to crack open an egg and get at the files inside, as in a path like this?</description>
		<content:encoded><![CDATA[<p>Oops, that was a badly sanitized example, but the problem remains that I can&#8217;t open a module inside an egg, because the path it returns doesn&#8217;t exist in the filesystem.</p>
<p><code><br />
mbp-luke:~ luke$ export EDITOR=`which vim`<br />
mbp-luke:~ luke$ pysource genshi.template.base<br />
Opens a blank vim editor saying:<br />
"/Library/Python/2.6/site-packages/Genshi-0.6-py2.6.egg/genshi/template/base.py" [New DIRECTORY]<br />
</code></p>
<p>or&#8230;</p>
<p><code><br />
mbp-luke:~ luke$ export EDITOR=`which cat`<br />
mbp-luke:~ luke$ pysource genshi.template.base<br />
cat: /Library/Python/2.6/site-packages/Genshi-0.6-py2.6.egg/genshi/template/base.py: Not a directory<br />
</code></p>
<p>Are some editors able to crack open an egg and get at the files inside, as in a path like this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickly open the source of a Python module from the command-line by Kamil Kisiel</title>
		<link>http://blog.kamilkisiel.net/2011/01/quickly-open-the-source-of-a-python-module-from-the-command-line.html/comment-page-1#comment-186</link>
		<dc:creator>Kamil Kisiel</dc:creator>
		<pubDate>Sat, 08 Jan 2011 07:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/?p=136#comment-186</guid>
		<description>Sounds like your $EDITOR isn&#039;t set ?</description>
		<content:encoded><![CDATA[<p>Sounds like your $EDITOR isn&#8217;t set ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickly open the source of a Python module from the command-line by Anonymous</title>
		<link>http://blog.kamilkisiel.net/2011/01/quickly-open-the-source-of-a-python-module-from-the-command-line.html/comment-page-1#comment-185</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sat, 08 Jan 2011 05:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/?p=136#comment-185</guid>
		<description>Is there any way to make it work with eggs?


mbp-luke:~ luke$ pysource genshi.template.base
-bash: /Library/Python/2.6/site-packages/Genshi-0.6-py2.6.egg/genshi/template/base.py: Not a directory
</description>
		<content:encoded><![CDATA[<p>Is there any way to make it work with eggs?</p>
<p>mbp-luke:~ luke$ pysource genshi.template.base<br />
-bash: /Library/Python/2.6/site-packages/Genshi-0.6-py2.6.egg/genshi/template/base.py: Not a directory</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding up SQLAlchemy collections with innerjoin by Kamil Kisiel</title>
		<link>http://blog.kamilkisiel.net/2010/05/speeding-up-sqlalchemy-collections-with-innerjoin.html/comment-page-1#comment-184</link>
		<dc:creator>Kamil Kisiel</dc:creator>
		<pubDate>Fri, 29 Oct 2010 16:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/?p=122#comment-184</guid>
		<description>ORM provides a lot of advantages in providing you domain-specific ways to express your queries, but requires careful tuning of your mapping to get the right performance characteristics. It&#039;s in many ways elegant, but as with anything there are trade-offs.</description>
		<content:encoded><![CDATA[<p>ORM provides a lot of advantages in providing you domain-specific ways to express your queries, but requires careful tuning of your mapping to get the right performance characteristics. It&#8217;s in many ways elegant, but as with anything there are trade-offs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eclipse, Python, and file extensions by Kamil Kisiel</title>
		<link>http://blog.kamilkisiel.net/2010/04/eclipse-python-and-file-extensions.html/comment-page-1#comment-183</link>
		<dc:creator>Kamil Kisiel</dc:creator>
		<pubDate>Fri, 29 Oct 2010 16:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/?p=121#comment-183</guid>
		<description>I&#039;ve moved back to Vim for my Python development. I discovered how to
integrate pyflakes and made a bunch of other tweaks to my vimrc that
give me nearly the same capabilities as Eclipse but with the superior
editing capabilities of Vim.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve moved back to Vim for my Python development. I discovered how to<br />
integrate pyflakes and made a bunch of other tweaks to my vimrc that<br />
give me nearly the same capabilities as Eclipse but with the superior<br />
editing capabilities of Vim.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Eclipse, Python, and file extensions by Fernando Correia</title>
		<link>http://blog.kamilkisiel.net/2010/04/eclipse-python-and-file-extensions.html/comment-page-1#comment-182</link>
		<dc:creator>Fernando Correia</dc:creator>
		<pubDate>Fri, 29 Oct 2010 11:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/?p=121#comment-182</guid>
		<description>I wonder how your experiment with PyDev went. I tried most IDEs to work on Python web app projects. In the end I didn&#039;t see too much value in them and moved on to Kate. Things were ok for some time but recently I decided to jump into vim, something I thought I would never do, and I&#039;m liking it so far. I don&#039;t have much of a save-run cycle, I usually just save a file and alt-tab into Firefox to see the changes.</description>
		<content:encoded><![CDATA[<p>I wonder how your experiment with PyDev went. I tried most IDEs to work on Python web app projects. In the end I didn&#8217;t see too much value in them and moved on to Kate. Things were ok for some time but recently I decided to jump into vim, something I thought I would never do, and I&#8217;m liking it so far. I don&#8217;t have much of a save-run cycle, I usually just save a file and alt-tab into Firefox to see the changes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding up SQLAlchemy collections with innerjoin by Fernando Correia</title>
		<link>http://blog.kamilkisiel.net/2010/05/speeding-up-sqlalchemy-collections-with-innerjoin.html/comment-page-1#comment-181</link>
		<dc:creator>Fernando Correia</dc:creator>
		<pubDate>Fri, 29 Oct 2010 10:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/?p=122#comment-181</guid>
		<description>SQLAlchemy is really well designed and I consider it one of the best ORMs around for any platform. It&#039;s great you could tweak it to emmit the SQL you wanted. But I wonder if sometimes it wouldn&#039;t be cleaner to just write the SELECT statement itself and get done with it... :)</description>
		<content:encoded><![CDATA[<p>SQLAlchemy is really well designed and I consider it one of the best ORMs around for any platform. It&#8217;s great you could tweak it to emmit the SQL you wanted. But I wonder if sometimes it wouldn&#8217;t be cleaner to just write the SELECT statement itself and get done with it&#8230; <img src='http://blog.kamilkisiel.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why Gentoo? by Kamil Kisiel</title>
		<link>http://blog.kamilkisiel.net/2008/04/why-gentoo.html/comment-page-1#comment-51</link>
		<dc:creator>Kamil Kisiel</dc:creator>
		<pubDate>Sun, 11 Apr 2010 16:35:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/2008/04/why-gentoo.html#comment-51</guid>
		<description>Well, the learning curve is certainly higher than a Debian or Ubuntu setup. However, the big benefit is that you will learn a lot more about what each component of the system does. If that&#039;s your goal, then Gentoo is a good thing to try.</description>
		<content:encoded><![CDATA[<p>Well, the learning curve is certainly higher than a Debian or Ubuntu setup. However, the big benefit is that you will learn a lot more about what each component of the system does. If that&#39;s your goal, then Gentoo is a good thing to try.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why Gentoo? by Kamil Kisiel</title>
		<link>http://blog.kamilkisiel.net/2008/04/why-gentoo.html/comment-page-1#comment-175</link>
		<dc:creator>Kamil Kisiel</dc:creator>
		<pubDate>Sun, 11 Apr 2010 16:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.kamilkisiel.net/2008/04/why-gentoo.html#comment-175</guid>
		<description>Well, the learning curve is certainly higher than a Debian or Ubuntu setup. However, the big benefit is that you will learn a lot more about what each component of the system does. If that&#039;s your goal, then Gentoo is a good thing to try.</description>
		<content:encoded><![CDATA[<p>Well, the learning curve is certainly higher than a Debian or Ubuntu setup. However, the big benefit is that you will learn a lot more about what each component of the system does. If that&#039;s your goal, then Gentoo is a good thing to try.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

