<?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>Metacosm</title>
	<atom:link href="http://codepuccino.com/metacosm/feed/" rel="self" type="application/rss+xml" />
	<link>http://codepuccino.com/metacosm</link>
	<description>This is not a tag line!</description>
	<lastBuildDate>Tue, 09 Mar 2010 20:26:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Improving deployment of WSRP-related artifacts in GateIn</title>
		<link>http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/</link>
		<comments>http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 11:35:17 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[gatein]]></category>
		<category><![CDATA[wsrp]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[optimization]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=487</guid>
		<description><![CDATA[As you may know, I am working on WSRP for GateIn. One problem I faced until today in my daily development was that deploying a new version of the WSRP module for testing required re-building GateIn completely, which takes quite a bit of time and has the side effect of also destroying any persisted data.  <a href="http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/" class="more-link">More &#62;</a>


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/08/11/code-reminder-using-an-isolated-local-maven-repository/' rel='bookmark' title='Permanent Link: Code reminder: using an isolated local Maven repository'>Code reminder: using an isolated local Maven repository</a> <small>I can never remember the command line option to use...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>As you may know, I am working on WSRP for GateIn. One problem I faced until today in my daily development was that deploying a new version of the WSRP module for testing required re-building GateIn completely, which takes quite a bit of time and has the side effect of also destroying any persisted data. This, in turn, resulted in even more wasted time spent on configuring GateIn so that I could perform my tests (configuring consumers, adding remote portlets to pages, etc).</p>
<p>I decided that I could make that process faster by just replacing the WSRP in an already built version of GateIn if there hadn&#8217;t been any API change in the WSRP module. I present the following script to that effect:</p>
<pre class="brush: bash;">
# extract most recent version of WSRP module: only check the first 5 lines of maven-metadata-local.xml and extract value from &lt;version&gt; tag
export CURRENT_WSRP=`sed -n -e '5 s/.*&lt;version&gt;\(.*\)&lt;\/version&gt;.*/\1/p' $HOME/.m2/repository/org/gatein/wsrp/wsrp-common/maven-metadata-local.xml`
echo Current WSRP version: \'$CURRENT_WSRP\'

# extract which WSRP libs are currently needed by GateIn and replace them with a fresh version from local repository
for lib in `ls $GATEIN_EAR_HOME/lib/wsrp* | sed -n 's/.*\/\(.*\)-'$CURRENT_WSRP'.jar/\1/p'`
do
	echo Copying $lib-$CURRENT_WSRP.jar to $GATEIN_EAR_HOME/lib/
	cp $HOME/.m2/repository/org/gatein/wsrp/$lib/$CURRENT_WSRP/$lib-$CURRENT_WSRP.jar $GATEIN_EAR_HOME/lib/
done

# deal with producer and admin GUI WARs separately as they are put elsewhere and without version name
for war in `ls $GATEIN_EAR_HOME/wsrp* | sed -n 's/.*\/\(.*\).war/\1/p'`
do
	echo Copying $war-$CURRENT_WSRP.war to $GATEIN_EAR_HOME/$war.war
	cp $HOME/.m2/repository/org/gatein/wsrp/$war/$CURRENT_WSRP/$war-$CURRENT_WSRP.war $GATEIN_EAR_HOME/$war.war
done
</pre>
<p>Note that this script expects that you have a <code>$GATEIN_EAR_HOME</code> variable set, pointing to location of your GateIn EAR. Easy enough (though I had to freshen up my sed-fu ^_^).</p>
<div class="update" title="A little later">
Actually, I can also retrieve the current version of the WSRP module by looking at the currently deployed jar files, as follows:</p>
<pre class="brush: bash;">
# extract most recent version of WSRP module from existing files
CURRENT_WSRP=`ls $GATEIN_EAR_HOME/lib/wsrp* | sed -n '1 s/.*\/.*-\([0-9]\.[0-9].[0-9]-.*-.*\).jar/\1/p'`
</pre>
<p>Might be faster that way…
</p></div>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/08/11/code-reminder-using-an-isolated-local-maven-repository/' rel='bookmark' title='Permanent Link: Code reminder: using an isolated local Maven repository'>Code reminder: using an isolated local Maven repository</a> <small>I can never remember the command line option to use...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GateIn 3.0 CR1 released!</title>
		<link>http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/</link>
		<comments>http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 12:08:44 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[jboss]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[gatein]]></category>
		<category><![CDATA[release]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=484</guid>
		<description><![CDATA[Where have I been? Well, mostly working towards releasing GateIn (we just released CR1, by the way, go grab it, put it through the motions and let us know if you find any issues).
We had a nice face to face meeting in Charmey, Switzerland with some of the eXo guys. It was nice to see  <a href="http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/" class="more-link">More &#62;</a>


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/13/jboss-portal-272-is-released/' rel='bookmark' title='Permanent Link: JBoss Portal 2.7.2 is released!'>JBoss Portal 2.7.2 is released!</a> <small>It&#8217;s been a couple of really busy weeks at work...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Where have I been? Well, mostly working towards releasing <a href="http://www.jboss.org/gatein">GateIn</a> (we just <a href="http://bit.ly/cs9IKP">released CR1</a>, by the way, go grab it, put it through the motions and let us know if you find any issues).</p>
<p>We had a nice face to face meeting in Charmey, Switzerland with some of the eXo guys. It was nice to see my co-workers and meet new ones. Lots of good discussions. We even found a way to fit in some fun, which is always good to bind teams. Oh, and we did, of course, get to eat various melted cheese dishes and you can&#8217;t really go wrong with that! <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/' rel='bookmark' title='Permanent Link: GateIn 3.0.0 Beta 2 released!'>GateIn 3.0.0 Beta 2 released!</a> <small>As some of you may know, JBoss and eXo have...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/13/jboss-portal-272-is-released/' rel='bookmark' title='Permanent Link: JBoss Portal 2.7.2 is released!'>JBoss Portal 2.7.2 is released!</a> <small>It&#8217;s been a couple of really busy weeks at work...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GateIn 3.0.0 Beta 2 released!</title>
		<link>http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/</link>
		<comments>http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 17:15:57 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[jboss]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[eXo]]></category>
		<category><![CDATA[gatein]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=478</guid>
		<description><![CDATA[As some of you may know, JBoss and eXo have decided to merge their portal efforts in an attempt to create the best open-source portal framework out there. This new, best-of-breed portal project is called GateIn.
Integrating both code bases has taken (and still does) a lot of effort from both teams. This has translated in  <a href="http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/" class="more-link">More &#62;</a>


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/13/jboss-portal-272-is-released/' rel='bookmark' title='Permanent Link: JBoss Portal 2.7.2 is released!'>JBoss Portal 2.7.2 is released!</a> <small>It&#8217;s been a couple of really busy weeks at work...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/' rel='bookmark' title='Permanent Link: Improving deployment of WSRP-related artifacts in GateIn'>Improving deployment of WSRP-related artifacts in GateIn</a> <small>As you may know, I am working on WSRP for...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>As some of you may know, JBoss and eXo have decided to merge their portal efforts in an attempt to create the best open-source portal framework out there. This new, best-of-breed portal project is called <a href="http://www.jboss.org/gatein/">GateIn</a>.</p>
<p>Integrating both code bases has taken (and still does) a lot of effort from both teams. This has translated in some long hours and little sleep but we&#8217;ve just released a new beta version for you to try and enjoy! Apart from lots of improvements and fixes, the big news is, of course, that we now provide the complete source code! Read more about it on the <a href="http://blog.gatein.org/2009/10/gatein-300-beta-2-is-out.html">official GateIn blog</a>.</p>
<p>Of course, we&#8217;re not done yet so keep watching the blog. You can also <a href="http://twitter.com/gatein">follow GateIn on Twitter</a>.</p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2010/02/18/gatein-3-0-cr1/' rel='bookmark' title='Permanent Link: GateIn 3.0 CR1 released!'>GateIn 3.0 CR1 released!</a> <small>Where have I been? Well, mostly working towards releasing GateIn...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/13/jboss-portal-272-is-released/' rel='bookmark' title='Permanent Link: JBoss Portal 2.7.2 is released!'>JBoss Portal 2.7.2 is released!</a> <small>It&#8217;s been a couple of really busy weeks at work...</small></li>
<li><a href='http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/' rel='bookmark' title='Permanent Link: Improving deployment of WSRP-related artifacts in GateIn'>Improving deployment of WSRP-related artifacts in GateIn</a> <small>As you may know, I am working on WSRP for...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/10/21/gatein-3-0-0-beta-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beware of File.createTempFile</title>
		<link>http://codepuccino.com/metacosm/2009/09/04/beware-of-file-createtempfile/</link>
		<comments>http://codepuccino.com/metacosm/2009/09/04/beware-of-file-createtempfile/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 18:28:45 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[gotcha]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=467</guid>
		<description><![CDATA[By default, File.createTempFile (in Java, of course) creates a temporary file in the directory identified by the system property java.io.tmpdir. The problem is that on OS X, that directory can be quite weird. For example, on my system, it currently is:

scala&#62; System.getProperties().getProperty(&#34;java.io.tmpdir&#34;)
res0: java.lang.String = /var/folders/ya/yaNATrKPGFu2HuSOWxSIu++++TI/-Tmp-/

Notice the ++++ in one of the directory names? Well, these  <a href="http://codepuccino.com/metacosm/2009/09/04/beware-of-file-createtempfile/" class="more-link">More &#62;</a>


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>By default, <code>File.createTempFile</code> (in Java, of course) creates a temporary file in the directory identified by the system property <code>java.io.tmpdir</code>. The problem is that on OS X, that directory can be quite weird. For example, on my system, it currently is:</p>
<pre class="brush: scala;">
scala&gt; System.getProperties().getProperty(&quot;java.io.tmpdir&quot;)
res0: java.lang.String = /var/folders/ya/yaNATrKPGFu2HuSOWxSIu++++TI/-Tmp-/
</pre>
<p>Notice the <code>++++</code> in one of the directory names? Well, these little characters can later cause headaches! The reason, you ask? Simple, if that temporary file name is ever used in a URL, then those plus signs will be interpreted as spaces and whatever code is using a URL to find your temporary file will not find it! So beware!</p>
<p>Possible solutions include passing <code>-Djava.io.tmpdir="whatever"</code> when you launch your Java process, or use the <code>createTempFile(String prefix, String suffix, File directory)</code> version of <code>File.createTempFile</code> and pass it a directory that doesn&#8217;t contain an <code>+</code> sign in its name!</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/09/04/beware-of-file-createtempfile/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Code reminder: using an isolated local Maven repository</title>
		<link>http://codepuccino.com/metacosm/2009/08/11/code-reminder-using-an-isolated-local-maven-repository/</link>
		<comments>http://codepuccino.com/metacosm/2009/08/11/code-reminder-using-an-isolated-local-maven-repository/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 14:01:30 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[code reminder]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=461</guid>
		<description><![CDATA[I can never remember the command line option to use an isolated local Maven repository for a given Maven run (so that, for example, you can make sure that your dependencies are properly defined and you don&#8217;t run into conflicts due to a shared repository) and couldn&#8217;t find it again quickly enough via Google so  <a href="http://codepuccino.com/metacosm/2009/08/11/code-reminder-using-an-isolated-local-maven-repository/" class="more-link">More &#62;</a>


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/' rel='bookmark' title='Permanent Link: Improving deployment of WSRP-related artifacts in GateIn'>Improving deployment of WSRP-related artifacts in GateIn</a> <small>As you may know, I am working on WSRP for...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I can never remember the command line option to use an isolated local Maven repository for a given Maven run (so that, for example, you can make sure that your dependencies are properly defined and you don&#8217;t run into conflicts due to a shared repository) and couldn&#8217;t find it again quickly enough via Google so I thought I&#8217;d post it here, as a reminder:</p>
<p>mvn -Dmaven.repo.local=/foo/bar</p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2010/03/09/improving-deployment-of-wsrp-related-artifacts-in-gatein/' rel='bookmark' title='Permanent Link: Improving deployment of WSRP-related artifacts in GateIn'>Improving deployment of WSRP-related artifacts in GateIn</a> <small>As you may know, I am working on WSRP for...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/08/11/code-reminder-using-an-isolated-local-maven-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mountain bike diary: La vierge noire (baseline)</title>
		<link>http://codepuccino.com/metacosm/2009/08/03/mountain-bike-diary-la-vierge-noire-baseline/</link>
		<comments>http://codepuccino.com/metacosm/2009/08/03/mountain-bike-diary-la-vierge-noire-baseline/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 20:34:38 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[mountain bike]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=456</guid>
		<description><![CDATA[So, not discouraged by my last but ultimately rather unfruitful attempt, I decided to go try the Vierge noire trail again, following the itinerary I scoped out last time.
I was more prepared this time. I left around 2pm, which was a little too late for a comfortable ride as it turned out it got quite  <a href="http://codepuccino.com/metacosm/2009/08/03/mountain-bike-diary-la-vierge-noire-baseline/" class="more-link">More &#62;</a>


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/07/27/mountain-bike-diary-the-unforgiving-virgin-and-stupidity/' rel='bookmark' title='Permanent Link: Mountain bike diary: the unforgiving virgin and stupidity'>Mountain bike diary: the unforgiving virgin and stupidity</a> <small>After a nice week-end riding my bike, I decided to...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/07/26/mountain-biking-week-end/' rel='bookmark' title='Permanent Link: Mountain biking diary: Mount Jalla and Le Mûrier'>Mountain biking diary: Mount Jalla and Le Mûrier</a> <small>Saturday: Mount Jalla I had originally planned on spending the...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/15/moutain-biking-diary-neron-tour-attempt/' rel='bookmark' title='Permanent Link: Moutain biking diary: Néron tour attempt'>Moutain biking diary: Néron tour attempt</a> <small>The weather was pretty good today, not as good as...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>So, not discouraged by <a href="http://codepuccino.com/metacosm/2009/07/27/mountain-bike-diary-the-unforgiving-virgin-and-stupidity/">my last but ultimately rather unfruitful attempt</a>, I decided to go try the Vierge noire trail again, following the itinerary I scoped out last time.</p>
<p>I was more prepared this time. I left around 2pm, which was a little too late for a comfortable ride as it turned out it got quite hot and there was still a bit of ambient humidity from the morning rain. My tire had been repaired and the bike checked by the nice folks at <a href="http://www.mountaincycle.com">Mountain Cycle</a> in Voiron. I still need to buy a tool kit to take with me on the trail and a couple of spare tubes but, this time, I had plenty of water and food if needed. <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The goal was to establish a baseline as I can envision this itinerary becoming a practice ground as it provides a good but not too long climb first and then a technical (though not terribly so) descent, for a total riding time around the hour mark.</p>
<p>As usual, here is the itinerary overview as recorded by <a href="http://click.linksynergy.com/fs-bin/click?id=wHlWA1exOiA&#038;offerid=146261.672999863&#038;type=10&#038;subid=0">PathTracker</a> on my iPhone:</p>
<div class="image"><a href='http://pathtracks.com/users/7738/paths/85435'><img src="http://codepuccino.com/metacosm/wp-content/uploads/2009/08/vierge-noire-baseline.png" alt="vierge-noire-baseline.png" border="0" width="311" height="384" /></a><br />
<span class="caption">La vierge noire &#8211; baseline (click to see the interactive version of the itinerary)</span>
</div>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/07/27/mountain-bike-diary-the-unforgiving-virgin-and-stupidity/' rel='bookmark' title='Permanent Link: Mountain bike diary: the unforgiving virgin and stupidity'>Mountain bike diary: the unforgiving virgin and stupidity</a> <small>After a nice week-end riding my bike, I decided to...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/07/26/mountain-biking-week-end/' rel='bookmark' title='Permanent Link: Mountain biking diary: Mount Jalla and Le Mûrier'>Mountain biking diary: Mount Jalla and Le Mûrier</a> <small>Saturday: Mount Jalla I had originally planned on spending the...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/15/moutain-biking-diary-neron-tour-attempt/' rel='bookmark' title='Permanent Link: Moutain biking diary: Néron tour attempt'>Moutain biking diary: Néron tour attempt</a> <small>The weather was pretty good today, not as good as...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/08/03/mountain-bike-diary-la-vierge-noire-baseline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mountain bike diary: the unforgiving virgin and stupidity</title>
		<link>http://codepuccino.com/metacosm/2009/07/27/mountain-bike-diary-the-unforgiving-virgin-and-stupidity/</link>
		<comments>http://codepuccino.com/metacosm/2009/07/27/mountain-bike-diary-the-unforgiving-virgin-and-stupidity/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 20:58:14 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[mountain bike]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[vierge noire]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=449</guid>
		<description><![CDATA[After a nice week-end riding my bike, I decided to try to ride some more today and try to do the second part of my Saturday ride albeit with a much shorter climb. The trick was to figure out a way to climb all the way up to the Bastille and then proceed towards Mount  <a href="http://codepuccino.com/metacosm/2009/07/27/mountain-bike-diary-the-unforgiving-virgin-and-stupidity/" class="more-link">More &#62;</a>


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/08/03/mountain-bike-diary-la-vierge-noire-baseline/' rel='bookmark' title='Permanent Link: Mountain bike diary: La vierge noire (baseline)'>Mountain bike diary: La vierge noire (baseline)</a> <small>So, not discouraged by my last but ultimately rather unfruitful...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/07/26/mountain-biking-week-end/' rel='bookmark' title='Permanent Link: Mountain biking diary: Mount Jalla and Le Mûrier'>Mountain biking diary: Mount Jalla and Le Mûrier</a> <small>Saturday: Mount Jalla I had originally planned on spending the...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/15/moutain-biking-diary-neron-tour-attempt/' rel='bookmark' title='Permanent Link: Moutain biking diary: Néron tour attempt'>Moutain biking diary: Néron tour attempt</a> <small>The weather was pretty good today, not as good as...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>After a nice week-end riding my bike, I decided to try to ride some more today and try to do the second part of <a href="http://codepuccino.com/metacosm/2009/07/26/mountain-biking-week-end/">my Saturday ride</a> albeit with a much shorter climb. The trick was to figure out a way to climb all the way up to the Bastille and then proceed towards Mount Jalla again.</p>
<p>I thought I had figured out an itinerary but after climbing as much as I could, I got stuck and ended up having to backtrack. It wasn&#8217;t that bad in itself because I very often have to backtrack because I took a wrong turn somewhere even when I follow an established itinerary! However, it did contribute to lengthening the ride.</p>
<p>I guess I should now state that I decided to go riding after work and it was around 8pm when I left. These days, daylight in these parts is good up until 9:30pm or so. That was my first mistake of the day: taking off for a ride without knowing exactly how long it would take me when I knew I couldn&#8217;t possibly ride more than an hour and a half (at least, not on single track as I don&#8217;t own any kind of lighting equipment).</p>
<p>Anyway, everything was going OK. I had backtracked, found my way back up according to the directions I had read online before leaving and reached the end of the first part of the track, interrupted by a short flight of stairs. I carried the bike up and reached the Bastille without further issue. At this point, though, I started to get a little thirsty and that was my second mistake: leaving without my camelback, so no water and/or food. The reasoning was that it was supposed to be a short ride, so no need for a backpack. Wrong!</p>
<p>I finally reached the intersection I was looking for, climbing up from the Bastille towards Mount Jalla. Instead of proceeding to the top, I turned East taking the Vierge Noire (Black Virgin) track, which is the path I took on Saturday to finish the ride and that was very fun. I started to proceed down the path a little more cautiously than last time because I could feel I was getting tired and light was getting dimmer.</p>
<p>Even so, I had a great time up until the third of the descent. At some point, I started getting weird reaction from the bike: my back wheel was drifting. That&#8217;s when I realized that I had blown up the tube on my back wheel. Not sure how it happened and really it doesn&#8217;t matter. What did matter was that, here I was on a rather technical downhill single track, a blown tire, night starting to fall, still two third of the way to go and about 3 kilometers more after the end of the track to get back home. Not a pleasant situation to be in.</p>
<p>Not having my backpack, I, of course, didn&#8217;t have a spare tube or tools to change it. Anyway, I didn&#8217;t really have time (or really room, as the trail was quite narrow and steep) to operate on the bike as night was falling. I decided to wing it and spent the whole descent with my weight as much on top of my front wheel as possible, which wasn&#8217;t a very comfortable position to be in.</p>
<p>I managed to get down the trail and kept going, still with my weight on my front wheel, after I had reach the end of the trail until the road started to level up. I then walked all the way back home.</p>
<p>Here&#8217;s the overview of this little adventure, as usual:</p>
<div class='image'><a href='http://pathtracks.com/users/7738/paths/84608'><img src="http://codepuccino.com/metacosm/wp-content/uploads/2009/07/mtb-monday.png" alt="The unforgiving virgin" border="0" width="313" height="356" /></a><br />
<span class='caption'>The unforgiving virgin path (click to see the interactive version)</span>
</div>
<p>In the end, it wasn&#8217;t all bad. Still had some fun and thrills. I now know a short ride, close to home that wouldn&#8217;t take more than an hour and a half, provide some good exercise and a fun downhill component. More importantly, I learned some valuable mountain biking lessons:</p>
<ul>
<li>Never underestimate how long a ride will take. Always make room for unforeseen circumstances.</li>
<li>Never leave without a backpack containing some water, food, a spare tube and basic tools to make minor repairs if needed.</li>
<li>If you&#8217;re going to ride close to dusk, either make sure that you will be done before night falls, or get yourself some night riding equipment.</li>
</ul>
<p class="update" title="August 3rd, 2009">
More tips from singletracks.com on <a href="http://www.singletracks.com/blog/uncategorized/avoiding-disaster-on-the-trail-my-story/">how to avoid disaster on the trail</a>.</p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/08/03/mountain-bike-diary-la-vierge-noire-baseline/' rel='bookmark' title='Permanent Link: Mountain bike diary: La vierge noire (baseline)'>Mountain bike diary: La vierge noire (baseline)</a> <small>So, not discouraged by my last but ultimately rather unfruitful...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/07/26/mountain-biking-week-end/' rel='bookmark' title='Permanent Link: Mountain biking diary: Mount Jalla and Le Mûrier'>Mountain biking diary: Mount Jalla and Le Mûrier</a> <small>Saturday: Mount Jalla I had originally planned on spending the...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/15/moutain-biking-diary-neron-tour-attempt/' rel='bookmark' title='Permanent Link: Moutain biking diary: Néron tour attempt'>Moutain biking diary: Néron tour attempt</a> <small>The weather was pretty good today, not as good as...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/07/27/mountain-bike-diary-the-unforgiving-virgin-and-stupidity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mountain biking diary: Mount Jalla and Le Mûrier</title>
		<link>http://codepuccino.com/metacosm/2009/07/26/mountain-biking-week-end/</link>
		<comments>http://codepuccino.com/metacosm/2009/07/26/mountain-biking-week-end/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 20:42:03 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[mountain bike]]></category>
		<category><![CDATA[grenoble]]></category>
		<category><![CDATA[mtb]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=445</guid>
		<description><![CDATA[Saturday: Mount Jalla
I had originally planned on spending the week-end in La Plagne to ride around at higher altitude. Things didn&#8217;t turn out as planned (do they ever?) and I ended up having to be in Grenoble this week-end.
I was determined not to let that get in my way of taking my mountain bike for  <a href="http://codepuccino.com/metacosm/2009/07/26/mountain-biking-week-end/" class="more-link">More &#62;</a>


Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/07/27/mountain-bike-diary-the-unforgiving-virgin-and-stupidity/' rel='bookmark' title='Permanent Link: Mountain bike diary: the unforgiving virgin and stupidity'>Mountain bike diary: the unforgiving virgin and stupidity</a> <small>After a nice week-end riding my bike, I decided to...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/15/moutain-biking-diary-neron-tour-attempt/' rel='bookmark' title='Permanent Link: Moutain biking diary: Néron tour attempt'>Moutain biking diary: Néron tour attempt</a> <small>The weather was pretty good today, not as good as...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/08/03/mountain-bike-diary-la-vierge-noire-baseline/' rel='bookmark' title='Permanent Link: Mountain bike diary: La vierge noire (baseline)'>Mountain bike diary: La vierge noire (baseline)</a> <small>So, not discouraged by my last but ultimately rather unfruitful...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<h1>Saturday: Mount Jalla</h1>
<p>I had originally planned on spending the week-end in La Plagne to ride around at higher altitude. Things didn&#8217;t turn out as planned (do they ever?) and I ended up having to be in Grenoble this week-end.</p>
<p>I was determined not to let that get in my way of taking my mountain bike for a spin and took opportunity of the good weather on Saturday to attempt the climb of Mount Jalla, starting similarly to my failed attempt  <a href="http://codepuccino.com/metacosm/2009/03/15/moutain-biking-diary-neron-tour-attempt/">riding around Mount N&eacute;ron</a> but then, instead of going west towards Mount N&eacute;ron, you go a little further up the valley to the col de Cl&eacute;menci&egrave;res and then east to switch to the slopes of Mount Rachais and finally Mount Jalla.</p>
<p>Below is an overview of part of my trip (I didn&#8217;t run the GPS on the boring parts of the beginning).</p>
<div class="image"><a href="http://bit.ly/vVby4"><img src="http://codepuccino.com/metacosm/wp-content/uploads/2009/07/Picture-5.png" alt="Mount Jalla itinerary" border="0" width="479" height="456" /></a><br />
<span class="caption">Mount Jalla itinerary (click for the interactive version)</span>
</div>
<p>After a rather long climb (though I have to admit that I&#8217;m getting ever so slightly better at it), reaching the bottom of Mount Jalla with the path creating, in places, a balcony of sorts from which you could admire the valley, was really rewarding.</p>
<div class="image"><a href="http://www.flickr.com/photos/metacosm/3758488305/"><img src="http://farm3.static.flickr.com/2442/3758488305_bcdd4a40a9.jpg?v=0" alt="Balcony trail" border="0" width="479" height="456" /></a><br />
<span class="caption">&#8220;Balcony&#8221; trail (click to open in Flickr)</span></div>
<div class="image"><a href="http://www.flickr.com/photos/metacosm/3758488291/in/photostream/"><img src="http://farm3.static.flickr.com/2455/3758488291_fece313a5f.jpg?v=0" alt="Balcony trail" border="0" width="479" height="456" /></a><br />
<span class="caption">Synchrotron in the distance (click to open in Flickr)</span>
</div>
<p>I definitely need to improve my climbing technique because I still had to push my bike up at a couple of spots, due to me both being out of breath but also unable to gain enough traction to stay on the bike on the steeper parts. However, the second part of the ride, a.k.a the descent was a <em>lot</em> of fun! A lot of technical single trail with good slope! Fun, fun, FUN! <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h1>Sunday: Le M&ucirc;rier</h1>
<p>I had an apartment visit schedule this morning, which was the reason I had to stay in Grenoble this week-end. Once that was out of the way, and after a very nice lunch, I decided to try another ride, albeit a slightly easier one that from Saturday. Several reasons for that. One, I had ridden the day before and, while I wasn&#8217;t in pain per se, I could still feel that I had exercised a bit! Second, today was quite a bit warmer than yesterday.</p>
<p>This ride took me to the south of Grenoble. I forgot to take my camera with me this time, so the only pictures I took are courtesy of my iPhone&#8230;</p>
<p>Again, as usual, the ride starts with some city riding to join the start of the itinerary per se. Again, it starts by climbing with all the fun (from my perspective at the end). Despite, this being an easier ride than the one from Saturday, it ended up being quite exhausting combining fatigue from the day before with higher temperatures. I also didn&#8217;t pace myself well enough so ended up having to rest quite a bit during the climb which was really steep in parts:</p>
<div class='image'><img src='http://img254.yfrog.com/img254/1705/1kvh.jpg' /><br />
<span class='caption'>A hell of a climb (at least for me)!</span></div>
<p>The upside is that, once you were done climbing, you could get nice views of Grenoble. In particular, you can distinguish (if you know it&#8217;s there, because the quality of the picture is not great), the Bastille and Mount Jalla almost in the center of this picture:</p>
<div class='image'><img src='http://img269.yfrog.com/img269/6671/rb8s.jpg' /><br />
<span class='caption'>Nice view of Grenoble from the South.</span></div>
<p>The descent part was fun but definitely shorter and easier than the one from Saturday. I recorded the complete itinerary this time, though it seems like the GPS lost the signal for a while and recorded some bogus points&#8230; :/.</p>
<div class='image'><a href='http://pathtracks.com/users/7738/paths/84426'><img src="http://codepuccino.com/metacosm/wp-content/uploads/2009/07/mtb-sunday.png" alt="Le M&ucirc;rier itinerary" border="0" width="394" height="422" /></a><br />
<span class='caption'>Le M&ucirc;rier itinerary (click for interactive version)</span>
</div>
<p>All in all, a nice couple of rides. I definitely will redo the second part of the Saturday ride, I just need to figure out an itinerary that will shorten the climbing approach. <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://codepuccino.com/metacosm/2009/07/27/mountain-bike-diary-the-unforgiving-virgin-and-stupidity/' rel='bookmark' title='Permanent Link: Mountain bike diary: the unforgiving virgin and stupidity'>Mountain bike diary: the unforgiving virgin and stupidity</a> <small>After a nice week-end riding my bike, I decided to...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/03/15/moutain-biking-diary-neron-tour-attempt/' rel='bookmark' title='Permanent Link: Moutain biking diary: Néron tour attempt'>Moutain biking diary: Néron tour attempt</a> <small>The weather was pretty good today, not as good as...</small></li>
<li><a href='http://codepuccino.com/metacosm/2009/08/03/mountain-bike-diary-la-vierge-noire-baseline/' rel='bookmark' title='Permanent Link: Mountain bike diary: La vierge noire (baseline)'>Mountain bike diary: La vierge noire (baseline)</a> <small>So, not discouraged by my last but ultimately rather unfruitful...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/07/26/mountain-biking-week-end/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chris vs. Christophe (me vs. me)</title>
		<link>http://codepuccino.com/metacosm/2009/06/25/chris-vs-christophe-me-vs-me/</link>
		<comments>http://codepuccino.com/metacosm/2009/06/25/chris-vs-christophe-me-vs-me/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 10:13:53 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[meta-blog]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=438</guid>
		<description><![CDATA[So, I decided to do some quick navel gazing and ego surfing by Googling my name, as I tend to do once in a while when I think about it. While it might seem vain, it&#8217;s not a bad practice once in a while to check that the information that people can find on you  <a href="http://codepuccino.com/metacosm/2009/06/25/chris-vs-christophe-me-vs-me/" class="more-link">More &#62;</a>


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>So, I decided to do some quick navel gazing and ego surfing by Googling my name, as I tend to do once in a while when I think about it. While it might seem vain, it&#8217;s not a bad practice once in a while to check that the information that people can find on you is conform to what you&#8217;d like them to see.</p>
<p>It&#8217;s quite interesting, though a little disconcerting, to see that, while all the top results in a Google query for my &#8216;real&#8217; name (<a href="http://www.google.com/search?q=christophe%20laprun">Christophe Laprun</a>) still find pieces of &#8216;me&#8217;, these bits are less relevant than those you get searching for the &#8217;short&#8217; name that I started using (and still do) while in the US  (<a href="http://www.google.com/search?q=chris%20laprun">Chris Laprun</a>).</p>
<p>Not sure if I should do anything about it or even what I can do to reconcile my split identity&#8230; Maybe this post will help a little. Anyone out there with the same &#8216;problem&#8217;?</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/06/25/chris-vs-christophe-me-vs-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In the US for a couple of weeks</title>
		<link>http://codepuccino.com/metacosm/2009/05/30/in-the-us-for-a-couple-of-weeks/</link>
		<comments>http://codepuccino.com/metacosm/2009/05/30/in-the-us-for-a-couple-of-weeks/#comments</comments>
		<pubDate>Sat, 30 May 2009 15:09:44 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[sports]]></category>

		<guid isPermaLink="false">http://codepuccino.com/metacosm/?p=436</guid>
		<description><![CDATA[I&#8217;m going to spend a couple of weeks on my old stomping grounds (the DC area) in the United States, visiting friends and attending a wedding. Today is the bachelor party. It&#8217;s more like a bachelor day really, as we&#8217;re going to go white water rafting in West Virginia! The weather seems alright so far  <a href="http://codepuccino.com/metacosm/2009/05/30/in-the-us-for-a-couple-of-weeks/" class="more-link">More &#62;</a>


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to spend a couple of weeks on my old stomping grounds (the DC area) in the United States, visiting friends and attending a wedding. Today is the bachelor party. It&#8217;s more like a bachelor day really, as we&#8217;re going to go white water rafting in West Virginia! The weather seems alright so far and it rained a lot the last couple of days so there should be enough water to have some fun! <img src='http://codepuccino.com/metacosm/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Unfortunately, as my camera is not waterproof, I won&#8217;t be taking any pictures during, which could have been a lot of fun.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://codepuccino.com/metacosm/2009/05/30/in-the-us-for-a-couple-of-weeks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
