<?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>Romanofskis Blog</title>
	<atom:link href="http://romanofskiat.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://romanofskiat.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 25 Nov 2009 04:17:59 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='romanofskiat.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/4e975b499ac41a60bfa2687dbea31fbd?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Romanofskis Blog</title>
		<link>http://romanofskiat.wordpress.com</link>
	</image>
			<item>
		<title>Using z3c.traverser</title>
		<link>http://romanofskiat.wordpress.com/2009/11/21/using-z3c-traverser/</link>
		<comments>http://romanofskiat.wordpress.com/2009/11/21/using-z3c-traverser/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 06:16:32 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[Zope]]></category>
		<category><![CDATA[traversing]]></category>
		<category><![CDATA[traverser]]></category>
		<category><![CDATA[multiadapter]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=143</guid>
		<description><![CDATA[A small example on how to use z3c.traverser in Zope3.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=143&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>One of the things which looked so hard, but reveiled using so easy was <a href="http://pypi.python.org/pypi/z3c.traverser/0.2.5" target="_self">z3c.traverser</a>. I&#8217;m sometimes a bit retarded reading doctests and applying them to my needs. For those who have the same problem, here a small example on how to use the traverser.</p>
<h2>The Muffin Traverser</h2>
<h4>Motivation</h4>
<p>Our web application catalogues muffin recipes. Every bloody muffin shop in town has a login to our muffin-application and publishes recipes. To view such a recipe the URLs look like this:</p>
<pre>http://muffinsinthehouse.com/shop/recipes/bluemuffin</pre>
<p>Now, the customer who operates the site comes to us with a wish: please make the URLs shorter. Each recipe is created with a unique ID and I like to use this id to look up recipes like this:</p>
<pre>http://muffinsinthehouse.com/bluemuffin</pre>
<h4>Implementation</h4>
<p>&#8220;No worries mate&#8221;, you say and use z3c.traverser and implement a custom traverser. The code below shows your custom traverser plugin:</p>
<pre>import z3c.traverser.interfaces
import zope.interface
import zope.component
import zope.publisher.interfaces
import zope.app.catalog.interfaces

class MuffinTraverserPlugin(object):
    """Traverser which tries to lookup muffins in the database."""

    zope.interface.implements(
        z3c.traverser.interfaces.ITraverserPlugin)

    def __init__(self, context, request):
        self.context = context
        self.request = request

    def publishTraverse(self, request, name):
        catalog = zope.component.getUtility(
            zope.app.catalog.interfaces.ICatalog)
        result = catalog.searchResults(objectname=name, metatype='Recipe')
        if not result:
            raise zope.publisher.interfaces.NotFound(
                self.context, name, request)
        return result[-1].getObject()</pre>
<p>There is nothing really special here, if you know how traversal works in Zope. The plugin is a Multiadapter (a view), which implements z3c.traverser.interfaces.ITraverserPlugin. The object lookup for your muffins is happening in the publishTraverse method. This method either returns the object or raises a NotFound exception if it couldn&#8217;t lookup the object. Easy as pie. The catalog is utilised to lookup the object and if its not found a NotFound error is raised.</p>
<p>You register the plug-in with the following ZCML directive:</p>
<pre>&lt;adapter
 factory="z3c.traverser.traverser.PluggableTraverser"
 for="zope.traversing.interfaces.IContainmentRoot
 zope.publisher.interfaces.IPublisherRequest"
 /&gt;

 &lt;subscriber
 factory=".traversing.MuffinTraverserPlugin"
 for="zope.traversing.interfaces.IContainmentRoot
 zope.publisher.interfaces.IPublisherRequest"
 provides="z3c.traverser.interfaces.ITraverserPlugin"
 /&gt;
</pre>
<p>The first directive &#8220;enables&#8221; z3c.traverser, the second registers your plugin. After that, try out the custom URL which should work. <strong>But wait</strong>, if you try to<strong> look up other objects in the database, you&#8217;ll notice that your traverser deals with them too</strong>. That was not the plan, was it?</p>
<p>z3c.traverser provides other plug-ins to deal with folders attributes etc. <strong>Don&#8217;t lump all those object look-ups into your plug-in!</strong> You need to <strong>register them additionally</strong>:</p>
<pre>&lt;subscriber
 factory="z3c.traverser.traverser.ContainerTraverserPlugin"
 for="zope.traversing.interfaces.IContainmentRoot
 zope.publisher.interfaces.IPublisherRequest"
 provides="z3c.traverser.interfaces.ITraverserPlugin"
 /&gt;</pre>
<p>Try again. This should satisfy the customer.</p>
<p>Comments welcome <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=143&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2009/11/21/using-z3c-traverser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>
	</item>
		<item>
		<title>Vimperator &#8211; a firefox add-on</title>
		<link>http://romanofskiat.wordpress.com/2009/05/22/vimperator/</link>
		<comments>http://romanofskiat.wordpress.com/2009/05/22/vimperator/#comments</comments>
		<pubDate>Fri, 22 May 2009 03:14:46 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=132</guid>
		<description><![CDATA[Vimperator add-on for daily browsing needs.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=132&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:center;"><a title="dsc_0053.nef by romanjoost, on Flickr" href="http://www.flickr.com/photos/romanofski/3452125046/"><img class="aligncenter" src="http://farm4.static.flickr.com/3343/3452125046_edf59f0fd9.jpg" alt="dsc_0053.nef" width="500" height="333" /></a></p>
<p>For my daily text editing and programming work, I&#8217;m using <a title="vim homepage" href="http://vim.sf.net" target="_self">vim</a>. Great editor suitable for almost every purpose.</p>
<p>There is a <a href="http://vimperator.org/trac/wiki/Vimperator" target="_self">Firefox add-on</a> out now for changing the browser interface to behave like a vim interface. It advertises itself that you can even throw away your mouse. First I was curious if that&#8217;s gonna even work, but it does and I&#8217;m very happy with it. Although, I&#8217;m still using my mouse for browsing. It saves time not touching the mouse in a few cases, though. A few key features I use every day:</p>
<h3>Following links</h3>
<p>You press the &#8216;<strong>f</strong>&#8216; key and vimperator hints all links on the current webpage. No you press either the first letters of the link label or a number associated with the link.</p>
<h3>Navigating on a website</h3>
<p>You can just use the normal arrow keys for browsing, but there is more. As usual you can use &#8216;<strong>j</strong>&#8216; and &#8216;<strong>k</strong>&#8216; for scrolling up and down, as well as &#8216;<strong>space bar</strong>&#8216; for jumping a page down, or &#8216;<strong>gg</strong>&#8216; for jumping to the top, or &#8216;<strong>GG</strong>&#8216; for jumping to the bottom.</p>
<h3>Text editing</h3>
<p>Remember editing text areas without using your favourite editor? The times are over: Press <strong>CTRL+i</strong> in insert mode (you&#8217;re automatically in insert mode when inserting text on an input field or text area) and vimperator fires up a vim. Very handy for editing large amounts of text in textareas.</p>
<h3>Opening URLs</h3>
<p>Just press &#8216;<strong>o</strong>&#8216; to open a new url, or &#8216;<strong>O</strong>&#8216; to use the current URL. You can easily open the url in a tab by using &#8216;<strong>t</strong>&#8216; or &#8216;<strong>T</strong>&#8216; instead. You can use yank and paste as well. Just pressing &#8216;<strong>y</strong>&#8216; on an opened web site, yanks the URL. If you&#8217;re already a URL in the buffer, press &#8216;<strong>p</strong>&#8216; and the browser opens the link (like the middle mouse click). Very handy.</p>
<p>You can also use tab for completing commands or URLs. For example you want to open the website you opened yesterday, but you only remember a few letters, You type: &#8216;<strong>o</strong>&#8216;, enter &#8216;<strong>foo</strong>&#8216; and press <strong>tab</strong>. Vimperator shows a list of URLs matching your string. You can now tab and enter to the match and open the URL.</p>
<h3>Navigating between tabs &#8230; err&#8230; buffers <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </h3>
<p>Jumping between tabs is like jumping between buffers in vim. Use <strong>CTRL+n</strong> or <strong>CTRL+n</strong> for jumping to the next and previous tabs. It&#8217;s similar to jumping in the history of visited pages: use <strong>CTRL+i</strong> or <strong>CTRL+o</strong> for back or forward in the history.</p>
<p>That are the commands are use almost everyday for browsing. There is support for more features like macros and quickmarks and so forth. So if you&#8217;re using vim everyday, give it a go. IMHO it&#8217;s worth the speed for browsing you get.</p>
<p>Before I forget: In case you need help to the features, use &#8216;<strong>:help</strong>&#8216; as usual for browsing the online help.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=132&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2009/05/22/vimperator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3343/3452125046_edf59f0fd9.jpg" medium="image">
			<media:title type="html">dsc_0053.nef</media:title>
		</media:content>
	</item>
		<item>
		<title>The skipper and the fish</title>
		<link>http://romanofskiat.wordpress.com/2009/05/07/the-skipper-and-the-fish/</link>
		<comments>http://romanofskiat.wordpress.com/2009/05/07/the-skipper-and-the-fish/#comments</comments>
		<pubDate>Thu, 07 May 2009 07:07:06 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[real life]]></category>
		<category><![CDATA[documentary fishermen trawlermen software development]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=126</guid>
		<description><![CDATA[I watched Trawlermen on SBS yesterday. The documentary is about the work of a number of trawler crews based in Peterhead/Ireland. I have two quotes from the documentary which I found really interesting. It can be applied probably to any other business including writing software.
The skipper said: &#8220;Without my crew I&#8217;m nothing, because I can&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=126&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I watched <a href="http://en.wikipedia.org/wiki/Trawlermen_(TV_series)" target="_self">Trawlermen</a> on <a href="http://www.sbs.com.au/" target="_self">SBS</a> yesterday. The documentary is about the work of a number of trawler crews based in Peterhead/Ireland. I have two quotes from the documentary which I found really interesting. It can be applied probably to any other business including writing software.</p>
<p>The skipper said: &#8220;Without my crew I&#8217;m nothing, because I can&#8217;t catch the fish all by myself.&#8221; The crew in turn said: &#8220;We have to trust the decisions made by the skipper. He leads us to the best fishing grounds which in turn brings the most money for the fish.&#8221;</p>
<p>So for now, all the people out there who think they can always do it better on their own, think about this documentary.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=126&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2009/05/07/the-skipper-and-the-fish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>
	</item>
		<item>
		<title>Displaying useful information in your GNU screen</title>
		<link>http://romanofskiat.wordpress.com/2008/12/20/displaying-usefull-information-in-your-gnu-screen/</link>
		<comments>http://romanofskiat.wordpress.com/2008/12/20/displaying-usefull-information-in-your-gnu-screen/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 10:42:38 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[GNU screen]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=115</guid>
		<description><![CDATA[Display useful information in your GNU screen session. I wrote myself a python script which prints information in the caption line of GNU screen.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=115&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>My working desktop setup used <a title="Xmonad project homepage" href="http://xmonad.org/" target="_blank">XMonad</a> as a window manager and a terminal using <a title="GNU Screen" href="http://www.gnu.org/software/screen/" target="_blank">GNU screen</a>. In XMonad, I was using <a title="Dzen Project page" href="http://gotmor.googlepages.com/dzen" target="_blank">dzen</a> as a small panel in the top corner for displaying useful information (mail, clock, battery status, etc). Dzen just display a text string. This can also be printed by a program. I wrote myself a simple python script, for doing that part like the example shows below:</p>
<pre>gocept:INBOX(1)  private: -- | Friday, 19.12.2008 10:44:15 (AUS 20:44, CAN 3:44)</pre>
<p>Now I switched to use <a title="Using XMonad and Gnome" href="http://www.haskell.org/haskellwiki/Xmonad/Using_xmonad_in_Gnome" target="_self">XMonad in GNOME</a>. Dzen is gone and I was looking for an alternative to display the information printed by my script. After a bit of googling, I found a very <a title="http://www.debian-administration.org/articles/560" href="http://www.debian-administration.org/articles/560" target="_self">nice howto</a> about GNU screen. Screen offers a harstatus and a caption line to display information. I tweaked my screenrc to use the python script in the caption line.</p>
<p>Have a look at my <a href="http://amy.gocept.com/~roman/dzenscript.py" target="_blank">simple python script</a> or my <a href="http://amy.gocept.com/~roman/screenrc" target="_blank">screenrc</a>. Use it on your own risk of course <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=115&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2008/12/20/displaying-usefull-information-in-your-gnu-screen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>
	</item>
		<item>
		<title>svn merge weirdness</title>
		<link>http://romanofskiat.wordpress.com/2008/12/19/svn-merge-weirdness/</link>
		<comments>http://romanofskiat.wordpress.com/2008/12/19/svn-merge-weirdness/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 15:23:18 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[GIMP]]></category>
		<category><![CDATA[gimp-help-2]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=118</guid>
		<description><![CDATA[Problems with a branch merge using svn.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=118&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I stumbled over a strange svn problem today, while merging the <a title="CVS View of gimp-help-2 xml2po-support branch" href="http://svn.gnome.org/viewvc/gimp-help-2/branches/xml2po-support/" target="_self">xml2po branch</a> into TRUNK:</p>
<pre>svn: Working copy path 'ChangeLog.pre-2-4' does not exist in repository</pre>
<div class="wp-caption alignright" style="width: 110px"><a href="http://www.flickr.com/photos/zen/"><img title="Weirdness" src="http://farm1.static.flickr.com/16/20912387_37255ca22c_t.jpg" alt="photo by zen Sutherland on flickr.com" width="100" height="100" /></a><p class="wp-caption-text">photo by zen Sutherland on flickr.com</p></div>
<p>I found two possible solutions in the net, but none of them seemed to work:</p>
<ol>
<li>&#8220;edit the &#8220;.svn/entries&#8221; file, and look for an incorrect revision=&#8221;0&#8243; attribute, and set it to the correct value.&#8221; ( see <a href="http://www.axlrosen.net/stuff/svnproblem.html" target="_self">http://www.axlrosen.net/stuff/svnproblem.html</a>)</li>
<li>&#8220;At this point, the only way I found to repair my working copy was to delete the directory containing the problematic file, check it out again [...]&#8221; (see <a href="http://svn.haxx.se/dev/archive-2006-03/0795.shtml" target="_self">http://svn.haxx.se/dev/archive-2006-03/0795.shtml</a>)</li>
</ol>
<p>I checked the &#8216;entries&#8217; file, but couldn&#8217;t spot a &#8216;revision&#8217; attribute at all. Solution two wouldn&#8217;t work, or I had to wipe out the whole gimp-help-2 module.</p>
<p>What I did now is to remove the files temporary (aprox. 10 files) and try again. I got the merge working afterwards. Although it is cumbersome, because you won&#8217;t spot the erroneus file in a dry run.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=118&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2008/12/19/svn-merge-weirdness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/16/20912387_37255ca22c_t.jpg" medium="image">
			<media:title type="html">Weirdness</media:title>
		</media:content>
	</item>
		<item>
		<title>Flickering Flash applets in Firefox</title>
		<link>http://romanofskiat.wordpress.com/2008/11/10/flickering-flash-applets-in-firefox/</link>
		<comments>http://romanofskiat.wordpress.com/2008/11/10/flickering-flash-applets-in-firefox/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 10:08:32 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Intrepid]]></category>
		<category><![CDATA[Lenovo]]></category>
		<category><![CDATA[T60]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=112</guid>
		<description><![CDATA[Solved problem caused by an old version of Firefox and newer version of the flash plugin in Ubuntu Intrepid.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=112&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I just upgraded from <a href="http://www.ubuntu.com" target="_self">Ubuntu</a> Hardy to Ubuntu Intrepid. As always &#8211; there is something totally wrong going on after an upgrade. My network didn&#8217;t work anymore (solved, because of openvpn created wrong routes), my sound was flaky because of <a href="http://en.wikipedia.org/wiki/Pulseaudio" target="_self">pulseaudio</a> (just turned it off) and Flash applets in Firefox were flickering.</p>
<p>I solved the latter problem now, by just using the Firefox 3 from Ubuntu. I had a local installed Firefox 3 which was probably older than the version in Ubuntu. That solved the problem and flash applets aren&#8217;t flickering anymore.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=112&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2008/11/10/flickering-flash-applets-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>
	</item>
		<item>
		<title>Bad News are Good News</title>
		<link>http://romanofskiat.wordpress.com/2008/11/07/bad-news-are-good-news/</link>
		<comments>http://romanofskiat.wordpress.com/2008/11/07/bad-news-are-good-news/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 13:04:46 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[hubdub]]></category>
		<category><![CDATA[online]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=107</guid>
		<description><![CDATA[Playing on hubdub.com is fun.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=107&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="wp-caption alignleft" style="width: 250px"><a title="hubdub by romanjoost, on Flickr" href="http://www.flickr.com/photos/romanofski/3010468082/"><img src="http://farm4.static.flickr.com/3274/3010468082_2074762522_m.jpg" alt="hubdub" width="240" height="178" /></a><p class="wp-caption-text">Playing on hubdub.com is fun.</p></div>
<p>I&#8217;m playing on <a href="http://www.hubdub.com" target="_self">hubdub.com</a> from time to time. It&#8217;s a funny online game of a prediction stock market. People creating questions for upcoming events and you can bet how this event will proceed in real.</p>
<p>For example: Who will be the new American president? Obama or McCain? Now it comes to all the news who&#8217;ve been floating around. Who will make it. That pushes the chances between Obama and McCain to various percentages. Say, for example, you start  at a 12% probability that Obama makes it, while everyone sets on McCain. The more likely Obama will win the race the more money you will make if you sell your stocks. If you wait until the end when the question is settled, you earn the most money.</p>
<p>But don&#8217;t forget: It&#8217;s all play money <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=107&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2008/11/07/bad-news-are-good-news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3274/3010468082_2074762522_m.jpg" medium="image">
			<media:title type="html">hubdub</media:title>
		</media:content>
	</item>
		<item>
		<title>My five tips for walking with the five fingers</title>
		<link>http://romanofskiat.wordpress.com/2008/10/14/my-five-tips-for-walking-with-the-five-fingers/</link>
		<comments>http://romanofskiat.wordpress.com/2008/10/14/my-five-tips-for-walking-with-the-five-fingers/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 10:21:59 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[real life]]></category>
		<category><![CDATA[fivefingers]]></category>
		<category><![CDATA[vibram]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=90</guid>
		<description><![CDATA[Tips for walking barefoot with vibram five fingers.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=90&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I did a 10km walk up the <a href="http://en.wikipedia.org/wiki/The_Brocken" target="_self">Brocken</a> (1141m high, highest peak in my state) and a 20km walk. I want to share some experiences with the outside world about the <a href="http://romanofskiat.wordpress.com/2008/09/20/taking-the-five-fingers-for-a-walk/" target="_self">five fingers</a>:</p>
<ol>
<li><strong>Take it easy</strong><br />
Train your feet to walk barefoot. Don&#8217;t start with too long walks. Not only that you hurt your feet, you could also get blisters while walking (vibram five fingers classic).</li>
<li><strong>Wet feet getting colder much faster</strong><br />
Don&#8217;t let them get wet, and your feet are getting colder even faster. They could stay cold.</li>
<li><strong>Sun heats you up</strong><br />
It&#8217;s better to walk in the sun. Your body temperature get&#8217;s warmer as well as the feet.</li>
<li><strong>Avoid walking on concrete<br />
</strong>My walks on concrete were awful so far. Maybe it&#8217;s a training thing, maybe not. I&#8217;d rather avoid it.</li>
<li><strong>Minimum temperature<br />
</strong>If the outside temperature is colder than 9°C, your feet are getting colder much faster which you can&#8217;t compensate with warm clothes covering the body. Though the rubber sole isolates very good between the foot and the icy ground.</li>
<li><strong>Hiking</strong><br />
If you&#8217;re up for hiking, be sure you practices enough before. You should be aware that you can cut your feet at sharp things (not from the sole &#8211; from the top). Check if not poisonous animals can cause problems (e.g. Australia).</li>
</ol>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=90&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2008/10/14/my-five-tips-for-walking-with-the-five-fingers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>
	</item>
		<item>
		<title>GIMP 2.6 is out &#8230;</title>
		<link>http://romanofskiat.wordpress.com/2008/10/02/gimp-26-is-out/</link>
		<comments>http://romanofskiat.wordpress.com/2008/10/02/gimp-26-is-out/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 19:38:26 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[GIMP]]></category>
		<category><![CDATA[docbook]]></category>
		<category><![CDATA[gimp-help-2]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=92</guid>
		<description><![CDATA[Future plans of the GIMP Manual.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=92&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div id="attachment_24" class="wp-caption alignleft" style="width: 137px"><a href="http://romanofskiat.files.wordpress.com/2008/07/helpbrowser.png"><img class="size-thumbnail wp-image-24" title="helpbrowser" src="http://romanofskiat.files.wordpress.com/2008/07/helpbrowser.png?w=127&#038;h=88" alt="GIMP Help Browser using webkit." width="127" height="88" /></a><p class="wp-caption-text">GIMP Help Browser using webkit.</p></div>
<p>&#8230; and the <a href="http://docs.gimp.org" target="_self">Manual</a> will be next.</p>
<p>The current plan is to release the last tarball of the manual suitable for the GIMP 2.4 release a.s.a.p. It should still be installed by most of the desktops until GIMP 2.6 is provided by the distributions.</p>
<p>We&#8217;re currently still working heavily to migrate most of the translations from DocBook/XML to po/gettext. The biggest problem for us is the missing 1:1 mapping between reference language to a translation. We&#8217;re trying to minimize the site effects when splitting the translations and using xml2po&#8217;s reuse option for a content migration. Ulf D. Ehlert <a href="http://lists.xcf.berkeley.edu/lists/gimp-docs/2008-September/001278.html" target="_self">wrote a Python script</a>, which will splitt the reference language from the translation <a href="http://svn.gnome.org/viewvc/gimp-help-2/branches/xml2po-support/tools/split_xml_multi_lang.py?revision=2568&amp;view=markup" target="_self">&#8220;as good as possible&#8221;.</a></p>
<p>As long this script is ready and we&#8217;re able to migrate, we&#8217;re up to speed to document GIMP 2.6.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=92&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2008/10/02/gimp-26-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>

		<media:content url="http://romanofskiat.files.wordpress.com/2008/07/helpbrowser.png?w=127" medium="image">
			<media:title type="html">helpbrowser</media:title>
		</media:content>
	</item>
		<item>
		<title>Taking the five fingers for a walk</title>
		<link>http://romanofskiat.wordpress.com/2008/09/20/taking-the-five-fingers-for-a-walk/</link>
		<comments>http://romanofskiat.wordpress.com/2008/09/20/taking-the-five-fingers-for-a-walk/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 18:26:47 +0000</pubDate>
		<dc:creator>romanofski</dc:creator>
				<category><![CDATA[real life]]></category>
		<category><![CDATA[fivefingers]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[vibram]]></category>

		<guid isPermaLink="false">http://romanofskiat.wordpress.com/?p=76</guid>
		<description><![CDATA[The autumn and winter is approaching in Europe. I was walking most of the days barefoot in summer. It would be cool to still walk barefoot even when the weather becomes colder. It looks like there is a chance of doing this: vibram five fingers.
Theuni started with the five fingers. I ordered myself a pair [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=76&subd=romanofskiat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a title="vibram five fingers by romanjoost, on Flickr" href="http://www.flickr.com/photos/romanofski/2873344952/"><img class="alignleft" style="margin:.5em;" src="http://farm4.static.flickr.com/3205/2873344952_7244a2d253_m.jpg" alt="vibram five fingers" width="240" height="165" /></a>The autumn and winter is approaching in Europe. I was walking most of the days barefoot in summer. It would be cool to still walk barefoot even when the weather becomes colder. It looks like there is a chance of doing this: <a href="http://www.vibramfivefingers.com/" target="_self">vibram five fingers.</a></p>
<p><a href="http://theunionzope.blogspot.com/" target="_self">Theuni</a> started with the five fingers. I ordered myself a pair of five fingers classic from barefoot.com with the size of 46; tried them and recognized, that they not fit. barefoot.com didn&#8217;t had a bigger size in stock, found one pair at globetrotter.de and ordered a 47. The five fingers homepage has a good introduction on how you <a href="http://www.vibramfivefingers.com/products/size_conversion_chart.html" target="_self">measure the size</a> you should order.</p>
<p>So, my key points are:</p>
<ol>
<li>is it really different to walk in those shoes from walking barefoot?</li>
<li>can you still wear those shoes in autumn, maybe in winter?</li>
</ol>
<h3>Difference between walking barefoot</h3>
<p>So to summarize from the first walk: it is different. I wouldn&#8217;t believed it. You still have to adopt on wearing those shoes.</p>
<p>You can sense the ground under your feet. You feel that the ground is cold. Your feet feel kind of numb. For example, if you walk barefoot through gravel it feels really uncomfortable (depending on the gravel). If you use the shoes, it&#8217;s much easier because of the vibram sole catches most of the stones. But you still sense that you&#8217;re walking through gravel. If you&#8217;re walking through grass, you sense that the grass is cold and soft, but you can&#8217;t feel the grass on your feet.</p>
<h3>Wearing five fingers during cold times</h3>
<p>It was 9.0 ℃ when I took a walk today. I sensed the cold ground under my feet (especially when walking through grass). Though I was wearing thick clothes to keep the body warm and it turned out to be working. After 5 Minutes the feet were getting warmer and were well temperatured. I will continue doing this even when the temperatures drop. I really want to know when it is to cold to not take a walk &#8220;barefoot&#8221;.</p>
<h3>General</h3>
<p>In general I like to wear them. It&#8217;s a great alternative in times where it&#8217;s not possible to walk barefoot. I&#8217;d like to test the five fingers sprint. I can imagine to take them for running.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/romanofskiat.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/romanofskiat.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/romanofskiat.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/romanofskiat.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/romanofskiat.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/romanofskiat.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/romanofskiat.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/romanofskiat.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/romanofskiat.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/romanofskiat.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=romanofskiat.wordpress.com&blog=3649198&post=76&subd=romanofskiat&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://romanofskiat.wordpress.com/2008/09/20/taking-the-five-fingers-for-a-walk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/abd153160b2cc591f94caf0ad7dfba9a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">romanofski</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3205/2873344952_7244a2d253_m.jpg" medium="image">
			<media:title type="html">vibram five fingers</media:title>
		</media:content>
	</item>
	</channel>
</rss>