<?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>experimentalworks &#187; Private</title>
	<atom:link href="http://blog.experimentalworks.net/category/private/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.experimentalworks.net</link>
	<description></description>
	<lastBuildDate>Wed, 14 Jul 2010 15:35:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Show exit status of the last executed command in ZSH prompt</title>
		<link>http://blog.experimentalworks.net/2009/12/show-exit-status-of-the-last-executed-command-in-zsh-prompt/</link>
		<comments>http://blog.experimentalworks.net/2009/12/show-exit-status-of-the-last-executed-command-in-zsh-prompt/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 10:34:17 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Private]]></category>
		<category><![CDATA[zsh]]></category>

		<guid isPermaLink="false">http://blog.experimentalworks.net/2009/12/show-exit-status-of-the-last-executed-command-in-zsh-prompt/</guid>
		<description><![CDATA[We recently stumbled over the problem that we want to k [...]]]></description>
			<content:encoded><![CDATA[<p>We recently stumbled over the problem that we want to know the exit status of the last command that was executed in our ZSH. Well the obvious thing is echoing $?, but as we need this quite often we want to have it in our right prompt. Googling around a little bit, we found the solution:</p>
<p>In your .zshrc add the following line<br />
<code><br />
RPROMPT='[%?]'<br />
</code><br />
This will give you the last exit status on the right site of your shell.</p>
<p>My zsh now looks like this (with the additional stuff)<br />
<code><br />
buenosaires:~/dev/c/git.git/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (next)[1]<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2009/12/show-exit-status-of-the-last-executed-command-in-zsh-prompt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A really unfriendly and not so fair approach to GIT vs. Mercurial</title>
		<link>http://blog.experimentalworks.net/2009/02/a-really-unfriendly-and-not-so-fair-approach-to-git-vs-mercurial/</link>
		<comments>http://blog.experimentalworks.net/2009/02/a-really-unfriendly-and-not-so-fair-approach-to-git-vs-mercurial/#comments</comments>
		<pubDate>Sun, 22 Feb 2009 02:58:13 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Private]]></category>
		<category><![CDATA[Version Control]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[mercurial]]></category>

		<guid isPermaLink="false">http://blog.experimentalworks.net/?p=156</guid>
		<description><![CDATA[Okay, this is one of the posts I wanted to since about  [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, this is one of the posts I wanted to since about 1 year, but now, nearly 2 years after the first git vs. Mercurial blog post I finally made it to actually write a second time about this topic. A first notice: I won&#8217;t cover bazaar. I personally hate it with passion and think it is the worst approach to DVCS ever. Nevertheless git and Mercurial fight in the same game with the same weapons (unlike bzr which is just far behind).</p>
<p><strong>WARNING: This is the most subjective, most pointless approach to this topic ever. I didn&#8217;t read it myself a second time, I just published it.</strong></p>
<p>I will start the same way as last time:</p>
<p><strong>git</strong><br />
Git is a decentralized version control system written by Linus Torvalds to replace bitkeeper as the version control system of choice for the kernel because of licensing issues (okay I know this is the short story and it was much more complex and you can write a thousand lines about that, but it&#8217;s enough for most people). Git is designed to be fast. Everthing is optimized in that way. It contains a huge C written core with a lot of bash and perl scripts around it. A few years ago the C written part formed the so called <em>plumbing</em>. Nowadays the git community tries to replace high-level commands written in bash and perl that call the plumbing commands with c-written code to get a more consistent code base.<br />
Let&#8217;s make a long story short:<br />
Git is powerful. Awesome powerful. This is true since git&#8217;s beginning, but back then it lacks a good interface and the git community did a great job in improving the horrible interface git had once. Git is still awesomely fast. Commits, bisecting, everything works like a charm particularly on big projects like the kernel. They can rewrite history, they are doing a great job in helping intergrators to apply patches, reviewing them, and pushing to multiple sources. Everything about git is really unique, their focus on a powerful command set, their branching support and their targeted audience. I want to talk a little bit about that fancy branching support. Frankly, every version control system, even the 3rd generation decentralized ones have a pretty conservative way of doing branching by giving every changeset a name that the changeset belongs to (at least this is true for mercurial, and called named branches there). Git just gives a sh** about that and takes a version control <em>branch</em> the same way as a tree <em>branch</em>. It&#8217;s just an unnamed <em>branch</em> of the DAC. This gives you the awesome possibility to great huge set of local branches, to merge, rebase them without any bigger problem or even just discard them (actually that is one of the biggest problems in mercurials bookmarks implementation). Another just great feature in git is the staging area. You can stage hunks, as a virtual repository that is used to actually commit the &#8216;selected&#8217; changesets. That&#8217;s awesome and I&#8217;m really missing that in most of the version control systems that I use. The idea of a staging area is just a huge win for git. It&#8217;s so incredible powerful. Okay to put it in a nutshell: git is just awesome, but&#8230;.</p>
<p>There is <strong>Mercurial</strong>.<br />
Okay some kind of a warning in advance: I contributed two well known extensions to Mercurial, I hang around in their chatroom and I think that I&#8217;m a well known part of the community. Nevertheless if you talk about Mercurial and compare it with git you have to take care. Mercurial is by far not as powerful as git, and&#8230;that is just the best think about Mercurial. Matt really keeps it simple and clear for everybody. it&#8217;s so incredible easy to understand in the first place. There are no weird commands with a thousand of flags. Okay I try to be fair. Mercurial is much less powerful than git in the first place. Because it tries to keep everything simple. There is no rebase, no cheap branching, no staging area. <strong>But</strong> there are extensions. You can learn Mercurial and know all it&#8217;s commands within 24h. They are really easy to learn, and not powerful, but they can be extended, by a large range of extensions. You can have cheap branching (bookmarks), you can have kind of a staging area (record extension), you can have patch management on top (mq) and much more. With all those extensions, Mercurial is as hard to learn as learning all git commands (which frankly is not necessary at all), but it&#8217;s more of a evolutionary approach. I know a thousand people who say that learning git is as easy. Okay, no problem. I don&#8217;t think so but it doesn&#8217;t matter, but frankly, git is missing 2 big points. Windows and an application integration: If you live in your nice Linux/BSD/foo world you are right. Git is awesome, but come on, I don&#8217;t have a freaky Windows machine, but I <strong>know</strong> that 80% of all people and more than 50% of all programmers use Windows. No they are not these bad, <em>not geeky enough</em> people. They are the real programmers. Those who are not freaks and take programming as a job. They don&#8217;t care (and thats good) about their environment, they just want to get things done and want to earn money. That good. And even that is not quite true for most of them, they do their stuff just faster on Windows than on Linux, therefore it&#8217;s better for them to use Windows. Okay, you might argue, but there is mysysgit and it&#8217;s even part of official git. Oh nice arguement, but frankly, junio doesn&#8217;t provide Windows binary, there is no official site to get them from, and &#8230;.. git daemon still doesn&#8217;t work perfectly nor does git-svn. It just sucks. Big <strong>-1</strong> from me for that one.<br />
The second pint is the worse git internal design. It&#8217;s soooo unix style. It&#8217;s cool for people that love Unix (like I do), who pipe around at least 3 commands, and know that I it starts to get funny if you pipe around 5 commands. But most of the developer want to use a nice integrated version control system. They don&#8217;t like to use fancy command line stuff with a thousand of flags, they want to do click&#038;click (the german expression would be &#8216;klicky-bunti&#8217;). They want to have it integrated in their Eclipse, their NetBeans, Visual Studio, their Windows explorer and so on, and frankly, git does a poor job in that area. I know there is an eclipse plugin (but the mercurial one is stilll a thousand times better), and all this fancy stuff, but what do they do, <em>damn</em>, they have to parse the shell output. This means either git will never ever change their shell output (which would be sad, e.g. I hate the # in git status), or they will break older stuff. Mercurail on the other side is really easy to interface with. Okay you need python but that&#8217;s all. Everything else is just smooth. It&#8217;s easy to handle, it&#8217;s easy to integrate, it just works fine. Git really does a bad job on that. And the git community knows it. That&#8217;s why they start their libgit, and libgit2 project, because they know something like a git library is needed.</p>
<p>Okay it&#8217;s late and I want to finish that without reading it a second time, no frankly, this time I want to be completely unfair, without any objective argument: So here comes my final words, make them:</p>
<p><em>If you like to play with software, if you really like to have the power, go for git, if you use Linux, even better, go for it, there is nothing equal to the power and the fun you can have with Git. You can be a thousand times more productive. But if you, or people in your team are not tech-geeks. If you use Guis and want to use Windows, believe me, you better use Mercurial. I really love both systems (as long as you don&#8217;t use bzr even SVN is fine), but in this use case Mercurial is just better. Think about it.</em></p>
<p><em>shame on myself: song for this post: This is the life by Amy MacDonald</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2009/02/a-really-unfriendly-and-not-so-fair-approach-to-git-vs-mercurial/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Moving to WordPress</title>
		<link>http://blog.experimentalworks.net/2009/01/moving-to-wordpress/</link>
		<comments>http://blog.experimentalworks.net/2009/01/moving-to-wordpress/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 02:40:02 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[Private]]></category>

		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=93</guid>
		<description><![CDATA[When I started blogging, serendipity was my favorite bl [...]]]></description>
			<content:encoded><![CDATA[<p>When I started blogging, <a href="http://www.s9y.org/">serendipity</a> was my favorite blog system. It was faster and cleaner to me than <a href="http://wordpress.org">WordPress</a>. Also WordPress was known for being a insecure at that time.</p>
<p>Well now after 2 years of blogging I took another look at a WordPress and I must admit that I&#8217;m impressed by the clean admin interface and all the nice eye-candy. There are also tons of features that I like to use. So that&#8217;s why I decided to finally switch over to WordPress. I hope that my rss redirection will work for most of the people. For sure a lot of links on the web will just link into nowhere, but as I guess most of the links out there are not long-living, I frankly don&#8217;t care about that (But I care about the feeds, so give me feedback if you encounter problems).</p>
<p>The most notable change is the design. As I do not have the time to port my selfmade s9y design so far, I stick with a standard theme. Personally, I liked the old one more, but I was told by annoyed people, who had to scroll all the way down to the first article, that the big picture at the beginning wasn&#8217;t that good at all.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2009/01/moving-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seven things</title>
		<link>http://blog.experimentalworks.net/2009/01/seven-things/</link>
		<comments>http://blog.experimentalworks.net/2009/01/seven-things/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 16:43:37 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Private]]></category>

		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=84</guid>
		<description><![CDATA[As Johannes tagged me, here are my 7 things:


 I le [...]]]></description>
			<content:encoded><![CDATA[<p>As <a href="http://schlueters.de/blog/" >Johannes</a> tagged me, here are my 7 things:</p>
<ol>
<li>I leared PHP because I wanted to write a form mailer for a website.</li>
<li>When I was 13 years old, I spend a lot of time on a city network called RivalNet, causing a telephone bill of 600DM. There were no flatrates at that time.</li>
<li>I studied analytical philosophy for 6 months.</li>
<li>I make coffee the old-fashioned way by throwing hot-water through the coffee filter. My favorite sort is Jamaican Blue Mountain</li>
<li>I fear of dogs, seriously.</li>
<li>I started reading &#8220;Das Kapital&#8221; from Marx when I was 18, but still not finished it. Nevertheless, I still insist to call it a book that I&#8217;m currently reading.</li>
<li>My last name is spanish but I don&#8217;t speak castilian.</li>
</ol>
<p>And here are the rules I&#8217;m supposed to pass on to the following bloggers:</p>
<ul>
<li>Link your original tagger(s), and list these rules on your blog.</li>
<li>Share seven facts about yourself in the post &#8211; some random, some weird.</li>
<li>Tag seven people at the end of your post by leaving their names and the links to their blogs.</li>
<li>Let them know they&#8217;ve been tagged by leaving a comment on their blogs and/or Twitter.</li>
</ul>
<p>And as for chaining, in no particularly significant order:</p>
<ul>
<li><a href="http://blog.thepimp.net/" >Pierre A. Joye</a> for doing awesome PHP windows work</li>
<li><a href="http://devblog.phpmyfaq.de/" >Thorsten Rinne</a> for the invitation to Augsburg</li>
<li><a href="http://blog.ulf-wendel.de/" >Ulf Wendel</a></li>
<li><a href="http://zoomsplatter.blogspot.com/" >Zoe Slattery</a> for helping to improve PHP&#8217;s quality</li>
<li><a href="http://wolfram.kriesing.de/blog/" >Wolfram Kriesing</a></li>
<li><a href="http://jan.prima.de/~jan/plok/" >Jan Lehnardt</a> for his inspiring criticism</li>
<li><a href="http://www.suspekt.org/" >Stefan Esser</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2009/01/seven-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music Industry: Failed!</title>
		<link>http://blog.experimentalworks.net/2008/11/music-industry-failed/</link>
		<comments>http://blog.experimentalworks.net/2008/11/music-industry-failed/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 04:54:31 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[Private]]></category>

		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=79</guid>
		<description><![CDATA[I really like to buy CDs. Actually if I hear a few good [...]]]></description>
			<content:encoded><![CDATA[<p>I really like to buy CDs. Actually if I hear a few good songs from an album, I usually buy it, but this time it get&#8217;s really hard. I want to buy &#8220;Tales of the Forgotten Melodies&#8221; from Wax Taylor. In fact, it is not available in germany. I mean: WTF. It is a damn good album. Amazon list it but doesn&#8217;t really sell it. I want to have this album, but no chance to get it. I want to <b>buy</b> it. Dear ******* music industry: how can I buy my beloved album? No chance? What should I do instead?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2008/11/music-industry-failed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Agiles Development</title>
		<link>http://blog.experimentalworks.net/2008/04/agiles-development/</link>
		<comments>http://blog.experimentalworks.net/2008/04/agiles-development/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 17:46:55 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[Private]]></category>

		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=61</guid>
		<description><![CDATA[Unser aktuelles Projekt wird agil entwickelt. Wir sind  [...]]]></description>
			<content:encoded><![CDATA[<p>Unser aktuelles Projekt wird agil entwickelt. Wir sind so agil, dass wir unsere Specs bekommen, wenn wir den Code schon committen haben. Gleichzeitig müssen wir auch noch refactoren, damit die Specs mit dem alten Code können. Macht ja nichts. Nur dumm, dass wir refactoren, fixen und releasen gleichzeitig müssen. Natürlich haben wir dabei auch interne Abhängigkeiten. Unsere Kollegen von &#8220;<em>The Java Company</em>&#8220;, brauchen dann unsere fertigen Pakete. Dank Buzzwordpolitik und immer mehr Agilität, müssen Releases dann auch gleich geliefert werden, ohne Vorlauf oder Feature Freeze.</p>
<p>Na dadurch kommt es natürlich, dass wir branchen, mergen, branchen, mergen und hoffen das wir keine Abhängigkeit vergessen haben. Aber nebenbei braucht unser Rosenheimcop noch die Refactoring Änderungen, dummerweise aber gleichzeitig auch den alten Code. Also patch und diff ausgepackt und von Branch zu Branch geschoben und commited. </p>
<p>Nein mal im Ernst. Endlich mal ein Fall bei dem dezentrale Systeme Sinn machen und deutlich weniger Schmerzen bereiten. Jeder Entwickler kann selbst bestimmen welche Abhängigkeiten er hat und wie er sie auflöst, indem er von jemand anderes pulled. Wenn ein Paket released werden muss, dann gibt es auch keine Commit-Stops mehr oder keine Verschieben weil die Tests nicht laufen. Dann fliegt das Feature raus. Da man sich aussuchen kann von welchen Entwicklern man die Features übernimmt, und diese auch selbst entscheiden können, welche Features es in den Hauptzweig schaffen, ist man einfach flexibler und schneller. Da kann man nur Looser und unseren Italiener mit nerven. Immer mit der Nadel durch&#8217;s Chitin. Agil und DVCS passen irgendwie.<br />
<em><br />
Besser mal wieder die Robe ablegen und im Geheimen infiltrieren.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2008/04/agiles-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Server</title>
		<link>http://blog.experimentalworks.net/2007/01/new-server/</link>
		<comments>http://blog.experimentalworks.net/2007/01/new-server/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 18:05:29 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[Private]]></category>

		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=15</guid>
		<description><![CDATA[I finally moved the blog to my new vrserver. The server [...]]]></description>
			<content:encoded><![CDATA[<p>I finally moved the blog to my new vrserver. The server is running on a debian sarge with backports installed and php 5.2 with hardened patches and suhosin extension installed. Mysql is version 4.1. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2007/01/new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Umzug und Domainabschaltung</title>
		<link>http://blog.experimentalworks.net/2007/01/server-umzug-und-domainabschaltung/</link>
		<comments>http://blog.experimentalworks.net/2007/01/server-umzug-und-domainabschaltung/#comments</comments>
		<pubDate>Fri, 05 Jan 2007 15:24:48 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[Private]]></category>

		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=19</guid>
		<description><![CDATA[Da ich auf einen neuen Server umziehe wird ab dem 31.01 [...]]]></description>
			<content:encoded><![CDATA[<p>Da ich auf einen neuen Server umziehe wird ab dem 31.01.2007 die Domain <a href="http://sqlbackup.net" >sqlbackup.net</a> nicht mehr erreichbar sein. Die Adresse <a href="http://blog.experimentalworks.net">blog.experimentalworks.net</a> wird jedoch übernommen, und mein Blog wird darüber erreichbar sein.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2007/01/server-umzug-und-domainabschaltung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes Remote Control</title>
		<link>http://blog.experimentalworks.net/2006/12/itunes-remote-control/</link>
		<comments>http://blog.experimentalworks.net/2006/12/itunes-remote-control/#comments</comments>
		<pubDate>Sat, 30 Dec 2006 16:27:50 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Private]]></category>

		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=16</guid>
		<description><![CDATA[I was looking for an iTunes Remote Control to control m [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for an iTunes Remote Control to control my <a href="http://www.apple.com/itunes/">iTunes</a> thats running on my Mac from my <a href="http://kernel.org" >Linux</a> desktop. As I don&#8217;t find a nice solution on <a href="http://sourceforge.org" >sourceforge.org</a> (In fact there are several projects target on that issue, but no release and often there was just an initial commit) I <a href="http://sqlbackup.net/data/iTunesControl.tar.bz2" >wrote</a> a simple commandline tool myself in <a href="http://php.net" >PHP</a>. It&#8217;s just a wrapper for the <b>osascript</b> command to execute <b>AppleScript</b>.<br />
I can now connect to my Mac using SSH and then start the iTunesControl Script in an interactive mode and play next or previous song or something like that. <span id="more-16"></span>As the tool is just a hack written in a few hours it features some geeky commands. If you want to give it a try you can <strong><a href="http://sqlbackup.net/data/iTunesControl.tar.bz2" >download</a></strong> the script. You need PHP 4.x (normally installed on Mac OSX). Of course it&#8217;s <a href="http://en.wikipedia.org/wiki/BSD_licenses" >BSD licensed</a>. If you enhance the tool, I would appreciate if you send me a mail with your changes. You found the mail addresse in the header of the script.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2006/12/itunes-remote-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bob Ross</title>
		<link>http://blog.experimentalworks.net/2006/12/bob-ross/</link>
		<comments>http://blog.experimentalworks.net/2006/12/bob-ross/#comments</comments>
		<pubDate>Sun, 17 Dec 2006 01:29:17 +0000</pubDate>
		<dc:creator>dsp</dc:creator>
				<category><![CDATA[Private]]></category>

		<guid isPermaLink="false">http://wp.experimentalworks.net/?p=18</guid>
		<description><![CDATA[First I wanted to code, but then I realized that I don' [...]]]></description>
			<content:encoded><![CDATA[<p>First I wanted to code, but then I realized that I don&#8217;t have the right key for the office, where I put my laptop yesterday, so I grabbed my Wacom and started painting on my second pc. Pretty nice, as I didn&#8217;t have the time to paint since months. </p>
<p><a class='serendipity_image_link' href='/uploads/lenfantterrible.jpg'><img width='110' height='110' style="border: 0px; padding-left: 5px; padding-right: 5px;" src="/uploads/lenfantterrible.serendipityThumb.jpg" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.experimentalworks.net/2006/12/bob-ross/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
