<?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"
	>
<channel>
	<title>Comments for LuckyDonkey</title>
	<atom:link href="http://www.luckydonkey.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.luckydonkey.com</link>
	<description>Never knowingly knowing narwhals</description>
	<pubDate>Thu, 28 Aug 2008 03:23:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>Comment on MacOSX, VMWare Fusion and PKR&#8230; it works! by crocop</title>
		<link>http://www.luckydonkey.com/2007/11/12/macosx-vmware-fusion-and-pkr-it-works/#comment-2322</link>
		<dc:creator>crocop</dc:creator>
		<pubDate>Sat, 02 Aug 2008 17:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2007/11/12/macosx-vmware-fusion-and-pkr-it-works/#comment-2322</guid>
		<description>ok,but which resolution settings are correct?</description>
		<content:encoded><![CDATA[<p>ok,but which resolution settings are correct?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLAlchemy-Migrate upgrade scripts in a transaction by dazza</title>
		<link>http://www.luckydonkey.com/2008/07/27/sqlalchemy-migrate-upgrade-scripts-in-a-transaction/#comment-2319</link>
		<dc:creator>dazza</dc:creator>
		<pubDate>Mon, 28 Jul 2008 12:46:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/?p=210#comment-2319</guid>
		<description>@sacha: you are correct, by using env to launch python it will pick it up from the environment that the script is running in. It is just to stop a hard coded paths in the script. It's not actually needed for this particular script since it is being invoked by an already running python interpreter but it's part of my 'new python template' in TextMate.

The encoding is to follow PEP 263 http://www.python.org/dev/peps/pep-0263/ It just makes sure all unicode literals embedded in the code are in UTF8. Everything I do is in UTF8 so it stops non UTF8 string slipping in to the code base and causing interesting and sometimes difficult to track down bugs.</description>
		<content:encoded><![CDATA[<p>@sacha: you are correct, by using env to launch python it will pick it up from the environment that the script is running in. It is just to stop a hard coded paths in the script. It&#8217;s not actually needed for this particular script since it is being invoked by an already running python interpreter but it&#8217;s part of my &#8216;new python template&#8217; in TextMate.</p>
<p>The encoding is to follow PEP 263 <a href="http://www.python.org/dev/peps/pep-0263/" rel="nofollow">http://www.python.org/dev/peps/pep-0263/</a> It just makes sure all unicode literals embedded in the code are in UTF8. Everything I do is in UTF8 so it stops non UTF8 string slipping in to the code base and causing interesting and sometimes difficult to track down bugs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLAlchemy-Migrate upgrade scripts in a transaction by Sacha Varma</title>
		<link>http://www.luckydonkey.com/2008/07/27/sqlalchemy-migrate-upgrade-scripts-in-a-transaction/#comment-2318</link>
		<dc:creator>Sacha Varma</dc:creator>
		<pubDate>Mon, 28 Jul 2008 11:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/?p=210#comment-2318</guid>
		<description>Python nub questions:

  #!/usr/bin/env python
  # encoding: utf-8

/usr/bin/env? Why not just /usr/bin/python? Is this just a way of not having to explicitly specify the location of python, and have it pick it up from your $PATH?

The encoding line presumably relates to the source code that follows?</description>
		<content:encoded><![CDATA[<p>Python nub questions:</p>
<p>  #!/usr/bin/env python<br />
  # encoding: utf-8</p>
<p>/usr/bin/env? Why not just /usr/bin/python? Is this just a way of not having to explicitly specify the location of python, and have it pick it up from your $PATH?</p>
<p>The encoding line presumably relates to the source code that follows?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLAlchemy-Migrate upgrade scripts in a transaction by dazza</title>
		<link>http://www.luckydonkey.com/2008/07/27/sqlalchemy-migrate-upgrade-scripts-in-a-transaction/#comment-2317</link>
		<dc:creator>dazza</dc:creator>
		<pubDate>Mon, 28 Jul 2008 10:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/?p=210#comment-2317</guid>
		<description>@Sacha Varma: there is a new command added in the latest version which creates a script from a diff between the database and your 'model' make_update_script_for_model.

See the change list here http://code.google.com/p/sqlalchemy-migrate/wiki/ChangesSince0_4_4. I haven't used this myself but I think it does what you want.</description>
		<content:encoded><![CDATA[<p>@Sacha Varma: there is a new command added in the latest version which creates a script from a diff between the database and your &#8216;model&#8217; make_update_script_for_model.</p>
<p>See the change list here <a href="http://code.google.com/p/sqlalchemy-migrate/wiki/ChangesSince0_4_4" rel="nofollow">http://code.google.com/p/sqlalchemy-migrate/wiki/ChangesSince0_4_4</a>. I haven&#8217;t used this myself but I think it does what you want.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLAlchemy-Migrate upgrade scripts in a transaction by Sacha Varma</title>
		<link>http://www.luckydonkey.com/2008/07/27/sqlalchemy-migrate-upgrade-scripts-in-a-transaction/#comment-2316</link>
		<dc:creator>Sacha Varma</dc:creator>
		<pubDate>Mon, 28 Jul 2008 10:21:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/?p=210#comment-2316</guid>
		<description>If you have an old model.py (A) and a new model.py (B), do you have to write the code to upgrade from A to B, or is there a tool that "diffs" the two and spits out the code to do the upgrade/downgrade?</description>
		<content:encoded><![CDATA[<p>If you have an old model.py (A) and a new model.py (B), do you have to write the code to upgrade from A to B, or is there a tool that &#8220;diffs&#8221; the two and spits out the code to do the upgrade/downgrade?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLAlchemy-Migrate upgrade scripts in a transaction by dazza</title>
		<link>http://www.luckydonkey.com/2008/07/27/sqlalchemy-migrate-upgrade-scripts-in-a-transaction/#comment-2315</link>
		<dc:creator>dazza</dc:creator>
		<pubDate>Mon, 28 Jul 2008 10:13:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/?p=210#comment-2315</guid>
		<description>@Sacha Varma: your correct, there is no overall upgrade wrapper. Indeed it would be nice if all this was covered by the sqlalchemy-migrate. There has been some chatter on the sqlalchemy-migrate group about this. This is just a small step toward a bigger goal.

To manage code and database changes I version control the migrate repository in svn. So I can be sure that the code I update checkout syncs with upgrade scripts I am about to run.</description>
		<content:encoded><![CDATA[<p>@Sacha Varma: your correct, there is no overall upgrade wrapper. Indeed it would be nice if all this was covered by the sqlalchemy-migrate. There has been some chatter on the sqlalchemy-migrate group about this. This is just a small step toward a bigger goal.</p>
<p>To manage code and database changes I version control the migrate repository in svn. So I can be sure that the code I update checkout syncs with upgrade scripts I am about to run.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SQLAlchemy-Migrate upgrade scripts in a transaction by Sacha Varma</title>
		<link>http://www.luckydonkey.com/2008/07/27/sqlalchemy-migrate-upgrade-scripts-in-a-transaction/#comment-2314</link>
		<dc:creator>Sacha Varma</dc:creator>
		<pubDate>Mon, 28 Jul 2008 09:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/?p=210#comment-2314</guid>
		<description>A couple of questions:

1. I can see that this would work when upgrading the database one revision at a time, but if sqlalchemy-migrate applies multiple updates in sequence, you'd probably want a transaction around the whole sequence? (i.e. I reckon sqlalchemy-migrate should do the rollback management)

2. How do you manage updates that involve not just database changes, but also template &#38; code changes? Is there a 'turbogears-migrate' that incorporates sqlalchemy-migrate?</description>
		<content:encoded><![CDATA[<p>A couple of questions:</p>
<p>1. I can see that this would work when upgrading the database one revision at a time, but if sqlalchemy-migrate applies multiple updates in sequence, you&#8217;d probably want a transaction around the whole sequence? (i.e. I reckon sqlalchemy-migrate should do the rollback management)</p>
<p>2. How do you manage updates that involve not just database changes, but also template &amp; code changes? Is there a &#8216;turbogears-migrate&#8217; that incorporates sqlalchemy-migrate?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Command &#038; Conquer 95 is freeware by dazza</title>
		<link>http://www.luckydonkey.com/2007/09/02/command-conquer-95-is-freeware/#comment-2311</link>
		<dc:creator>dazza</dc:creator>
		<pubDate>Sun, 27 Jul 2008 10:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2007/09/02/command-conquer-95-is-freeware/#comment-2311</guid>
		<description>The only thing I can suggest is that you make sure you've run windows update.</description>
		<content:encoded><![CDATA[<p>The only thing I can suggest is that you make sure you&#8217;ve run windows update.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Command &#038; Conquer 95 is freeware by walter</title>
		<link>http://www.luckydonkey.com/2007/09/02/command-conquer-95-is-freeware/#comment-2309</link>
		<dc:creator>walter</dc:creator>
		<pubDate>Sat, 26 Jul 2008 15:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2007/09/02/command-conquer-95-is-freeware/#comment-2309</guid>
		<description>I have 1 CD burnt NOD 95 and it is getting trouble when to install i've checked the check box and turn it onto Windows 95 Then i open it i get the preparing Installshield after that (100%) it says some nercercary files are missing cant instaal C&#38;C GOLD plz help</description>
		<content:encoded><![CDATA[<p>I have 1 CD burnt NOD 95 and it is getting trouble when to install i&#8217;ve checked the check box and turn it onto Windows 95 Then i open it i get the preparing Installshield after that (100%) it says some nercercary files are missing cant instaal C&amp;C GOLD plz help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MacOSX, VMWare Fusion and PKR&#8230; it works! by Eric</title>
		<link>http://www.luckydonkey.com/2007/11/12/macosx-vmware-fusion-and-pkr-it-works/#comment-2306</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 24 Jul 2008 22:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.luckydonkey.com/2007/11/12/macosx-vmware-fusion-and-pkr-it-works/#comment-2306</guid>
		<description>I have tried and tried and tried and still cannot get PKR to run with fusion.  I have download Direct X 9, I have change the resolution and have checked accelerated 3 D graphics.  I have a macbook pro and don't have any other problems running other windows software with fusion.......can anyone help??</description>
		<content:encoded><![CDATA[<p>I have tried and tried and tried and still cannot get PKR to run with fusion.  I have download Direct X 9, I have change the resolution and have checked accelerated 3 D graphics.  I have a macbook pro and don&#8217;t have any other problems running other windows software with fusion&#8230;&#8230;.can anyone help??</p>
]]></content:encoded>
	</item>
</channel>
</rss>
