<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Lee Braiden&#039;s Blog &#187; SVGSlice</title>
	<atom:link href="http://irukado.org/category/it/foss/development/svgslice-development-foss-it/feed" rel="self" type="application/rss+xml" />
	<link>http://irukado.org</link>
	<description>Peace, Love, Tech, and random life stuff.</description>
	<lastBuildDate>Thu, 08 Oct 2009 00:10:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Git Smart</title>
		<link>http://irukado.org/2009/03/08/git-smart</link>
		<comments>http://irukado.org/2009/03/08/git-smart#comments</comments>
		<pubDate>Sun, 08 Mar 2009 01:23:33 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[SVGSlice]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[Noodil]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://irukado.org/?p=1208</guid>
		<description><![CDATA[I seem to be in a love/hate relationship with Git.  On the one hand, it&#8217;s&#8230; well, horrible, usability wise, with all it&#8217;s unexpected behaviors and weird terminology for well known concepts.  On the other hand, it does nice things like this when changes are committed:

...
rename noodil.py => kit_library/hello.py (71%)
mode change 100755 => 100644
rewrite [...]]]></description>
			<content:encoded><![CDATA[<p>I seem to be in a love/hate relationship with Git.  On the one hand, it&#8217;s&#8230; well, horrible, usability wise, with all it&#8217;s unexpected behaviors and weird terminology for well known concepts.  On the other hand, it does nice things like this when changes are committed:</p>
<blockquote><p><code><br />
...<br />
rename noodil.py => kit_library/hello.py (71%)<br />
mode change 100755 => 100644<br />
rewrite noodil.py (95%)<br />
...<br />
</code></p></blockquote>
<p>What I had here was one file, noodil.py, which was an initial piece of executable test code.  Moving on a bit, I wanted to make the main executable a wrapper that could run other code, with the initial test code becoming a hello.py demo script.  The way I accomplished this was to copy noodil.py to kit_library/hello.py, remove the few startup/teardown lines, and then in the noodil.py file, leave essentially JUST those startup/teardown lines.  A little bit of extra editing was done to each file, of course.</p>
<p>Anyway, that &#8220;rename (71%) and rewrite (95%)&#8221; is a pretty good summary of what happened.  The mode change too, is there indicating that I copied the file, but that it&#8217;s no longer executable in its new location (actually I saved a second copy from my editor).  It&#8217;s probably nothing much more than a per-line checksum, but this stuff really does give an impression of git understanding and tracking my work at a high-level.  I&#8217;m impressed <img src='http://irukado.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>For what it&#8217;s worth, Noodil is my fledgling python project to bring a combination of Unix pipes, Automator, Powershell, and other tools to the GUI in a new way.  More on that later, when I have something useful to demonstrate &#8212; other than the unquestionably useful Hello World, of course <img src='http://irukado.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://irukado.org/2009/03/08/git-smart/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVGSlice 0.15</title>
		<link>http://irukado.org/2009/02/19/svgslice-015</link>
		<comments>http://irukado.org/2009/02/19/svgslice-015#comments</comments>
		<pubDate>Thu, 19 Feb 2009 00:36:51 +0000</pubDate>
		<dc:creator>Lee</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[SVGSlice]]></category>
		<category><![CDATA[bugs]]></category>
		<category><![CDATA[inkscape]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[releases]]></category>
		<category><![CDATA[sax]]></category>
		<category><![CDATA[svgslice]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://irukado.org/?p=1058</guid>
		<description><![CDATA[I received an SVGSlice bug report today.  I haven&#8217;t actually looked at SVGSlice in ages.
So I&#8217;ve just posted SVGSlice 0.15 to launchpad.  Mostly it just updates the code to work with a SAX namespace change (sax.saxutils.DefaultHandler -> sax.handler.ContentHandler), and does a few other small anti-bitrot cleanups.  Unfortunately there&#8217;s a bug in Jaunty&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I received an SVGSlice bug report today.  I haven&#8217;t actually looked at SVGSlice in ages.</p>
<p>So I&#8217;ve just posted SVGSlice 0.15 to launchpad.  Mostly it just updates the code to work with a SAX namespace change (sax.saxutils.DefaultHandler -> sax.handler.ContentHandler), and does a few other small anti-bitrot cleanups.  Unfortunately there&#8217;s a bug in Jaunty&#8217;s inkscape (<a href="https://bugs.launchpad.net/inkscape/+bug/251146">Inkscape is throwing assertions about quarks</a>) right now, so SVGSlice doesn&#8217;t work as a plugin with that, but I&#8217;ve added a test script which demonstrates it working in command-line mode at least.</p>
<p>It&#8217;s nice to be releasing stuff again <img src='http://irukado.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://irukado.org/2009/02/19/svgslice-015/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
