<?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"
	>

<channel>
	<title>Misadventures of a Celtic Geek</title>
	<atom:link href="http://blog.guesny.net/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.guesny.net</link>
	<description>Mésaventures d'un Geek Celt</description>
	<pubDate>Sat, 07 Jun 2008 09:18:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Ubuntu vs AAC (round 1)</title>
		<link>http://blog.guesny.net/index.php/2008/06/07/ubuntu-vs-aac-round-1/</link>
		<comments>http://blog.guesny.net/index.php/2008/06/07/ubuntu-vs-aac-round-1/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 08:56:15 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[ffmpeg]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2008/06/07/ubuntu-vs-aac-round-1/</guid>
		<description><![CDATA[For better or for worse, (generally for worse) a lot of multimedia systems seem to like making peoples lives difficult.
This is painfully obvious with AAC and the formats that use it (think mp4).
Luckally, playback can be assured by using a nice arrangement of plugins that are downloaded just in time to play the offending file [...]]]></description>
			<content:encoded><![CDATA[<p>For better or for worse, (generally for worse) a lot of multimedia systems seem to like making peoples lives difficult.</p>
<p>This is painfully obvious with AAC and the formats that use it (think mp4).</p>
<p>Luckally, playback can be assured by using a nice arrangement of plugins that are downloaded just in time to play the offending file on your computer (thanks ubuntu).</p>
<p>This help doesn&#8217;t extend to re-encoding though, so for those of you lucky enough to have an mp4 capable phone (like the sony erricsons), you can find that putting the latest Bleach on your phone to be an exercise in frustration.</p>
<p>The reasons for this are numerous and complexe but come down to the simple fact that if cannonicle put aac encoders in Ubuntu they&#8217;d be sued to kingdom come in the states (thank god I don&#8217;t live there <img src='http://blog.guesny.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ).</p>
<p>Help is at hand though, since even if the versions of the enncoding tools included with Ubuntu don&#8217;t come equiped, you can re-compile them so that they work as intended.</p>
<p>First up: ffmpeg</p>
<p>FFmpeg is one of the many swiss army knives used for video encoding available with Linux. It&#8217;s probably the easiest to use, and like it&#8217;s cousins, the ubuntu version comes cripled.</p>
<p>What to do?</p>
<p>First of all, make sure we have what&#8217;s needed to re-build it</p>
<blockquote><p>sudo apt-get build-dep ffmpeg</p></blockquote>
<p>Then add a few libraries (that add the magic support)</p>
<blockquote><p>sudo apt-get install libfaac-dev libfaac0 libfaad-dev libfaad2-0 libfaad0</p></blockquote>
<p>Finally, get the  source code to ffmpeg</p>
<blockquote><p>mkdir ffmpeg<br />
cd ffmpeg<br />
apt-get source ffmpeg</p></blockquote>
<p>Now the fun starts, you should have 3 files and a directory before you.</p>
<p>Cd into the directory.</p>
<p>Now let&#8217;s move this thing arround a bit:</p>
<p>Open: debian/rules</p>
<p>This file tells dpkg how to build ffmpeg, we want to add a config flag so go to the lines that start with &#8220;confflags&#8221; and add on to one of them:</p>
<blockquote><p>&#8211;enable-libfaad &#8211;enable-libfaac</p></blockquote>
<p>Save, and quit, now all you have to do is re-build the package</p>
<blockquote><p>dpkg-buildpackage</p></blockquote>
<p>go have a coffee while it builds, and then install the result:</p>
<blockquote><p>cd ..<br />
dpkg -i ffmpeg*</p></blockquote>
<p>To use, something like this is needed:</p>
<blockquote><p>ffmpeg  -i Source.avi -vcodec h263 -b 400 -s 352&#215;288 -acodec aac -ab 64  -ar 48000 -ac 2 -f mp4 Dest.mp4</p></blockquote>
<p>Update:</p>
<p>For the lazy, here are the debs that need installing:</p>
<table style="height: 300px;" border="0" width="395">
<tbody>
<tr>
<td></td>
<td></td>
<td align="right">-</td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/ffmpeg_0.cvs20070307-5ubuntu7_i386.deb">ffmpeg_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libavcodec-dev_0.cvs20070307-5ubuntu7_i386.deb">libavcodec-dev_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libavcodec1d_0.cvs20070307-5ubuntu7_i386.deb">libavcodec1d_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libavformat-dev_0.cvs20070307-5ubuntu7_i386.deb">libavformat-dev_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libavformat1d_0.cvs20070307-5ubuntu7_i386.deb">libavformat1d_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libavutil-dev_0.cvs20070307-5ubuntu7_i386.deb">libavutil-dev_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libavutil1d_0.cvs20070307-5ubuntu7_i386.deb">libavutil1d_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libpostproc-dev_0.cvs20070307-5ubuntu7_i386.deb">libpostproc-dev_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libpostproc1d_0.cvs20070307-5ubuntu7_i386.deb">libpostproc1d_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libswscale-dev_0.cvs20070307-5ubuntu7_i386.deb">libswscale-dev_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
<tr>
<td valign="top"></td>
<td><a href="http://www.guesny.net/deb/libswscale1d_0.cvs20070307-5ubuntu7_i386.deb">libswscale1d_0.cvs20070307-5ubuntu7_i386.deb</a></td>
<td align="right"></td>
<td align="right"></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2008/06/07/ubuntu-vs-aac-round-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bye bye Dapper, Welcome Hardy</title>
		<link>http://blog.guesny.net/index.php/2008/04/27/bye-bye-dapper-welcome-hardy/</link>
		<comments>http://blog.guesny.net/index.php/2008/04/27/bye-bye-dapper-welcome-hardy/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 13:50:25 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[Dapper]]></category>

		<category><![CDATA[Hardy]]></category>

		<category><![CDATA[Server]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2008/04/27/bye-bye-dapper-welcome-hardy/</guid>
		<description><![CDATA[I&#8217;ve just finished upgrading my server to Ubuntu Hardy, with virtual no trouble.
The only problem came from the kernel, which now calls  ide drives &#8217;sd&#8230;&#8217; instead of &#8216;hd&#8230;&#8217; so hda1 becomes sda1.
Update grub or face the consequances.You have been warned!
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just finished upgrading my server to Ubuntu Hardy, with virtual no trouble.</p>
<p>The only problem came from the kernel, which now calls  ide drives &#8217;sd&#8230;&#8217; instead of &#8216;hd&#8230;&#8217; so hda1 becomes sda1.</p>
<p>Update grub or face the consequances.You have been warned!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2008/04/27/bye-bye-dapper-welcome-hardy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bye bye trackbacks</title>
		<link>http://blog.guesny.net/index.php/2008/04/10/bye-bye-trackbacks/</link>
		<comments>http://blog.guesny.net/index.php/2008/04/10/bye-bye-trackbacks/#comments</comments>
		<pubDate>Thu, 10 Apr 2008 15:36:56 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[personnel]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2008/04/10/bye-bye-trackbacks/</guid>
		<description><![CDATA[FYI, I&#8217;ve deactivated trackbacks since nobody seems to want to send me one :&#8217;(
And because spammers seem to love them :-[
]]></description>
			<content:encoded><![CDATA[<p>FYI, I&#8217;ve deactivated trackbacks since nobody seems to want to send me one :&#8217;(</p>
<p>And because spammers seem to love them :-[</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2008/04/10/bye-bye-trackbacks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ring Log Liscense</title>
		<link>http://blog.guesny.net/index.php/2008/03/08/ring-log-liscense/</link>
		<comments>http://blog.guesny.net/index.php/2008/03/08/ring-log-liscense/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 17:14:00 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2008/03/08/ring-log-liscense/</guid>
		<description><![CDATA[Just to let everyone know, I&#8217;ve added a license file putting ringlog under the Gnu Affero General Public License.
In a nut shel, you can use this code for your project, but any modifications that you make to ring_log must be published under the Gnu AGPL
]]></description>
			<content:encoded><![CDATA[<p>Just to let everyone know, I&#8217;ve added a license file putting ringlog under the Gnu Affero General Public License.</p>
<p>In a nut shel, you can use this code for your project, but any modifications that you make to ring_log must be published under the Gnu AGPL</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2008/03/08/ring-log-liscense/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Presenting ring_logger v0.1</title>
		<link>http://blog.guesny.net/index.php/2008/02/25/presenting-ring_logger-v01/</link>
		<comments>http://blog.guesny.net/index.php/2008/02/25/presenting-ring_logger-v01/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 14:26:10 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[english]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2008/02/25/presenting-ring_logger-v01/</guid>
		<description><![CDATA[ Ring logger
This weekend, I had an urge to catch up on one of the umpteen projects that I&#8217;d like to start, so I attacked a ring logger.
Basically, a ring logger, keeps the log messages in a ring buffer, which can be dumped when interesting circumstances arrise.
The particularité of this one is that it&#8217;s pure javascript, [...]]]></description>
			<content:encoded><![CDATA[<p><strong> Ring logger</strong></p>
<p>This weekend, I had an urge to catch up on one of the umpteen projects that I&#8217;d like to start, so I attacked a ring logger.</p>
<p>Basically, a ring logger, keeps the log messages in a ring buffer, which can be dumped when interesting circumstances arrise.</p>
<p>The particularité of this one is that it&#8217;s pure javascript, and dumps as a &#8216;POST&#8217; request to a url. This allows for much improved debugging of js-rich web pages, whilst not filling up the web browsers memory with useless logs.</p>
<p>It depends on <a href="http://http://sourceforge.net/projects/toutoujs" title="ToutouJS" target="_blank">ToutouJS</a> but doesn&#8217;t have a lot of calls, so it should be easilly portable if anyone finds the need.</p>
<p><strong> Usage</strong></p>
<p>First off, you have to include the relevent files:</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre>&lt;script src=&quot;js/toutou/toutou.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;ring_log.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</pre></div></div>

</blockquote>
<p>Then you just log away (the mores the better):</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre class="javascript">js.<span style="color: #006600;">ring_log</span>.<span style="color: #006600;">log</span><span style="color: #66cc66;">&#40;</span>js.<span style="color: #006600;">ring_log</span>.<span style="color: #006600;">DEBUG</span>,<span style="color: #3366CC;">'Test'</span>,<span style="color: #3366CC;">'Test message'</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

</blockquote>
<p>Finally, to retrieve your log, ie dump the buffer:</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre class="javascript">js.<span style="color: #006600;">ring_log</span>.<span style="color: #006600;">dump</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

</blockquote>
<p>Et voila!</p>
<p>For testing purposes, the logger is pre-configured to call a script log.php in the same directory as it is in, and has a buffer size of 10, both parameters changeable in the source. The different parts of the log messages are seperated by a &#8217;splitter&#8217;, by default &#8216;==|==&#8217;, this is also configurable.</p>
<blockquote>

<div class="wp_syntax"><div class="code"><pre class="javascript">js.<span style="color: #006600;">ring_log</span>.<span style="color: #006600;">requestUri</span>=<span style="color: #3366CC;">'log.php'</span>;
js.<span style="color: #006600;">ring_log</span>.<span style="color: #006600;">log_data_size</span>=<span style="color: #CC0000;">10</span>;
js.<span style="color: #006600;">ring_log</span>.<span style="color: #006600;">splitter</span>=<span style="color: #3366CC;">'==|=='</span>;</pre></div></div>

</blockquote>
<p>And that&#8217;s just about it, hope you find it usefull <img src='http://blog.guesny.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Update: forgot to add the<a href="http://www.guesny.net/ring_log.tgz" title="Ring logger"> .tgz</a>, oups :$</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2008/02/25/presenting-ring_logger-v01/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zabbix</title>
		<link>http://blog.guesny.net/index.php/2008/02/07/zabbix/</link>
		<comments>http://blog.guesny.net/index.php/2008/02/07/zabbix/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 10:35:51 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2008/02/07/zabbix/</guid>
		<description><![CDATA[Sometimes things that seem completely harmless just come and hit you over the head&#8230;
That&#8217;s what happened to me with Zabbix yesterday. I was going through some items and cleaning up, when suddenly, 4 hosts went off-line. Except that they hadn&#8217;t. 
I couldn&#8217;t understand why Zabbix refused to see them (the agents were responding fine).
I finally [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes things that seem completely harmless just come and hit you over the head&#8230;</p>
<p>That&#8217;s what happened to me with Zabbix yesterday. I was going through some items and cleaning up, when suddenly, 4 hosts went off-line. Except that they hadn&#8217;t. </p>
<p>I couldn&#8217;t understand why Zabbix refused to see them (the agents were responding fine).</p>
<p>I finally found out that it was because of the way that Zabbix calculates the &#8217;status&#8217; item, which has a value of 0 if alls well, and 2 if the host is off-line.</p>
<p>Zabbix looks at the first item to be taken of the host, if that item returns an empty string, Zabbix decides that the host is dead and raises the alarm, even if the host has 150 other items all working perfectly. This bizzar to say the least, but workable. If this happens, a quick fix is to deactivate the offending Item, so that the first Item checked returns a value, then the host comes back <img src='http://blog.guesny.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Any how, I thought I&#8217;d just document this in case anyone else starts loosing hair over the issue <img src='http://blog.guesny.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2008/02/07/zabbix/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rate cuts and what they mean to the rest of us</title>
		<link>http://blog.guesny.net/index.php/2008/01/24/rate-cuts-and-what-they-mean-to-the-rest-of-us/</link>
		<comments>http://blog.guesny.net/index.php/2008/01/24/rate-cuts-and-what-they-mean-to-the-rest-of-us/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 10:11:16 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[personnel]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2008/01/24/rate-cuts-and-what-they-mean-to-the-rest-of-us/</guid>
		<description><![CDATA[No, I haven&#8217;t got a multi paged analyses lined up, I&#8217;ll leave that to Mark and others like him who can put it much much better than I can.
OTOH, here&#8217;s a couple of quotes for the day:
A banker is a fellow who lends you his umbrella when the sun is shining and wants it back [...]]]></description>
			<content:encoded><![CDATA[<p>No, I haven&#8217;t got a multi paged analyses lined up, I&#8217;ll leave that to <a href="http://www.markshuttleworth.com/archives/139">Mark</a> and others like him who can put it much much better than I can.</p>
<p>OTOH, here&#8217;s a couple of quotes for the day:</p>
<blockquote><p>A banker is a fellow who lends you his umbrella when the sun is shining and wants it back the minute it begins to rain.</p>
<p>- Mark Twain (attributed)</p></blockquote>
<blockquote><p>OCTOBER: This is one of the peculiarly dangerous months to speculate in stocks in. The others are July, January, September, April, November, May, March, June, December, August, and February.</p>
<p>- Mark Twain, Pudd&#8217;nhead Wilson&#8217;s Calendar</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2008/01/24/rate-cuts-and-what-they-mean-to-the-rest-of-us/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mon tout premier boulot&#8230;..</title>
		<link>http://blog.guesny.net/index.php/2008/01/22/mon-tout-premier-boulot/</link>
		<comments>http://blog.guesny.net/index.php/2008/01/22/mon-tout-premier-boulot/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 12:45:26 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[français]]></category>

		<category><![CDATA[personnel]]></category>

		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2008/01/22/mon-tout-premier-boulot/</guid>
		<description><![CDATA[En me baladant sur le net ce midi, je suis retombé sur la site web de mon tout premier emploie.

La Maison des Etudiants (1991-2003) était une association d&#8217;aide aux étudiants, qui grâce aux emplois jeunes, entre autre fournissait divers service aux étudiants adhérants de l&#8217;association. Notament les copies et l&#8217;informatique (principalement ce de quoi je [...]]]></description>
			<content:encoded><![CDATA[<p>En me baladant sur le net ce midi, je suis retombé sur la site web de mon tout premier emploie.</p>
<p><img src="http://blog.guesny.net/wp-content/uploads/2008/01/mde-r2-c3.gif" /></p>
<p>La Maison des Etudiants (1991-2003) était une association d&#8217;aide aux étudiants, qui grâce aux emplois jeunes, entre autre fournissait divers service aux étudiants adhérants de l&#8217;association. Notament les copies et l&#8217;informatique (principalement ce de quoi je m&#8217;occuper):</p>
<p><img src="http://blog.guesny.net/wp-content/uploads/2008/01/copie.gif" /> <img src="http://blog.guesny.net/wp-content/uploads/2008/01/ordi.gif" /></p>
<p>J&#8217;y étais entre 2001 et 2003, et l&#8217;expérience était pour le moins formateur,</p>
<p>-Premier Boulot<br />-Premier Linux<br />-Premiers projets aussi <img src='http://blog.guesny.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Vers la fin j&#8217;avais même fait un premier déploiement sur les posts disponibles &#8216;grand public&#8217;, qui aurait pu être pire point de vue désastre ;).</p>
<p>Malheureusement, pile au moment où mon Emploi Jeunes arrivait à term, la fac à décider de faire couler l&#8217;asso pour reprendre l&#8217;activité, et c&#8217;est ainsi que s&#8217;est terminé une expérience que je n&#8217;oublirai sans doute jamais.</p>
<p>Un coucou à tout ceux qui se reconnaîtront de cette époque (y compris l&#8217;Afev et Velocampus, dés assos nés de la MDE et qui battent toujours de leurs propres ailes): Xavier, Claire, Laurent&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2008/01/22/mon-tout-premier-boulot/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Analytics</title>
		<link>http://blog.guesny.net/index.php/2008/01/15/analytics/</link>
		<comments>http://blog.guesny.net/index.php/2008/01/15/analytics/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 17:53:07 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2008/01/15/analytics/</guid>
		<description><![CDATA[Just a quick note to say that I&#8217;ve just set up google Analytics on this blog, so lets see what it shows up  
]]></description>
			<content:encoded><![CDATA[<p>Just a quick note to say that I&#8217;ve just set up google Analytics on this blog, so lets see what it shows up <img src='http://blog.guesny.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2008/01/15/analytics/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Geek&#8217;s dream&#8230;</title>
		<link>http://blog.guesny.net/index.php/2007/12/11/geeks-dream/</link>
		<comments>http://blog.guesny.net/index.php/2007/12/11/geeks-dream/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 11:52:45 +0000</pubDate>
		<dc:creator>d.mills</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[personnel]]></category>

		<guid isPermaLink="false">http://blog.guesny.net/index.php/2007/12/11/geeks-dream/</guid>
		<description><![CDATA[Or mabey not, anyhow, here&#8217;s a quick counter to tell you how far away KDE4 is&#8230;  

]]></description>
			<content:encoded><![CDATA[<p>Or mabey not, anyhow, here&#8217;s a quick counter to tell you how far away KDE4 is&#8230; <img src='http://blog.guesny.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img src="http://games.kde.org/new/counter/" alt="KDE 4.0 Release Counter" height="47" width="377" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.guesny.net/index.php/2007/12/11/geeks-dream/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
