<?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>Here With Me &#187; Blogging</title>
	<atom:link href="http://www.herewithme.fr/tag/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.herewithme.fr</link>
	<description>Blog personnel et technique, Blog technique et personnel, Blog avant tout.</description>
	<lastBuildDate>Sat, 24 Jul 2010 15:53:13 +0000</lastBuildDate>
	<language>fr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs</title>
		<link>http://www.herewithme.fr/2008/06/01/wpmu-astuce-pas-proposer-page-inscription-visiteurs/</link>
		<comments>http://www.herewithme.fr/2008/06/01/wpmu-astuce-pas-proposer-page-inscription-visiteurs/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 21:18:01 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Mu]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/wordpress-mu-astuce-pour-ne-pas-proposer-la-page-inscription-aux-visiteurs</guid>
		<description><![CDATA[WordPress Mu est principalement utilis&#233; de 2 fa&#231;ons: Comme plateforme de blog public (ex: Unblog.fr) Comme plateforme pour les r&#233;seaux de blogs de gros bloggeurs ou collectifs. Dans le cas num&#233;ro 2, bien qu&#8217;il soit possible de d&#233;sactiver les inscriptions publiques, vos visiteurs pourront toujours tomber sur la page d&#8217;inscription. Typiquement lors d&#8217;une erreur dans [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> Mu est principalement utilis&#233; de 2 fa&#231;ons:</p>
<ol>
<li>Comme plateforme de blog public (ex: Unblog.fr) </li>
<li>Comme plateforme pour les r&#233;seaux de blogs de gros bloggeurs ou collectifs. </li>
</ol>
<p>Dans le cas num&#233;ro 2, bien qu&#8217;il soit possible de d&#233;sactiver les inscriptions publiques, vos visiteurs pourront toujours tomber sur la page d&#8217;inscription. Typiquement lors d&#8217;une erreur dans l&#8217;URL !</p>
<p>Le visiteur aura alors droit &#224; une superbe page d&#8217;inscription aussi inutile que moche.</p>
</p>
<p><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="168" alt="ScreenShot017" src="http://www.herewithme.fr/wp-content/uploads/2008/06/screenshot017.png" width="462" border="0" /> </p>
<p>Pour &#233;viter cette page, il y a 2 alternatives:</p>
<ol>
<li>Hacker le code de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> MU </li>
<li>Cr&#233;er une petite extension pour WPmu afin de rediriger automatiquement l&#8217;utilisateur. </li>
</ol>
<p>Je vais bien &#233;videmment utiliser la m&#233;thode 2 qui a l&#8217;avantage de simplifier les mises &#224; jour. </p>
<p>Pour cela, nous allons cr&#233;er un petit fichier <i>mu-redirect.php</i> dans le dossier <i>wp-content/mu-<a href="http://www.herewithme.fr/tag/plugins/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Plugins">plugins</a>/</i></p>
<p>Et nous allons y placer le code suivant:</p>
</p>
<pre lang="php">&lt;?php
add_action('signup_header', 'redirect_home');
function redirect_home() {
	global $current_site;

	wp_redirect( &quot;http://{$current_site-&gt;domain}{$current_site-&gt;path}&quot; );
	exit();
}
?&gt;</pre>
<p>Tr&#232;s simplement cette fonction va rediriger le visiteur vers la page d&#8217;accueil de votre plateforme. Vous pouvez &#233;galement diriger vos visiteurs sur une adresse ou page sp&#233;cifique&#8230; selon vos besoins !</p>
<p>Le code de cette extension est &#233;galement disponible sous <a href="http://pastebin.com/f19086364">pastebin</a>.</p>
<p>Bon blogging !</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/plugins/" title="Plugins" rel="tag nofollow">Plugins</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a>, <a href="http://www.herewithme.fr/tag/wordpress-mu/" title="WordPress Mu" rel="tag nofollow">WordPress Mu</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2007/08/06/wordpress-windows-live-writer-bad-behavior-erreur-403-solution/" title="WordPress + Windows Live Writer + Bad Behavior = Erreur 403 : Solution ! (6 août 2007)">WordPress + Windows Live Writer + Bad Behavior = Erreur 403 : Solution !</a> (2)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/06/01/sortie-de-simple-tagging-166/" title="Sortie de Simple Tagging <strike>1.6.6</strike> <strong>1.6.7</strong> ! (1 juin 2007)">Sortie de Simple Tagging <strike>1.6.6</strike> <strong>1.6.7</strong> !</a> (49)</li>
	<li><a href="http://www.herewithme.fr/2007/07/20/sortie-de-simple-tagging-168/" title="Sortie de Simple Tagging 1.6.8 ! (20 juillet 2007)">Sortie de Simple Tagging 1.6.8 !</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2008/06/01/wpmu-astuce-pas-proposer-page-inscription-visiteurs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dis papa, &#231;a co&#251;te combien un site internet ?</title>
		<link>http://www.herewithme.fr/2008/03/18/dis-papa-a-cote-combien-un-site-internet/</link>
		<comments>http://www.herewithme.fr/2008/03/18/dis-papa-a-cote-combien-un-site-internet/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 18:22:01 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/dis-papa-a-cote-combien-un-site-internet</guid>
		<description><![CDATA[En lisant le blog de WordPress Tuto, je suis tomb&#233; sur un article tr&#232;s int&#233;ressant, mais un peu perdu entre toutes ses traductions de th&#232;mes&#8230; Et c&#8217;est bien dommage soit dit en passant !!! Libretto y fait une analyse des derniers rachats de sites Web tels que Doctissimo, Auf&#233;minin.com. Et c&#8217;est vrai qu&#8217;en suivant son [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.herewithme.fr/wp-content/uploads/2008/03/argent.gif"><img style="border-right: 0px; border-top: 0px; margin: 5px 0px 0px 10px; border-left: 0px; border-bottom: 0px" height="64" alt="argent" src="http://www.herewithme.fr/wp-content/uploads/2008/03/argent-thumb.gif" width="64" align="right" border="0" /></a> En lisant le blog de <a href="http://wordpress-tuto.fr">WordPress Tuto</a>, je suis tomb&#233; sur un article tr&#232;s int&#233;ressant, mais un peu perdu entre toutes ses traductions de th&#232;mes&#8230; Et c&#8217;est bien dommage soit dit en passant !!!</p>
<p>Libretto y fait <a href="http://wordpress-tuto.fr/valeur-site-web-343">une analyse des derniers rachats de sites Web</a> tels que Doctissimo, Auf&#233;minin.com. Et c&#8217;est vrai qu&#8217;en suivant son raisonnement, mon blog me rapporterai beaucoup :D</p>
<p>Et donc la question, c&#8217;est quand que la bulle p&#232;te ?!</p>
<p>Bonne lecture !</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2008/06/01/wpmu-astuce-pas-proposer-page-inscription-visiteurs/" title="WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs (1 juin 2008)">WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs</a> (2)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/06/01/sortie-de-simple-tagging-166/" title="Sortie de Simple Tagging <strike>1.6.6</strike> <strong>1.6.7</strong> ! (1 juin 2007)">Sortie de Simple Tagging <strike>1.6.6</strike> <strong>1.6.7</strong> !</a> (49)</li>
	<li><a href="http://www.herewithme.fr/2006/04/13/peu-dactus-les-raisons/" title="Peu d&#8217;actus? les raisons&#8230; (13 avril 2006)">Peu d&#8217;actus? les raisons&#8230;</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2008/03/18/dis-papa-a-cote-combien-un-site-internet/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Nouveau th&#232;me francis&#233; ! Prologue by Automattic !</title>
		<link>http://www.herewithme.fr/2008/02/01/nouveau-thme-francis-prologue-by-automattic/</link>
		<comments>http://www.herewithme.fr/2008/02/01/nouveau-thme-francis-prologue-by-automattic/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 23:39:14 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Automattic]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Thème]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/nouveau-thme-francis-prologue-by-automattic</guid>
		<description><![CDATA[Présenté la semaine dernière par les gars d&#8217;Automattic, le thème Prologue se veut être une alternative a Twitter ! Autrement dit, la possibilité du faire du micro blogging tout en gardant le moteur de blog WordPress :) Le résultat graphique est le suivant : C&#8217;est light, freshy, pas mal du tout en quelque sorte ! [...]]]></description>
			<content:encoded><![CDATA[<p>Présenté la semaine dernière par les gars d&#8217;Automattic, le <a href="http://www.herewithme.fr/tag/theme/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thème">thème</a> Prologue se veut être une alternative a Twitter ! Autrement dit, la possibilité du faire du micro blogging tout en gardant le moteur de blog <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> :)</p>
<p>Le résultat graphique est le suivant :</p>
<p><a href="http://www.herewithme.fr/wp-content/uploads/wlw-2008/NouveauthmefrancisProloguebyAutomattic_738/prologue_fr.png"><img src="http://www.herewithme.fr/wp-content/uploads/wlw-2008/NouveauthmefrancisProloguebyAutomattic_738/prologue_fr_thumb.png" style="border: 0px none " alt="prologue_fr" border="0" height="247" width="355" /></a></p>
<p>C&#8217;est light, freshy, pas mal du tout en quelque sorte !</p>
<p>Pour l&#8217;occasion (c&#8217;est pas tous les jours qu&#8217;automattic réalise un <a href="http://www.herewithme.fr/tag/theme/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thème">thème</a>), j&#8217;ai décliné le <a href="http://www.herewithme.fr/tag/theme/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thème">thème</a> en français, et j&#8217;y ai apporté quelques corrections.</p>
<p>Vous trouverez un <a href="http://prologue.herewithme.fr/">site de dédié à Prologue</a>, avec une petite présentation, une démo, des captures d&#8217;écrans et la dernière version française à télécharger !</p>
<p>Comme d&#8217;habitude, tout retour constructif est la bienvenue !</p>

	Tags: <a href="http://www.herewithme.fr/tag/automattic/" title="Automattic" rel="tag nofollow">Automattic</a>, <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/theme/" title="Thème" rel="tag nofollow">Thème</a>, <a href="http://www.herewithme.fr/tag/twitter/" title="Twitter" rel="tag nofollow">Twitter</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2007/04/16/wordpress-mu-dans-le-cadre-dun-projet-professionnel/" title="WordPress Mu dans le cadre d&#8217;un projet professionnel (16 avril 2007)">WordPress Mu dans le cadre d&#8217;un projet professionnel</a> (8)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/04/13/peu-dactus-les-raisons/" title="Peu d&#8217;actus? les raisons&#8230; (13 avril 2006)">Peu d&#8217;actus? les raisons&#8230;</a> (3)</li>
	<li><a href="http://www.herewithme.fr/2006/07/06/nouveautes-sur-le-blog/" title="Nouveautés sur le blog&#8230; (6 juillet 2006)">Nouveautés sur le blog&#8230;</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2008/02/01/nouveau-thme-francis-prologue-by-automattic/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Paris Web 2007 : J&#8217;y serai et vous ?</title>
		<link>http://www.herewithme.fr/2007/10/03/paris-web-2007-jy-serai-et-vous/</link>
		<comments>http://www.herewithme.fr/2007/10/03/paris-web-2007-jy-serai-et-vous/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 17:29:02 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Développement]]></category>
		<category><![CDATA[Paris]]></category>
		<category><![CDATA[Paris Web]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/blog/paris-web-2007-jy-serai-et-vous</guid>
		<description><![CDATA[La conférence &#171;&#160;Paris Web&#160;&#187;, que j&#8217;ai eu le malheur de rater l&#8217;an passé, a lieu cette année les 15, 16 et 17 novembre 2007. Que vous soyez professionnel ou simple passionné, Paris Web est l&#8217;évènement français à ne pas manquer sur les technos Web. Les sujets abordés sont variés, on y retrouve développement, stratégie, ergonomie, [...]]]></description>
			<content:encoded><![CDATA[<p>La conférence &laquo;&nbsp;<a href="http://www.herewithme.fr/tag/paris/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Paris">Paris</a> Web&nbsp;&raquo;, que j&#8217;ai eu le malheur de rater l&#8217;an passé, a lieu cette année les <a href="http://2007.paris-web.fr/Planning">15, 16 et 17 novembre 2007</a>.</p>
<p>Que vous soyez professionnel ou simple passionné, <a href="http://www.herewithme.fr/tag/paris/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Paris">Paris</a> Web est l&#8217;évènement français à ne pas manquer sur les technos Web.</p>
<p>Les sujets abordés sont variés, on y retrouve développement, stratégie, ergonomie, sémantique et accessibilité.</p>
<p>Que des bonnes choses en prévision ! Je tâcherai de prendre des notes afin de vous livrer quelques réactions, analyses, etc.</p>
<p style="text-align: center"><a href="http://2007.paris-web.fr/" title="Paris Web 2007"><img src="http://www.herewithme.fr/wp-content/uploads/2007/10/bouton2.png" style="border: 0px none " alt="bouton2" border="0" height="94" width="124" /></a></p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/developpement/" title="Développement" rel="tag nofollow">Développement</a>, <a href="http://www.herewithme.fr/tag/paris/" title="Paris" rel="tag nofollow">Paris</a>, <a href="http://www.herewithme.fr/tag/paris-web/" title="Paris Web" rel="tag nofollow">Paris Web</a>, <a href="http://www.herewithme.fr/tag/web-20/" title="Web 2.0" rel="tag nofollow">Web 2.0</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2006/07/05/yahoo-et-bot-encarta-pour-live-messenger/" title="Yahoo et Bot Encarta pour Live Messenger (5 juillet 2006)">Yahoo et Bot Encarta pour Live Messenger</a> (1)</li>
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/05/10/tester-son-design-sous-safari-sans-mac/" title="Tester son design sous Safari sans MAC ! (10 mai 2006)">Tester son design sous Safari sans MAC !</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2008/02/12/techdays-2008-jour-1/" title="TechDays 2008 &#8211; Jour 1 (12 février 2008)">TechDays 2008 &#8211; Jour 1</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/10/03/paris-web-2007-jy-serai-et-vous/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Blog Day 2007 : Vous savez l&#8217;&#233;v&#232;nement du 31 ao&#251;t ?</title>
		<link>http://www.herewithme.fr/2007/08/31/blog-day-2007-vous-savez-lvnement-du-31-aot/</link>
		<comments>http://www.herewithme.fr/2007/08/31/blog-day-2007-vous-savez-lvnement-du-31-aot/#comments</comments>
		<pubDate>Fri, 31 Aug 2007 12:11:47 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Référencement naturel]]></category>
		<category><![CDATA[SUPINFO]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/08/31/blog-day-2007-vous-savez-lvnement-du-31-aot.html</guid>
		<description><![CDATA[Merci à Rod de m&#8217;avoir fait découvrir un tel évènement ! Eh oui&#8230; je suis blogueur que de noms&#8230; :P Donc, pour ceux qui ne suivent pas, le 31 août se déroule le &#171;&#160;Blog Day&#160;&#187;. Un évènement ayant comme objectif de mettre en avant 5 blogs que l&#8217;on trouve intéressants et qu&#8217;on lit. Dans un [...]]]></description>
			<content:encoded><![CDATA[<p>Merci à <a href="http://www.le-hiboo.com/divers/31-aout-jour-du-blogday-ou-comment-faire-connaitre-5-blogs-a-ses-lecteurs/">Rod</a> de m&#8217;avoir fait découvrir un tel évènement !</p>
<p>Eh oui&#8230; je suis blogueur que de noms&#8230; :P</p>
<p><a href="http://www.blogday.org/"><img src="http://www.blogday.org/images/badge_pink.gif" alt="Blog Day 2007" height="130" width="310" /></a></p>
<p>Donc, pour ceux qui ne suivent pas, le 31 août se déroule le &laquo;&nbsp;Blog Day&nbsp;&raquo;.</p>
<p>Un évènement ayant comme objectif de mettre en avant 5 blogs que l&#8217;on trouve intéressants et qu&#8217;on lit.</p>
<p>Dans un premier temps, les blogs &laquo;&nbsp;techniques&nbsp;&raquo; :</p>
<ul>
<li><a href="http://blog.ramenos.net/" title="http://blog.ramenos.net/"><strong>Ramenos</strong></a> : Excellent blog traitant de la SEO, du <a href="http://www.herewithme.fr/tag/referencement-naturel/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Référencement naturel">référencement naturel</a> et également des moteurs de recherche internet.</li>
<li><a href="http://blog.boldr.fr/" title="http://blog.boldr.fr/"><strong>Boldr</strong></a> : Blog d&#8217;un ami et collègue SUPINFO, traitant des technologies Ruby, Rails et du Web 2.0</li>
<li><a href="http://www.fran6art.com/" title="http://www.fran6art.com/"><strong>Fran6art</strong></a> : Un blog traitant de l&#8217;actualité du blogging et du webdesign. (et plus particulièrement WordPess)</li>
</ul>
<p>Et les blogs n&#8217;ayant aucun rapport avec l&#8217;informatique:</p>
<ul>
<li><a href="http://formule1.blogs.liberation.fr/2006/" title="http://formule1.blogs.liberation.fr/2006/"><strong>Bords de pistes</strong></a> : Un blog parlant de l&#8217;actualité de la Formule 1. Le point de vue de l&#8217;auteur, Lionel Froissart, est particulièrement intéressant. Les &laquo;&nbsp;Blogo critiques&nbsp;&raquo; sont à lire et relire&#8230;</li>
<li><a href="http://www.bloingo.fr/"><strong>Bloingo</strong></a>: Un blog loufoque. Un blog difficile à classer en fait&#8230; Consultez-le pour vous faire un avis :P</li>
</ul>
<p>J&#8217;aurai pu parler du blog <a href="http://www.le-hiboo.com/">Le Hiboo</a> tenu par Rod, mais Blog Day c&#8217;est 5 blogs par maximum ;)</p>
<p>N&#8217;oubliez pas dans l&#8217;article de placer les 2 liens vers:</p>
<ul>
<li><a href="http://www.blogday.org/">Le site officiel du Blog Day</a></li>
<li>Technorati: <a href="http://technorati.com/tag/BlogDay2007" title="http://technorati.com/tag/BlogDay2007">http://technorati.com/tag/BlogDay2007</a></li>
</ul>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/design/" title="Design" rel="tag nofollow">Design</a>, <a href="http://www.herewithme.fr/tag/referencement-naturel/" title="Référencement naturel" rel="tag nofollow">Référencement naturel</a>, <a href="http://www.herewithme.fr/tag/supinfo/" title="SUPINFO" rel="tag nofollow">SUPINFO</a>, <a href="http://www.herewithme.fr/tag/web-20/" title="Web 2.0" rel="tag nofollow">Web 2.0</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2006/05/10/tester-son-design-sous-safari-sans-mac/" title="Tester son design sous Safari sans MAC ! (10 mai 2006)">Tester son design sous Safari sans MAC !</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/09/14/supinfo-une-cole-d-une-cole/" title="SUPINFO : Une &eacute;cole d&#8217;&#8230; une &eacute;cole ! (14 septembre 2006)">SUPINFO : Une &eacute;cole d&#8217;&#8230; une &eacute;cole !</a> (43)</li>
	<li><a href="http://www.herewithme.fr/2006/07/05/yahoo-et-bot-encarta-pour-live-messenger/" title="Yahoo et Bot Encarta pour Live Messenger (5 juillet 2006)">Yahoo et Bot Encarta pour Live Messenger</a> (1)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/a-propos/" title="Qui suis-je ? (26 janvier 2006)">Qui suis-je ?</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/08/31/blog-day-2007-vous-savez-lvnement-du-31-aot/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vous avez dit &quot;Blog au ralenti ?&quot;</title>
		<link>http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/</link>
		<comments>http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/#comments</comments>
		<pubDate>Wed, 20 Jun 2007 14:34:26 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Développement]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Serveur]]></category>
		<category><![CDATA[SUPINFO]]></category>
		<category><![CDATA[Tagging]]></category>
		<category><![CDATA[Thème]]></category>
		<category><![CDATA[Thèmes]]></category>
		<category><![CDATA[Windows Live Writer]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti.html</guid>
		<description><![CDATA[Je sais, 20 jours que je n&#8217;ai pas blogger&#8230; une éternité dans la&#160;blogosphère ! Les raisons ? Diverses&#8230; manque d&#8217;envie, manque de temps&#8230; Et puis il y a eu: La migration du blog de Sebeuh vers WordPress (et ça ne fut pas une mince affaire!) La traduction de 2 thèmes en français (publication début juillet) [...]]]></description>
			<content:encoded><![CDATA[<p>Je sais, 20 jours que je n&#8217;ai pas blogger&#8230; une éternité dans la&nbsp;blogosphère !</p>
<p><strong>Les raisons ?</strong> </p>
<p>Diverses&#8230; manque d&#8217;envie, manque de temps&#8230;</p>
<p><strong>Et puis il y a eu:</strong></p>
<ul>
<li>La migration du blog de <a href="http://sebastien.warin.fr/2007/06/17/114-sebastienwarinfr-nouveau-blog-nouvelle-adresse/">Sebeuh</a> vers <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> (et ça ne fut pas une mince affaire!)</li>
<li>La traduction de 2 <a href="http://www.herewithme.fr/tag/themes/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thèmes">thèmes</a> en français (publication début juillet)</li>
<li>La réalisation du pack français de <a href="http://www.wordpress-fr.net/support/sujet-6468-testez-nouvelle-traduction-wpmu-et-son-pack">WPmu 1.2.2</a></li>
<li>L&#8217;optimisation du blog et serveur&nbsp;de <a href="http://www.le-hiboo.com/">Rod</a>.</li>
</ul>
<p><strong>Et il y a:</strong></p>
<ul>
<li>Les examens SUPINFO</li>
<li>Le développement de Simple Tagging</li>
<li>Le développement de SDM</li>
<li>Les démarches administratives pour ma déclaration en tant que professionnel indépendant&#8230;</li>
</ul>
<p>&nbsp;</p>
<p>Pourtant, ça n&#8217;est pas les sujets qui manquent ! </p>
<p><strong>Je pourrai parler de:</strong></p>
<ul>
<li>La sortie de <a href="http://photomatt.net/2007/05/28/announcing-hyperdb/">HyperDB</a> pour WPmu (je publierai un tuto début juillet)</li>
<li>La sortie de <a href="http://mu.wordpress.org/forums/topic.php?id=5218">WPmu 1.2.2</a></li>
<li>Des <a href="http://wordpress.org/development/2007/06/two-contests/">2 &laquo;&nbsp;contests&nbsp;&raquo; WP</a></li>
<li>La fin de ma 2ème année à SUPINFO</li>
<li>Des nouveautés de Windows Live Writer Béta 2, ou encore de ses <a href="http://www.herewithme.fr/tag/plugins/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Plugins">plugins</a></li>
<li>De mon prochain ordinateur portable (qui a dit MacBook Pro ?)</li>
<li>Etc.</li>
</ul>
<p>Bref !</p>
<p>Encore 10 petits jours et ce blog reprendra son rythme de croisière !</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/developpement/" title="Développement" rel="tag nofollow">Développement</a>, <a href="http://www.herewithme.fr/tag/plugins/" title="Plugins" rel="tag nofollow">Plugins</a>, <a href="http://www.herewithme.fr/tag/serveur/" title="Serveur" rel="tag nofollow">Serveur</a>, <a href="http://www.herewithme.fr/tag/supinfo/" title="SUPINFO" rel="tag nofollow">SUPINFO</a>, <a href="http://www.herewithme.fr/tag/tagging/" title="Tagging" rel="tag nofollow">Tagging</a>, <a href="http://www.herewithme.fr/tag/theme/" title="Thème" rel="tag nofollow">Thème</a>, <a href="http://www.herewithme.fr/tag/themes/" title="Thèmes" rel="tag nofollow">Thèmes</a>, <a href="http://www.herewithme.fr/tag/windows-live-writer/" title="Windows Live Writer" rel="tag nofollow">Windows Live Writer</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2007/05/20/ma-liste-de-plugins-wordpress-est/" title="Ma liste de plugins WordPress est&#8230; (20 mai 2007)">Ma liste de plugins WordPress est&#8230;</a> (16)</li>
	<li><a href="http://www.herewithme.fr/2007/07/28/explications-sur-linternationalisation-de-wordpress-et-crer-un-fichier-po-avec-poedit/" title="Explications sur l&#8217;internationalisation de WordPress et cr&eacute;er un fichier PO avec Poedit (28 juillet 2007)">Explications sur l&#8217;internationalisation de WordPress et cr&eacute;er un fichier PO avec Poedit</a> (13)</li>
	<li><a href="http://www.herewithme.fr/2007/04/28/tuto-migrer-de-ultimate-tag-warrior-vers-simple-tagging/" title="[Tuto] Migrer de Ultimate Tag Warrior vers Simple Tagging ! (28 avril 2007)">[Tuto] Migrer de Ultimate Tag Warrior vers Simple Tagging !</a> (30)</li>
	<li><a href="http://www.herewithme.fr/2007/04/16/wordpress-mu-dans-le-cadre-dun-projet-professionnel/" title="WordPress Mu dans le cadre d&#8217;un projet professionnel (16 avril 2007)">WordPress Mu dans le cadre d&#8217;un projet professionnel</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sortie de Simple Tagging 1.6.6 1.6.7 !</title>
		<link>http://www.herewithme.fr/2007/06/01/sortie-de-simple-tagging-166/</link>
		<comments>http://www.herewithme.fr/2007/06/01/sortie-de-simple-tagging-166/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 19:44:45 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tagging]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Francophone]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/06/01/sortie-de-simple-tagging-166.html</guid>
		<description><![CDATA[MAJ: Une nouvelle version 1.6.7 est désormais disponible, elle est à nouveau compatible avec MySQL 4.0.x et corrige quelques bugs apparus avec la version 1.6.6&#8230; Merci de mettre à jour ! Après une diffusion limitée aux habitués de WordPress Francophone, voilà la publication officielle&#160;de la version 1.6.6 de Simple Tagging. Cette version corrige quelques bugs [...]]]></description>
			<content:encoded><![CDATA[<p><strong>MAJ: Une nouvelle version 1.6.7 est désormais disponible, elle est à nouveau compatible avec MySQL 4.0.x et corrige quelques bugs apparus avec la version 1.6.6&#8230; Merci de mettre à jour !</strong></p>
<p>Après une diffusion limitée aux habitués de <a href="http://www.herewithme.fr/tag/wordpress-francophone/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress Francophone">WordPress Francophone</a>, voilà la publication officielle&nbsp;de la version 1.6.6 de Simple Tagging.</p>
<p>Cette version corrige quelques bugs et apporte un certain nombre de nouveautés&#8230; </p>
<p><strong>Au programme:</strong></p>
<ul>
<li>Nuage de tags dynamique (taille et couleur sans modification du CSS)</li>
<li>Ajout de la traduction turque</li>
<li>Ajout de plusieurs options</li>
<ul>
<li>Limite du nombre de tags relatifs</li>
<li>Limite de l&#8217;âge des articles dans le nuage de tags</li>
<li>Ajout automatique des tags à la fin des articles</li>
<li>Exclusion d&#8217;une catégorie dans le nuage de tags et/ou des articles relatifs</li>
</ul>
<li>Nuage de tags pour une catégorie définie</li>
<li>Flux RSS/RSS2/Atom pour chaque tag</li>
<li>Possibilité d&#8217;afficher les articles relatifs hors de la boucle WP</li>
</ul>
<p>A noter que l&#8217;administration de SimpleTagging&nbsp;a également été refondue&#8230;</p>
<p>Vous le trouverez en téléchargement sur le <a href="http://trac.herewithme.fr/project/simpletagging/wiki/STP-French/T%C3%A9l%C3%A9chargements">trac de SimpleTagging</a>.</p>
<p>Et également sur la <a href="http://wordpress.org/extend/plugins/simple-tagging-plugin/">section plugins de WordPress.org</a></p>
<p>Bon blogging ! et n&#8217;oubliez pas de tagger vos articles !</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/plugins/" title="Plugins" rel="tag nofollow">Plugins</a>, <a href="http://www.herewithme.fr/tag/tagging/" title="Tagging" rel="tag nofollow">Tagging</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a>, <a href="http://www.herewithme.fr/tag/wordpress-francophone/" title="WordPress Francophone" rel="tag nofollow">WordPress Francophone</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/05/20/ma-liste-de-plugins-wordpress-est/" title="Ma liste de plugins WordPress est&#8230; (20 mai 2007)">Ma liste de plugins WordPress est&#8230;</a> (16)</li>
	<li><a href="http://www.herewithme.fr/2007/04/28/tuto-migrer-de-ultimate-tag-warrior-vers-simple-tagging/" title="[Tuto] Migrer de Ultimate Tag Warrior vers Simple Tagging ! (28 avril 2007)">[Tuto] Migrer de Ultimate Tag Warrior vers Simple Tagging !</a> (30)</li>
	<li><a href="http://www.herewithme.fr/2006/12/14/2me-rencontre-wordpress-francophone/" title="[MAJ] 2&egrave;me rencontre WordPress Francophone ! (14 décembre 2006)">[MAJ] 2&egrave;me rencontre WordPress Francophone !</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/06/01/sortie-de-simple-tagging-166/feed/</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>Ma liste de plugins WordPress est&#8230;</title>
		<link>http://www.herewithme.fr/2007/05/20/ma-liste-de-plugins-wordpress-est/</link>
		<comments>http://www.herewithme.fr/2007/05/20/ma-liste-de-plugins-wordpress-est/#comments</comments>
		<pubDate>Sun, 20 May 2007 18:12:24 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Tagging]]></category>
		<category><![CDATA[Thème]]></category>
		<category><![CDATA[Thèmes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/05/20/ma-liste-de-plugins-wordpress-est.html</guid>
		<description><![CDATA[&#8230;.ridicule comparée à celle de Gonzague! Elle contient : Un antispam : Akismet Un plugin de colorisation de code: Code Snippet Le classique Feedburner Feed Replacement&#160;pour mes flux. Un aperçu en AJAX pour les commentaires: Filosofo Comments Preview La liste des derniers commentaires: Get Recent Comments&#160;mais modifié pour mes besoins (filtre par catégorie) Un générateur [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;.ridicule comparée à celle de <cite><a href="http://blog.gonzaguedambricourt.com/2007/05/15/f-wpplugins-list-la-liste-des-plugins-wordpress-de-la-blogosphre-frenchie/">Gonzague</a></cite>!</p>
<p>Elle contient :</p>
<ul>
<li>Un antispam : <strong><a href="http://akismet.com/">Akismet</a></strong></li>
<li>Un plugin de colorisation de code: <a href="http://wordpress.org/extend/plugins/codesnippet-20/"><strong>Code Snippet</strong></a></li>
<li>Le classique <strong><a href="http://orderedlist.com/wordpress-plugins/feedburner-plugin/">Feedburner Feed Replacement</a>&nbsp;</strong>pour mes flux.</li>
<li>Un aperçu en AJAX pour les commentaires: <strong><a href="http://www.ilfilosofo.com/blog/comments-preview/">Filosofo Comments Preview</a></strong></li>
<li>La liste des derniers commentaires: <a href="http://blog.jodies.de/archiv/2004/11/13/recent-comments/"><strong>Get Recent Comments</strong></a>&nbsp;mais modifié pour mes besoins (filtre par catégorie)</li>
<li>Un générateur de sitemaps XML: <strong><a href="http://www.arnebrachhold.de/redir/sitemap-home/">Google (XML) Sitemaps</a></strong></li>
<li>Un générateur de mots clés, métas html : <a href="http://blog.phpheaven.hu/index.php/category/wordpress/gwp-metaadmin/"><strong>GWP &#8211; MetaAdmin</strong></a></li>
<li><strong><a href="http://soderlind.no/ImageManager">ImageManager</a></strong>, bien que je ne l&#8217;utilise plus. (WLW Powa)</li>
<li>La signalisation des différents types de liens grâce&nbsp;à&nbsp;<a href="http://sw-guide.de/wordpress/link-indication-plugin/"><strong>Link Indication</strong></a></li>
<li><strong><a href="http://www.wildbits.de/mygallery/">myGallery</a></strong>&nbsp;pour gérer les galeries de <a href="http://www.herewithme.fr/tag/themes/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thèmes">thèmes</a>.</li>
<li>Le formulaire de contact : <strong><a href="http://www.phrixus.co.uk/pxsmail/">PXS Mail Form</a></strong></li>
<li><strong><a href="http://alexking.org/projects/wordpress">Share This</a></strong>&nbsp;: pour le partage d&#8217;articles</li>
<li>La gestion des tags grâce à <a href="http://simpletagging.herewithme.fr"><strong>Simple Tagging</strong></a>&nbsp;(étonnant non?)</li>
<li><strong><a href="http://txfx.net/code/wordpress/subscribe-to-comments/">Subscribe To Comments</a></strong>&nbsp;pour s&#8217;abonner aux commentaires</li>
<li><strong><a href="http://www.lesterchan.net/portfolio/programming.php">WP-PageNavi</a></strong>&nbsp;pour la navigation entre les pages</li>
</ul>
<p>&nbsp;</p>
<p>Je n&#8217;ai que ca.</p>
<p>Et c&#8217;est deja beaucoup trop à mon goût !</p>
<p>Des suggestions ? Es ce que je rate le plugin de la mort qui tue ?</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/plugins/" title="Plugins" rel="tag nofollow">Plugins</a>, <a href="http://www.herewithme.fr/tag/tagging/" title="Tagging" rel="tag nofollow">Tagging</a>, <a href="http://www.herewithme.fr/tag/theme/" title="Thème" rel="tag nofollow">Thème</a>, <a href="http://www.herewithme.fr/tag/themes/" title="Thèmes" rel="tag nofollow">Thèmes</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/04/28/tuto-migrer-de-ultimate-tag-warrior-vers-simple-tagging/" title="[Tuto] Migrer de Ultimate Tag Warrior vers Simple Tagging ! (28 avril 2007)">[Tuto] Migrer de Ultimate Tag Warrior vers Simple Tagging !</a> (30)</li>
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2007/07/28/explications-sur-linternationalisation-de-wordpress-et-crer-un-fichier-po-avec-poedit/" title="Explications sur l&#8217;internationalisation de WordPress et cr&eacute;er un fichier PO avec Poedit (28 juillet 2007)">Explications sur l&#8217;internationalisation de WordPress et cr&eacute;er un fichier PO avec Poedit</a> (13)</li>
	<li><a href="http://www.herewithme.fr/2007/07/20/2-nouveaux-thmes-franciss-pour-wordpress/" title="2 nouveaux th&egrave;mes francis&eacute;s pour WordPress ! (20 juillet 2007)">2 nouveaux th&egrave;mes francis&eacute;s pour WordPress !</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/05/20/ma-liste-de-plugins-wordpress-est/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Je suis un boulet.</title>
		<link>http://www.herewithme.fr/2007/04/13/je-suis-un-boulet/</link>
		<comments>http://www.herewithme.fr/2007/04/13/je-suis-un-boulet/#comments</comments>
		<pubDate>Fri, 13 Apr 2007 15:23:53 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/04/13/je-suis-un-boulet.html</guid>
		<description><![CDATA[Demain j&#8217;arrête l&#8217;info&#8230; Tags: Blogging Articles relatifs Yahoo et Bot Encarta pour Live Messenger (1) WordPressMu : Copie &#224; revoir&#8230; (9) WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs (2) Vous avez dit &#34;Blog au ralenti ?&#34; (4) Voeux de nouvelle ann&#233;e 2007 version Geek (2)]]></description>
			<content:encoded><![CDATA[<p>Demain j&#8217;arrête l&#8217;info&#8230;</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2006/07/05/yahoo-et-bot-encarta-pour-live-messenger/" title="Yahoo et Bot Encarta pour Live Messenger (5 juillet 2006)">Yahoo et Bot Encarta pour Live Messenger</a> (1)</li>
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2008/06/01/wpmu-astuce-pas-proposer-page-inscription-visiteurs/" title="WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs (1 juin 2008)">WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs</a> (2)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/12/31/voeux-de-nouvelle-anne-2007-version-geek/" title="Voeux de nouvelle ann&eacute;e 2007 version Geek (31 décembre 2006)">Voeux de nouvelle ann&eacute;e 2007 version Geek</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/04/13/je-suis-un-boulet/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Nouveau th&#232;me pour HereWithMe.fr !</title>
		<link>http://www.herewithme.fr/2007/04/12/nouveau-thme-pour-herewithmefr/</link>
		<comments>http://www.herewithme.fr/2007/04/12/nouveau-thme-pour-herewithmefr/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 19:54:09 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Thème]]></category>
		<category><![CDATA[Thèmes]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/04/12/nouveau-thme-pour-herewithmefr.html</guid>
		<description><![CDATA[Je profite de ces vacances de Pâques pour publier le nouveau thème de mon blog Here With Me. Ce truc ? Oui ce truc ! Je sais ! C&#8217;est sombre. C&#8217;est bizarre. C&#8217;est déroutant. C&#8217;est le but. J&#8217;en avais marre d&#8217;utiliser des thèmes existants. Et&#160;bien qu&#8217;un grand nombre d&#8217;entre eux soit réussi, ils ont tous [...]]]></description>
			<content:encoded><![CDATA[<p>Je profite de ces vacances de Pâques pour publier le nouveau <a href="http://www.herewithme.fr/tag/theme/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thème">thème</a> de mon blog Here With Me.</p>
<ul>
<li><span style="color:#ff8040"><em>Ce truc ?</em></span></li>
<li><em><span style="color:#ffffff">Oui ce truc !</span></em></li>
</ul>
<p>Je sais ! C&#8217;est sombre. C&#8217;est bizarre. C&#8217;est déroutant.</p>
<p><strong>C&#8217;est le but.</strong></p>
<p>J&#8217;en avais marre d&#8217;utiliser des <a href="http://www.herewithme.fr/tag/themes/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thèmes">thèmes</a> existants.</p>
<p>Et&nbsp;bien qu&#8217;un grand nombre d&#8217;entre eux soit réussi, ils ont tous un défaut de taille&#8230;&nbsp;Vous n&#8217;êtes pas le seul à l&#8217;utiliser&#8230;</p>
<p>Vos visiteurs, lorsqu&#8217;ils consultent votre blog, associent naturellement la chartre graphique à l&#8217;adresse internet, le nom du blog, la thématique de ce dernier. Avec un <a href="http://www.herewithme.fr/tag/theme/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thème">thème</a> comme K2, il est impossible d&#8217;associer quoi que ce soit ! (vu que plus de 5000 personnes l&#8217;utilisent !)</p>
<p>D&#8217;où la réalisation de ce <a href="http://www.herewithme.fr/tag/theme/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thème">thème</a> from scratch (de zéro) !</p>
<p>Toutefois, il n&#8217;est pas finalisé à 100%, des améliorations restent à venir. (surtout l&#8217;intégration de plug-ins tiers)</p>
<p>Alors convaincu par le <a href="http://www.herewithme.fr/tag/theme/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thème">thème</a> ? oui ? non ? et pourquoi ?</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/theme/" title="Thème" rel="tag nofollow">Thème</a>, <a href="http://www.herewithme.fr/tag/themes/" title="Thèmes" rel="tag nofollow">Thèmes</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/04/13/peu-dactus-les-raisons/" title="Peu d&#8217;actus? les raisons&#8230; (13 avril 2006)">Peu d&#8217;actus? les raisons&#8230;</a> (3)</li>
	<li><a href="http://www.herewithme.fr/2006/07/06/nouveautes-sur-le-blog/" title="Nouveautés sur le blog&#8230; (6 juillet 2006)">Nouveautés sur le blog&#8230;</a> (0)</li>
	<li><a href="http://www.herewithme.fr/2007/05/20/ma-liste-de-plugins-wordpress-est/" title="Ma liste de plugins WordPress est&#8230; (20 mai 2007)">Ma liste de plugins WordPress est&#8230;</a> (16)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/04/12/nouveau-thme-pour-herewithmefr/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>HereWithMe.fr tr&#232;s lent ? c&#8217;est r&#233;solu !</title>
		<link>http://www.herewithme.fr/2007/04/10/herewithmefr-trs-lent-cest-rsolu/</link>
		<comments>http://www.herewithme.fr/2007/04/10/herewithmefr-trs-lent-cest-rsolu/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 20:51:43 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Tagging]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/04/10/herewithmefr-trs-lent-cest-rsolu.html</guid>
		<description><![CDATA[Flux RSS non disponible. TimeOut 30 seconde la génération de page C&#8217;est terminé ! Après de longues recherches, j&#8217;ai trouvé l&#8217;origine du problème, 14 000 lignes liées au plug-in UTW dans la table de méta des articles. Un sacré bug&#8230; qui a le mérite d&#8217;extrêmement ralentir WordPress. Solution : Installation de Simple Tagging Import des [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>Flux RSS non disponible.</li>
<li>TimeOut</li>
<li>30 seconde la génération de page</li>
</ul>
<p>C&#8217;est terminé !</p>
<p>Après de longues recherches, j&#8217;ai trouvé l&#8217;origine du problème, 14 000 lignes liées au plug-in UTW dans la table de méta des articles.</p>
<p>Un sacré bug&#8230; qui a le mérite d&#8217;extrêmement ralentir <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>.</p>
<p><strong>Solution :</strong></p>
<ol>
<li>Installation de Simple Tagging</li>
<li>Import des tags de UTW</li>
<li>Suppression du plug-in UTW</li>
<li>Nettoyage de la base de données</li>
</ol>
<p>Et hop ! un blog rapide !</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/tagging/" title="Tagging" rel="tag nofollow">Tagging</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/06/01/sortie-de-simple-tagging-166/" title="Sortie de Simple Tagging <strike>1.6.6</strike> <strong>1.6.7</strong> ! (1 juin 2007)">Sortie de Simple Tagging <strike>1.6.6</strike> <strong>1.6.7</strong> !</a> (49)</li>
	<li><a href="http://www.herewithme.fr/2007/05/20/ma-liste-de-plugins-wordpress-est/" title="Ma liste de plugins WordPress est&#8230; (20 mai 2007)">Ma liste de plugins WordPress est&#8230;</a> (16)</li>
	<li><a href="http://www.herewithme.fr/2007/04/28/tuto-migrer-de-ultimate-tag-warrior-vers-simple-tagging/" title="[Tuto] Migrer de Ultimate Tag Warrior vers Simple Tagging ! (28 avril 2007)">[Tuto] Migrer de Ultimate Tag Warrior vers Simple Tagging !</a> (30)</li>
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/04/10/herewithmefr-trs-lent-cest-rsolu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bloguer ? oui ! mais comment et avec quels outils ?</title>
		<link>http://www.herewithme.fr/2007/04/10/bloguer-oui-mais-comment-et-avec-quels-outils/</link>
		<comments>http://www.herewithme.fr/2007/04/10/bloguer-oui-mais-comment-et-avec-quels-outils/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 16:40:28 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Hébergement]]></category>
		<category><![CDATA[Serveur]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Windows Live Writer]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/04/10/blogguer-oui-mais-comment-et-avec-quels-outils.html</guid>
		<description><![CDATA[Tout comme Jean-François Ruiz (qui m&#8217;a sympathiquement pingé), je ne suis pas FAN des chaines en général&#8230; Les chaines&#8230; Un phénomène omniprésent depuis le début de l&#8217;ère internet ! Les emails, le précurseur ! (chaine d&#8217;amitié, chaine de soutien, chaine contre la fermeture de MSN, chaine anti-chaines, etc.) Les forums, le digne successeur ! (chaine [...]]]></description>
			<content:encoded><![CDATA[<p>Tout comme <a href="http://www.webdeux.info/mes-outils-de-blogueur-une-chaine-intressante">Jean-François Ruiz</a> (qui m&#8217;a sympathiquement pingé), je ne suis pas FAN des chaines en général&#8230;</p>
<h3>Les chaines&#8230;</h3>
<p>Un phénomène omniprésent depuis le début de l&#8217;ère internet !</p>
<ul>
<li>Les emails,  le précurseur ! (chaine d&#8217;amitié, chaine de soutien, chaine contre la fermeture de MSN, chaine anti-chaines, etc.)</li>
<li>Les forums, le digne successeur ! (chaine de mots, chaine de blagues, chaine des couches tard, chaine des filles&#8230;)</li>
</ul>
<p>Et maintenant les chaines de blogueurs ! (la nouvelle génération !)</p>
<p>À quand les chaines par podcast vidéo ? (en fait je suis sur que ça existe déjà&#8230;)</p>
<h3>Reprenons !</h3>
<p>Cette chaine débutée par <a href="http://www.guim.fr/blog/2007/03/quel_est_votre_.html">Guillaume Frat</a>, a comme objectif de savoir quels outils sont utilisés par les blogueurs (plus ou moins influents).</p>
<p>Comme le signale JF dans son article, la &laquo;&nbsp;plus value&nbsp;&raquo; de cette chaine est qu&#8217;elle soit suivie et analysée par un <a href="http://www.donkeyword.com/2007-03-25/blog/quont-ils-mis-dans-leur-boite-a-outils/">blogueur</a>. (original, mais l&#8217;idée est sympa)</p>
<h3>Mes outils pour bloguer</h3>
<p><strong><a href="http://www.herewithme.fr/tag/hebergement/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Hébergement">Hébergement</a></strong></p>
<p>Longtemps chez 1and1, j&#8217;ai opté pour un serveur dédié low-cost, la <strong>dedibox</strong>. Pas vraiment déçu&#8230; pas vraiment satisfait, je risque de me tourner vers un dédié bas de gamme de chez OVH d&#8217;içi quelque temps. (plus de précision dans un prochain billet à ce sujet)</p>
<p><strong>Plate-forme de blog</strong></p>
<p><strong><a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a></strong> sans hésitation.</p>
<p>Cela dit, pour les fans de Ruby, l&#8217;outil Mephisto s&#8217;améliore grandement. À surveiller de près&#8230;</p>
<p><strong>Outil de publication de bureau ou online</strong></p>
<p>Étant donné que je n&#8217;écris pas dans un blog collaboratif pur et dure, je ne trouve pas le besoin d&#8217;avoir un outil en ligne, ou collaboratif. Je travaille donc exclusivement avec <strong>Windows Live Writer</strong>. (Une pure merveille, même si les standards ne sont pas encore son point fort !)(Et parfois l&#8217;éditeur de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>, pour des mises en pages spécifiques.)</p>
<p>Je précise, j&#8217;utilise en addition à n&#8217;importe quel outil de publication, l&#8217;excellentissime Antidote, pour l&#8217;orthographe :) (je suis fainéant)</p>
<p><strong>Outil de mesure de fréquentation / statistiques</strong></p>
<p>Ça dépend mon humeur en fait. Si je souhaite flatter mon égo, je consulte les statistiques serveur, autrement j&#8217;utilise StatsCounter et Google Analytics.</p>
<p><strong>Outil de promotion / publicité</strong></p>
<p>Pas de publicité sur mes sites. Quant à la promotion, le plug-in &laquo;&nbsp;Share This&nbsp;&raquo;, donne la possibilité à mes visiteurs de signaler mes articles dans divers services Web 2.0.</p>
<p><strong>Outil d&#8217;agrégation de contenus</strong></p>
<p><a href="http://www.netvibes.com/">Netvibes</a> principalement, indirectement des flux issus de <a href="http://www.xfruits.com/">Xfruits,</a> sans oublier les publications de mon réseau <a href="http://www.ziki.com/people/amoo59/">Ziki</a> ;)</p>
<p><strong>Outil de mise en forme / édition graphique</strong></p>
<p>Adobe Photoshop (rarement)</p>
<h3>Pour finir&#8230;</h3>
<p>Je pose la (même) question aux blogueurs suivants : <a href="http://blog.boldr.fr/">Nicolas Merouze</a> (Spécialiste ROR), <a href="http://sebeuh.ajsinfo.net/blog/">Sebastien Warin</a> (Spécialiste .NET), <a href="http://www.blogum.net/">Matthieu Bellon</a> (Fondateur de communauté), et <a href="http://xavier.borderie.net/blog/">Xavier Borderie</a> (Traducteur français de WP, ancien journaliste du JDN et nouveau chez NetVibes).</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/hebergement/" title="Hébergement" rel="tag nofollow">Hébergement</a>, <a href="http://www.herewithme.fr/tag/serveur/" title="Serveur" rel="tag nofollow">Serveur</a>, <a href="http://www.herewithme.fr/tag/web-20/" title="Web 2.0" rel="tag nofollow">Web 2.0</a>, <a href="http://www.herewithme.fr/tag/windows-live-writer/" title="Windows Live Writer" rel="tag nofollow">Windows Live Writer</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2006/09/29/mise-jour-de-windows-live-writer/" title="Mise &agrave; jour de Windows Live Writer (29 septembre 2006)">Mise &agrave; jour de Windows Live Writer</a> (3)</li>
	<li><a href="http://www.herewithme.fr/2007/01/23/en-vrac-free-dedibox-life-iphone-wordpress-mech/" title="En vrac&#8230; free, dedibox, life, iphone, wordpress, mech&#8230; (23 janvier 2007)">En vrac&#8230; free, dedibox, life, iphone, wordpress, mech&#8230;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/08/21/en-introduction-lexpo-starwars/" title="En introduction &agrave; l&#8217;expo StarWars&#8230; (21 août 2006)">En introduction &agrave; l&#8217;expo StarWars&#8230;</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/04/10/bloguer-oui-mais-comment-et-avec-quels-outils/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mettez vos blogs &#224; jours !</title>
		<link>http://www.herewithme.fr/2007/03/03/mettez-vos-blogs-jours/</link>
		<comments>http://www.herewithme.fr/2007/03/03/mettez-vos-blogs-jours/#comments</comments>
		<pubDate>Sat, 03 Mar 2007 21:42:50 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/03/03/mettez-vos-blogs-jours.html</guid>
		<description><![CDATA[Je ne vais pas non plus réécrire&#160;75 fois la même chose :) Donc, je vous renvoie vers les 2 articles que j&#8217;ai écrits et coécrits à propos&#160;du problème de sécurité qu&#8217;a rencontré WordPress.org et indirectement WordPress 2.1.2. Pack français à jour ! WordPress 2.1.2 FR ! Sortie de WordPress 2.1.2 : Mise à jour de [...]]]></description>
			<content:encoded><![CDATA[</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="81" src="http://herewithme.fr/wp-content/uploads/WLW/Mettezvosblogsjours_13F64/wp5.png" width="82" align="right" border="0"> Je ne vais pas non plus réécrire&nbsp;75 fois la même chose :)</p>
<p>Donc, je vous renvoie vers les 2 articles que j&#8217;ai écrits et coécrits à propos&nbsp;du problème de sécurité qu&#8217;a rencontré <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>.org et indirectement <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> 2.1.2.</p>
<ul>
<li><a href="http://www.wordpress-fr.net/2007/03/03/pack-franais-jour-wordpress-212-fr/"><strong>Pack français à jour ! WordPress 2.1.2 FR !</strong></a></li>
<li><a href="http://www.wordpress-fr.net/2007/03/03/sortie-de-wordpress-212-mise-a-jour-de-securite-majeure/">Sortie de WordPress 2.1.2 : Mise à jour de sécurité majeure</a></li>
</ul>
<p>À noter que c&#8217;est moi qui ait&nbsp;réalisé le pack français pour cette version, pour la toute première fois :D (un petit pincement au coeur)</p>
<p>Un petit coup de main à l&#8217;ami Xavier lui fera le plus grand bien :) (pau&#8217;v petit, ils lui ont filé un MAC à&nbsp;NetVibes !!!)</p>
<p>Suffit de voir <a href="http://xavier.borderie.net/blog/2007/03/03/portrait-crache/">son dernier article</a> pour comprendre de quoi je parle&#8230;</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2008/06/01/wpmu-astuce-pas-proposer-page-inscription-visiteurs/" title="WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs (1 juin 2008)">WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs</a> (2)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/06/01/sortie-de-simple-tagging-166/" title="Sortie de Simple Tagging <strike>1.6.6</strike> <strong>1.6.7</strong> ! (1 juin 2007)">Sortie de Simple Tagging <strike>1.6.6</strike> <strong>1.6.7</strong> !</a> (49)</li>
	<li><a href="http://www.herewithme.fr/2006/04/13/peu-dactus-les-raisons/" title="Peu d&#8217;actus? les raisons&#8230; (13 avril 2006)">Peu d&#8217;actus? les raisons&#8230;</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/03/03/mettez-vos-blogs-jours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>En vrac&#8230; free, dedibox, life, iphone, wordpress, mech&#8230;</title>
		<link>http://www.herewithme.fr/2007/01/23/en-vrac-free-dedibox-life-iphone-wordpress-mech/</link>
		<comments>http://www.herewithme.fr/2007/01/23/en-vrac-free-dedibox-life-iphone-wordpress-mech/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 15:59:10 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Serveur]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/01/22/en-vrac-free-dedibox-life-iphone-wordpress-mech.html</guid>
		<description><![CDATA[Free ADSL/ Appart J&#8217;ai enfin une connexion ADSL&#160;dans mon appartement!&#160; Ça vous change la vie cette petite&#160;chose-là&#8230; un grand merci au technicien de Free, très professionnel, très sympa, 1re fois que j&#8217;ai affaire au SAV de Free et je suis ravi&#8230; (Même si à l&#8217;avenir je m&#8217;en passerai bien !) Quelques points négatifs&#8230; Atténuation théorique [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Free ADSL/ Appart</strong>
<p>J&#8217;ai enfin une connexion ADSL&nbsp;dans mon appartement!&nbsp;</p>
<p>Ça vous change la vie cette petite&nbsp;chose-là&#8230; un grand merci au technicien de Free, très professionnel, très sympa, 1re fois que j&#8217;ai affaire au SAV de Free et je suis ravi&#8230; (Même si à l&#8217;avenir je m&#8217;en passerai bien !)</p>
<p>Quelques points négatifs&#8230; Atténuation théorique de 30db&#8230; en pratique ça donne 48db,&nbsp;le débit bien atténué..&nbsp;Et la puissance du signal Wifi de ma freebox est bizarrement faible&#8230; même à 30 centimètres&#8230; quelqu&#8217;un a déjà eu ce problème ?</p>
<p><strong>Migration vers la dédibox réussie !</strong>&nbsp;
<p>1and1, c&#8217;est certes pas cher, mais c&#8217;est lent&#8230; vraiment trop lent&#8230; me voilà donc sur une dédibox (serveur dédié low-cost de chez free) en coloc avec mon&nbsp;collègue et formateur Nicolas Mérouze (<a href="http://blog.boldr.fr/">boldr.fr</a>), en espérant que tout se passe bien !</p>
<p>Dédié, ça veut dire plein de choses pour moi&#8230; par exemple :</p>
<ul>
<li>Installation de WordPressMu avec les bons noms de domaines.
<li>Possibilité de m&#8217;initier à Ruby, et ROR
<li>Possibilité de tester Mephisto
<li>Un espace de stockage immense ! (150go ce n’est pas facile à remplir !)
<li>Et surtout la main mise complète sur le serveur&#8230; la mise à jour de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> devient alors un plaisir.</li>
</ul>
<p>D&#8217;ailleurs est-ce que quelqu&#8217;un connait un bon tutorial pour installer PHP5&nbsp;en FastCGI sur Apache2 ?</p>
<p><strong>Iphone de Apple</strong></p>
<p>Pour ne pas faire comme tout le monde&#8230; moi aussi je le veux !!</p>
<p>En attendant fin&nbsp;2007, la version <a href="http://www.herewithme.fr/temp/iphone_readymech.pdf">papier</a>&#8230;</p>
<p><strong>Un plug-in sympathique pour <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a></strong></p>
<p>En attendant, le gros plug-in <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> que je finalise&nbsp;depuis ce début de semaine, voila un tout petit plug-in <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> développé par mon ami Kevin (I<a href="http://inside-dev.net/">nside-dev.net</a>)&nbsp;:</p>
<p><a href="http://inside-dev.net/index.php/portfolio/"><strong>&laquo;&nbsp;Read More SEO&nbsp;&raquo;</strong></a><strong>,</strong> pour simplifier la chose, ça affiche vos articles en entier aux moteurs de recherche, mais uniquement l&#8217;extrait à vos visiteurs humains, simple, mais terriblement efficace !</p>
<p>Voilà pour aujourd&#8217;hui ! @ demain pour de nouvelles aventures !</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/serveur/" title="Serveur" rel="tag nofollow">Serveur</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/04/10/bloguer-oui-mais-comment-et-avec-quels-outils/" title="Bloguer ? oui ! mais comment et avec quels outils ? (10 avril 2007)">Bloguer ? oui ! mais comment et avec quels outils ?</a> (0)</li>
	<li><a href="http://www.herewithme.fr/2007/02/18/techdays-2007-php-sur-windows-projet-phalanger/" title="[TechDays 2007] PHP sur Windows / Projet Phalanger (18 février 2007)">[TechDays 2007] PHP sur Windows / Projet Phalanger</a> (6)</li>
	<li><a href="http://www.herewithme.fr/2008/03/07/wordpress-memcached-et-pecl-memcache-la-solution-pour-les-blogs-a-gros-trafic/" title="WordPress, Memcached et PECL Memcache : La solution pour les blogs a gros trafic ! (7 mars 2008)">WordPress, Memcached et PECL Memcache : La solution pour les blogs a gros trafic !</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/01/23/en-vrac-free-dedibox-life-iphone-wordpress-mech/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPressMu : Copie &#224; revoir&#8230;</title>
		<link>http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/</link>
		<comments>http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 09:20:02 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Automattic]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Développement]]></category>
		<category><![CDATA[Logiciel]]></category>
		<category><![CDATA[Matériel]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Serveur]]></category>
		<category><![CDATA[Thème]]></category>
		<category><![CDATA[Thèmes]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Francophone]]></category>
		<category><![CDATA[WordPress Mu]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir.html</guid>
		<description><![CDATA[Comme d&#8217;habitude, je suis la mode&#8230; mais en retard. Alors comme tout le monde, je vais donne mon avis sur WordPressMu. C&#8217;est quoi WordPress Mu ? Très longtemps en version alpha, Automattic, maison mère de WordPress and Co, a publié fin 2006, la version multi utilisateurs de l&#8217;outil de blog WordPress. Jusque la rien de [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.herewithme.fr/wp-content/uploads/2007/01/WindowsLiveWriter/WordPressMucopierevoir_113F4/logoRange%5B11%5D.png" style="border-width: 0px; margin: 0px 15px 0px 0px" align="left" border="0" height="120" width="120" /> Comme d&#8217;habitude, je suis la mode&#8230; mais en retard.</p>
<p>Alors comme tout le monde, je vais donne mon avis sur WordPressMu.</p>
<h3>C&#8217;est quoi <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> Mu ?</h3>
<p>Très longtemps en version alpha, Automattic, maison mère de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> and Co, a publié fin 2006, la version multi utilisateurs de l&#8217;outil de blog <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>.</p>
<p>Jusque la rien de révolutionnaire dans le monde des CMS !</p>
<p>Sauf, que peu de temps après ce passage en version 1, la plateforme de blog de LeMonde.fr quitte la solution propriétaire et payante TypePad pour WPmu. (Sans aucune critique quant au logiciel même)</p>
<p>Et la c&#8217;est le buzz de fin d&#8217;année 2006, tout le monde parle de WordPressMu, tout le monde l&#8217;installe (en local), tout le monde installe 3 blogs et dit que c&#8217;est trop bien !</p>
<p>&#8230;</p>
<p>Si ca pouvait être vrai&#8230;</p>
<p>Et bah moi je ne pense pas que c&#8217;est trop bien, je pense même que c&#8217;est plutôt nul. Explications&#8230;</p>
<h3>Politique de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>.org / Automattic</h3>
<p>Vous l&#8217;aurez remarqué, très peu de communication officielle autour de WPmu, un site officiel très succinct, pas de communication particulière d&#8217;Automattic envers WPmu.</p>
<p>Bref un vide intergalactique autour de WPmu de la part d&#8217;Automattic.</p>
<p>Du style, &laquo;&nbsp;bon les gars, on release la version 1 de WPmu, mais faites y pas attention&#8230;&nbsp;&raquo;</p>
<p>Et bah ils ont tout faux. Pleins de blogs en parlent, à tort et à travers la plupart du temps, et finalement WordPressMu se présente comme une solution sympa, simple et performante pour gérer le multi blog.</p>
<p><strong>Première erreur.</strong></p>
<h3>Les dangers et dérives</h3>
<p>Cette philosophie (de considérer WP Mu comme un logiciel grand public, pour ce qui n&#8217;aurait pas suivi) va probablement augmenter le nombre de plateforme de blogging sur la toile.</p>
<p><strong>Chouette !</strong></p>
<p>Pleins d&#8217;alternatives, au méchant TypePad; Skyblog, Nrjblog et autres plateformes pour JeunZs !</p>
<p>Bonne nouvelle on pourrait se dire&#8230; bah pas vraiment&#8230;</p>
<p>Par expérience personnelle, et de part ce que je lis sur le forum de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> France, je vois débarquer plein de boyscouts, posant plein de questions sur WordPressMu. Courageux de leur part n&#8217;est ce pas ?</p>
<p>Mais ce qui me désole&#8230; c&#8217;est que pour la grande majorité d&#8217;entre eux&#8230; PHP, XHTML, MySQL sont des sciences obscures&#8230;</p>
<p>C&#8217;est un peu le même concept que la philosophie pour les terminales S&#8230;</p>
<p>Bref, des néophytes suivants la mode et souhaitant installés des WordPressMu à toutes les sauces, sur n&#8217;importe quel hébergeurs, et même chez Free.fr !!! (Mon cœur est fragile bordel !)</p>
<p>Tout ca pour dire, que le fait de ne pas communiquer intelligemment autour de WordPressMu va donner naissance à un certain nombre de nouvelle plateforme inutile et dont la seule originalité viendra du nom de domaine&#8230; et pour couronner le tout ces plateformes seront administrées par des boyscouts du WEB!</p>
<p>Hors j&#8217;estime qu&#8217;une nouvelle plateforme se justifie pour 2 raisons principalement :</p>
<ul>
<li>Idées novatrices, réel valeur ajoutée. (comme le podcasting l&#8217;a été pour Podemus)</li>
<li>Besoin spécifiques, créer des blogs pour une communauté X tels que les abonnés d&#8217;un club, ou autres&#8230;</li>
</ul>
<p>Et peu importe la raison finalement, des connaissances en <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>, PHP, XHTML, MySQL sont INDISPENSABLES !</p>
<p>Je vais reprendre l&#8217;image que j&#8217;avais formulé sur le forum de WP: Fr.</p>
<p>Si on compare <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> à WordPressMu</p>
<ul>
<li><a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> c&#8217;est un vélo, la maintenance est facile, on peut le bidouiller sans trop de problème, et si on le plante, tant pis pour soit.</li>
<li>WordPressMu c&#8217;est un Boeing 777, la maintenance est lourde, le bidouillage est proscrit, et si on le plante, on emmène 300 passagers avec soit.</li>
</ul>
<p><strong>Deuxième erreur.</strong></p>
<h3>Une architecture à revoir</h3>
<p><a href="http://www.herewithme.fr/wp-content/uploads/2007/01/WindowsLiveWriter/WordPressMucopierevoir_113F4/wpbox%5B3%5D.png" atomicselection="true"><img src="http://www.herewithme.fr/wp-content/uploads/2007/01/WindowsLiveWriter/WordPressMucopierevoir_113F4/wpbox_thumb%5B1%5D.png" style="border-width: 0px" align="right" border="0" height="120" width="91" /></a> D&#8217;un point de vue technique WordPressMu est un contre sens même.</p>
<p><strong>Pourquoi ?</strong></p>
<p>WordPressMu n&#8217;a pas été conçu et développé à l&#8217;origine pour gérer le multi blog.</p>
<p><strong>WordPressMu n&#8217;est qu&#8217;une enveloppe de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>.</strong> (c&#8217;est le site officiel qui le dit!)</p>
<p>Et comme vous pouvez vous en douter, on ne développe pas une application grand public comme <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>, comme une application professionnelle de grande envergure qu&#8217;est WordPressMu.</p>
<p>Hors&#8230;</p>
<p><a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> est un logiciel qui se veut très très très grand public (et j&#8217;insiste), développé de façon à être compatible avec un maximum d&#8217;hébergeurs, au détriment des performances.</p>
<ul>
<li>Compatibilité avec MySQL3.23, ce qui veut dire absence des sous requêtes</li>
<li>Développement PHP4 classique non orienté objet.</li>
<li>Code peu flexible</li>
</ul>
<p>Bref !</p>
<p>On utilise un script développé pour le très grand public, modifié pour l&#8217;occasion, sur des plateformes professionnelles visant à héberger 200, 1000 voir 10 000 blogs!</p>
<p>Très amateur la solution de plateforme&#8230; (En fait les grosses plateformes rencontrent des problèmes de montées en charge comparé aux solutions alternatives, le développement d&#8217;un système de cache est régulièrement cité par les équipes de dev&#8230; on l&#8217;attend&#8230; fermement&#8230;)</p>
<p><strong>Troisième erreur.</strong></p>
<h3>Mais alors c&#8217;est quoi les avantages de WordPressMu ?</h3>
<ol>
<li>C&#8217;est libre. chacun peut modifier le code sources dans le but de l&#8217;optimiser, ajouter des fonctions et pourquoi pas les partager à la communauté.</li>
<li>WPmu fonctionne avec les <a href="http://www.herewithme.fr/tag/themes/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thèmes">thèmes</a> de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>. Soit plus de 1100 <a href="http://www.herewithme.fr/tag/themes/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Thèmes">thèmes</a>.</li>
<li>WordPressMu fonctionne avec une partie des <a href="http://www.herewithme.fr/tag/plugins/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Plugins">plugins</a> de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>.</li>
<li>C&#8217;est un produit jeune, espérons que les prochaines versions apporteront des changements significatifs !</li>
</ol>
<h3>Et <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>.com et leurs 600 000 blogs, ils font comment ?</h3>
<ol>
<li>Il dispose d’une très grosse architecture matérielle, on parle de cluster de serveurs.</li>
<li>Ils utilisent une version WPmu largement modifié</li>
<li>Ils ont dans leur équipe, les développeurs de WPmu, c&#8217;est plus simple de modifier une application lorsqu&#8217;on connait le code par cœur ;)</li>
</ol>
<h3>Conclusion</h3>
<ol>
<li>Arrêter de rêver, vous ne deviendrez pas riche en lançant votre plateforme de blog ! (sauf si elle possède des fonctions uniques et novatrices !!!)</li>
<li>Si vous ne disposez pas de compétences en développement, faites appel à des professionnels&#8230; (<a href="http://www.wordpress-fr.net/services">le formulaire de contact de WP Francophone</a>, vous permettra d&#8217;être mis en relation avec des prestataires spécialisés WPmu et WP.)</li>
<li>Si vous souhaitez mettre en place 5-6 blogs pour vous et vos amis, installer des versions de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> indépendantes ! (le temps d&#8217;installation initial sera plus long mais au final vous y gagnerez en souplesse !)</li>
</ol>
<p><strong>Pour conclure</strong>, disons que <strong>WordPressMu</strong> ne dispose pas de concurrent libre, de ce fait l&#8217;utiliser n&#8217;est pas une aberration, mais alors dans ce cas, il faut y mettre  les moyens, une équipe de développeurs n&#8217;étant pas de trop&#8230; (À l&#8217;image de lemonde.fr par exemple)</p>
<p><em><strong>PS </strong>: Je n&#8217;ai rien contre les scouts&#8230; </em></p>
<p><em><strong>PPS :</strong> Ceci est une réflexion strictement personnelle, et ne reflète nullement celui de mon agence web et de <a href="http://www.herewithme.fr/tag/wordpress-francophone/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress Francophone">WordPress Francophone</a>.</em></p>

	Tags: <a href="http://www.herewithme.fr/tag/automattic/" title="Automattic" rel="tag nofollow">Automattic</a>, <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/developpement/" title="Développement" rel="tag nofollow">Développement</a>, <a href="http://www.herewithme.fr/tag/logiciel/" title="Logiciel" rel="tag nofollow">Logiciel</a>, <a href="http://www.herewithme.fr/tag/materiel/" title="Matériel" rel="tag nofollow">Matériel</a>, <a href="http://www.herewithme.fr/tag/plugins/" title="Plugins" rel="tag nofollow">Plugins</a>, <a href="http://www.herewithme.fr/tag/serveur/" title="Serveur" rel="tag nofollow">Serveur</a>, <a href="http://www.herewithme.fr/tag/theme/" title="Thème" rel="tag nofollow">Thème</a>, <a href="http://www.herewithme.fr/tag/themes/" title="Thèmes" rel="tag nofollow">Thèmes</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a>, <a href="http://www.herewithme.fr/tag/wordpress-francophone/" title="WordPress Francophone" rel="tag nofollow">WordPress Francophone</a>, <a href="http://www.herewithme.fr/tag/wordpress-mu/" title="WordPress Mu" rel="tag nofollow">WordPress Mu</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/04/16/wordpress-mu-dans-le-cadre-dun-projet-professionnel/" title="WordPress Mu dans le cadre d&#8217;un projet professionnel (16 avril 2007)">WordPress Mu dans le cadre d&#8217;un projet professionnel</a> (8)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/09/24/les-4-nouveauts-dveloppeur-de-wordpress-23/" title="Les 4 nouveaut&eacute;s &quot;D&eacute;veloppeur&quot; de WordPress 2.3 (24 septembre 2007)">Les 4 nouveaut&eacute;s &quot;D&eacute;veloppeur&quot; de WordPress 2.3</a> (8)</li>
	<li><a href="http://www.herewithme.fr/2007/04/16/ressources-pour-wordpress-mu/" title="Ressources pour WordPress MU (16 avril 2007)">Ressources pour WordPress MU</a> (0)</li>
	<li><a href="http://www.herewithme.fr/2006/04/13/peu-dactus-les-raisons/" title="Peu d&#8217;actus? les raisons&#8230; (13 avril 2006)">Peu d&#8217;actus? les raisons&#8230;</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Je rame, tu rames, il rame&#8230; c&#8217;est presque fini !</title>
		<link>http://www.herewithme.fr/2007/01/03/je-rame-tu-rames-il-rame-cest-presque-fini/</link>
		<comments>http://www.herewithme.fr/2007/01/03/je-rame-tu-rames-il-rame-cest-presque-fini/#comments</comments>
		<pubDate>Wed, 03 Jan 2007 21:19:08 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2007/01/03/je-rame-tu-rames-il-rame-cest-presque-fini.html</guid>
		<description><![CDATA[&#171;&#160;We have shipped the following item to you. You should be receiving it shortly. Item title: SAMSUNG 2GB PC3200 DDR 400MHz 200Pin SODIMM 2 x 1 GB&#160;&#187; Yes ! Article totalement inintéressant je vous l&#8217;accorde :) Mais qui signifie beaucoup de chose pour moi&#160;! Et oui&#8230; je passe 90% du temps (ce qui veut vraiment [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.herewithme.fr/wp-content/uploads/2007/01/WindowsLiveWriter/Jerameturamesilrame.cestpresquefini_139B8/23832712_tp%5B6%5D.jpg" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="149" src="http://www.herewithme.fr/wp-content/uploads/2007/01/WindowsLiveWriter/Jerameturamesilrame.cestpresquefini_139B8/23832712_tp_thumb%5B4%5D.jpg" width="200" align="right" border="0"></a>
<p><em>&laquo;&nbsp;We have shipped the following item to you. You should be receiving it shortly. Item title: SAMSUNG 2GB PC3200 DDR 400MHz 200Pin SODIMM 2 x 1 GB&nbsp;&raquo;</em></p>
<p><strong>Yes !</strong></p>
<p>Article totalement inintéressant je vous l&#8217;accorde :)</p>
<p>Mais qui signifie beaucoup de chose pour moi&nbsp;! Et oui&#8230; je passe 90% du temps (ce qui veut vraiment dire beaucoup)&nbsp;à plus de 700mo occupé en mémoire, alors que je n&#8217;ai que 512mo de RAM&#8230;</p>
<p>Maintenant vous me comprenez&#8230; (ou pas&#8230;)</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2006/07/05/yahoo-et-bot-encarta-pour-live-messenger/" title="Yahoo et Bot Encarta pour Live Messenger (5 juillet 2006)">Yahoo et Bot Encarta pour Live Messenger</a> (1)</li>
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2008/06/01/wpmu-astuce-pas-proposer-page-inscription-visiteurs/" title="WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs (1 juin 2008)">WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs</a> (2)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/12/31/voeux-de-nouvelle-anne-2007-version-geek/" title="Voeux de nouvelle ann&eacute;e 2007 version Geek (31 décembre 2006)">Voeux de nouvelle ann&eacute;e 2007 version Geek</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2007/01/03/je-rame-tu-rames-il-rame-cest-presque-fini/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Voeux de nouvelle ann&#233;e 2007 version Geek</title>
		<link>http://www.herewithme.fr/2006/12/31/voeux-de-nouvelle-anne-2007-version-geek/</link>
		<comments>http://www.herewithme.fr/2006/12/31/voeux-de-nouvelle-anne-2007-version-geek/#comments</comments>
		<pubDate>Sun, 31 Dec 2006 12:34:13 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://www.herewithme.fr/2006/12/31/voeux-de-nouvelle-anne-2007-version-geek.html</guid>
		<description><![CDATA[Pour ne pas être original. Mes voeux pour la nouvelle année 2007 : http://www.geogreeting.com/view.html?z.Jk-68+gff1eva+sP637R.+fSPfAim+jDbvrl8+jqCfJ Tags: Blogging Articles relatifs Yahoo et Bot Encarta pour Live Messenger (1) WordPressMu : Copie &#224; revoir&#8230; (9) WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs (2) Vous avez dit &#34;Blog au ralenti ?&#34; (4) Test [...]]]></description>
			<content:encoded><![CDATA[<p>Pour ne pas être <a href="http://www.presse-citron.net/?2006/12/29/1641-carte-de-voeux">original</a>.</p>
<p>Mes voeux pour la nouvelle année 2007 : <a title="http://www.geogreeting.com/view.html?z.Jk-68+gff1eva+sP637R.+fSPfAim+jDbvrl8+jqCfJ" href="http://www.geogreeting.com/view.html?z.Jk-68+gff1eva+sP637R.+fSPfAim+jDbvrl8+jqCfJ">http://www.geogreeting.com/view.html?z.Jk-68+gff1eva+sP637R.+fSPfAim+jDbvrl8+jqCfJ</a></p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2006/07/05/yahoo-et-bot-encarta-pour-live-messenger/" title="Yahoo et Bot Encarta pour Live Messenger (5 juillet 2006)">Yahoo et Bot Encarta pour Live Messenger</a> (1)</li>
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2008/06/01/wpmu-astuce-pas-proposer-page-inscription-visiteurs/" title="WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs (1 juin 2008)">WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs</a> (2)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/10/21/test-calendrier/" title="Test Calendrier (21 octobre 2006)">Test Calendrier</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2006/12/31/voeux-de-nouvelle-anne-2007-version-geek/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Test Calendrier</title>
		<link>http://www.herewithme.fr/2006/10/21/test-calendrier/</link>
		<comments>http://www.herewithme.fr/2006/10/21/test-calendrier/#comments</comments>
		<pubDate>Sat, 21 Oct 2006 21:33:00 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://1-formatik.info/2006/10/15/test-calendrier/</guid>
		<description><![CDATA[Event Calendar Tags: Blogging Articles relatifs Yahoo et Bot Encarta pour Live Messenger (1) WordPressMu : Copie &#224; revoir&#8230; (9) WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs (2) Vous avez dit &#34;Blog au ralenti ?&#34; (4) Voeux de nouvelle ann&#233;e 2007 version Geek (2)]]></description>
			<content:encoded><![CDATA[<p>Event Calendar </p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2006/07/05/yahoo-et-bot-encarta-pour-live-messenger/" title="Yahoo et Bot Encarta pour Live Messenger (5 juillet 2006)">Yahoo et Bot Encarta pour Live Messenger</a> (1)</li>
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
	<li><a href="http://www.herewithme.fr/2008/06/01/wpmu-astuce-pas-proposer-page-inscription-visiteurs/" title="WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs (1 juin 2008)">WordPress Mu : Astuce pour ne pas proposer la page inscription aux visiteurs</a> (2)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/12/31/voeux-de-nouvelle-anne-2007-version-geek/" title="Voeux de nouvelle ann&eacute;e 2007 version Geek (31 décembre 2006)">Voeux de nouvelle ann&eacute;e 2007 version Geek</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2006/10/21/test-calendrier/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mise &#224; jour de Windows Live Writer</title>
		<link>http://www.herewithme.fr/2006/09/29/mise-jour-de-windows-live-writer/</link>
		<comments>http://www.herewithme.fr/2006/09/29/mise-jour-de-windows-live-writer/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 19:51:38 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows Live Writer]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://1-formatik.info/2006/09/29/mise-jour-de-windows-live-writer/</guid>
		<description><![CDATA[Avec un petit retard de 2 jours&#8230; WLW (Windows Live Writer), l&#8217;outil de blogging de chez Microsoft vient de subir une première mise à jour&#8230; Pour plus d&#8217;infos consultez mon article à ce sujet. Toujours en version beta et toujours en anglais, cette nouvelle version apporte son lot de nouveautés et de corrections&#8230; En vrac [...]]]></description>
			<content:encoded><![CDATA[<p>Avec un petit retard de 2 jours&#8230; WLW (Windows Live Writer), l&#8217;outil de blogging de chez <a href="http://www.herewithme.fr/tag/microsoft/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Microsoft">Microsoft</a> vient de subir une première mise à jour&#8230;</p>
<p>Pour plus d&#8217;infos consultez <a href="http://1-formatik.info/2006/08/22/windows-live-writer-expriences-et-conclusions/">mon article à ce sujet.</a> </p>
<p>Toujours en version beta et toujours en anglais, cette nouvelle version apporte son lot de nouveautés et de corrections&#8230;  </p>
<p>En vrac :
<ul>
<li>Support des tags améliorés</li>
<li>Support de Blogger Beta</li>
<li>Catégories triées par ordre alphabétique et meilleure synchronisation</li>
<li>Amélioration globale des performances</li>
<li>La fonction &laquo;&nbsp;coller&nbsp;&raquo; est enfin disponible pour la région &laquo;&nbsp;titre&nbsp;&raquo;</li>
<li>Ajouter de la fonction hyperlien dans le menu contextuel</li>
<li>Ajout de l&#8217;attribut title pour les liens</li>
<li>Date personnalisée pour &laquo;&nbsp;Community Server&nbsp;&raquo;</li>
<li>Raccourcis clavier améliorés</li>
<li>Gestion des PNG <strong>(enfin !)</strong></li>
<li>Amélioration de la&nbsp;détection des blogs</li>
<li>Correction de problème&nbsp;au niveau des&nbsp;liens</li>
<li>Sauvegarde de la taille de la fenêtre lors de l&#8217;ouverture d&#8217;un nouvel article</li>
<li>Historique des&nbsp;25 derniers articles</li>
</ul>
<p>Plus d&#8217;infos et téléchargements <a href="http://windowslivewriter.spaces.live.com/blog/cns!D85741BB5E0BE8AA!702.entry">ici</a> ! </p>
<p>Conclusion pas d&#8217;amélioration coté XHTML et toujours pas en français&#8230; Snif !</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/microsoft/" title="Microsoft" rel="tag nofollow">Microsoft</a>, <a href="http://www.herewithme.fr/tag/windows-live-writer/" title="Windows Live Writer" rel="tag nofollow">Windows Live Writer</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2006/08/22/windows-live-writer-expriences-et-conclusions/" title="Windows Live Writer : Exp&eacute;riences et conclusions&#8230; (22 août 2006)">Windows Live Writer : Exp&eacute;riences et conclusions&#8230;</a> (11)</li>
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/08/21/en-introduction-lexpo-starwars/" title="En introduction &agrave; l&#8217;expo StarWars&#8230; (21 août 2006)">En introduction &agrave; l&#8217;expo StarWars&#8230;</a> (2)</li>
	<li><a href="http://www.herewithme.fr/2007/04/10/bloguer-oui-mais-comment-et-avec-quels-outils/" title="Bloguer ? oui ! mais comment et avec quels outils ? (10 avril 2007)">Bloguer ? oui ! mais comment et avec quels outils ?</a> (0)</li>
	<li><a href="http://www.herewithme.fr/2007/02/18/techdays-2007-php-sur-windows-projet-phalanger/" title="[TechDays 2007] PHP sur Windows / Projet Phalanger (18 février 2007)">[TechDays 2007] PHP sur Windows / Projet Phalanger</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2006/09/29/mise-jour-de-windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>En introduction &#224; l&#8217;expo StarWars&#8230;</title>
		<link>http://www.herewithme.fr/2006/08/21/en-introduction-lexpo-starwars/</link>
		<comments>http://www.herewithme.fr/2006/08/21/en-introduction-lexpo-starwars/#comments</comments>
		<pubDate>Mon, 21 Aug 2006 21:22:50 +0000</pubDate>
		<dc:creator>Amaury</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Paris]]></category>
		<category><![CDATA[Windows Live Writer]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://1-formatik.info/2006/08/21/en-introduction-lexpo-starwars/</guid>
		<description><![CDATA[Le weekend prochain, je serais à Paris pour 2 occasions ! La raison officielle est que Samedi 26 août, au soir je serais présent à la 1ère rencontre WordPress France. Au programme, rencontre dans &#171;&#160;la vraie vie&#160;&#187; des habitués de WordPress France, pour discussion de tout et de rien, et de pourquoi pas une Association [...]]]></description>
			<content:encoded><![CDATA[<p>Le weekend prochain, je serais à <a href="http://www.herewithme.fr/tag/paris/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with Paris">Paris</a> pour 2 occasions !</p>
<p>La raison officielle est que Samedi 26 août, au soir je serais présent à la <a href="http://www.wordpress-fr.net/2006/08/03/invitation-a-lanniversaire-de-wp-fr/">1ère rencontre WordPress France.</a></p>
<p>Au programme, rencontre dans &laquo;&nbsp;la vraie vie&nbsp;&raquo; des habitués de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> France, pour discussion de tout et de rien, et de pourquoi pas une Association des utilisateurs francophone de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a> ! (soyons fou !)</p>
<p>Et puis, comme il faut rentabiliser mon billet de train, et que mon maitre jedi favoris (ben :P)(comme quoi les&nbsp;Ben c&#8217;est&nbsp;tous des bons!)&nbsp;m&#8217;a signalé qu&#8217;il y a avait la StarWars expo à la villette&#8230; je me suis dit pourquoi pas ! Alors samedi après midi, opération SW, avec comme objectif, retomber un peu dans mon enfance de SW et puis plein de photos ^^ (si on peut^^)(au pire K750i powa)</p>
<p>Rendez vous la semaine prochaine, pour plein de photos&#8230; et plus d&#8217;infos !</p>
<p>Pour en revenir au titre de cette article (longue mise en contexte&#8230;)</p>
<p>Voila 2 petites images bien sympathiques que Ben m&#8217;a fait découvrir&#8230; </p>
<p><a href="http://1-formatik.info/wp-content/uploads/2006/08/WindowsLiveWriter/EnintroductionlexpoStarWars_148A0/200207528_f2c4731bd1_o%5B1%5D2.jpg" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://1-formatik.info/wp-content/uploads/2006/08/WindowsLiveWriter/EnintroductionlexpoStarWars_148A0/200207528_f2c4731bd1_o_thumb.jpg" width="169" border="0"/></a> <a href="http://1-formatik.info/wp-content/uploads/2006/08/WindowsLiveWriter/EnintroductionlexpoStarWars_148A0/200207529_edf62617ca_o%5B1%5D2.jpg" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="240" src="http://1-formatik.info/wp-content/uploads/2006/08/WindowsLiveWriter/EnintroductionlexpoStarWars_148A0/200207529_edf62617ca_o_thumb.jpg" width="193" border="0"/></a> </p>
<p>&nbsp;</p>
<p>Au passage, si vous voulez voir le blog dotclear (Lol) du traducteur de <a href="http://www.herewithme.fr/tag/wordpress/" class="st_tag internal_tag" rel="tag nofollow" title="Posts tagged with WordPress">WordPress</a>, Xavier Borderie pour ne pas le nommer, c&#8217;est par <a href="http://xavier.blogeoisie.com/">içi</a> &#8230; (comme quoi ^^ :P)</p>
<p>A bientôt pour de nouvelles aventures !</p>
<p>Cet article a été écrit avec Windows Live Writer (Ca déchire !)</p>

	Tags: <a href="http://www.herewithme.fr/tag/blogging/" title="Blogging" rel="tag nofollow">Blogging</a>, <a href="http://www.herewithme.fr/tag/paris/" title="Paris" rel="tag nofollow">Paris</a>, <a href="http://www.herewithme.fr/tag/windows-live-writer/" title="Windows Live Writer" rel="tag nofollow">Windows Live Writer</a>, <a href="http://www.herewithme.fr/tag/wordpress/" title="WordPress" rel="tag nofollow">WordPress</a><br />

	<h4>Articles relatifs</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.herewithme.fr/2007/06/20/vous-avez-dit-blog-au-ralenti/" title="Vous avez dit &quot;Blog au ralenti ?&quot; (20 juin 2007)">Vous avez dit &quot;Blog au ralenti ?&quot;</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2006/09/29/mise-jour-de-windows-live-writer/" title="Mise &agrave; jour de Windows Live Writer (29 septembre 2006)">Mise &agrave; jour de Windows Live Writer</a> (3)</li>
	<li><a href="http://www.herewithme.fr/2007/04/10/bloguer-oui-mais-comment-et-avec-quels-outils/" title="Bloguer ? oui ! mais comment et avec quels outils ? (10 avril 2007)">Bloguer ? oui ! mais comment et avec quels outils ?</a> (0)</li>
	<li><a href="http://www.herewithme.fr/2006/12/14/2me-rencontre-wordpress-francophone/" title="[MAJ] 2&egrave;me rencontre WordPress Francophone ! (14 décembre 2006)">[MAJ] 2&egrave;me rencontre WordPress Francophone !</a> (4)</li>
	<li><a href="http://www.herewithme.fr/2007/01/16/wordpressmu-copie-revoir/" title="WordPressMu : Copie &agrave; revoir&#8230; (16 janvier 2007)">WordPressMu : Copie &agrave; revoir&#8230;</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.herewithme.fr/2006/08/21/en-introduction-lexpo-starwars/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
