<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>LyRiX Blog, tutos sur le Zend Framework, php et autre techno Web</title>
	
	<link>http://blog.lyrixx.info</link>
	<description>et bien d'autre choses encore</description>
	<lastBuildDate>Wed, 01 Feb 2012 17:04:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/lyrixblog" /><feedburner:info uri="lyrixblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>47.386055</geo:lat><geo:long>0.694857</geo:long><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><image><link>http://blog.lyrixx.info/</link><url>http://blog.lyrixx.info/favicon.ico</url><title>lyrix favicon</title></image><feedburner:emailServiceId>lyrixblog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Mysql + export + csv + groupy en gardant les colonnes groupées</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/m3GCEUTzJvw/</link>
		<comments>http://blog.lyrixx.info/web-dev/mysql-export-csv-groupy-en-gardant-les-colonnes-groupees/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 16:57:40 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1464</guid>
		<description><![CDATA[Petit tips avec MySQL. Admettons que vous voulez faire un export en csv d&#8217;une table (A). Dans ce cas, c&#8217;est facile, il suffit d&#8217;utiliser &#171;&#160;INTO OUTFILE&#160;&#187;. Par contre, si vous avez une jointure (A -&#62; B), c&#8217;est plus compliqué. Il &#8230; <a href="http://blog.lyrixx.info/web-dev/mysql-export-csv-groupy-en-gardant-les-colonnes-groupees/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Petit tips avec MySQL. Admettons que vous voulez faire un export en csv d&#8217;une table (A). Dans ce cas, c&#8217;est facile, il suffit d&#8217;utiliser &laquo;&nbsp;INTO OUTFILE&nbsp;&raquo;. Par contre, si vous avez une jointure (A -&gt; B), c&#8217;est plus compliqué.</p>
<p>Il y a plusieurs solutions : soit on se retrouve avec plusieurs ligne de la table A en double, puis à &laquo;&nbsp;droite&nbsp;&raquo; de ces lignes , les colonnes de la table B.</p>
<p>Soit on utilise la fonction <a href="dev.mysql.com/doc/refman/5.0/fr/group-by-functions.html#id441997">group_concat</a>; et un petit hack ;)</p>
<p>Exemple :</p>
<pre class="brush: sql; title: ; notranslate">
SELECT c.id, c.first_name, c.last_name,  GROUP_CONCAT(CONCAT(p.bar_code,'||',p.quantity,'||',p.date) SEPARATOR &quot;||&quot;)
FROM contact c
LEFT JOIN product p on (c.id = p.contact_id)
GROUP BY c.id
INTO OUTFILE '/tmp/export.csv' FIELDS TERMINATED BY ';' OPTIONALLY ENCLOSED BY '&quot;';
</pre>
<p>On fait notre jointure normalement, on group by sur c.id, et c&#8217;est dans le select qu&#8217;il y a une peu de magie. On va d’abord concaténer les attributs de la table &laquo;&nbsp;product&nbsp;&raquo; avec comme séparateur deux pipes &laquo;&nbsp;||&nbsp;&raquo;. Et ensuite, on va concaténer toutes les valeurs résultantes de la fonction GROUP BY.</p>
<p>Enfin, il va falloir remplacer tous nos doubles pipes par &laquo;&nbsp;;&nbsp;&raquo; qui correspond a nos délimiteurs de champs.</p>
<pre class="brush: bash; title: ; notranslate">sed -i 's/||/&quot;;&quot;/g' /tmp/export.csv</pre>
<p>Et voila, vous avec un beau fichier CSV bien formaté ;) Ici le hack c&#8217;est de remplacer un délimiteur un peu spécial &laquo;&nbsp;||&nbsp;&raquo; par un vrai délimiteur, a posteriori.</p>
<p>P.S. : Il se peut que mysql exporte le fichier csv avec l&#8217;utilisateur mysql. Vous n&#8217;aurez donc pas les droits pour le lire et/ou le modifier. Il faut donc passer en root ;).</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/web-dev/mysql-export-csv-groupy-en-gardant-les-colonnes-groupees/">Article</a> publié le :  01-02-2012, dans : <a href="http://blog.lyrixx.info/category/web-dev/" title="Voir tous les articles dans Web Dev" rel="category tag">Web Dev</a>.
<a href="http://blog.lyrixx.info/web-dev/mysql-export-csv-groupy-en-gardant-les-colonnes-groupees/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/mysql/" rel="tag">Mysql</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/m3GCEUTzJvw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/web-dev/mysql-export-csv-groupy-en-gardant-les-colonnes-groupees/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/web-dev/mysql-export-csv-groupy-en-gardant-les-colonnes-groupees/</feedburner:origLink></item>
		<item>
		<title>Silex Kitchen Edition</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/1BWXPQqQJPE/</link>
		<comments>http://blog.lyrixx.info/silex/silex-kitchen-edition/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 08:03:32 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Silex]]></category>
		<category><![CDATA[Kitchen-Edition]]></category>
		<category><![CDATA[Symfony2]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1447</guid>
		<description><![CDATA[Silex est un micro-framework (en php) basé sur les composants de symfony2. Je vous invite à aller voir la documentation. La documentation est déjà bien fournie, cependant vous pouvez aller voir la présentation d&#8217;Igor au sfDay. Il existe aussi un &#8230; <a href="http://blog.lyrixx.info/silex/silex-kitchen-edition/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Silex est un micro-framework</strong> (en php) basé sur les <strong>composants de symfony2</strong>. Je vous invite à aller voir la <a href="http://silex.sensiolabs.org/documentation" target="_blank">documentation</a>. La documentation est déjà bien fournie, cependant vous pouvez aller voir <a title="la présentation d'Igor" href="http://speakerdeck.com/u/igorw/p/silex-symfony-goes-micro" target="_blank">la présentation d&#8217;Igor</a> au sfDay. Il existe aussi un très bon tuto sur fait par <a href="http://blog.eexit.net/2011/06/php-projet-silex-jouons-avec-silex.html" target="_blank">exiit</a>.</p>
<p>Bref, tout ca pour dire, que je vous propose une &laquo;&nbsp;édition&nbsp;&raquo; de silex, déjà packagée avec plusieurs services, comme les <strong>sessions</strong>, le <strong>cache</strong>, <strong>twig</strong>, etc etc &#8230; <strong><a href="https://github.com/lyrixx/Silex-Kitchen-Edition" target="_blank">disponible sur github</a></strong>. Dans cette édition, il y a des exemples avec des <strong>formulaires,</strong> de la <strong>validation</strong> etc etc&#8230;</p>
<p>Enfin, n&#8217;hésitez pas a aller faire un tour sur le <a href="https://github.com/fabpot/Silex" target="_blank">dépôt officiel de silex</a>.</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/silex/silex-kitchen-edition/">Article</a> publié le :  24-10-2011, dans : <a href="http://blog.lyrixx.info/category/silex/" title="Voir tous les articles dans Silex" rel="category tag">Silex</a>.
<a href="http://blog.lyrixx.info/silex/silex-kitchen-edition/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/kitchen-edition/" rel="tag">Kitchen-Edition</a>, <a href="http://blog.lyrixx.info/tag/silex/" rel="tag">Silex</a>, <a href="http://blog.lyrixx.info/tag/symfony2/" rel="tag">Symfony2</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/1BWXPQqQJPE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/silex/silex-kitchen-edition/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/silex/silex-kitchen-edition/</feedburner:origLink></item>
		<item>
		<title>Lister ses films</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/_EjwrrzOVEo/</link>
		<comments>http://blog.lyrixx.info/ubuntu/lister-ses-films/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 11:43:39 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1441</guid>
		<description><![CDATA[Un petit script .sh (donc pour linux/mac) pour lister tous les films qui peuvent trainer dans plusieurs répertoires et sous répertoires&#8230; (...)Read the rest of Lister ses films (0 words) Auteur : © Greg pour LyRiXx Blog. Article publié le &#8230; <a href="http://blog.lyrixx.info/ubuntu/lister-ses-films/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Un petit script .sh (donc pour linux/mac) pour lister tous les films qui peuvent trainer dans plusieurs répertoires et sous répertoires&#8230;</p>
<pre class="brush: bash; title: ; notranslate">
wget https://gist.github.com/raw/1008082/dc6cdb8ae50bd981ae9458cc270f96de41583718/movieList.sh
chmod +x movieList.sh
# Configure VIDEO_FOLDER
gedit movieList.sh
./movieList.sh
cat movie_list.txt
</pre>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/ubuntu/lister-ses-films/">Lister ses films</a> (0 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/ubuntu/lister-ses-films/">Article</a> publié le :  05-06-2011, dans : <a href="http://blog.lyrixx.info/category/ubuntu/" title="Voir tous les articles dans Ubuntu" rel="category tag">Ubuntu</a>.
<a href="http://blog.lyrixx.info/ubuntu/lister-ses-films/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/bash/" rel="tag">Bash</a>, <a href="http://blog.lyrixx.info/tag/linux/" rel="tag">Linux</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/_EjwrrzOVEo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/ubuntu/lister-ses-films/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/ubuntu/lister-ses-films/</feedburner:origLink></item>
		<item>
		<title>Symfony2 en vidéo</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/-WEl-DIKsOk/</link>
		<comments>http://blog.lyrixx.info/symfony/symfony2-en-video/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 09:00:18 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[gource]]></category>
		<category><![CDATA[Symfony2]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1414</guid>
		<description><![CDATA[Voici l&#8217;évolution du code source de symfony2 réalisé grâce à gource, ffmpef, pitivi et ubuntu ;) (...)Read the rest of Symfony2 en vidéo (101 words) Auteur : © Greg pour LyRiXx Blog. Article publié le : 03-01-2011, dans : Symfony. &#8230; <a href="http://blog.lyrixx.info/symfony/symfony2-en-video/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Voici l&#8217;évolution du code source de <a href="http://symfony-reloaded.org/" target="_blank">symfony2</a> réalisé grâce à <a href="http://code.google.com/p/gource/" target="_blank">gource</a>, ffmpef, pitivi et ubuntu ;)<br />
(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/symfony/symfony2-en-video/">Symfony2 en vidéo</a> (101 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/symfony/symfony2-en-video/">Article</a> publié le :  03-01-2011, dans : <a href="http://blog.lyrixx.info/category/symfony/" title="Voir tous les articles dans Symfony" rel="category tag">Symfony</a>.
<a href="http://blog.lyrixx.info/symfony/symfony2-en-video/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/gource/" rel="tag">gource</a>, <a href="http://blog.lyrixx.info/tag/symfony2/" rel="tag">Symfony2</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/-WEl-DIKsOk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/symfony/symfony2-en-video/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/symfony/symfony2-en-video/</feedburner:origLink></item>
		<item>
		<title>Installer Redmine sur une debian Lenny 5</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/t9Iy-wpiKF8/</link>
		<comments>http://blog.lyrixx.info/admin-sys/installer-redmine-sur-une-debian-5/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 10:07:58 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Admin Sys]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[redmine]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1368</guid>
		<description><![CDATA[Redmine est une application web Open Source de gestion complète de projet en mode web, développé en Ruby sur la base du framework Ruby on Rails. Principales fonctionnalités : gestion multi-projets, gestion fine des droits utilisateurs définis par des rôles, gestion &#8230; <a href="http://blog.lyrixx.info/admin-sys/installer-redmine-sur-une-debian-5/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Redmine</strong> est une application web Open Source de gestion complète de projet en mode web, développé en Ruby sur la base du framework Ruby on Rails.</p>
<p><a href="http://blog.lyrixx.info/wp-content/uploads/2010/12/Screenshot_redmine.png" rel="lightbox[1368]"><img class="aligncenter size-medium wp-image-1403" title="Screenshot_redmine" src="http://blog.lyrixx.info/wp-content/uploads/2010/12/Screenshot_redmine-300x183.png" alt="" width="300" height="183" /></a></p>
<p>Principales fonctionnalités :</p>
<ul>
<li>gestion multi-projets,</li>
<li>gestion fine des droits utilisateurs définis par des rôles,</li>
<li>gestion de groupes d&#8217;utilisateurs,</li>
<li>rapports de bogues (bugs), demandes d&#8217;évolutions,</li>
<li>Wiki multi-projets,</li>
<li>forums multi-projets</li>
</ul>
<p>On va voir comment installer <strong>redmine sur une machine linux de type debian</strong><br />
(source : <a href="http://fr.wikipedia.org/wiki/RedMine">wikipedia</a>)<br />
(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/admin-sys/installer-redmine-sur-une-debian-5/">Installer Redmine sur une debian Lenny 5</a> (685 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/admin-sys/installer-redmine-sur-une-debian-5/">Article</a> publié le :  20-12-2010, dans : <a href="http://blog.lyrixx.info/category/admin-sys/" title="Voir tous les articles dans Admin Sys" rel="category tag">Admin Sys</a>.
<a href="http://blog.lyrixx.info/admin-sys/installer-redmine-sur-une-debian-5/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/debian/" rel="tag">debian</a>, <a href="http://blog.lyrixx.info/tag/redmine/" rel="tag">redmine</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/t9Iy-wpiKF8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/admin-sys/installer-redmine-sur-une-debian-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/admin-sys/installer-redmine-sur-une-debian-5/</feedburner:origLink></item>
		<item>
		<title>Installer gitolite sur une machine debian 5</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/ANkRWBiLEho/</link>
		<comments>http://blog.lyrixx.info/admin-sys/installer-gitolite-sur-une-machine-debian-5/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 14:15:08 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Admin Sys]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[gitolite]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1355</guid>
		<description><![CDATA[Gitololite est un gestionnaire des dépôts git, il permet de gérer de facilement des dépôts, des utilisateurs, et de donner des droits d&#8217;accès aux dépôts en fonction des utilisateurs. Et surtout le must, on gère gitolite avec &#8230; git :D &#8230; <a href="http://blog.lyrixx.info/admin-sys/installer-gitolite-sur-une-machine-debian-5/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Gitololite est un gestionnaire des dépôts git, il permet de gérer de facilement des dépôts, des utilisateurs, et de donner des droits d&#8217;accès aux dépôts en fonction des utilisateurs. Et surtout le must, on gère gitolite avec &#8230; git :D</p>
<p>Pour ce faire, il faut avoir un serveur, et deux utilisateurs. Pour le serveur une simple machine sous linux (ubuntu, ou debian, ou autre) suffira. Il faudra un utilisateur pour gérer les dépôts, et un autre qui hébergera les dépôts. Le premier sert surtout à installer gitolite, ensuite toute l&#8217;administration pourra se faire de façon non connecté au serveur, simplement avec avec git. Le deuxième utilisateur refusera les accès SSH, ce qui permet de sécuriser ce compte.</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/admin-sys/installer-gitolite-sur-une-machine-debian-5/">Installer gitolite sur une machine debian 5</a> (663 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/admin-sys/installer-gitolite-sur-une-machine-debian-5/">Article</a> publié le :  17-12-2010, dans : <a href="http://blog.lyrixx.info/category/admin-sys/" title="Voir tous les articles dans Admin Sys" rel="category tag">Admin Sys</a>.
<a href="http://blog.lyrixx.info/admin-sys/installer-gitolite-sur-une-machine-debian-5/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/debian/" rel="tag">debian</a>, <a href="http://blog.lyrixx.info/tag/git/" rel="tag">git</a>, <a href="http://blog.lyrixx.info/tag/gitolite/" rel="tag">gitolite</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/ANkRWBiLEho" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/admin-sys/installer-gitolite-sur-une-machine-debian-5/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/admin-sys/installer-gitolite-sur-une-machine-debian-5/</feedburner:origLink></item>
		<item>
		<title>Ajouter le nom de la branche dans le message de commit avec GIT</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/5gd5wM3o92A/</link>
		<comments>http://blog.lyrixx.info/web-dev/ajouter-le-nom-de-la-branche-dans-le-message-de-commit-avec-git/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 19:36:17 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1350</guid>
		<description><![CDATA[Avec git, on peut faire plein de chose, notamment ajouter automatiquement le nom de la branche courante dans le message de commit de façon automatique. (...)Read the rest of Ajouter le nom de la branche dans le message de commit &#8230; <a href="http://blog.lyrixx.info/web-dev/ajouter-le-nom-de-la-branche-dans-le-message-de-commit-avec-git/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Avec git, on peut faire plein de chose, notamment ajouter automatiquement le nom de la branche courante dans le message de commit de façon automatique.</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/web-dev/ajouter-le-nom-de-la-branche-dans-le-message-de-commit-avec-git/">Ajouter le nom de la branche dans le message de commit avec GIT</a> (68 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/web-dev/ajouter-le-nom-de-la-branche-dans-le-message-de-commit-avec-git/">Article</a> publié le :  13-12-2010, dans : <a href="http://blog.lyrixx.info/category/web-dev/" title="Voir tous les articles dans Web Dev" rel="category tag">Web Dev</a>.
<a href="http://blog.lyrixx.info/web-dev/ajouter-le-nom-de-la-branche-dans-le-message-de-commit-avec-git/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/git/" rel="tag">git</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/5gd5wM3o92A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/web-dev/ajouter-le-nom-de-la-branche-dans-le-message-de-commit-avec-git/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/web-dev/ajouter-le-nom-de-la-branche-dans-le-message-de-commit-avec-git/</feedburner:origLink></item>
		<item>
		<title>Résoudre le Bug de var_dump avec Xdebug sous ubuntu</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/XhB8E0dgJvM/</link>
		<comments>http://blog.lyrixx.info/web-dev/resoudre-le-bug-de-var_dump-avec-xdebug-sous-ubuntu/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 19:37:27 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Xdebug]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1345</guid>
		<description><![CDATA[Si jamais l&#8217;affichage des var_dump avec xdebug ne se rendent pas comme ils devraient (en gros comme sans xdebug) avec ubuntu 10.04 ou 10.10, il suffit d&#8217;editer le fichier php.ini (/etc/php5/apache2/php.ini) et de passer la variables html_errors a On : &#8230; <a href="http://blog.lyrixx.info/web-dev/resoudre-le-bug-de-var_dump-avec-xdebug-sous-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Si jamais l&#8217;affichage des var_dump avec xdebug ne se rendent pas comme ils devraient (en gros comme sans xdebug) avec ubuntu 10.04 ou 10.10, il suffit d&#8217;editer le fichier php.ini (/etc/php5/apache2/php.ini) et de passer la variables html_errors a On :</p>
<pre class="brush: bash; title: ; notranslate">sudo gedit /etc/php5/apache2/php.ini</pre>
<p>Vers la ligne 604 (enfin chez moi)</p>
<pre class="brush: bash; title: ; notranslate">html_errors = On</pre>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/web-dev/resoudre-le-bug-de-var_dump-avec-xdebug-sous-ubuntu/">Article</a> publié le :  07-12-2010, dans : <a href="http://blog.lyrixx.info/category/web-dev/" title="Voir tous les articles dans Web Dev" rel="category tag">Web Dev</a>.
<a href="http://blog.lyrixx.info/web-dev/resoudre-le-bug-de-var_dump-avec-xdebug-sous-ubuntu/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/php/" rel="tag">Php</a>, <a href="http://blog.lyrixx.info/tag/ubuntu/" rel="tag">Ubuntu</a>, <a href="http://blog.lyrixx.info/tag/xdebug/" rel="tag">Xdebug</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/XhB8E0dgJvM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/web-dev/resoudre-le-bug-de-var_dump-avec-xdebug-sous-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/web-dev/resoudre-le-bug-de-var_dump-avec-xdebug-sous-ubuntu/</feedburner:origLink></item>
		<item>
		<title>Comment utiliser le Routeur du Zend Framework</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/RBFm1OlYdnQ/</link>
		<comments>http://blog.lyrixx.info/zend/comment-utiliser-le-routeur-du-zend-framework/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 07:02:14 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Router]]></category>
		<category><![CDATA[Url rewriting]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1283</guid>
		<description><![CDATA[Je suppose que vous connaissez déjà tous l&#8217;url rewriting. Il est assez simple de mettre en place des formats d&#8217;URL (user firendly) prédéfinis avec Zend. On va voir ensemble comment faire. Comme souvent avec le Zend Framework, il y a &#8230; <a href="http://blog.lyrixx.info/zend/comment-utiliser-le-routeur-du-zend-framework/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Je suppose que vous connaissez déjà tous l&#8217;<strong>url rewriting</strong>. Il est assez simple de mettre en place des formats d&#8217;URL (user firendly) prédéfinis avec <strong>Zend</strong>. On va voir ensemble comment faire.</p>
<p>Comme souvent avec le<strong> Zend Framework</strong>, il y a plusieurs façons de faire. Je vais vous en montrer deux. <strong>Une première en PHP</strong>, puis une <strong>deuxième avec le fichier de configuration application.ini</strong>. Quelque que soit la méthode, tout le code PHP sera à mettre dans le fichier <em>bootstrap.php</em>. Pourquoi ? Car il faut bien que le routage s&#8217;effectue avant le premier <em>dispatch</em>.</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/zend/comment-utiliser-le-routeur-du-zend-framework/">Comment utiliser le Routeur du Zend Framework</a> (1,414 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/zend/comment-utiliser-le-routeur-du-zend-framework/">Article</a> publié le :  09-08-2010, dans : <a href="http://blog.lyrixx.info/category/zend/" title="Voir tous les articles dans Zend Framework" rel="category tag">Zend Framework</a>.
<a href="http://blog.lyrixx.info/zend/comment-utiliser-le-routeur-du-zend-framework/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/router/" rel="tag">Router</a>, <a href="http://blog.lyrixx.info/tag/url-rewriting/" rel="tag">Url rewriting</a>, <a href="http://blog.lyrixx.info/tag/zend-framework/" rel="tag">Zend Framework</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/RBFm1OlYdnQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/zend/comment-utiliser-le-routeur-du-zend-framework/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/zend/comment-utiliser-le-routeur-du-zend-framework/</feedburner:origLink></item>
		<item>
		<title>Création d’un dépôt zftuts sur Google Code</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/UT5qYDBm-0s/</link>
		<comments>http://blog.lyrixx.info/zend/creation-dun-depot-zftuts-sur-google-code/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 07:00:24 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Google Code]]></category>
		<category><![CDATA[Svn]]></category>
		<category><![CDATA[Tuto]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1319</guid>
		<description><![CDATA[Afin de partager plus facilement le code source des mes tutoriels sur Zend, j&#8217;ai décidé de créer un dépôt sur Google Code. Vous pouvez le retrouver à cette adresse. Pour ceux qui ne connaissent pas, c&#8217;est à la base un &#8230; <a href="http://blog.lyrixx.info/zend/creation-dun-depot-zftuts-sur-google-code/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Afin de partager plus facilement le code source des mes tutoriels sur Zend, j&#8217;ai décidé de créer un dépôt sur Google Code. Vous pouvez le retrouver à <a href="http://code.google.com/p/zftuts/" target="_self">cette adresse</a>. Pour ceux qui ne connaissent pas, c&#8217;est à la base un SVN, avec beaucoup de fonctionnalités en plus. Je n&#8217;ai pas encore remis tous mes anciens tutoriels sur le SVN, mais je vais essayer de le faire progressivement. Ce qui me permettra aussi de faire un peu le ménage dans les tutos et de réparer les erreurs qui trainent.</p>
<p>N&#8217;hesitez pas a aller faire un tour sur <a href="http://code.google.com/p/zftuts/source/browse/#svn/trunk" target="_blank">la page des sources</a>.</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/zend/creation-dun-depot-zftuts-sur-google-code/">Article</a> publié le :  09-08-2010, dans : <a href="http://blog.lyrixx.info/category/zend/" title="Voir tous les articles dans Zend Framework" rel="category tag">Zend Framework</a>.
<a href="http://blog.lyrixx.info/zend/creation-dun-depot-zftuts-sur-google-code/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/google-code/" rel="tag">Google Code</a>, <a href="http://blog.lyrixx.info/tag/svn/" rel="tag">Svn</a>, <a href="http://blog.lyrixx.info/tag/tuto/" rel="tag">Tuto</a>, <a href="http://blog.lyrixx.info/tag/zend-framework/" rel="tag">Zend Framework</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/UT5qYDBm-0s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/zend/creation-dun-depot-zftuts-sur-google-code/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/zend/creation-dun-depot-zftuts-sur-google-code/</feedburner:origLink></item>
		<item>
		<title>ZFDebug : Un plugin pour Zend Framework</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/7Bc9Y7LYlYE/</link>
		<comments>http://blog.lyrixx.info/zend/zfdebug-un-plugin-pour-zend-framework/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 07:00:38 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1270</guid>
		<description><![CDATA[ZFDebug est un outils très utile lorsqu&#8217;on développe avec Zend. En effet ce plugin, qui ne demande presque aucunes configurations, permet de mettre en évidence beaucoup d&#8217;informations utilises. On va voir commment l&#8217;installer dans un projet déjà existant (ou un &#8230; <a href="http://blog.lyrixx.info/zend/zfdebug-un-plugin-pour-zend-framework/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>ZFDebug</strong> est un outils très utile lorsqu&#8217;on développe avec Zend. En effet ce plugin, <strong>qui ne demande presque aucunes configurations</strong>, permet de mettre en évidence beaucoup d&#8217;informations utilises. On va voir commment l&#8217;installer dans un projet déjà existant (ou un nouveau, ca ne change rien).Donc ce plugin va ajouter automatiquement une barre d&#8217;outils en bas de votre page. Sur cette barre, on peut voire les informations suivantes :</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/zend/zfdebug-un-plugin-pour-zend-framework/">ZFDebug : Un plugin pour Zend Framework</a> (378 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/zend/zfdebug-un-plugin-pour-zend-framework/">Article</a> publié le :  05-08-2010, dans : <a href="http://blog.lyrixx.info/category/zend/" title="Voir tous les articles dans Zend Framework" rel="category tag">Zend Framework</a>.
<a href="http://blog.lyrixx.info/zend/zfdebug-un-plugin-pour-zend-framework/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/debug/" rel="tag">Debug</a>, <a href="http://blog.lyrixx.info/tag/php/" rel="tag">Php</a>, <a href="http://blog.lyrixx.info/tag/plugins/" rel="tag">Plugins</a>, <a href="http://blog.lyrixx.info/tag/zend-framework/" rel="tag">Zend Framework</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/7Bc9Y7LYlYE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/zend/zfdebug-un-plugin-pour-zend-framework/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/zend/zfdebug-un-plugin-pour-zend-framework/</feedburner:origLink></item>
		<item>
		<title>Sortie de la première version de Apache Zeta Components</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/Ze_ukOo-3L0/</link>
		<comments>http://blog.lyrixx.info/web-dev/sortie-de-la-premiere-version-de-apache-zeta-components/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 13:51:09 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[Components]]></category>
		<category><![CDATA[eZ]]></category>
		<category><![CDATA[Modules]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1260</guid>
		<description><![CDATA[Qu&#8217;est-ce que Apache Zeta Components ? Les Zeta Components sont des modules ou packages php qui peuvent être inclus dans une application. Historiquement, ces composants porté le nom de eZ Components, mais depuis juillet 2010, ces composants ont été rattachés &#8230; <a href="http://blog.lyrixx.info/web-dev/sortie-de-la-premiere-version-de-apache-zeta-components/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Qu&#8217;est-ce que Apache Zeta Components ?</h2>
<p>Les <strong>Zeta Components sont des modules ou packages php</strong> qui peuvent être inclus dans une application. Historiquement, ces composants porté le nom de <strong>eZ Components</strong>, mais depuis juillet 2010, ces composants ont été rattachés à la <strong>Fondation Apache</strong>. L&#8217;entreprise qui avaient commencé le développement de ces composants n&#8217;est autre que <strong>eZ Systems, qui developpe aussi le framework / CMS eZ Publish</strong>.</p>
<p>Ces modules ont l&#8217;avantages d&#8217;être <strong>très faiblement couplé</strong>, ce qui veut dire que l&#8217;on n&#8217;est pas obligé d&#8217;embarquer toute la librairie de composants dans son application.</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/web-dev/sortie-de-la-premiere-version-de-apache-zeta-components/">Sortie de la première version de Apache Zeta Components</a> (133 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/web-dev/sortie-de-la-premiere-version-de-apache-zeta-components/">Article</a> publié le :  04-08-2010, dans : <a href="http://blog.lyrixx.info/category/web-dev/" title="Voir tous les articles dans Web Dev" rel="category tag">Web Dev</a>.
<a href="http://blog.lyrixx.info/web-dev/sortie-de-la-premiere-version-de-apache-zeta-components/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/components/" rel="tag">Components</a>, <a href="http://blog.lyrixx.info/tag/ez/" rel="tag">eZ</a>, <a href="http://blog.lyrixx.info/tag/modules/" rel="tag">Modules</a>, <a href="http://blog.lyrixx.info/tag/php/" rel="tag">Php</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/Ze_ukOo-3L0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/web-dev/sortie-de-la-premiere-version-de-apache-zeta-components/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/web-dev/sortie-de-la-premiere-version-de-apache-zeta-components/</feedburner:origLink></item>
		<item>
		<title>Sortie et nouveautés de Zend Studio 8 (beta)</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/-L9g0DRCdQw/</link>
		<comments>http://blog.lyrixx.info/application/sortie-et-nouveaute-de-zend-studio-8-beta/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 13:50:51 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Application]]></category>
		<category><![CDATA[Beta]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Zend Studio]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1247</guid>
		<description><![CDATA[Zend Studio 8 vient de sortir en version Beta. Je n&#8217;utilisai plus Zend Studio depuis un petit bout temps, en effet j&#8217;étais repassé sur NetBeans (que j&#8217;ai toujours préféré a Eclipse) que je trouvai plus rapide et un peu moins &#8230; <a href="http://blog.lyrixx.info/application/sortie-et-nouveaute-de-zend-studio-8-beta/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Zend Studio 8</strong> vient de sortir en <strong>version Beta</strong>. Je n&#8217;utilisai plus Zend Studio depuis un petit bout temps, en effet j&#8217;étais repassé sur NetBeans (que j&#8217;ai toujours préféré a Eclipse) que je trouvai plus rapide et un peu moins lourd. Mais je compte bien re-tester la <strong>version 8 qui apporte quelques nouveautés</strong> :</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/application/sortie-et-nouveaute-de-zend-studio-8-beta/">Sortie et nouveautés de Zend Studio 8 (beta)</a> (259 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/application/sortie-et-nouveaute-de-zend-studio-8-beta/">Article</a> publié le :  29-07-2010, dans : <a href="http://blog.lyrixx.info/category/application/" title="Voir tous les articles dans Application" rel="category tag">Application</a>.
<a href="http://blog.lyrixx.info/application/sortie-et-nouveaute-de-zend-studio-8-beta/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/application/" rel="tag">Application</a>, <a href="http://blog.lyrixx.info/tag/beta/" rel="tag">Beta</a>, <a href="http://blog.lyrixx.info/tag/zend-framework/" rel="tag">Zend Framework</a>, <a href="http://blog.lyrixx.info/tag/zend-studio/" rel="tag">Zend Studio</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/-L9g0DRCdQw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/application/sortie-et-nouveaute-de-zend-studio-8-beta/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/application/sortie-et-nouveaute-de-zend-studio-8-beta/</feedburner:origLink></item>
		<item>
		<title>Installation du paquet PECL XDebug avec Ubuntu</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/K0oaYzGberQ/</link>
		<comments>http://blog.lyrixx.info/web-dev/installation-du-paquet-pecl-xdebug-avec-ubuntu/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 12:13:16 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[PECL]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Xdebug]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1235</guid>
		<description><![CDATA[Suite a mon précédent article, je vais vous expliquer comment installer le paquet XDebug sur Ubuntu en utilisant le gestionnaire de paquets PECL. Qu&#8217;est-ce que XDebug ? Tout d&#8217;abord un petit rappel sur XDebug. Xdebug est une sur-couche (extension) au &#8230; <a href="http://blog.lyrixx.info/web-dev/installation-du-paquet-pecl-xdebug-avec-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Suite a mon <a title="Qu’est-ce que PECL ?" href="http://blog.lyrixx.info/web-dev/quest-ce-que-pecl/">précédent article</a>, je vais vous expliquer comment installer le paquet <a href="http://www.xdebug.org/" target="_blank">XDebug</a> sur Ubuntu en utilisant le gestionnaire de paquets PECL.</p>
<h2>Qu&#8217;est-ce que XDebug ?</h2>
<p>Tout d&#8217;abord un petit rappel sur XDebug. Xdebug est une sur-couche (extension) au moteur PHP pour rendre plus user-friendly les messages d&#8217;erreurs et de debug de PHP. Bien entendu, ce type d&#8217;extension n&#8217;est à installer que sur un environnement de développement, et surtout pas en production.<br />
(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/web-dev/installation-du-paquet-pecl-xdebug-avec-ubuntu/">Installation du paquet PECL XDebug avec Ubuntu</a> (134 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/web-dev/installation-du-paquet-pecl-xdebug-avec-ubuntu/">Article</a> publié le :  23-07-2010, dans : <a href="http://blog.lyrixx.info/category/web-dev/" title="Voir tous les articles dans Web Dev" rel="category tag">Web Dev</a>.
<a href="http://blog.lyrixx.info/web-dev/installation-du-paquet-pecl-xdebug-avec-ubuntu/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/debug/" rel="tag">Debug</a>, <a href="http://blog.lyrixx.info/tag/installation/" rel="tag">Installation</a>, <a href="http://blog.lyrixx.info/tag/pecl/" rel="tag">PECL</a>, <a href="http://blog.lyrixx.info/tag/php/" rel="tag">Php</a>, <a href="http://blog.lyrixx.info/tag/xdebug/" rel="tag">Xdebug</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/K0oaYzGberQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/web-dev/installation-du-paquet-pecl-xdebug-avec-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/web-dev/installation-du-paquet-pecl-xdebug-avec-ubuntu/</feedburner:origLink></item>
		<item>
		<title>Qu’est-ce que PECL ?</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/hK1rWY-yqEQ/</link>
		<comments>http://blog.lyrixx.info/web-dev/quest-ce-que-pecl/#comments</comments>
		<pubDate>Mon, 10 May 2010 13:39:41 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[PECL]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1216</guid>
		<description><![CDATA[Il y a quelques semaines un rapport sur l&#8217;utilisation de PHP sur les serveurs debian est sorti (http://popcon.debian.org/ ; vraiment pas sexy ! ). Industrialisation PHP en a fait une bonne analyse, je vous conseil de la lire. En lisant &#8230; <a href="http://blog.lyrixx.info/web-dev/quest-ce-que-pecl/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Il y a quelques semaines un rapport sur l&#8217;<strong>utilisation de PHP sur les serveurs debian est sorti</strong> (<a href="http://popcon.debian.org/" target="_blank">http://popcon.debian.org/</a> ; vraiment pas sexy ! ). <a href="http://www.industrialisation-php.com/statistiques-dusage-de-php-sur-debian/" target="_blank">Industrialisation PHP en a fait une bonne analyse</a>, je vous conseil de la lire. En lisant ce rapport, j&#8217;ai été assez étonné sur <strong>les pourcentages d&#8217;utilisation des extensions PECL et PEAR</strong>. On va donc commencer par faire une petite piqure de rappel sur PECL.</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/web-dev/quest-ce-que-pecl/">Qu&#8217;est-ce que PECL ?</a> (309 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/web-dev/quest-ce-que-pecl/">Article</a> publié le :  10-05-2010, dans : <a href="http://blog.lyrixx.info/category/web-dev/" title="Voir tous les articles dans Web Dev" rel="category tag">Web Dev</a>.
<a href="http://blog.lyrixx.info/web-dev/quest-ce-que-pecl/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/extensions/" rel="tag">extensions</a>, <a href="http://blog.lyrixx.info/tag/pecl/" rel="tag">PECL</a>, <a href="http://blog.lyrixx.info/tag/php/" rel="tag">Php</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/hK1rWY-yqEQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/web-dev/quest-ce-que-pecl/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/web-dev/quest-ce-que-pecl/</feedburner:origLink></item>
		<item>
		<title>Comment bien démarrer un projet Zend Framework grâce aux Zend_Tool</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/t11sE0KdNrQ/</link>
		<comments>http://blog.lyrixx.info/zend/comment-bien-demarrer-un-projet-zend-framework-grace-aux-zend_tool/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 15:08:10 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Zend_Tool]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1203</guid>
		<description><![CDATA[Cet article est une mise à jour du tutoriel sur l&#8217;outil Zend_Tool. Donc depuis quelque temps dans le Zend Framework, il y a de nouvelles fonctionnalités. Mais pour bien faire les choses, on va reprendre Zend_Tool depuis le début. Qu&#8217;est-ce &#8230; <a href="http://blog.lyrixx.info/zend/comment-bien-demarrer-un-projet-zend-framework-grace-aux-zend_tool/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Cet article est une mise à jour du tutoriel sur <strong>l&#8217;outil Zend_Tool</strong>. Donc depuis quelque temps dans le Zend Framework, il y a de nouvelles fonctionnalités. Mais pour bien faire les choses, on va reprendre Zend_Tool depuis le début.</p>
<h2>Qu&#8217;est-ce que Zend_Tool ?</h2>
<p><strong>Zend Tool est un outils qui s&#8217;utilise en ligne de commande</strong> (depuis une console) et qui <strong>permet de mettre en place la structure de son projet</strong>, d&#8217;ajouter des controllers, actions, vues, modules&#8230; D&#8217;après la roadmap de Zend, cet outils à pour objectif de devenir très puissant.<br />
(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/zend/comment-bien-demarrer-un-projet-zend-framework-grace-aux-zend_tool/">Comment bien démarrer un projet Zend Framework grâce aux Zend_Tool</a> (367 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/zend/comment-bien-demarrer-un-projet-zend-framework-grace-aux-zend_tool/">Article</a> publié le :  18-03-2010, dans : <a href="http://blog.lyrixx.info/category/zend/" title="Voir tous les articles dans Zend Framework" rel="category tag">Zend Framework</a>.
<a href="http://blog.lyrixx.info/zend/comment-bien-demarrer-un-projet-zend-framework-grace-aux-zend_tool/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/architecture/" rel="tag">Architecture</a>, <a href="http://blog.lyrixx.info/tag/zend-framework/" rel="tag">Zend Framework</a>, <a href="http://blog.lyrixx.info/tag/zend_tool/" rel="tag">Zend_Tool</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/t11sE0KdNrQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/zend/comment-bien-demarrer-un-projet-zend-framework-grace-aux-zend_tool/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/zend/comment-bien-demarrer-un-projet-zend-framework-grace-aux-zend_tool/</feedburner:origLink></item>
		<item>
		<title>Architecture du Zend Framework 1.10 en MVC</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/0vGERl5_t98/</link>
		<comments>http://blog.lyrixx.info/zend/architecture-du-zend-framework-1-10/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 14:38:23 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1187</guid>
		<description><![CDATA[Depuis quelques versions du Zend Framework, l&#8217;architecture de celui-ci en mode MVC à un petit peu changé. Je vous donne le nouveau schémas, et je l&#8217;explique ensuite. La racine des dossiers est (chez moi) le dossier « zftuto ». Je précise que &#8230; <a href="http://blog.lyrixx.info/zend/architecture-du-zend-framework-1-10/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Depuis quelques versions du <strong>Zend Framework</strong>, l&#8217;architecture de celui-ci en mode MVC à un petit peu changé. Je vous donne le nouveau schémas, et je l&#8217;explique ensuite. La racine des dossiers est (chez moi) le dossier « zftuto ». Je précise que <strong>cette structure a été obtenu grâce aux Zend_Tool</strong> (cf prochain tutoriel).</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/zend/architecture-du-zend-framework-1-10/">Architecture du Zend Framework 1.10 en MVC</a> (258 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/zend/architecture-du-zend-framework-1-10/">Article</a> publié le :  18-03-2010, dans : <a href="http://blog.lyrixx.info/category/zend/" title="Voir tous les articles dans Zend Framework" rel="category tag">Zend Framework</a>.
<a href="http://blog.lyrixx.info/zend/architecture-du-zend-framework-1-10/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/architecture/" rel="tag">Architecture</a>, <a href="http://blog.lyrixx.info/tag/zend-framework/" rel="tag">Zend Framework</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/0vGERl5_t98" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/zend/architecture-du-zend-framework-1-10/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/zend/architecture-du-zend-framework-1-10/</feedburner:origLink></item>
		<item>
		<title>Application de site E-Commerce [Code-Source]</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/QDyHeeEeKtY/</link>
		<comments>http://blog.lyrixx.info/zend/application-de-site-e-commerce/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 14:11:35 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Code Source]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1175</guid>
		<description><![CDATA[Comme vous l&#8217;avez peut être vu passer sur twitter, j&#8217;ai du faire pour les cours une application e-commerce très basique. J&#8217;ai choisis de la faire avec Zend. Et du coup je partage le code ici ;). Cette application est très &#8230; <a href="http://blog.lyrixx.info/zend/application-de-site-e-commerce/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Comme vous l&#8217;avez peut être vu passer sur <a href="http://twitter.com/lyrixx" target="_blank">twitter</a>, j&#8217;ai du faire pour les cours une <strong>application e-commerce très basique</strong>. J&#8217;ai choisis de la faire avec Zend. Et du coup je partage le code ici ;). <strong>Cette application est très simplifié : il n&#8217;y a qu&#8217;une page produit, avec la possibilité d&#8217;ajouter des produits dans un panier et ensuite de gérer son panier. Il y a aussi la toute la partie gestion des utilisateurs : connexion, enregistrement, déconnexion</strong> etc&#8230; Et enfin il y a une page paiement qui vérifie les informations de la carte bancaire.</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/zend/application-de-site-e-commerce/">Application de site E-Commerce [Code-Source]</a> (51 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/zend/application-de-site-e-commerce/">Article</a> publié le :  18-03-2010, dans : <a href="http://blog.lyrixx.info/category/zend/" title="Voir tous les articles dans Zend Framework" rel="category tag">Zend Framework</a>.
<a href="http://blog.lyrixx.info/zend/application-de-site-e-commerce/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/application/" rel="tag">Application</a>, <a href="http://blog.lyrixx.info/tag/code-source/" rel="tag">Code Source</a>, <a href="http://blog.lyrixx.info/tag/mysql/" rel="tag">Mysql</a>, <a href="http://blog.lyrixx.info/tag/php/" rel="tag">Php</a>, <a href="http://blog.lyrixx.info/tag/zend-framework/" rel="tag">Zend Framework</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/QDyHeeEeKtY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/zend/application-de-site-e-commerce/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/zend/application-de-site-e-commerce/</feedburner:origLink></item>
		<item>
		<title>Comment développer et tester son site en local</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/1_DlLgnu0tM/</link>
		<comments>http://blog.lyrixx.info/ubuntu/comment-developper-et-tester-son-site-en-local/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 13:50:10 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[Serveur]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1155</guid>
		<description><![CDATA[Souvent, lorsque l&#8217;on développe son site en local, il peut être intéressant de simuler un nom de domaine. Par exemple pour tester 2 3 plugins sur son blog en local. Ou alors lorsque l&#8217;on développe une vrai application web et &#8230; <a href="http://blog.lyrixx.info/ubuntu/comment-developper-et-tester-son-site-en-local/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Souvent, lorsque l&#8217;on développe son site en local, il peut être intéressant de <em>simuler</em> un nom de domaine. Par exemple pour tester 2 3 plugins sur son blog en local. Ou alors lorsque l&#8217;on développe une vrai application web et que l&#8217;on veut travailler avec le vrai nom de domaine&#8230; alors comment faire pour configurer tout ca ?<br />
(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/ubuntu/comment-developper-et-tester-son-site-en-local/">Comment développer et tester son site en local</a> (144 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/ubuntu/comment-developper-et-tester-son-site-en-local/">Article</a> publié le :  05-03-2010, dans : <a href="http://blog.lyrixx.info/category/ubuntu/" title="Voir tous les articles dans Ubuntu" rel="category tag">Ubuntu</a>.
<a href="http://blog.lyrixx.info/ubuntu/comment-developper-et-tester-son-site-en-local/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/apache2/" rel="tag">apache2</a>, <a href="http://blog.lyrixx.info/tag/dns/" rel="tag">DNS</a>, <a href="http://blog.lyrixx.info/tag/hosts/" rel="tag">hosts</a>, <a href="http://blog.lyrixx.info/tag/serveur/" rel="tag">Serveur</a>, <a href="http://blog.lyrixx.info/tag/web/" rel="tag">Web</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/1_DlLgnu0tM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/ubuntu/comment-developper-et-tester-son-site-en-local/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/ubuntu/comment-developper-et-tester-son-site-en-local/</feedburner:origLink></item>
		<item>
		<title>Script d’installation de Logiciel Pour Ubuntu</title>
		<link>http://feedproxy.google.com/~r/lyrixblog/~3/mDtI-iqyp_Q/</link>
		<comments>http://blog.lyrixx.info/ubuntu/script-dinstallation-de-logiciel-pour-ubuntu/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 07:00:28 +0000</pubDate>
		<dc:creator>Greg</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Automatique]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Script]]></category>

		<guid isPermaLink="false">http://blog.lyrixx.info/?p=1140</guid>
		<description><![CDATA[Vous venez de finir d&#8217;installer ubuntu, et vous ne savez pas quoi installer ensuite ? Et bien je vous propose mon script d&#8217;installation. Il s&#8217;occupe d&#8217;ajouter des dépôts (attention, il y a des dépôts non libre. Je préviens pour les &#8230; <a href="http://blog.lyrixx.info/ubuntu/script-dinstallation-de-logiciel-pour-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Vous venez de finir d&#8217;installer ubuntu, et vous ne savez pas quoi installer ensuite ? Et bien je vous propose mon script d&#8217;installation. Il s&#8217;occupe d&#8217;ajouter des dépôts (attention, il y a des dépôts non libre. Je préviens pour les puristes), de mettre a jour le système, puis d&#8217;installer toute une série de logiciel. Le script ne sera pas très bavard (c&#8217;est le but) mais il faudra quand même accepter quelques conditions d&#8217;utilisation, comme pour JAVA ou Google Earth. Je vous conseil quand même de le télécharger et de le modifier pour correspondre au mieux à vos besoins.</p>
<p>(...)<br/>Read the rest of <a href="http://blog.lyrixx.info/ubuntu/script-dinstallation-de-logiciel-pour-ubuntu/">Script d&#8217;installation de Logiciel Pour Ubuntu</a> (392 words)</p>
<br /><hr />
<p><small>Auteur : © Greg pour <a href="http://blog.lyrixx.info">LyRiXx Blog</a>.
<br /><a href="http://blog.lyrixx.info/ubuntu/script-dinstallation-de-logiciel-pour-ubuntu/">Article</a> publié le :  05-02-2010, dans : <a href="http://blog.lyrixx.info/category/ubuntu/" title="Voir tous les articles dans Ubuntu" rel="category tag">Ubuntu</a>.
<a href="http://blog.lyrixx.info/ubuntu/script-dinstallation-de-logiciel-pour-ubuntu/">Liens direct vers l'article (permalink) </a>
<br/>Mot Clé : <a href="http://blog.lyrixx.info/tag/automatique/" rel="tag">Automatique</a>, <a href="http://blog.lyrixx.info/tag/installation/" rel="tag">Installation</a>, <a href="http://blog.lyrixx.info/tag/script/" rel="tag">Script</a>, <a href="http://blog.lyrixx.info/tag/ubuntu/" rel="tag">Ubuntu</a><br/>
</small></p>  
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
<img src="http://feeds.feedburner.com/~r/lyrixblog/~4/mDtI-iqyp_Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.lyrixx.info/ubuntu/script-dinstallation-de-logiciel-pour-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.lyrixx.info/ubuntu/script-dinstallation-de-logiciel-pour-ubuntu/</feedburner:origLink></item>
	</channel>
</rss><!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc (Feed is rejected)
Database Caching using apc
Object Caching 2996/3161 objects using apc

Served from: blog.lyrixx.info @ 2012-02-23 05:48:40 -->

