<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jan Veldeman's Weblog</title>
	<atom:link href="http://janveldeman.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://janveldeman.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 17 Aug 2011 07:31:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='janveldeman.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Jan Veldeman's Weblog</title>
		<link>http://janveldeman.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://janveldeman.wordpress.com/osd.xml" title="Jan Veldeman&#039;s Weblog" />
	<atom:link rel='hub' href='http://janveldeman.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Project specific RubyGems</title>
		<link>http://janveldeman.wordpress.com/2008/04/14/project-specific-rubygems/</link>
		<comments>http://janveldeman.wordpress.com/2008/04/14/project-specific-rubygems/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 20:28:54 +0000</pubDate>
		<dc:creator>Jan Veldeman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ruby gems]]></category>

		<guid isPermaLink="false">http://janveldeman.wordpress.com/?p=6</guid>
		<description><![CDATA[Using your distributions version of rubygems has some drawbacks: root permission needed when installing gems shared by all users shared by all projects when backing up a project, the system wide rubygems are often overlooked Therefore, I&#8217;ve switched to project specific installations of rubygems (and one installation for everyday usage). By using modules it&#8217;s even [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janveldeman.wordpress.com&amp;blog=2776695&amp;post=6&amp;subd=janveldeman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Using your distributions version of rubygems has some drawbacks:</p>
<ul>
<li>root permission needed when installing gems</li>
<li>shared by all users</li>
<li>shared by all projects</li>
<li>when backing up a project, the system wide rubygems are often overlooked</li>
</ul>
<p>Therefore, I&#8217;ve switched to project specific installations of rubygems (and one installation for everyday usage). By using <a href="http://modules.sourceforge.net/">modules</a> it&#8217;s even <a href="http://janveldeman.wordpress.com/2008/03/05/managing-environment-variables-with-modules/">easy to switch</a> between projects.</p>
<p>First install ruby and some required dependencies:<br />
<code><br />
sudo apt-get install ruby libyaml-ruby libzlib-ruby<br />
</code></p>
<p>Download and extract the latest <a href="http://www.rubygems.org/">rubygems</a> version:<br />
<code><br />
mkdir ruby_test<br />
cd ruby_test<br />
wget http://rubyforge.org/frs/download.php/35283/rubygems-1.1.1.tgz<br />
tar zxvf rubygems-1.1.1.tgz<br />
</code></p>
<p>Create a <a href="http://modules.sourceforge.net/">modules</a> file for easy loading:<br />
<code><br />
#%Module1.0</p>
<p>set BASEDIR             /path/to/ruby_test/rubygems</p>
<p>setenv  RUBYOPT rubygems<br />
setenv  GEM_HOME        ${BASEDIR}/gem_repository/<br />
prepend-path    PATH    ${BASEDIR}/bin<br />
prepend-path    RUBYLIB ${BASEDIR}/lib<br />
</code></p>
<p>Note that the rubygems tarball extracted to rubygems-1.1.1, while the base directory is set to /path/to/ruby_test/rubygems. The rubygems-1.1.1 tree will be used to install rubygems into the latter directory.</p>
<p>If you named your module file ruby, you can now load it with:<br />
<code><br />
module load ruby<br />
</code></p>
<p>With the environment variables set, install rubygems:<br />
<code><br />
cd rubygems-1.1.1<br />
ruby setup.rb --prefix=/path/to/ruby_test/rubygems<br />
</code></p>
<p>and clean up:<br />
<code><br />
cd ../<br />
rm -rf rubygems-1.1.1.tgz rubygems-1.1.1.<br />
</code></p>
<p>From this point on, you can use your newly installed rubygems, e.g. for installing wirble (<a href="http://www.rubyinside.com/wirble-tab-completion-and-syntax-coloring-for-irb-336.html">tab completion and syntax coloring in irb</a>).<br />
<code><br />
gem list -r<br />
gem install wirble<br />
</code></p>
<p>The <a href="http://www.rubygems.org/read/book/1">RubyGems User Manual</a> provides more information if needed.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janveldeman.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janveldeman.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janveldeman.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janveldeman.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janveldeman.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janveldeman.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janveldeman.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janveldeman.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janveldeman.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janveldeman.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janveldeman.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janveldeman.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janveldeman.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janveldeman.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janveldeman.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janveldeman.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janveldeman.wordpress.com&amp;blog=2776695&amp;post=6&amp;subd=janveldeman&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://janveldeman.wordpress.com/2008/04/14/project-specific-rubygems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3393866698520745ff1fae308c0b1372?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jan Veldeman</media:title>
		</media:content>
	</item>
		<item>
		<title>Managing environment variables with modules</title>
		<link>http://janveldeman.wordpress.com/2008/03/05/managing-environment-variables-with-modules/</link>
		<comments>http://janveldeman.wordpress.com/2008/03/05/managing-environment-variables-with-modules/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 21:37:19 +0000</pubDate>
		<dc:creator>Jan Veldeman</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[modules]]></category>

		<guid isPermaLink="false">http://janveldeman.wordpress.com/?p=5</guid>
		<description><![CDATA[When dealing with different versions of a program (e.g. uclibc or glibc based cross compilers), you sometimes want to easily switch between them. In the past I used small env.sh files which contained the necessary additions to PATH and other environment settings. Because settings were never undone, this sometimes led to difficult to find problems. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janveldeman.wordpress.com&amp;blog=2776695&amp;post=5&amp;subd=janveldeman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When dealing with different versions of a program (e.g. uclibc or glibc based cross compilers), you sometimes want to easily switch between them. In the past I used small env.sh files which contained the necessary additions to PATH and other environment settings. Because settings were never undone, this sometimes led to difficult to find problems.</p>
<p>When a former colleague showed me <a href="http://modules.sourceforge.net/">modules</a>, these problems became a thing of the past: whenever I come to a situation were I previously wrote an env.sh or changed my .bashrc, I now write a modulefile. It&#8217;s a pity this software isn&#8217;t packaged inside debian (or I must have overlooked it). Therefore a quick installation guide:<br />
<code><br />
wget http://heanet.dl.sourceforge.net/sourceforge/modules/modules-3.2.6.tar.bz2<br />
tar xjvf modules-3.2.6.tar.bz2<br />
cd modules-3.2.6<br />
./configure<br />
make<br />
sudo make install<br />
</code></p>
<p>And add the following to your ~/.bashrc<br />
<code><br />
. /usr/local/Modules/3.2.6/init/bash<br />
module use ~/modules/<br />
</code></p>
<p>~/modules is the directory where I keep my modulefiles. For the <a href="http://www.codesourcery.com/">codesourcery</a> crosscompilers I currently have 2 files:</p>
<ul>
<li>cross-gcc/arm-2007q3-53-arm-none-eabi-i686-pc-linux-gnu<br />
<code><br />
#%Module1.0<br />
setenv          ARCH            arm<br />
setenv          CROSS_COMPILE   arm-none-eabi-<br />
prepend-path    PATH            /home/jan/no_backup/tools/arm-2007q3-53-arm-none-eabi-i686-pc-linux-gnu/arm-2007q3/bin/<br />
</code></li>
<li>cross-gcc/arm-2007q3-51-arm-uclinuxeabi<br />
<code><br />
#%Module1.0<br />
setenv          ARCH            arm<br />
setenv          CROSS_COMPILE   arm-uclinuxeabi-<br />
prepend-path    PATH            /home/jan/no_backup/tools/arm-2007q3-51-arm-uclinuxeabi-i686-pc-linux-gnu/arm-2007q3/bin<br />
</code></li>
</ul>
<p>Now I can use:<br />
<code><br />
module avail<br />
module load cross-gcc/arm-2007q3-51-arm-uclinuxeabi<br />
module list<br />
module unload cross-gcc<br />
</code></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janveldeman.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janveldeman.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janveldeman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janveldeman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janveldeman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janveldeman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janveldeman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janveldeman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janveldeman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janveldeman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janveldeman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janveldeman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janveldeman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janveldeman.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janveldeman.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janveldeman.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janveldeman.wordpress.com&amp;blog=2776695&amp;post=5&amp;subd=janveldeman&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://janveldeman.wordpress.com/2008/03/05/managing-environment-variables-with-modules/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3393866698520745ff1fae308c0b1372?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jan Veldeman</media:title>
		</media:content>
	</item>
		<item>
		<title>having fun with sed</title>
		<link>http://janveldeman.wordpress.com/2008/02/11/having-fun-with-sed/</link>
		<comments>http://janveldeman.wordpress.com/2008/02/11/having-fun-with-sed/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 21:34:47 +0000</pubDate>
		<dc:creator>Jan Veldeman</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://janveldeman.wordpress.com/?p=4</guid>
		<description><![CDATA[I wanted to convert a whole bunch of scripts from a c-like syntax into python scripts. Along came sed&#8230; cat &#62; /tmp/convert.sed &#60;&#60;EOF # Remove ; at end of line s/;$//g # Remove white space in front of lines (python indentation) s/^[[:space:]]*//g # Convert // styled comments to # s+//+#+g # Comment out /* styled [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janveldeman.wordpress.com&amp;blog=2776695&amp;post=4&amp;subd=janveldeman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wanted to convert a whole bunch of scripts from a c-like syntax into python scripts. Along came sed&#8230;</p>
<pre>
cat &gt; /tmp/convert.sed &lt;&lt;EOF
# Remove ; at end of line
s/;$//g

# Remove white space in front of lines (python indentation)
s/^[[:space:]]*//g

# Convert // styled comments to #
s+//+#+g

# Comment out /* styled comments */
\/\*/,/\*\// {
  s/^/# /g
}

# if else statements
# Not all statements work correctly yet, e.g.
# statements with "else" inside them (something_else();)
/^[^#]*else/,/}/ {
   s/ *else/else:/
   s/{//
   /else/! { s/}// }
   /else/! { s/^/   / }
}

/^ *if/,/}/ {
  s/if *(\(.*\))/if \1:/
  s/{//
  /if/! { /}/! { s/^/   / } }
  s/}//
}

# pythonify for loops
/^ *for/,/}/ {
   s/for *( *int *\(..*\) *= *\(.*\) *; *\1 *&lt; *\(..*\) *; *\1++ *)/for \1 in range(\2,\3):/
   s/}//
   s/{//
   /for/! {
     s/^/   /
   }
}
EOF

cat &gt; /tmp/example.c &lt;&lt;EOF
// Let's start with something simple
  some_line_with_space_before();

/*
 * here we do something different
 */
if(foo()) {
not_wel_indented_here();
} else {
foo();
}

for(int i = 0; i &lt; 10; i++) {
  more_stuff(i);
}
EOF

sed -f /tmp/convert.sed &lt; /tmp/example.c
</pre>
<p>It was the first time I needed block statements. It sure is a powerful language.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janveldeman.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janveldeman.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janveldeman.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janveldeman.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janveldeman.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janveldeman.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janveldeman.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janveldeman.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janveldeman.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janveldeman.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janveldeman.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janveldeman.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janveldeman.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janveldeman.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janveldeman.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janveldeman.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janveldeman.wordpress.com&amp;blog=2776695&amp;post=4&amp;subd=janveldeman&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://janveldeman.wordpress.com/2008/02/11/having-fun-with-sed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3393866698520745ff1fae308c0b1372?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jan Veldeman</media:title>
		</media:content>
	</item>
		<item>
		<title>smiley in bash prompt</title>
		<link>http://janveldeman.wordpress.com/2008/02/07/smiley-in-bash-prompt/</link>
		<comments>http://janveldeman.wordpress.com/2008/02/07/smiley-in-bash-prompt/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 21:40:07 +0000</pubDate>
		<dc:creator>Jan Veldeman</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[prompt]]></category>
		<category><![CDATA[smiley]]></category>

		<guid isPermaLink="false">http://janveldeman.wordpress.com/?p=3</guid>
		<description><![CDATA[After the geekdinner of last Tuesday, I couldn&#8217;t resist creating my own blog. As an appetizer, I&#8217;ll start with some code snippets I&#8217;ve found very usefull. For example the part of my .bashrc which configures the prompt: smiley() { ret_val=$? if [ "$ret_val" = "0" ] then echo ":)" else echo ":( ($ret_val)" fi } [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janveldeman.wordpress.com&amp;blog=2776695&amp;post=3&amp;subd=janveldeman&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After the <a href="http://www.geekdinner.be/">geekdinner</a> of last Tuesday, I couldn&#8217;t resist creating my own blog.</p>
<p>As an appetizer, I&#8217;ll start with some code snippets I&#8217;ve found very usefull. For example the part of my .bashrc which configures the prompt:</p>
<pre>
smiley() {
    ret_val=$?
    if [ "$ret_val" = "0" ]
    then
        echo ":)"
    else
        echo ":( ($ret_val)"
    fi
}
Green="&#92;033[0;32m"
Yellow="&#92;033[1;33m"
Normal="&#92;033[0m"
PS1="\[$Yellow\]\u@\h\[$Normal\]:\[$Green\]\w \$(smiley) \[$Normal\]"</pre>
<p>I always use this because:</p>
<ul>
<li>the coloring makes it easy to see where my previous command started</li>
<li>the smiley quickly shows me if and how the previous program exited</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/janveldeman.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/janveldeman.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janveldeman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janveldeman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janveldeman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janveldeman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janveldeman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janveldeman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janveldeman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janveldeman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janveldeman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janveldeman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janveldeman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janveldeman.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janveldeman.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janveldeman.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=janveldeman.wordpress.com&amp;blog=2776695&amp;post=3&amp;subd=janveldeman&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy"></div>]]></content:encoded>
			<wfw:commentRss>http://janveldeman.wordpress.com/2008/02/07/smiley-in-bash-prompt/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3393866698520745ff1fae308c0b1372?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jan Veldeman</media:title>
		</media:content>
	</item>
	</channel>
</rss>
