<?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>fl0blog &#187; Web stuff</title>
	<atom:link href="http://florisla.be/blog/archive/category/webdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://florisla.be/blog</link>
	<description>stelt vast dat het niet aan de orde is</description>
	<lastBuildDate>Fri, 04 May 2012 17:04:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>URL rewrites</title>
		<link>http://florisla.be/blog/archive/2011/03/url-rewrites/</link>
		<comments>http://florisla.be/blog/archive/2011/03/url-rewrites/#comments</comments>
		<pubDate>Sat, 19 Mar 2011 19:41:42 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/?p=257</guid>
		<description><![CDATA[Apache URL rewriting can be tricky sometimes (beware spaces!), and I have a nasty habit of forgetting my old tricks.

So here goes:

Make a file available without HTML extension:


RewriteRule ^article$ article.html [nocase]


Redirect to another path:


RewriteRule ^nice-article$ /articles/nice-one [nocase,redirect=permanent,last]


Remember to start the redirect path with a slash!

Redirect users &#8216;guessing&#8217; an archive URL to the correct URL:


RewriteRule ^(20\d{2})$ [...]]]></description>
			<content:encoded><![CDATA[<p>Apache URL rewriting can be tricky sometimes (beware spaces!), and I have a nasty habit of forgetting my old tricks.</p>

<p>So here goes:</p>

<p>Make a file available without HTML extension:</p>

<p><code>
RewriteRule ^article$ article.html [nocase]
</code></p>

<p>Redirect to another path:</p>

<p><code>
RewriteRule ^nice-article$ /articles/nice-one [nocase,redirect=permanent,last]
</code></p>

<p>Remember to start the redirect path with a slash!</p>

<p>Redirect users &#8216;guessing&#8217; an archive URL to the correct URL:</p>

<p><code>
RewriteRule ^(20\d{2})$ /archive/$1 [redirect=permanent,last]
</code></p>

<p>Redirect users to the domain name with www. prefix added:</p>

<p><code>
RewriteCond %{HTTP_HOST} ^domain.com$ [NC]
RewriteRule ^(.*) http://www.domain.com/$1 [L,R=301]
</code></p>

<p>Remember that you can combine multiple <code>RewriteCond</code>s by adding them before the RewriteRule.</p>

<p>And finally, these are the flags shortcuts:</p>

<p><code>
nocase|NC
last|L
ornext|OR
redirect|R =[HTTP redirect status code] or [temp|permanent|seeother]
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2011/03/url-rewrites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nucleus2drupal conversion</title>
		<link>http://florisla.be/blog/archive/2009/12/nucleus2drupal-conversion/</link>
		<comments>http://florisla.be/blog/archive/2009/12/nucleus2drupal-conversion/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 19:03:41 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/?p=241</guid>
		<description><![CDATA[Rading about Drupal migrate.module made me think back to somewhere in 2008.

There I was, searching a way to migrate content from Nucleus (version 3.3x) to Drupal 6.
Some &#8216;migrate&#8217;, &#8216;import&#8217; or &#8216;xxx2drupal&#8217; modules for Drupal could be found, but none of  them were suitable for Nucleus source data.  It also seemed like some HTML [...]]]></description>
			<content:encoded><![CDATA[<p>Rading about <a href="http://www.lullabot.com/articles/drupal-data-imports-migrate-and-table-wizard">Drupal migrate.module</a> made me think back to somewhere in 2008.</p>

<p>There I was, searching a way to migrate content from Nucleus (version 3.3x) to Drupal 6.
<br />Some &#8216;migrate&#8217;, &#8216;import&#8217; or &#8216;xxx2drupal&#8217; modules for Drupal could be found, but none of  them were suitable for Nucleus source data.  It also seemed like some HTML fiddling was required to really make the content ready for publication on Drupal.</p>

<p>I decided to learn some Ruby and a bit of Drupal&#8217;s database scheme by processing exported Nucleus tables and transforming them into INSERT statements for Drupal&#8217;s tables.  Countless hours were wasted learning how to preserve articles, comments, authors, categories and more&#8230;</p>

<p>The little Ruby script eventually did the trick.  Now that it&#8217;s practically too late to be of any use (it&#8217;s been almost two years!), I&#8217;m nonetheless enticed to release <a href="http://florisla.be/nucleus2drupal/nucleus2drupal-v0.1.tar.gz">nucleus2drupal.rb v0.1</a> onto the pipes.</p>

<p>If you want to try, here&#8217;s how it goes:</p>

<ul>
<li>Unpack nucleus2drupal.</li>
<li>Export your Nucleus tables (<code>category</code>, <code>comment</code>, <code>item</code>, <code>member</code>) using phpMyAdmin into the queries-source directory (<code>nucleus_category.sql</code>, etc).</li>
<li>Modify the query templates in the <code>queries-insert/</code> directory so that they&#8217;ll work for your Drupal database.</li>
<li>Take a look at <code>nucleus2drupal.rb</code> itself and the settings (and warnings) therein.</li>
<li>Execute <code>./nucleus2drupal.rb</code>.</li>
<li>If the resulting SQL files (directory <code>queries-insert/</code>) look okay, then execute them against your (test!) Drupal database.</li>
</ul>

<p>I&#8217;ve tried to clean up most hard-coded specifics, but your mileage may vary.  Remember to pay close attention to text encodings along the way if your content is beyond plain ASCII.</p>

<p>Should you eventually fail, let me know how you&#8217;re liking that Migrate module instead <img src='http://florisla.be/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2009/12/nucleus2drupal-conversion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flexifilter wiki URL for Drupal</title>
		<link>http://florisla.be/blog/archive/2009/09/flexifilter-wiki-url-for-drupal/</link>
		<comments>http://florisla.be/blog/archive/2009/09/flexifilter-wiki-url-for-drupal/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 20:45:43 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/?p=208</guid>
		<description><![CDATA[The Flexifilter module has a MediaWiki input format that transforms [links] into clickable hyperlinks, with or withouth [AnAlternative&#124;name].

However, this input format is very complex and not very flexible.

An existing &#8216;link component&#8217; patch to flexifilter is much more compact and easier to configure.

In my view, that&#8217;s the nice thing about flexifilters: you don&#8217;t need to dabble [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://drupal.org/project/flexifilter">Flexifilter module</a> has a MediaWiki input format that transforms [links] into clickable hyperlinks, with or withouth [AnAlternative|name].</p>

<p>However, this input format is very complex and not very flexible.</p>

<p>An existing <a href="http://drupal.org/node/217877">&#8216;link component&#8217; patch</a> to flexifilter is much more compact and easier to configure.</p>

<p>In my view, that&#8217;s the nice thing about flexifilters: you don&#8217;t need to dabble in code if you want to change or configure an input format.  Instead all parts are small and self-contained, configurable units.</p>

<p>In this case, a dip in the code was unavoidable because of a known bug.  While at it, I also built in support for clean URLs trough the pathauto module.  The result is <a href="http://drupal.org/node/217877#comment-1259021">in the issue queue</a>.</p>

<p>For easy installation, you can download the filter here as an installable module: <a href="/flexifilter_wiki_url.tar.gz">flexifilter_wiki_url.tar.gz</a>. Feedback is welcome&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2009/09/flexifilter-wiki-url-for-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Onweerstaanbaar</title>
		<link>http://florisla.be/blog/archive/2009/06/onweerstaanbaar/</link>
		<comments>http://florisla.be/blog/archive/2009/06/onweerstaanbaar/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 18:58:08 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[/var/]]></category>
		<category><![CDATA[Nederlands]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/?p=196</guid>
		<description><![CDATA[Zou jij dit kunnen weerstaan?



Ik wel.  Aanvankelijk.  Na twee weken werd het me te machtig  

Update: een helpdesker van Fortis PC Banking weet meer&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Zou jij dit kunnen weerstaan?</p>

<p><a href="http://www.flickr.com/photos/florisla/3639423064/" title="fortis-niet-klikken"><img src="http://farm4.static.flickr.com/3586/3639423064_9c6729596e_o.png" width="523" height="130" alt="fortis PC-banking screenshot: niet klikken dit is een test" /></a></p>

<p>Ik wel.  Aanvankelijk.  Na twee weken werd het me te machtig <img src='http://florisla.be/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<p><strong>Update</strong>: een helpdesker van Fortis PC Banking <a href="http://www.flickr.com/photos/florisla/3639423064/">weet meer</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2009/06/onweerstaanbaar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Met Yugo Hugo naar Mongolië</title>
		<link>http://florisla.be/blog/archive/2008/03/yugo-hugo/</link>
		<comments>http://florisla.be/blog/archive/2008/03/yugo-hugo/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 10:53:34 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[Aanrader]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Nederlands]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/archive/2008/03/yugo-hugo/</guid>
		<description><![CDATA[De sympathieke Stijn en zijn vriendin Caroline vertrokken zondagmiddag richting Mongolië.  Hun transportmiddel is Hugo, een Yugo Zastava Florida 1.3 van € 1000.

Hun reisblog belooft interessant leesvoer te worden:
yugo-where-we-go.blogspot.com/

Veel plezier alletwee!
]]></description>
			<content:encoded><![CDATA[<p>De sympathieke Stijn en zijn vriendin Caroline vertrokken zondagmiddag richting Mongolië.  Hun transportmiddel is <a href="http://flickr.com/photos/anendel/2113126256/">Hugo</a>, een Yugo Zastava Florida 1.3 van € 1000.</p>

<p>Hun reisblog belooft interessant leesvoer te worden:
<a href="http://yugo-where-we-go.blogspot.com">yugo-where-we-go.blogspot.com/</a></p>

<p>Veel plezier alletwee!</p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2008/03/yugo-hugo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FOSDEM interviews</title>
		<link>http://florisla.be/blog/archive/2008/01/fosdem-2008-interviews/</link>
		<comments>http://florisla.be/blog/archive/2008/01/fosdem-2008-interviews/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 09:32:07 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[Aanrader]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/archive/2008/01/fosdem-2008-interviews/</guid>
		<description><![CDATA[Yesterday the first speaker interviews for FOSDEM 2008 were released.  Take a look at them here: fosdem.org/2008/first-speaker-interviews.
]]></description>
			<content:encoded><![CDATA[<p>Yesterday the first speaker interviews for <a href="http://fosdem.org/2008/">FOSDEM 2008</a> were released.  Take a look at them here: <a href="http://fosdem.org/2008/first-speaker-interviews">fosdem.org/2008/first-speaker-interviews</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2008/01/fosdem-2008-interviews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free SMS over Jabber with Twitter</title>
		<link>http://florisla.be/blog/archive/2008/01/free_sms_with_twitter/</link>
		<comments>http://florisla.be/blog/archive/2008/01/free_sms_with_twitter/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 19:37:30 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[Aanrader]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/archive/2008/01/free_sms_with_twitter/</guid>
		<description><![CDATA[I know, the title sound like spam  

For fun and profit, I decided to check whether you can truly send SMS messages for free using Twitter (Wikipedia).

Yes, it does work, except that you can only send to other Twitters &#8212; the free part is more about receiving SMSes rather than sending them.  So [...]]]></description>
			<content:encoded><![CDATA[<p>I know, the title sound like spam <img src='http://florisla.be/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<p>For fun and profit, I decided to check whether you can truly send SMS messages for free using <a href="http://twitter.com">Twitter</a> (<a href="http://en.wikipedia.org/wiki/Twitter">Wikipedia</a>).</p>

<p>Yes, it does work, except that you can only send to other Twitters &#8212; the free part is more about <em>receiving</em> SMSes rather than sending them.  So every receiver that you want to SMS needs to be registered with Twitter.  Nonetheless, a pretty impressive improvement!</p>

<p>Especially since you can send the messages in a Jabber client (including Google Talk / GMail chat), right on the PC, typing on a decent keyboard.</p>

<p>The trick is to register the mobile with twitter, and setup your mobile to receive only so-called &#8216;direct&#8217; Twitter messages.</p>

<p>Then, in the chat client, add twitter@twitter.com as a contact.  Talking to this service you can send direct messages with &#8220;D [username] [message]&#8220;.</p>

<p>You get 250 mobile messages per month.  Do keep it quiet before the big telcos find out and <a href="http://www.geeknewscentral.com/archives/007463.html">decide to block it</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2008/01/free_sms_with_twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apply for your devroom</title>
		<link>http://florisla.be/blog/archive/2007/11/apply-for-devroomb/</link>
		<comments>http://florisla.be/blog/archive/2007/11/apply-for-devroomb/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 18:52:56 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/archive/2007/11/apply-for-devroomb/</guid>
		<description><![CDATA[FOSDEM 2008 is getting in shape (in sharp contrast to yours truly), and it&#8217;s time to think about a developer room and/or booth if your project could use one.

Go look at the call for devrooms at the spiffy new FOSDEM 2008 website.

Speaker interviews for this edition are planned, but not yet available.
]]></description>
			<content:encoded><![CDATA[<p>FOSDEM 2008 is getting in shape (in sharp contrast to yours truly), and it&#8217;s time to think about a developer room and/or booth if your project could use one.</p>

<p>Go look at the <a href="http://fosdem.org/2008/call_for_devrooms">call for devrooms</a> at the spiffy new <a href="http://fosdem.org/2008/">FOSDEM 2008 website</a>.</p>

<p>Speaker interviews for this edition are planned, but not yet available.</p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2007/11/apply-for-devroomb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Haml</title>
		<link>http://florisla.be/blog/archive/2007/05/haml/</link>
		<comments>http://florisla.be/blog/archive/2007/05/haml/#comments</comments>
		<pubDate>Mon, 21 May 2007 07:07:25 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[Aanrader]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/archive/2007/05/haml/</guid>
		<description><![CDATA[I&#8217;ve been reading my &#8220;Agile web development with Rails&#8221; book, which I bought at FOSDEM in early 2006.  It had been lying around half-unread every since.  Of course, by now the latest Rails releases have deprecated some stuff that&#8217;s recommended in the book, but almost everything is still compatible.

Trying out the examples in [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been reading my &#8220;<a href="http://www.pragmaticprogrammer.com/titles/rails1/index.html">Agile web development with Rails</a>&#8221; book, which I bought at FOSDEM in early 2006.  It had been lying around half-unread every since.  Of course, by now the latest Rails releases have deprecated some stuff that&#8217;s recommended in the book, but almost everything is still compatible.</p>

<p>Trying out the examples in the book, I was a bit disappointed about the templating system in Rails (called <a href="http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB.html">ERB</a>).  This is just the same ugly HTML/code/indentation/tag soup mess as one would get with PHP.  I&#8217;d expected someone would have solved this issue by now, preferably in an elegant, Rails-consistent way.</p>

<p>And lo and behold, via the <a href="http://weblog.rubyonrails.org/">Riding Rails</a> webblog I notice the existence of <a href="http://haml.hamptoncatlin.com/">Haml</a>, &#8220;Markup haiku&#8221;. Elegant, readable, indentation-aware &#8212; and simple and efficient.  Great.</p>

<p>Except for on thing: all code expressions <a href="http://groups.google.com/group/haml/browse_thread/thread/414238cf9b7e7773/e25e2c1e12d71fde?lnk=gst&amp;q=loops&amp;rnum=1#e25e2c1e12d71fde">only affect one line</a>, which means that loops and conditionals with markup in them just don&#8217;t compile.  Which you wouldn&#8217;t need anyway if everything is nicely componentized and such, but it still would be handy sometimes.  Maybe in a next version?</p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2007/05/haml/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Post-FOSDEM</title>
		<link>http://florisla.be/blog/archive/2007/03/post-fosdem/</link>
		<comments>http://florisla.be/blog/archive/2007/03/post-fosdem/#comments</comments>
		<pubDate>Wed, 14 Mar 2007 17:58:46 +0000</pubDate>
		<dc:creator>fl0</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web stuff]]></category>

		<guid isPermaLink="false">http://florisla.be/blog/archive/2007/03/post-fosdem/</guid>
		<description><![CDATA[It&#8217;s been a while, but here are my post-FOSDEM 2007 blabberings.

It&#8217;s amazing to see how the conference has grown, and how much people the ULB campus can handle&#8230;

Skimming the blog posts about FOSDEM,  some lovely quotes about the conference are revealed.  Words like &#8220;well organized&#8221; and &#8220;best I&#8217;ve been to&#8221; weren&#8217;t absent.  [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while, but here are my post-<a href="http://fosdem.org/2007/">FOSDEM 2007</a> blabberings.</p>

<p>It&#8217;s amazing to see how the conference has grown, and how much people the ULB campus can handle&#8230;</p>

<p>Skimming the <a href="http://blogsearch.google.com/blogsearch?hl=nl&amp;q=fosdem&amp;btnG=Zoeken+in+blogs&amp;lr=">blog posts about FOSDEM</a>,  some lovely quotes about the conference are revealed.  Words like &#8220;well organized&#8221; and &#8220;best I&#8217;ve been to&#8221; weren&#8217;t absent.  So it definitely seems like we&#8217;re on a good track.  In fact, the only thing that could make future editions fundamentally worse instead of better is that the event would become too big&#8230; Already, most of the devrooms were slightly undersized.</p>

<p>I&#8217;ve noticed that for many projects, a devroom at FOSDEM serves as a mini European conference on its own right. Add to this the two main tracks &#8212; which draw another kind of public on their own, and the successful lightning talks, and you get a very tightly packed conference.  Which will not change in the future, because there really is no other option for the location at ULB. Where else would you find affordably three ( &#8212; one huge and two fairly large) auditoria plus countless classrooms nearby, all being that close to a city center and an international airport?</p>

<p>I finished the weekend with some fellow organizers in a nice typical restaurant, which was fun.  I managed to forget my jacket there, but was able to go pick it up a week later.</p>

<p>It&#8217;s weird (and fun) to really be a part of the &#8220;organizing team&#8221;, although I&#8217;ve helped out at the infodesk for quite some years now, so I already knew some faces.  With me now knowing the other organizers a bit better, and their being such fantastic dudes, logic predicts that I&#8217;ll be a bit more involved next year.</p>

<p>In the weeks before the conference, I made an effort to draw some attention to our website.  The results were not bad, but not exceptionally good either.  And guess what happened the day before the event&#8230; Worldwide, blog engines were fired up and spit out an avalanche of organic word-of-mouth FOSDEM buzz&#8230; completely effortless.</p>

<p><a href="http://technorati.com/search/fosdem?sub=chartlet"><img src="http://farm1.static.flickr.com/147/421251202_974797fc28_o.png" width="414" height="309" alt="FOSDEM buzz graph - Technorati" title="FOSDEM buzz graph - Technorati" /></a></p>

<p>I think we can consider us lucky if nex year&#8217;s FOSDEM can be as good as this one&#8230; We&#8217;ll certainly aim for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://florisla.be/blog/archive/2007/03/post-fosdem/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

