<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Thibauld</title>
	
	<link>http://thibauld.com</link>
	<description>- Imagination and Execution -</description>
	<lastBuildDate>Sat, 02 Oct 2010 01:14:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/thibauld" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="thibauld" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Get a command prompt with administrator privileges from explorer</title>
		<link>http://thibauld.com/2010/10/get-a-command-prompt-with-administrator-privileges-from-explorer/</link>
		<comments>http://thibauld.com/2010/10/get-a-command-prompt-with-administrator-privileges-from-explorer/#comments</comments>
		<pubDate>Sat, 02 Oct 2010 01:14:33 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[technical]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[command prompt]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=305</guid>
		<description><![CDATA[While I was looking to install Dig on my Windows 7 machine. I stumbled on a dead simple but very useful piece of code that I thought I would share with you. It just allows you to open a command prompt as an administrator on any folder by doing a right mouse click on this [...]]]></description>
			<content:encoded><![CDATA[<p>While I was looking to <a href="http://members.shaw.ca/nicholas.fong/dig/" target="_blank">install Dig on my Windows 7 machine</a>. I stumbled on a dead simple but very useful piece of code that I thought I would share with you. It just allows you to open a command prompt as an administrator on any folder by doing a right mouse click on this folder.</p>
<ol>
<li>Download <a target="_blank" href="http://members.shaw.ca/nicholas.fong/dig/CmdHereAsAdmin.inf">CmdHereAsAdmin.inf</a></li>
<li>Right click on the file and choose "Install"</li>
<li>You're all set!</li>
</ol>
<p> You can now right click on any folder an launch an CMD prompt with administrator privileges directly from the explorer. Quick &#038; easy!</p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2010/10/get-a-command-prompt-with-administrator-privileges-from-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>postgresql, date input format and black magic</title>
		<link>http://thibauld.com/2010/09/postgresql-date-input-format-and-black-magic/</link>
		<comments>http://thibauld.com/2010/09/postgresql-date-input-format-and-black-magic/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 22:00:55 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[bug]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[technical]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[postgresql]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=298</guid>
		<description><![CDATA[I hate when I have the impression that black magic took the control of my PC. If you're a developer, you know it happens sometimes... when something is obviously wrong but you just can't figure out *what* is wrong. Hopefully, we work in IT, a field where we can reasonably assume that *everything* happens for [...]]]></description>
			<content:encoded><![CDATA[<p>I hate when I have the impression that black magic took the control of my PC. If you're a developer, you know it happens sometimes... when something is obviously wrong but you just can't figure out *what* is wrong. Hopefully, we work in IT, a field where we can reasonably assume that *everything* happens for a reason. So after digging a while, you eventually end up finding where the issue comes from.</p>
<p>It happened this week while trying to figure out why Postgresql had a different behavior on apparently completely similar platforms. I'm born April 1st, let's say I want to save my birthday in a table, I'd go with the following SQL statement :<br />
<code>INSERT INTO birthdays (date) VALUES ('01-04-1981');</code></p>
<p>As I'm french, each time I deal with dates, I tend to verify that they were understood correctly. Indeed, the above date format was french ('dd-mm-YYYY') but postgresql could have interpreted as a US date format ('mm-dd-YYY'). So let's check with the following statement:<br />
<code>SELECT date_part('month',date) FROM  birthdays;</code></p>
<p>Here comes the problem. On 2 different machines with (apparently) the same setup, this statement would return 2 different results. One would return '04' (correct) and the other one would return '01' (wrong).</p>
<p>I took me a while to find out that postgresql had <a href="http://www.postgresql.org/docs/8.2/static/runtime-config-client.html#GUC-DATESTYLE">datestyle</a> option (in postgresql.conf) which defines the rule to interpret ambiguous date input values. </p>
<p>So if datestyle is set to 'iso, dmy', it means dates will be interpreted as 'date-month-year' and if it is set to 'iso-mdy', dates will be interpreted as 'month-date-year'. It is that simple... once you found it <img src='http://thibauld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2010/09/postgresql-date-input-format-and-black-magic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to validate email addresses in PHP</title>
		<link>http://thibauld.com/2010/08/how-to-validate-email-addresses-in-php/</link>
		<comments>http://thibauld.com/2010/08/how-to-validate-email-addresses-in-php/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 22:25:18 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[technical]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=293</guid>
		<description><![CDATA[I guess that every PHP developer out there already had to cope with email validation in PHP. I personally used to think it was not completely straight forward. 
Indeed, when you google the subject you quickly find this article with a completely misguiding title: "Validate an Email Address with PHP, the Right Way". Do not [...]]]></description>
			<content:encoded><![CDATA[<p>I guess that every PHP developer out there already had to cope with email validation in PHP. I personally used to think it was not completely straight forward. </p>
<p>Indeed, when you google the subject you quickly find <a href="http://www.linuxjournal.com/article/9585">this article</a> with a completely misguiding title: "Validate an Email Address with PHP, the Right Way". Do not use the regexp proposed in this article outdated article. Not only because <a href="http://www.php.net/manual/en/function.ereg.php">ereg()</a> has been deprecated and replaced by <a href="http://www.php.net/manual/en/function.preg-match.php">preg_match()</a> in latest PHP version (5.3 actually), but also because there is much simpler since PHP 5.2. </p>
<p>Check this out:<br />
<code><br />
function is_email_valid($email) {<br />
    return filter_var($email,FILTER_VALIDATE_EMAIL)!==false;<br />
}<br />
</code><br />
Now, that's straight forward, isn't it? Here's <a href="http://fr.php.net/filter_var">filter_var() documentation</a> if you want to find out more.</p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2010/08/how-to-validate-email-addresses-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to exclude multiple directories while creating an archive with tar</title>
		<link>http://thibauld.com/2010/02/how-to-exclude-multiple-directories-while-creating-an-archive-with-tar/</link>
		<comments>http://thibauld.com/2010/02/how-to-exclude-multiple-directories-while-creating-an-archive-with-tar/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 14:49:55 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[technical]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[exclude]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=285</guid>
		<description><![CDATA[A very quick post again as I've just spent way too much time to find out how to use the --exclude option of tar. All I wanted is tar to omit a few subdirectories while creating an archive of a directory. I was surprised to see how much tar is picky about his --exclude option: [...]]]></description>
			<content:encoded><![CDATA[<p>A very quick post again as I've just spent way too much time to find out how to use the <code>--exclude</code> option of <em>tar</em>. All I wanted is <em>tar</em> to omit a few subdirectories while creating an archive of a directory. I was surprised to see how much <em>tar</em> is picky about his <code>--exclude</code> option: if you don't use the exact syntax, it won't work and, unfortunately, the exact syntax is not so easy to figure out from the man page.</p>
<p>So here is the exact syntax you should use if you want to exclude multiples directories with tar:</p>
<p><code>tar cvfz myproject.tgz --exclude='path/dir_to_exclude1' --exclude='path/dir_to_exclude2' myproject</code></p>
<p>Hope it will save you some time!</p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2010/02/how-to-exclude-multiple-directories-while-creating-an-archive-with-tar/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Moblin and Maemo projects are merging</title>
		<link>http://thibauld.com/2010/02/moblin-and-maemo-projects-are-merging/</link>
		<comments>http://thibauld.com/2010/02/moblin-and-maemo-projects-are-merging/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 11:15:46 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[announcements]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[maemo]]></category>
		<category><![CDATA[mobile world congress]]></category>
		<category><![CDATA[moblin]]></category>
		<category><![CDATA[nokia]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=279</guid>
		<description><![CDATA[Wow, just received this email from the Moblin mailing list. It announces the merge between Moblin (Intel initiated project) and Maemo (Nokia initiated project) :
Hi Everyone
I'm sure you've heard the news: Moblin and maemo are merging! We are taking the best pieces from these two open source projects and are creating the MeeGo software platform. [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, just received this email from the Moblin mailing list. It announces the merge between Moblin (Intel initiated project) and Maemo (Nokia initiated project) :</p>
<blockquote><p>Hi Everyone</p>
<p>I'm sure you've heard the news: Moblin and maemo are merging! We are taking the best pieces from these two open source projects and are creating the <a href="http://meego.com/">MeeGo software platform</a>. Both teams have worked for a long time to support the needs of the mobile user experience - and MeeGo will make this even better. We want it to be fun, focused, flexible, technically challenging and ultimately, something that can change the world.</p>
<p>We all use mobile devices every day. The power and capability of handhelds has reached astounding levels - netbooks have been a runaway success - and connected TVs, tablets, in-vehicle infotainment, and media phones are fast growing new markets for devices with unheard of performance. Our goal is to develop the best software to go with those devices. The teams behind maemo and Moblin have plenty of experience and even more ideas on how to make things better - and together we will create something special.</p>
<p>So what does this mean for Moblin and its community? It's a huge opportunity. There are some changes (and those are always scary), but I think they are all for the better. Things will quickly shift to the new site, but from a technology point of view, migrations should be smooth. Especially if you are an application developer; everything you have done so far should continue to work - and with Qt and its development environment there are even more and easier options available to develop new and exciting apps for MeeGo.</p>
<p>The MeeGo website<http://meego.com> is still evolving - you'll run into a few "coming soon" pages as we pull all the content together and get things ready for our first project release in the second quarter. But there's already a lot to see - and a community to join! Please take a look - and come back often as we approach that first release.</p>
<p>We really want to hear from you. Be in on IRC, on our developer mailing list, or through bugzilla. MeeGo is an open project and it will be successful through its developer community. It's my personal goal to make sure that we can all together be successful. And have fun.</p>
<p>I invite you to join us at meego.com<http://meego.com>.</p>
<p>Imad Sousou</p>
<p>Director of Intel's Open Source Technology Center<br />
(and now also co-chair of the MeeGo steering group)</p></blockquote>
<p>From a business standpoint, it does make a lot of sense to merge these 2 projects, now let's see if the merge can be handled smoothly technically speaking... might not be as easy as it sounds.</p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2010/02/moblin-and-maemo-projects-are-merging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring iptables to allow internet surfing while blocking all unsolicited incoming connexions</title>
		<link>http://thibauld.com/2010/02/configuring-iptables-to-allow-internet-surfing-while-blocking-all-unsollicited-incoming-connexions/</link>
		<comments>http://thibauld.com/2010/02/configuring-iptables-to-allow-internet-surfing-while-blocking-all-unsollicited-incoming-connexions/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 00:57:42 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[technical]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=273</guid>
		<description><![CDATA[I'm so used to connect to the Internet through network masquerading (NAT) that I was really surprised today when I realised that my laptop was actually receiving a lot of unsollicited connexions attempts from random external machines. Then I remembered that, by default, a freebox gives you a public ip ! 
It could not have [...]]]></description>
			<content:encoded><![CDATA[<p>I'm so used to connect to the Internet through network masquerading (NAT) that I was really surprised today when I realised that my laptop was actually receiving a lot of unsollicited connexions attempts from random external machines. Then I remembered that, by default, a freebox gives you a public ip ! </p>
<p>It could not have been an issue if I was not doing web development on my laptop using a local (badly configured) webserver which happened to be worldwide accessible... oOops <img src='http://thibauld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>A few iptables commands later, everything was secured :<br />
<code><br />
iptables -P INPUT DROP<br />
iptables -P FORWARD DROP<br />
iptables -P OUTPUT ACCEPT<br />
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT<br />
iptables -A INPUT -s 127.0.0.1 -j ACCEPT<br />
</code><br />
The above lines configure iptables (the firewall) to drop every incoming connexions except the ones corresponding to a connexion I established with a remote server. Indeed, the server you're connecting to needs to be able to send information back to your machine in order for you to get it (blocking all incoming traffic is the same as unplugging the network connection).</p>
<p>I thought it might be useful to some of you too...</p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2010/02/configuring-iptables-to-allow-internet-surfing-while-blocking-all-unsollicited-incoming-connexions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google real time search results</title>
		<link>http://thibauld.com/2009/12/google-real-time-search-results/</link>
		<comments>http://thibauld.com/2009/12/google-real-time-search-results/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 22:10:15 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[technical]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[realtime search]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=267</guid>
		<description><![CDATA[I've just noticed beautiful live search results integrated into google search results tonight. I had never seen them before so I thought I'd share this news-to-me with you   Here's what I saw when I looked for "2010 resolutions" :

And then, a few seconds later, without refreshing anything on my side :

I love it [...]]]></description>
			<content:encoded><![CDATA[<p>I've just noticed beautiful live search results integrated into google search results tonight. I had never seen them before so I thought I'd share this <i>news-to-me</i> with you <img src='http://thibauld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Here's what I saw when I looked for "2010 resolutions" :<br/><br />
<a href="http://www.flickr.com/photos/thibs/4232312462/" title="google_live_search_results by thibauld, on Flickr"><img src="http://farm5.static.flickr.com/4042/4232312462_b517bdeff2.jpg" width="500" height="301" alt="google_live_search_results" /></a></p>
<p>And then, a few seconds later, without refreshing anything on my side :</p>
<p><a href="http://www.flickr.com/photos/thibs/4232312502/" title="google_live_search_results1 by thibauld, on Flickr"><img src="http://farm3.static.flickr.com/2615/4232312502_82c7f50431.jpg" width="500" height="313" alt="google_live_search_results1" /></a></p>
<p>I love it <img src='http://thibauld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Now let's go party for 2010!<br />
Happy new year everybody!</p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2009/12/google-real-time-search-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Société Générale en panne ?</title>
		<link>http://thibauld.com/2009/12/societe-generale-en-panne/</link>
		<comments>http://thibauld.com/2009/12/societe-generale-en-panne/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 18:44:46 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[bug]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[fr]]></category>
		<category><![CDATA[banque]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[société générale]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=257</guid>
		<description><![CDATA[J'aime quand le site de ma banque fonctionne bien... sans commentaires


]]></description>
			<content:encoded><![CDATA[<p>J'aime quand le <a href="http://particuliers.societegenerale.fr" target="_blank">site de ma banque</a> fonctionne bien... sans commentaires</p>
<p><br/><br />
<a href="http://thibauld.com/wp-content/uploads/2009/12/societe_generale_website.png"><img src="http://thibauld.com/wp-content/uploads/2009/12/societe_generale_website.png" alt="societe_generale_website" title="societe_generale_website" width="500" class="aligncenter size-full wp-image-258" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2009/12/societe-generale-en-panne/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>8th of December aka “The Longest Day”</title>
		<link>http://thibauld.com/2009/12/8th-of-december-aka-the-longest-day/</link>
		<comments>http://thibauld.com/2009/12/8th-of-december-aka-the-longest-day/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 08:37:38 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[en]]></category>
		<category><![CDATA[bizsparkcamp]]></category>
		<category><![CDATA[conferences]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[leweb]]></category>
		<category><![CDATA[leweb09]]></category>
		<category><![CDATA[netbookworldsummit]]></category>
		<category><![CDATA[opencoffee]]></category>
		<category><![CDATA[paris]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=251</guid>
		<description><![CDATA[I don't why but, today, 8th of December, everybody decided that it was *the* day to make events and conferences. We had no event or such since a few month and then, suddenly, you have this crowded 8th of December. Today I would have love to attend :

The P'tits déjeuners de la science organised by [...]]]></description>
			<content:encoded><![CDATA[<p>I don't why but, today, 8th of December, everybody decided that it was *the* day to make events and conferences. We had no event or such since a few month and then, suddenly, you have this crowded 8th of December. Today I would have love to attend :</p>
<ul>
<li>The <a href="http://www.ptitsdejeuners-science.com/">P'tits déjeuners de la science</a> organised by my engineering school (<a href="http://www.insa-lyon.fr">INSA de Lyon</a>) with Valérie Pécresse and Claudie Haigneré (french politics)</li>
<li>The <a href="http://www.netbookworldsummit.org/">Netbook World Summit</a> organised by <a href="http://www.mandriva.com">Mandriva</a> with the presence of Scott Apeland, responsible for the Intel Software Network (read Application Store)</li>
<li>The <a href="http://codorniou.wordpress.com/2009/11/17/bizsparkcamp-world-premiere/">World first Bizspark Camp</a> organised by Microsoft with the presence of Scott Guthrie, Corporate Vice President de Microsoft Corp, .NET Developer Division</li>
<li>The <a href="http://www.g9plus.org/manifestation.asp#281">Annuel meeting of G9+</a> with the following topic: "L'entreprise face aux Réseaux Sociaux" [quick translation: "Companies and Social Networks"] in the presence of Tara Hunt</li>
<li>The <a href="http://www.opencoffeeparis.fr/a-propos-de-la-soiree-life-is-better-on/">Life is better on party</a> organised by OpenCoffee Paris before LeWeb</li>
<li>The Partners &#038; Speakers reception for LeWeb'09 organised by Loïc &#038; Géraldine</li>
</ul>
<p>Now this is really great but please, next time, let's try to spread that a little over a few days so that I do not have to choose between the events <img src='http://thibauld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2009/12/8th-of-december-aka-the-longest-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allmyapps 4 slides pitch for OpenCoffe Paris before LeWeb</title>
		<link>http://thibauld.com/2009/12/allmyapps-4-slides-pitch-for-opencoffe-paris-before-leweb/</link>
		<comments>http://thibauld.com/2009/12/allmyapps-4-slides-pitch-for-opencoffe-paris-before-leweb/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 11:03:37 +0000</pubDate>
		<dc:creator>Thibauld</dc:creator>
				<category><![CDATA[allmyapps]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[leweb]]></category>
		<category><![CDATA[opencoffee]]></category>
		<category><![CDATA[pitch]]></category>
		<category><![CDATA[slides]]></category>

		<guid isPermaLink="false">http://thibauld.com/?p=236</guid>
		<description><![CDATA[
It's been sooo long since I blogged! The thing is that the activity at Allmyapps is just exploding (a good problem to deal with!) and unless days suddenly get bigger (say 48h a day), there's no way I can keep up-to-date with my todo list. Task prioritization is the keyword right now at Allmyapps  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://thibauld.com/wp-content/uploads/2009/12/opencoffee.gif"><img src="http://thibauld.com/wp-content/uploads/2009/12/opencoffee.gif" alt="opencoffee" title="opencoffee" width="364" height="80" class="aligncenter size-full wp-image-239" /></a></p>
<p>It's been sooo long since I blogged! The thing is that the activity at Allmyapps is just exploding (a good problem to deal with!) and unless days suddenly get bigger (say 48h a day), there's no way I can keep up-to-date with my todo list. Task prioritization is the keyword right now at Allmyapps <img src='http://thibauld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>However, I really *want* to write more blog posts... so I'll try to make a bit smaller while keeping their interestingness high. Let's begin now and see if I can manage that in the long run.</p>
<p>Today, I just wanted to share with you the <a href="http://www.slideshare.net/opencoffeeFR/allmyapps">4 slides we've proposed to pitch Allmyapps</a> at the <a href="http://www.opencoffeeparis.fr/">OpenCoffee Paris</a> which is taking place right before <a href="http://www.leweb.net">LeWeb09</a>.</p>
<div style="width:425px;text-align:center;margin:0 auto;" id="__ss_2649570"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/opencoffeeFR/allmyapps" title="Allmyapps">Allmyapps</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=allmyapps-091204090433-phpapp01&#038;stripped_title=allmyapps" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=allmyapps-091204090433-phpapp01&#038;stripped_title=allmyapps" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object></div>
<p><br/><br />
I hope we'll be selected to pitch! [<b>Edit</b>: We've been selected to pitch!]</p>
]]></content:encoded>
			<wfw:commentRss>http://thibauld.com/2009/12/allmyapps-4-slides-pitch-for-opencoffe-paris-before-leweb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

