<?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>bertrand's brain grep &#187; Uncategorized</title>
	<atom:link href="http://grep.codeconsult.ch/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://grep.codeconsult.ch</link>
	<description>cat /dev/brain &#124; egrep -i 'tech&#124;thoughts&#124;noise'</description>
	<lastBuildDate>Sat, 21 Jan 2012 18:13:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='grep.codeconsult.ch' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>bertrand's brain grep &#187; Uncategorized</title>
		<link>http://grep.codeconsult.ch</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://grep.codeconsult.ch/osd.xml" title="bertrand&#039;s brain grep" />
	<atom:link rel='hub' href='http://grep.codeconsult.ch/?pushpress=hub'/>
		<item>
		<title>Generating hard to guess content URLs in Sling</title>
		<link>http://grep.codeconsult.ch/2010/10/27/generating-hard-to-guess-content-urls-in-sling/</link>
		<comments>http://grep.codeconsult.ch/2010/10/27/generating-hard-to-guess-content-urls-in-sling/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 16:06:18 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bdelacretaz.wordpress.com/?p=1411</guid>
		<description><![CDATA[In RESTful apps, it is often useful to create hard to guess URLs, as a simple privacy device. Here&#8217;s a self-explaining example (with hardcoded parameters) of how to do that in Sling. After installing this component, an HTTP POST to a node named &#8216;foo&#8217; creates a child node with a somewhat long hex string as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=1411&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In RESTful apps, it is often useful to create hard to guess URLs, as a simple privacy device.</p>
<p>Here&#8217;s a self-explaining example (with hardcoded parameters) of how to do that in Sling. </p>
<p>After installing this component, an HTTP POST to a node named &#8216;foo&#8217; creates a child node with a somewhat long hex string as its name, instead of the usual simple names generated by Sling.</p>
<pre>
package foo;

import java.util.Random;

import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Service;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.servlets.post.NodeNameGenerator;

/** Example that generates hard-to-guess node names in Sling,
 * for nodes added under nodes named 'foo'
 *
 * To test, build and install a bundle that includes this component,
 * and run
 * &lt;pre&gt;
 *   curl -X MKCOL http://admin:admin@localhost:4502/foo
 *   curl -F title=bar http://admin:admin@localhost:4502/foo/
 * &lt;/pre&gt;
 * The output of the second curl call should return something like
 * &lt;pre&gt;
 *   Content created /foo/dd712dd234637bb9a9a3b3a10221eb1f
 * &lt;/pre&gt;
 * Which is the path of the created node.
 */
@Component
@Service
public class FooNodeNameGenerator implements NodeNameGenerator {
    private static final Random random = new Random(System.currentTimeMillis());

    /** @inheritDoc */
    public String getNodeName(
            SlingHttpServletRequest request,
            String parentPath,
            boolean requirePrefix,
            NodeNameGenerator defaultNng)
    {
        if(parentPath.endsWith("/foo")) {
            final StringBuilder name = new StringBuilder();
            for(int i=0; i &lt; 2; i++) {
                name.append(Long.toHexString(random.nextLong()));
            }
            return name.toString();
        }
        return null;
    }
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/1411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/1411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/1411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/1411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/1411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/1411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/1411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/1411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/1411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/1411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/1411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/1411/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/1411/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/1411/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=1411&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2010/10/27/generating-hard-to-guess-content-urls-in-sling/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>
	</item>
		<item>
		<title>My best (and worst) ApacheCon so far &#8211; thanks and random thoughts</title>
		<link>http://grep.codeconsult.ch/2008/11/08/my-best-and-worst-apachecon-so-far-thanks-and-random-thoughts/</link>
		<comments>http://grep.codeconsult.ch/2008/11/08/my-best-and-worst-apachecon-so-far-thanks-and-random-thoughts/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 09:24:18 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bdelacretaz.wordpress.com/?p=1099</guid>
		<description><![CDATA[US 2008 in New Orleans has been my best ApacheCon so far! Brain dump ahead. Great socializing and networking, which should lead to new exciting new projects in the near future. My two talks were well received as far as I can tell. Nice emerging buzz about Sling. Free polo shirts helped &#8211; well done [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=1099&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://us.apachecon.com">US 2008</a> in New Orleans has been my best ApacheCon so far! Brain dump ahead.</p>
<p>Great socializing and networking, which should lead to new exciting new projects in the near future. </p>
<p>My two talks were well received as far as I can tell. </p>
<p>Nice emerging buzz about <a href="http://incubator.apache.org/sling">Sling</a>. Free polo shirts helped &#8211; well done Carsten! We have to do something about our docs and examples so as to not scare people away, in the meantime I&#8217;m sure the Sling folks will be happy to offer guidance on how best to structure things if you want to try it.</p>
<p>Big thanks to everybody involved in this very successful event &#8211; it is impossible to mention everybody here, so I&#8217;ll just pick and choose: Shane Curcuru who did a great job as the conference lead. The Stone Circle team for making everything happen in a flawless way. </p>
<p>Thanks to President elect Obama for allowing me to spend a historical day in the US. </p>
<p>Thanks to Glen Daniels for finding the jam session places &#8211; the first one was not too hot from the musical point of view (drumming on a beer keg only goes so far), but interesting to visit &#8211; ever seen a laundromat in a bar?</p>
<p>Thanks to the folks (sponsors IIUC) who organized the parade on Thursday evening. Walking in the streets following the great Rebirth Brass Band with cops opening the way on their nice Harleys was awesome. </p>
<p>Thanks to the New Orleans people for being so nice and friendly, even though I sometimes had a hard time understanding them. I&#8217;ll work on that.</p>
<p>For some reason, swimming in the outdoor pool at 7:30AM on a foggy day made us suspect in the eyes of the security guards. Normal hotel customers don&#8217;t do that I guess, but who said Swiss Apache folk are normal hotel guests?</p>
<p>Thanks to the local musicians for playing so well.</p>
<p>On Tuesday a few of us escaped from the barcamp (which was great, but one cannot do everything I guess) for a swamp tour with <a href="http://www.cajunencounters.com">Cajun encounters</a>. Definitely recommended, our guide was a genuine Cajun, born in the area and with lots of stories to tell. I didn&#8217;t bring a camera, but photos should be available on <a href="http://flickr.com/photos/tags/apachecon">Flickr</a>.</p>
<p>That&#8217;s for the &#8220;best ApacheCon&#8221; part &#8211; the &#8220;worst ApacheCon&#8221; is about jetlag taking almost a week to go away, and leaving me in a miserable state on Tuesday when I had a lot of work to do to finish preparing my talks and for the <a href="http://www.day.com">Big Release</a>. </p>
<p>For some reason, many of us had a hard time with jetlag this week. That might be related to the food (deep fried everything) or the lack of fresh air and sunlight. Not that it wasn&#8217;t sunny, but sunset around 6PM means one does not see much natural light if following the conference sessions.</p>
<p>See you in Amsterdam in March for <a href="http://eu.apachecon.com">ApacheCon EU 2009</a>!</p>
<p>(long post hey &#8211; that&#8217;s what you get for locking me in planes for about 10 hours ;-)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/1099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/1099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/1099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/1099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/1099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/1099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/1099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/1099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/1099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/1099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/1099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/1099/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/1099/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/1099/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=1099&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2008/11/08/my-best-and-worst-apachecon-so-far-thanks-and-random-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>
	</item>
		<item>
		<title>No LIFT &#8211; but thanks nouvo for the video</title>
		<link>http://grep.codeconsult.ch/2008/02/08/no-lift-but-thanks-nouvo-for-the-video/</link>
		<comments>http://grep.codeconsult.ch/2008/02/08/no-lift-but-thanks-nouvo-for-the-video/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 12:37:38 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grep.codeconsult.ch/2008/02/08/no-lift-but-thanks-nouvo-for-the-video/</guid>
		<description><![CDATA[
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=898&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>No <a href="http://www.liftconference.com">LIFT</a> for me once again this year, due to a timing collision with The Important Phase of That Project.</p>
<p>But thanks to <a href="http://www.nouvo.ch">nouvo.ch</a> many <a href="http://www.nouvo.ch/liftvideo">videos</a> are available to catch up. It&#8217;s not the same thing though, there are many people who I&#8217;d have loved to meet there.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bdelacretaz.wordpress.com/898/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bdelacretaz.wordpress.com/898/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/898/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/898/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/898/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/898/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/898/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/898/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/898/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/898/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/898/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/898/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/898/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/898/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/898/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/898/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=898&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2008/02/08/no-lift-but-thanks-nouvo-for-the-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Groups, could you talk to your Gmail cousin a bit more?</title>
		<link>http://grep.codeconsult.ch/2008/02/08/google-groups-could-you-talk-to-your-gmail-cousin-a-bit-more/</link>
		<comments>http://grep.codeconsult.ch/2008/02/08/google-groups-could-you-talk-to-your-gmail-cousin-a-bit-more/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 07:56:00 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grep.codeconsult.ch/2008/02/08/google-groups-could-you-talk-to-your-gmail-cousin-a-bit-more/</guid>
		<description><![CDATA[
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=897&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Even though Gmail <a href="http://vafer.org/blog/20060502022752">bothers us</a> with its <em>Sender</em> header, Google Groups&#8217;s set of virtual gray matter is apparently too small to figure out that</p>
<pre><code>
From: "Bertrand Delacretaz" &lt;myself@somewhere.ch&gt;
Sender: myself@gmail.com
</code></pre>
<p>comes from <em>myself@gmail.com</em>.</p>
<p>Can&#8217;t those guys talk together?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bdelacretaz.wordpress.com/897/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bdelacretaz.wordpress.com/897/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/897/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/897/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/897/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/897/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/897/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/897/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/897/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/897/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/897/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/897/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/897/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/897/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/897/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/897/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=897&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2008/02/08/google-groups-could-you-talk-to-your-gmail-cousin-a-bit-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>
	</item>
		<item>
		<title>Going Solo &#8211; Lausanne, May 16th, 2008</title>
		<link>http://grep.codeconsult.ch/2008/01/22/going-solo-lausanne-may-16th-2008/</link>
		<comments>http://grep.codeconsult.ch/2008/01/22/going-solo-lausanne-may-16th-2008/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 13:24:02 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grep.codeconsult.ch/2008/01/22/going-solo-lausanne-may-16th-2008/</guid>
		<description><![CDATA[
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=890&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>(no I&#8217;m not going back to freelancing ;-)</p>
<p><a href="http://climbtothestars.org">Stephanie Booth</a> announces the Going Solo conference, for freelancers and small business owners of the internet industry, in (our beautiful) Lausanne on May 16th.</p>
<p>More info at <a href="http://going-solo.net">going-solo.net</a>!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bdelacretaz.wordpress.com/890/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bdelacretaz.wordpress.com/890/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/890/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/890/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/890/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=890&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2008/01/22/going-solo-lausanne-may-16th-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>
	</item>
		<item>
		<title>Get MySQL for 1$</title>
		<link>http://grep.codeconsult.ch/2008/01/16/get-mysql-for-1/</link>
		<comments>http://grep.codeconsult.ch/2008/01/16/get-mysql-for-1/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 17:37:36 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grep.codeconsult.ch/2008/01/16/get-mysql-for-1/</guid>
		<description><![CDATA[Just spotted this on reuters.com: Ah no..wait, there&#8217;s more: People should use &#38;nbsp; more often ;-)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=889&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just spotted this on <a href="http://www.reuters.com/article/mergersNews/%3Cbr%3E%3C/a%3EidUSWNAS661820080116">reuters.com</a>:</p>
<p><img style="float:none;" src="http://codeconsult.ch/bertrand/archives/images/mysql-bottom.jpg" border="0" alt="mysql-bottom.jpg" width="446" height="33" align="left" /></p>
<p>Ah no..wait, there&#8217;s more:</p>
<p><img style="float:none;" src="http://codeconsult.ch/bertrand/archives/images/mysql-top.jpg" border="0" alt="mysql-top.jpg" width="453" height="31" align="left" /></p>
<p>People should use <em> </em> &amp;nbsp; more often ;-)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bdelacretaz.wordpress.com/889/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bdelacretaz.wordpress.com/889/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/889/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/889/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/889/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/889/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/889/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/889/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/889/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/889/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/889/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/889/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/889/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/889/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/889/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/889/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=889&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2008/01/16/get-mysql-for-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>

		<media:content url="http://codeconsult.ch/bertrand/archives/images/mysql-bottom.jpg" medium="image">
			<media:title type="html">mysql-bottom.jpg</media:title>
		</media:content>

		<media:content url="http://codeconsult.ch/bertrand/archives/images/mysql-top.jpg" medium="image">
			<media:title type="html">mysql-top.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Dear Boingo: geeks do use concurrent HTTP requests, you know?</title>
		<link>http://grep.codeconsult.ch/2007/11/21/dear-boingo-geeks-do-use-concurrent-http-requests-you-know/</link>
		<comments>http://grep.codeconsult.ch/2007/11/21/dear-boingo-geeks-do-use-concurrent-http-requests-you-know/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 08:20:16 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grep.codeconsult.ch/2007/11/21/dear-boingo-geeks-do-use-concurrent-http-requests-you-know/</guid>
		<description><![CDATA[
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=874&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I tried the Wi-Fi provided by <a href="http://www.boingo.com/">Boingo</a> at the Atlanta airport the other day, and haven&#8217;t been too successful with it.</p>
<p>It worked for ten minutes, after which I was banned for <em>Anomalous Behavior</em>. I guess that must be my RSS feed reader. You know, this thing even does <em>several HTTP requests</em> at the same  time, wow!</p>
<p>Here&#8217;s what I wrote to <em>service@boingo.com</em> yesterday &#8211; haven&#8217;t heard back from them yet.</p>
<blockquote><p>
Hi</p>
<p>I signed up for a boingo day pass yesterday at the Atlanta airport,<br />
and my connection only worked for about ten minutes.</p>
<p>After that time, I got a warning saying &#8220;Anomalous Behavior Detected -<br />
request blocked&#8221; (screenshot enclosed). I waited a few minutes to see<br />
if the connection would become unblocked, but that didn&#8217;t happen.</p>
<p>That error page told me to contact a network administrator, but there<br />
was no contact phone number, so I haven&#8217;t been able to get over that<br />
problem, which means I haven&#8217;t been able to used the service that I<br />
paid for.</p>
<p>Can I get a refund?</p>
<p>I think your &#8220;abnormal amount of activity&#8221; detector has been fooled by<br />
me starting my RSS news reader, and browsing the web from several<br />
browser windows, as I always do (I&#8217;m a professional software<br />
developer, so I use my computer more intensively that your average<br />
traveler I guess).  This creates more HTTP requests than someone who&#8217;s<br />
just browsing the web, but the sign-up page didn&#8217;t indicate any<br />
limitations such as these, so I feel like I didn&#8217;t get the service<br />
that I paid for. You might want to adjust that detection, and at least<br />
provide a phone number to call, on the error page.</p>
<p>Please let me know how to proceed.
</p></blockquote>
<p><em>Update: they did reply today, and according to them I was blacklisted by the ATL airport network. I&#8217;ve asked for a customer service address to complain there.</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bdelacretaz.wordpress.com/874/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bdelacretaz.wordpress.com/874/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/874/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/874/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/874/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/874/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/874/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/874/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/874/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/874/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/874/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/874/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/874/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/874/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/874/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/874/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=874&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2007/11/21/dear-boingo-geeks-do-use-concurrent-http-requests-you-know/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>
	</item>
		<item>
		<title>Felix on Sling</title>
		<link>http://grep.codeconsult.ch/2007/11/15/felix-on-sling/</link>
		<comments>http://grep.codeconsult.ch/2007/11/15/felix-on-sling/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 15:35:38 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[content]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grep.codeconsult.ch/2007/11/15/felix-on-sling/</guid>
		<description><![CDATA[Yesterday night&#8217;s BOF was a good opportunity to make more people aware of the nice things in Sling, and now Felix is on stage talking about it as part of the Fast Feather Track. Fifteen minutes is a very short time to present your project, but still, the Fast Feather Track is a great opportunity [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=872&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://codeconsult.ch/bertrand/archives/images/felix-on-sling.jpg" border="0" alt="felix-on-sling.jpg" width="200" height="256" align="right" />Yesterday night&#8217;s BOF was a good opportunity to make more people aware of the nice things in <a href="http://incubator.apache.org/sling">Sling</a>, and now Felix is on stage talking about it as part of the <a href="http://us.apachecon.com/us2007/program/Fast_Feather">Fast Feather Track</a>.</p>
<p>Fifteen minutes is a very short time to present your project, but still, the Fast Feather Track is a great opportunity for new projects and speakers to bring their contributions to ApacheCon.</p>
<p>Note that Felix is also a committer on <a href="http://felix.apache.org">Felix</a>. Recursive committership maybe? I&#8217;ve heard the <a href="http://httpd.apache.org">httpd</a> guys are jealous&#8230;but it&#8217;s hard to find someone named <em>httpd</em> to be a committer I guess.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bdelacretaz.wordpress.com/872/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bdelacretaz.wordpress.com/872/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/872/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/872/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/872/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=872&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2007/11/15/felix-on-sling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>

		<media:content url="http://codeconsult.ch/bertrand/archives/images/felix-on-sling.jpg" medium="image">
			<media:title type="html">felix-on-sling.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>183 Days later&#8230;</title>
		<link>http://grep.codeconsult.ch/2007/11/01/183-days-later/</link>
		<comments>http://grep.codeconsult.ch/2007/11/01/183-days-later/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 06:47:35 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grep.codeconsult.ch/2007/11/01/183-days-later/</guid>
		<description><![CDATA[
<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=863&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.day.com"><img src="http://codeconsult.ch/bertrand/archives/images/day-logo.jpg" alt="day-logo.jpg" border="0" width="122" height="34" align="right" /></a>I know&#8230;when you work for a company named <a href="http://www.day.com">Day</a>, lame jokes are easy to come by&#8230;but hey, not all companies with 3-letter domain names are that fun!</p>
<p>It&#8217;s been six exciting months since I <a href="http://codeconsult.ch/bertrand/archives/000769.html">joined Day</a>. Being interested in most everything, as usual, I have worked on diverse things like cool javascript-based user interfaces, helping customers make huge systems go faster, creating and teaching a developers course for a new product that was just entering alpha state, and attempting to make an <a href="http://incubator.apache.org/sling">innovative apps framework</a> more understandable and agile.</p>
<p>The best part is being part of a great team, with the kind of people who create their own embedded database or content management system in their early twenties, people who reinvent the web, visionaries and great programmers and product managers who focus on getting things done right. Our products usually stay with us for ten years or more when they go out, so making them just right is worth the effort.</p>
<p>Do I sound enthusiastic? This job is really a step up from my previous activities, the things that I work on have a much larger scope, and the technical level is much higher. So yes, I am enthusiastic!</p>
<p>On top of that, several <a href="http://weblogs.goshaky.com/weblogs/lars/entry/a_new_day_a_new">bright german guys </a> recently agreed to join us. Judging by the stuff they&#8217;ve been doing at <a href="http://www.mindquarry.com/">Mindquarry</a>, they won&#8217;t bring the level down&#8230;</p>
<p>The team has been growing steadily since I joined, and we&#8217;re still <a href="http://www.day.com/site/en/index/jobs.html">hiring</a>: R&amp;D developers, service and support engineers, architects, technical project leads and more. Several of us will be at <a href="http://www.us.apachecon.com/">ApacheCon US 2007</a>, so feel free to talk to us about that!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bdelacretaz.wordpress.com/863/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bdelacretaz.wordpress.com/863/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/863/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/863/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/863/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/863/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/863/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/863/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/863/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/863/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/863/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/863/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/863/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/863/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/863/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/863/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=863&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2007/11/01/183-days-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>

		<media:content url="http://codeconsult.ch/bertrand/archives/images/day-logo.jpg" medium="image">
			<media:title type="html">day-logo.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Last call for ApacheCon EU 08 papers!</title>
		<link>http://grep.codeconsult.ch/2007/10/26/last-call-for-apachecon-eu-08-papers/</link>
		<comments>http://grep.codeconsult.ch/2007/10/26/last-call-for-apachecon-eu-08-papers/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 08:04:48 +0000</pubDate>
		<dc:creator>bdelacretaz</dc:creator>
				<category><![CDATA[osgi]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://grep.codeconsult.ch/2007/10/26/last-call-for-apachecon-eu-08-papers/</guid>
		<description><![CDATA[The deadline is today and the URL is http://www.eu.apachecon.com/. I&#8217;m submitting a talk on microsling (together with my colleague Felix from the Felix project), my usual XSLT stuff (mostly a rerun), something new on Open Source collaboration tools, and a tentative OSGi services made easy talk to demonstrate the cool Maven plugins provided by Apache [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=860&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.eu.apachecon.com/"><img src="http://codeconsult.ch/bertrand/archives/images/apachecon-logo.png" alt="apachecon-logo.png" align="right" border="0" height="75" width="265" /></a>The deadline is <i>today</i> and the URL is <a href="http://www.eu.apachecon.com/">http://www.eu.apachecon.com/</a>.</p>
<p>I&#8217;m submitting a talk on <a href="http://codeconsult.ch/bertrand/archives/000808.html">microsling</a> (together with my colleague Felix from the Felix project), my usual <a href="http://www.slideshare.net/bdelacretaz">XSLT</a> stuff (mostly a rerun), something new on Open Source collaboration tools, and a tentative <i>OSGi services made easy</i> talk to demonstrate the cool <a href="http://felix.apache.org/site/maven-scr-plugin.html">Maven plugins</a> provided by <a href="http://felix.apache.org/">Apache Felix</a>.</p>
<p><i>Update: the deadline has been extended to November 2nd.</i></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/bdelacretaz.wordpress.com/860/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/bdelacretaz.wordpress.com/860/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bdelacretaz.wordpress.com/860/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bdelacretaz.wordpress.com/860/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bdelacretaz.wordpress.com/860/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bdelacretaz.wordpress.com/860/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bdelacretaz.wordpress.com/860/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bdelacretaz.wordpress.com/860/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bdelacretaz.wordpress.com/860/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bdelacretaz.wordpress.com/860/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bdelacretaz.wordpress.com/860/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bdelacretaz.wordpress.com/860/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bdelacretaz.wordpress.com/860/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bdelacretaz.wordpress.com/860/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bdelacretaz.wordpress.com/860/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bdelacretaz.wordpress.com/860/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=grep.codeconsult.ch&amp;blog=2844102&amp;post=860&amp;subd=bdelacretaz&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://grep.codeconsult.ch/2007/10/26/last-call-for-apachecon-eu-08-papers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">Bertrand</media:title>
		</media:content>

		<media:content url="http://codeconsult.ch/bertrand/archives/images/apachecon-logo.png" medium="image">
			<media:title type="html">apachecon-logo.png</media:title>
		</media:content>
	</item>
	</channel>
</rss>
