<?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>netCUBED Blog &#187; Uncategorized</title>
	<atom:link href="http://blog.netcubed.de/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.netcubed.de</link>
	<description>Just another web developer's weblog</description>
	<lastBuildDate>Mon, 29 Jun 2009 20:58:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add files with certain extensions to subversion</title>
		<link>http://blog.netcubed.de/2008/12/add-files-with-certain-extensions-to-subversion/</link>
		<comments>http://blog.netcubed.de/2008/12/add-files-with-certain-extensions-to-subversion/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 12:37:01 +0000</pubDate>
		<dc:creator>Moritz Onken</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[recursive]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://blog.netcubed.de/?p=24</guid>
		<description><![CDATA[Hi,
I was looking for a way to add all files with certain extensions to a subversion repository.
After reading the find manual I came up with this neat line:
find -name *.pm -o -name *.t -exec svn add '{}' \;
This line adds all files with extensions *.pm and *.t to the svn. All subdirectories are included.
]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I was looking for a way to add all files with certain extensions to a subversion repository.</p>
<p>After reading the <code>find</code> manual I came up with this neat line:</p>
<p><code>find -name *.pm -o -name *.t -exec svn add '{}' \;</code></p>
<p>This line adds all files with extensions *.pm and *.t to the svn. All subdirectories are included.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netcubed.de/2008/12/add-files-with-certain-extensions-to-subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Install GnuPlot under Leopard</title>
		<link>http://blog.netcubed.de/2008/12/how-to-install-gnuplot-under-leopard/</link>
		<comments>http://blog.netcubed.de/2008/12/how-to-install-gnuplot-under-leopard/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 09:59:00 +0000</pubDate>
		<dc:creator>Moritz Onken</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gnuplot]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[pdflib]]></category>
		<category><![CDATA[port]]></category>

		<guid isPermaLink="false">http://blog.netcubed.de/?p=18</guid>
		<description><![CDATA[I needed to draw some charts using gnuplot. Downloading and installing as usual (configure, make, make install) led to a lot of errors. So I looked around and found this solution:

# ./configure –with-readline=builtin

If you need PDF support you have to install pdflib first:

# sudo port install pdflib
# ./configure –with-readline=builtin --with-pdf=/usr/local/lib/pdflib-config

You need to have MacPorts installed.
And [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to draw some charts using <a href="http://www.gnuplot.info/" target="_blank">gnuplot</a>. Downloading and installing as usual (configure, make, make install) led to a lot of errors. So I looked around and found this solution:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># ./configure –with-readline=builtin</span></pre></div></div>

<p>If you need PDF support you have to install <code>pdflib</code> first:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># sudo port install pdflib</span>
<span style="color: #666666; font-style: italic;"># ./configure –with-readline=builtin --with-pdf=/usr/local/lib/pdflib-config</span></pre></div></div>

<p>You need to have <a href="http://www.macports.org/" target="_blank">MacPorts</a> installed.</p>
<p>And that was it. You can now run <code>gnuplot</code> from the command line and create beautiful charts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netcubed.de/2008/12/how-to-install-gnuplot-under-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Blog</title>
		<link>http://blog.netcubed.de/2008/12/my-blog/</link>
		<comments>http://blog.netcubed.de/2008/12/my-blog/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 12:39:22 +0000</pubDate>
		<dc:creator>Moritz Onken</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.netcubed.de/?p=3</guid>
		<description><![CDATA[Inspired by this blog post by Jonathan Rockway I decided to be a &#8220;little noisier&#8221;. So here is my blog where I will talk about things like Perl, JavaScript, software engineering, Mac OS X and anything else which comes to my mind.
Regarding Perl I will focus on Catalyst, DBIC, HTML::FormFu and AJAX related topics. And [...]]]></description>
			<content:encoded><![CDATA[<p>Inspired by this <a href="http://blog.jrock.us/articles/My%20perl%20blog.pod" target="_blank">blog post</a> by Jonathan Rockway I decided to be a &#8220;little noisier&#8221;. So here is my blog where I will talk about things like Perl, JavaScript, software engineering, Mac OS X and anything else which comes to my mind.</p>
<p>Regarding Perl I will focus on <a href="http://search.cpan.org/perldoc?Catalyst" target="_blank">Catalyst</a>, <a href="http://search.cpan.org/perldoc?DBIx::Class" target="_blank">DBIC</a>, <a href="http://search.cpan.org/perldoc?HTML::FormFu" target="_blank">HTML::FormFu</a> and AJAX related topics. And that&#8217;s where JavaScript jumps in. I did some work using the fabulous <a href="http://www.extjs.com" target="_blank">ExtJS </a>framework and will write about that in combination with all the above named modules.</p>
<p>I hope I can interest some people in reading my blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netcubed.de/2008/12/my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
