<?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>scienceoss.com &#187; image</title>
	<atom:link href="http://scienceoss.com/tags/image/feed/" rel="self" type="application/rss+xml" />
	<link>http://scienceoss.com</link>
	<description>useful tidbits for using open source software in science</description>
	<lastBuildDate>Wed, 26 May 2010 03:34:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Insert content into TiddlyWikis with this Python script</title>
		<link>http://scienceoss.com/insert-content-into-tiddlywikis-with-this-python-script/</link>
		<comments>http://scienceoss.com/insert-content-into-tiddlywikis-with-this-python-script/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 22:44:57 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[TiddlyWiki]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://scienceoss.com/insert-content-into-tiddlywikis-with-this-python-script/</guid>
		<description><![CDATA[I&#8217;ve been generating many figures, and I want to be able to find them again and browse them easily. Organizing them on disk just isn&#8217;t cutting it. My solution for now is to use a local TiddlyWiki as the glue for my figures, since I can embed figures in tiddlers (the microcontent entries that are [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been generating many figures, and I want to be able to find them again and browse them easily.  Organizing them on disk just isn&#8217;t cutting it.  My solution for now is to use a local <a href="http://tiddlywiki.com">TiddlyWiki</a> as the glue for my figures, since I can embed figures in tiddlers (the microcontent entries that are the bread and butter of TiddlyWikis), and tag and search those entries.  Bonus: I can zip everything up and send TiddlyWiki + images to my advisor so  he can browse and search them as well.</p>
<p>Try this Python script, <a href='http://scienceoss.com/wp-content/uploads/2008/04/addtiddler.py' title='addtiddler.py'>addtiddler.py</a>, to insert tiddlers into an existing TiddlyWiki.  You can optionally specify an image name (relative to the output file, see the documentation in the source code) to be embedded.  You can use this script from the command line using options, or import it into another script.</p>
<p>I tried to add lots of comments so you can modify it for your own needs.  Let me know if you find bugs so I can fix them.</p>
]]></content:encoded>
			<wfw:commentRss>http://scienceoss.com/insert-content-into-tiddlywikis-with-this-python-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>bash script: convert images</title>
		<link>http://scienceoss.com/bash-script-convert-images/</link>
		<comments>http://scienceoss.com/bash-script-convert-images/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 03:12:29 +0000</pubDate>
		<dc:creator>ryan</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://scienceoss.com/bash-script-convert-images/</guid>
		<description><![CDATA[Convert all eps files into jpeg copies in current directory and lower. #!/usr/bin/bash for f in $(find -type f -iname '*.eps') do dest=`echo ${f%.*}` echo "${f} to ${dest}.jpg" convert "${f}" "${dest}.jpg" done]]></description>
			<content:encoded><![CDATA[<p>Convert all eps files into jpeg copies in current directory and lower.</p>
<pre class="prettyprint"><code class="code">#!/usr/bin/bash
for f in $(find -type f -iname '*.eps')
do
     dest=`echo ${f%.*}`
     echo "${f} to ${dest}.jpg"
     convert "${f}" "${dest}.jpg"
done</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://scienceoss.com/bash-script-convert-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

