<?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>Grummfy&#039;s project &#187; General</title>
	<atom:link href="http://grummfy.be/blog/cat/general/feed" rel="self" type="application/rss+xml" />
	<link>http://grummfy.be/blog</link>
	<description>Mes projets, mes rêves, mes envies, ...</description>
	<lastBuildDate>Mon, 02 Jan 2012 00:03:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Git, gitolite et mutualisé OVH</title>
		<link>http://grummfy.be/blog/368#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/368#comments</comments>
		<pubDate>Wed, 10 Aug 2011 21:46:37 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[Développement]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[OVH]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[trucs et astuces]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=368</guid>
		<description><![CDATA[Pouvoir utilisé gitolite sur un hébergement mutualisé OVH.]]></description>
			<content:encoded><![CDATA[<p>Hello,<br />
Sur les mutualisés OVH, la version fournie de git est plus qu’out-of-date : version 1.4.4. Ceci signifie impossibilité d&#8217;installé des outils tels que gitolite ou inferno. Ce billet est l&#8217;occasion d&#8217;un guide pour installer gitolite.</p>
<p>Le guide suivant a été rédigé sur un compte OVH pro, donc avec accès un ssh. En utilisant git 1.7.6 et gitolite 2.0.3. L&#8217;ensemble exécuter sur une machine Linux.</p>
<h2>Téléchargement</h2>
<p>La première étape, consiste a récupérer les différentes archives nécessaires, a savoir git et gitolite.</p>
<p>Pour git, il vous suffit de prendre la dernière version http://git-scm.com/download.</p>
<p>Pour gitolite, il suffit d&#8217;utiliser git!</p>
<pre>git clone https://github.com/sitaramc/gitolite.git</pre>
<h2>Préparation de l&#8217;environnement</h2>
<p>Nous allons installer les exécutables de git dans ~/opt/bin. De ce fait ajoutons le path a l&#8217;utilisateur ssh.<br />
Ouvrir ~/.bash_profile et modifier le path. Pour ce faire ajouter, avant le export :</p>
<pre>PATH=$HOME/opt/bin:$PATH</pre>
<h2>Installation de git</h2>
<p>Uploader votre archive dans un dossier (ici ~/opt/src/). En mode console par ssh, donc sur le serveur, ouvrir l&#8217;archive et compiler les sources.</p>
<pre>tar -xvzf git-1.7.6.tar.gz
cd git-1.7.6
./configure --prefix=$HOME/opt --without-tcltk
make
make install</pre>
<p>Une fois compilé, les exécutables seront présents dans ~/opt/bin. Pour vérifier, que tout est bien en place :</p>
<pre>git --version</pre>
<h2>Gitolite</h2>
<p>Il faut se rendre dans le répertoire du clone du repository. <strong>Tout s&#8217;exécute uniquement sur la machine cliente (donc pas chez ovh)</strong>. Si l&#8217;utilisateur est &laquo;&nbsp;toto&nbsp;&raquo;, l&#8217;host &laquo;&nbsp;tata.com&nbsp;&raquo; et le futur administrateur &laquo;&nbsp;moiadmin&nbsp;&raquo;</p>
<pre>./src/gl-easy-install toto tata.com moiadmin</pre>
<p>Il suffit de faire enter. Dans tous les cas (mise à jour du script compris!), le fait de réexecuter la commande permet de rectifier les erreurs éventuelles. À l&#8217;étape de l&#8217;édition du fichier de configuration, il faut modifier la variable $GIT_PATH pour quelle pointe vers le répertoire contenant notre git. Dans notre cas :</p>
<pre>$GIT_PATH = $ENV{HOME} . "/opt/bin/";</pre>
<h2>Configuration de Gitolite</h2>
<p>La configuration de gitolite est simple et s&#8217;exécute avec &#8230; git! En principe, un répertoire reprenant la config a été créé sur votre home dans ~/gitolite-admin, dans le cas contraire, il vous suffit de faire</p>
<pre>git clone gitolite:gitolite-admin.git</pre>
<p>Pour ajouter des clefs ssh, il suffit de les mettre dans le dossier keys. Pour ce qui est de la config, il vous suffit d&#8217;éditer le fichier gitolite.conf et puis de faire</p>
<pre>git add conf/gitolite.conf
git commit -m 'update config'
git push</pre>
<p>Et c&#8217;est tout!</p>
<p>Sources :<br />
<a href="http://forum.ovh.com/showthread.php?t=71543" target="_blank">http://forum.ovh.com/showthread.php?t=71543</a><br />
<a href="http://blog.lyrixx.info/admin-sys/installer-gitolite-sur-une-machine-debian-5/" target="_blank">http://blog.lyrixx.info/admin-sys/installer-gitolite-sur-une-machine-debian-5/</a><br />
<a href="http://sitaramc.github.com/gitolite/doc/gitolite.rc.html" target="_blank" class="broken_link">http://sitaramc.github.com/gitolite/doc/gitolite.rc.html</a><br />
<a href="http://sitaramc.github.com/gitolite/doc/gitolite.conf.html#_groups" target="_blank" class="broken_link">http://sitaramc.github.com/gitolite/doc/gitolite.conf.html#_groups</a></p>
<p>Pour vos interfaces web, trois solutions correctes :<br />
<a href="http://hjemli.net/git/cgit/" target="_blank">CGit</a><br />
<a href="http://viewgit.sourceforge.net/" target="_blank">View Git</a><br />
<a href="http://projects.ceondo.com/p/indefero/" target="_blank">Indefero</a></p>
]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/368/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vitesse et référencement</title>
		<link>http://grummfy.be/blog/243#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/243#comments</comments>
		<pubDate>Tue, 23 Mar 2010 09:34:38 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Réflexion du jour]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[optimisation]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[référencement]]></category>
		<category><![CDATA[trucs et astuces]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web sémantique]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=243</guid>
		<description><![CDATA[La vitesse d&#8217;affichage d&#8217;une page web est actuellement, et ce depuis un certain temps, devenu importante. Surtout en ce qui concerne l&#8217;optimisation et par conséquent le référencement. Afin de gagner ces quelques millisecondes qui feront la différence, il existe plusieurs méthodes et techniques. En voici quelques-unes, avec des exemples. Diminuer le nombre de requêtes HTTP [...]]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		A:link { so-language: zxx } --></p>
<p>La vitesse d&#8217;affichage d&#8217;une page web est actuellement, et ce depuis un certain temps, devenu importante. Surtout en ce qui concerne l&#8217;optimisation et par conséquent le référencement. Afin de gagner ces quelques millisecondes qui feront la différence, il existe plusieurs méthodes et techniques. En voici quelques-unes, avec des exemples.</p>
<h2>Diminuer le nombre de requêtes HTTP</h2>
<p>Chaque requête HTTP au sein du fichier prend un certain temps, mais surtout bloque le chargement global de la page web. En effet, HTTP et HTML chargent les ressources au fur et à mesure que la page le demande.</p>
<p><span id="more-243"></span></p>
<p>Restreindre le nombre de fichiers, par exemple, en regroupant les css et javascript est une bonne solution. Une autre possibilité est aussi de charger l&#8217;essentiel de la page et à la fin de celle-ci, exécuter du code javascript qui sera chargé de téléverser du javascript ou encore des css.</p>
<h2>Diminuer le nombre de requêtes DNS</h2>
<p>Que dire, si ce n&#8217;est l&#8217;essentiel, une requête DNS prend du temps, et le temps est pris sur le chargement de votre page.</p>
<h2>Se rapprocher du visiteur</h2>
<p>La distance entre un serveur et un visiteur peut faire varier énormément le temps d&#8217;affichage. En effet, une information située sur un serveur a un point X du globe peut parfois faire plusieurs fois le tour de celui-ci avant d&#8217;arriver chez le visiteur Y. Tout dépends des accords entre les gestionnaires des différents réseaux, le chemin le plus économique est celui qui sera choisi<sup class='footnote'><a href='#fn-243-1' id='fnref-243-1'>1</a></sup>!!!!! En résumé, plus vous êtes proches, plus cela arrive vite.</p>
<p>Une solution peut venir de l&#8217;utilisation de <a title="Content Delivery Network" href="http://fr.wikipedia.org/wiki/Content_Delivery_Network" target="_blank">CDN</a> qui suivant la provenance de l&#8217;IP oriente le visiteur vers le serveur le plus proche.</p>
<h2>Diminuer la quantité de données envoyées</h2>
<p>Cela peut paraître bête, mais moins il y a de données, moins il faut attendre pour recevoir celle-ci. Le but n&#8217;est pas de supprimer du contenu, mais bien de faire une diète, par exemple, en optimisant le code (X)HTML, CSS, javascript, &#8230; Ceci en enlevant les espaces superflus et en compressant les données envoyées. On peut notamment citer <a href="http://javascript.crockford.com/jsmin.html" target="_blank">jsmin</a> et <a href="http://yuilibrary.com/downloads/#yuicompressor" target="_blank">YUI Compressor</a></p>
<p>Mais aussi utiliser le mode deflate et gzip de votre serveur web (Apache par exemple). Ceci fera prochainement l&#8217;objet d&#8217;un article.</p>
<h2>Utiliser le cache des navigateurs</h2>
<p>HTTP prévois un mécanisme de cache, pensez à l&#8217;utiliser. Envoyer une bonne entête HTTP sur vos fichiers afin que seul le contenu qui ai changé soit chargé par le visiteur qui revient sur votre site.</p>
<p>Parallèlement à cela, si vous utilisez des librairies ou des framework css ou javascript vous pouvez très bien utiliser un CDN tel que celui que <a href="http://code.google.com/apis/ajaxlibs/documentation/" target="_blank">Google met à votre disposition</a>. Le cache sera le même pour tous les sites qui utiliseront ce CDN et donc le gain « risque » d&#8217;être présent même si le visiteur visite votre site pour la première fois!</p>
<h2>Pour finir</h2>
<p>Et il existe au moins des dizaines d&#8217;autres techniques, c&#8217;est dire si le sujet et étendu et intéressant. Certaines, sont réalisable à l&#8217;échelle de l&#8217;individu tandis que d&#8217;autres nécessitent un investissement, parfois conséquent.</p>
<p>Le but de cet article était d&#8217;intriguer et de vous pousser à aller plus loin. Un web plus rapide est l&#8217;affaire de tous et est bénéfique pour tous : le visiteur, le webmaster, le référencement du site, les FAI (qui paierons moins de bande passante), les hébergeurs, la planète (ben oui, un web optimiser = un web qui consomme moins!), &#8230;</p>
<div class='footnotes'>
<div class='footnotedivider'></div>
<ol>
<li id='fn-243-1'>L&#8217;écologie au niveau d&#8217;internet ce n&#8217;est donc pas ça! Imaginez la consommation de tous ces routeurs et switchs. <span class='footnotereverse'><a href='#fnref-243-1'>&#8617;</a></span></li>
</ol>
</div>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F243&amp;linkname=Vitesse%20et%20r%C3%A9f%C3%A9rencement" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F243&amp;linkname=Vitesse%20et%20r%C3%A9f%C3%A9rencement" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F243&amp;linkname=Vitesse%20et%20r%C3%A9f%C3%A9rencement" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F243&amp;linkname=Vitesse%20et%20r%C3%A9f%C3%A9rencement" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F243&amp;linkname=Vitesse%20et%20r%C3%A9f%C3%A9rencement" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F243&amp;linkname=Vitesse%20et%20r%C3%A9f%C3%A9rencement" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F243&amp;title=Vitesse%20et%20r%C3%A9f%C3%A9rencement" id="wpa2a_2"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/243/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Future &#8230; et projets</title>
		<link>http://grummfy.be/blog/240#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/240#comments</comments>
		<pubDate>Fri, 19 Mar 2010 23:03:52 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[Développement]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Grummfy grrrrumf, ou comment raller]]></category>
		<category><![CDATA[Réflexion du jour]]></category>
		<category><![CDATA[actualité]]></category>
		<category><![CDATA[FSB]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projet]]></category>
		<category><![CDATA[sortie]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=240</guid>
		<description><![CDATA[Mon blog va évoluer d'ici quelques mois, des changements sont en perspectives.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Mon blog va évoluer d&#8217;ici quelques mois, des changements sont en perspectives.</p>
<p style="text-align: justify;">Tout d&#8217;abord, passons en revue les sujets qui seront abordés. Encore et toujours Zend Framework, je compte continuer de publier. C&#8217;est un sujet qui m&#8217;intéresse et qui je trouve est très intéressant. Par ailleurs, je compte faire une série d&#8217;articles sur CMIS. Si vous ignorez ce que c&#8217;est &#8230; alors tant mieux!<br />
En dehors de ces sujets principaux, seront aussi abordés des projets. Dans ceux-ci on pourra citer principalement deux choses : FSB dont le développement va reprendre (enfin &#8230;) et des projets sous Android.</p>
<p style="text-align: justify;">Bref, des choses intéressantes et alléchantes, mais ce n&#8217;est pas tout! Je compte faire du nettoyage. Hé oui, le printemps arrive, les oiseaux chantent, et certains sortes les balais et les caisses pour le « nettoyage de printemps », ce sera donc mon cas. Depuis trop longtemps, je remet a plus tard de me faire un vrai site avec un contenu qui me correspondent et non des « machins » accumulés et qui date &#8230;</p>
<p>Donc :</p>
<ul>
<li> des projets a réalisé</li>
<li> des sujets à aborder</li>
<li> un site renouvelé</li>
</ul>
<p style="text-align: justify;">Voilà le programme!</p>
<p style="text-align: justify;">Mais aussi, et c&#8217;est une idée qui me trotte dans la tête depuis longtemps, éventuellement un nouveau blog ou site consacré à la cuisine.</p>
<p style="text-align: justify;">Vous avez le menu, reste à savoir si le chef sera dans les temps.</p>
]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/240/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Planet Zend Framework</title>
		<link>http://grummfy.be/blog/229#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/229#comments</comments>
		<pubDate>Thu, 21 Jan 2010 21:48:38 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Projet]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[ZF]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=229</guid>
		<description><![CDATA[Un planet sur Zend Framework, pour les francophones est née! Tout d&#8217;abord qu&#8217;est-ce qu&#8217;un planet? Un planet est un agrégateur de flux rss concernant un même sujet. Le but est de promouvoir mais surtout de concentrer les articles publié sur le sujet. Pour ceux qui désirerait y goûter, je vous renvoi vers le site : [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Un planet sur Zend Framework, pour les francophones est née!</p>
<p style="text-align: justify;">Tout d&#8217;abord qu&#8217;est-ce qu&#8217;un planet?<br />
Un planet est un agrégateur de flux rss concernant un même sujet. Le but est de promouvoir mais surtout de concentrer les articles publié sur le sujet.</p>
<p style="text-align: justify;">Pour ceux qui désirerait y goûter, je vous renvoi vers le site : <a title="ZF Planet" href="http://zf-planet.net/fr/" target="_blank">zf planet</a></p>
<p style="text-align: justify;">N&#8217;hésitez pas à demander a en faire partie.</p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F229&amp;linkname=Planet%20Zend%20Framework" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F229&amp;linkname=Planet%20Zend%20Framework" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F229&amp;linkname=Planet%20Zend%20Framework" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F229&amp;linkname=Planet%20Zend%20Framework" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F229&amp;linkname=Planet%20Zend%20Framework" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F229&amp;linkname=Planet%20Zend%20Framework" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F229&amp;title=Planet%20Zend%20Framework" id="wpa2a_4"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/229/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[note]Zend Framework et dojo : auto-complétion</title>
		<link>http://grummfy.be/blog/216#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/216#comments</comments>
		<pubDate>Sat, 02 Jan 2010 15:32:29 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[Développement]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[découverte]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[ZF]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=216</guid>
		<description><![CDATA[Ceci est une note rapide ... j'espère produire un article plus intéressant une autre fois ...
Nous allons regarder les bases de l'auto-complétion  avec ZF et Dojo. Dojo simplement parce qu'il est le mieux intégré des frameworks javascript. Sachant que pour l'instant seul jQuery et Dojo sont intégré...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Ceci est une note rapide &#8230; j&#8217;espère produire un article plus intéressant une autre fois &#8230;</p>
<p style="text-align: justify;">Nous allons regarder les bases de l&#8217;auto-complétion  avec <a href="./?tag=zf#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed">ZF</a> et Dojo. Dojo simplement parce qu&#8217;il est le mieux intégré des frameworks javascript. Sachant que pour l&#8217;instant seul jQuery et Dojo sont intégré</p>
<h2>Le code</h2>
<p><em>application/views/scripts/test/index.phtml</em></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dojo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">enable</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	<span style="color: #666666; font-style: italic;">//activation de dojo</span>
&nbsp;
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">comboBox</span><span style="color: #009900;">&#40;</span>
	<span style="color: #0000ff;">'toto'</span><span style="color: #339933;">,</span>	<span style="color: #666666; font-style: italic;">//id html de l'élément</span>
	<span style="color: #0000ff;">''</span><span style="color: #339933;">,</span>	<span style="color: #666666; font-style: italic;">//valeur par défaut</span>
	<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
		<span style="color: #0000ff;">'autocomplete'</span>	<span style="color: #339933;">=&gt;</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #339933;">,</span>								<span style="color: #666666; font-style: italic;">//activation de l'auto-complétion</span>
		<span style="color: #0000ff;">'store'</span>		<span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'stateStore'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'storeType'</span>		<span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'dojo.data.ItemFileReadStore'</span><span style="color: #339933;">,</span>
		<span style="color: #0000ff;">'storeParams'</span>	<span style="color: #339933;">=&gt;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">baseUrl</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/test/records'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>	<span style="color: #666666; font-style: italic;">//url où les données JSON sont récupérée</span>
		<span style="color: #0000ff;">'searchAttr'</span>		<span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'title'</span><span style="color: #339933;">,</span>								<span style="color: #666666; font-style: italic;">//donnée recherchée pour remplir le combobox</span>
	<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p><em>application/layoutes/scripts/layout.phtml</em></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// ...</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dojo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">isEnabled</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>	<span style="color: #666666; font-style: italic;">//Évite les chargement inutile ....</span>
		<span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dojo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setDjConfigOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'isDebug'</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span>APPLICATION_ENV <span style="color: #339933;">==</span> <span style="color: #0000ff;">'development'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	<span style="color: #666666; font-style: italic;">//affiche une console de deboguage si on est en mode dev</span>
			<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dojo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setDjConfigOption</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'usePlainJson'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>						<span style="color: #666666; font-style: italic;">//utilise du json texte</span>
			<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dojo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">setLocalPath</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">baseUrl</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'/themes/js/dojo/dojo/dojo.js'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>			<span style="color: #666666; font-style: italic;">//chemin vers les fichier dojo</span>
			<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dojo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">addStyleSheetModule</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'dijit.themes.tundra'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>					<span style="color: #666666; font-style: italic;">//thème à chargé</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">dojo</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>												<span style="color: #666666; font-style: italic;">//affichage du tout ...</span>
		<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">// viennent ensuite nos jabvascript, css, etc</span>
<span style="color: #666666; font-style: italic;">//...</span>
<span style="color: #666666; font-style: italic;">//&lt;/head&gt;</span>
<span style="color: #666666; font-style: italic;">// ne pas oublier la class tundra dans le body</span>
<span style="color: #339933;">&lt;</span>body <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;tundra&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #666666; font-style: italic;">//...</span></pre></div></div>

<p><em>application/Bootstrap.php</em></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//...</span>
<span style="color: #666666; font-style: italic;">//dans _initView()</span>
		<span style="color: #666666; font-style: italic;">//dojo</span>
		Zend_Dojo<span style="color: #339933;">::</span><span style="color: #004000;">enableView</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$view</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//...</span></pre></div></div>

<p><em>application/controllers/TestController.php</em></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">class</span> TestController <span style="color: #000000; font-weight: bold;">extends</span> Zend_Controller_Action
<span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> indexAction<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">function</span> recordsAction<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #666666; font-style: italic;">// on désactive l'affichage</span>
		<span style="color: #000088;">$this</span><span style="color: #339933;">-&gt;</span>_helper<span style="color: #339933;">-&gt;</span><span style="color: #004000;">layout</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">disableLayout</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #666666; font-style: italic;">//on va cherchée les données et les met dans un objet Zend_Dojo_Data</span>
		<span style="color: #000088;">$book</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Default_Model_DbTable_Book<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$dojo</span> <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> Zend_Dojo_Data<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'title'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$book</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">fetchAll</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$dojo</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">toJson</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #666666; font-style: italic;">// on sort ... c'est pas joli mais en attendant cela fonctionne!</span>
		<span style="color: #990000;">exit</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># EOF</span></pre></div></div>

<h2>Choses à <span style="text-decoration: line-through;">retenir</span> comprendre</h2>
<p>Les choses à retenir :</p>
<ul>
<li><em>storeParams</em> est l&#8217;url où les donnée au format JSON seront prise</li>
<li><em>searchAttr</em> est l&#8217;élément qui va servir pour recherchée les données dans la masse de donnée JSON</li>
<li>ne pas oublier de mettre la class css &#8216;tundra&#8217;</li>
<li>Dojo peut, via ses styles css modifier votre rendu &#8230;</li>
</ul>
<h2>Remarque</h2>
<p>Version de ZF : 1.9.6</p>
<p>Version de Dojo (fourni avec zf dans extras) : 1.3</p>
]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/216/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google wave &#8230;</title>
		<link>http://grummfy.be/blog/179#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/179#comments</comments>
		<pubDate>Tue, 27 Oct 2009 21:22:59 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=179</guid>
		<description><![CDATA[Hello, cela fait longtemps que je n&#8217;ai plus écrit &#8230; simplement je suis fort pris par mes cours. Bref, cela étant je suis ici pour vous dire que j&#8217;ai gagner 1 invitation a google wave, mais je doit implement attendre que Google veuillent bien me la fournir&#8230;. Pour savoir d&#8217;où je l&#8217;ia gagné je vous [...]]]></description>
			<content:encoded><![CDATA[<p>Hello,<br />
cela fait longtemps que je n&#8217;ai plus écrit &#8230; simplement je suis fort pris par mes cours.</p>
<p>Bref, cela étant je suis ici pour vous dire que j&#8217;ai gagner 1 invitation a google wave, mais je doit implement attendre que Google veuillent bien me la fournir&#8230;.</p>
<p>Pour savoir d&#8217;où je l&#8217;ia gagné je vous renvoi vers le site de <a href="http://t0m-s.be/et-les-gagnants-dune-invit-google-wave-sont.html">T0m-S</a></p>
<p>Plus d&#8217;info le jour du test</p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F179&amp;linkname=Google%20wave%20%26%238230%3B" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F179&amp;linkname=Google%20wave%20%26%238230%3B" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F179&amp;linkname=Google%20wave%20%26%238230%3B" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F179&amp;linkname=Google%20wave%20%26%238230%3B" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F179&amp;linkname=Google%20wave%20%26%238230%3B" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F179&amp;linkname=Google%20wave%20%26%238230%3B" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F179&amp;title=Google%20wave%20%26%238230%3B" id="wpa2a_6"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/179/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quelques livres &#8230;</title>
		<link>http://grummfy.be/blog/123#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/123#comments</comments>
		<pubDate>Mon, 10 Aug 2009 02:02:27 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=123</guid>
		<description><![CDATA[J&#8217;adore lire, alors afin de m&#8217;y retrouver j&#8217;ai commencer à encoder ce que j&#8217;avais &#8230; Voici une bonne partie de ce que j&#8217;ai (a ce jour) : http://grummfy.be/gallerie/autres/livre2.html]]></description>
			<content:encoded><![CDATA[<p>J&#8217;adore lire, alors afin de m&#8217;y retrouver j&#8217;ai commencer à encoder ce que j&#8217;avais &#8230;</p>
<p>Voici une bonne partie de ce que j&#8217;ai (a ce jour) : <a href="http://grummfy.be/gallerie/autres/livre2.html">http://grummfy.be/gallerie/autres/livre2.html</a></p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F123&amp;linkname=Quelques%20livres%20%26%238230%3B" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F123&amp;linkname=Quelques%20livres%20%26%238230%3B" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F123&amp;linkname=Quelques%20livres%20%26%238230%3B" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F123&amp;linkname=Quelques%20livres%20%26%238230%3B" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F123&amp;linkname=Quelques%20livres%20%26%238230%3B" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F123&amp;linkname=Quelques%20livres%20%26%238230%3B" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F123&amp;title=Quelques%20livres%20%26%238230%3B" id="wpa2a_8"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/123/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flux et adresse de flux &#8230;</title>
		<link>http://grummfy.be/blog/122#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/122#comments</comments>
		<pubDate>Mon, 03 Aug 2009 23:57:02 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=122</guid>
		<description><![CDATA[Hello, encore une fois je tient à rappeler qu&#8217;il vaux mieux utiliser comme adresse de flux rss : http://feeds.feedburner.com/GrummfysProject Cela permet d&#8217;être sûr que ce qui est envoyer est ce qui est là!]]></description>
			<content:encoded><![CDATA[<p>Hello,<br />
encore une fois je tient à rappeler qu&#8217;il vaux mieux utiliser comme adresse de flux rss :  http://feeds.feedburner.com/GrummfysProject</p>
<p>Cela permet d&#8217;être sûr que ce qui est envoyer est ce qui est là!</p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F122&amp;linkname=Flux%20et%20adresse%20de%20flux%20%26%238230%3B" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F122&amp;linkname=Flux%20et%20adresse%20de%20flux%20%26%238230%3B" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F122&amp;linkname=Flux%20et%20adresse%20de%20flux%20%26%238230%3B" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F122&amp;linkname=Flux%20et%20adresse%20de%20flux%20%26%238230%3B" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F122&amp;linkname=Flux%20et%20adresse%20de%20flux%20%26%238230%3B" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F122&amp;linkname=Flux%20et%20adresse%20de%20flux%20%26%238230%3B" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F122&amp;title=Flux%20et%20adresse%20de%20flux%20%26%238230%3B" id="wpa2a_10"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/122/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nouveau moteur, nouveau départ?</title>
		<link>http://grummfy.be/blog/118#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/118#comments</comments>
		<pubDate>Sun, 02 Aug 2009 02:03:39 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=118</guid>
		<description><![CDATA[Comme vous vous en apercevez je vient de passser de Dotclear 2 à WordPress 2. Théoriquement je devrait publier de nouveaux articles d&#8217;ici peu … Au programme : Continuation d&#8217;un nouveau thème commencé il y a … Ajout de plugins pour la coloration du code et pour identi.ca ou twitter Recettes de cuisines Programmations Zend [...]]]></description>
			<content:encoded><![CDATA[<p>Comme vous vous en apercevez je vient de passser de Dotclear 2 à WordPress 2.</p>
<p>Théoriquement je devrait publier de nouveaux articles d&#8217;ici peu …<br />
Au programme :</p>
<ul>
<li>Continuation d&#8217;un nouveau thème commencé il y a …</li>
<li>Ajout de plugins pour la coloration du code et pour identi.ca ou twitter</li>
<li>Recettes de cuisines</li>
<li>Programmations</li>
<li>Zend Framework?</li>
<li>&#8230;</li>
</ul>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F118&amp;linkname=Nouveau%20moteur%2C%20nouveau%20d%C3%A9part%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F118&amp;linkname=Nouveau%20moteur%2C%20nouveau%20d%C3%A9part%3F" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F118&amp;linkname=Nouveau%20moteur%2C%20nouveau%20d%C3%A9part%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F118&amp;linkname=Nouveau%20moteur%2C%20nouveau%20d%C3%A9part%3F" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F118&amp;linkname=Nouveau%20moteur%2C%20nouveau%20d%C3%A9part%3F" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F118&amp;linkname=Nouveau%20moteur%2C%20nouveau%20d%C3%A9part%3F" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F118&amp;title=Nouveau%20moteur%2C%20nouveau%20d%C3%A9part%3F" id="wpa2a_12"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/118/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FOSDEM 2009 j&#8217;y serait encore une fois</title>
		<link>http://grummfy.be/blog/113#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/113#comments</comments>
		<pubDate>Fri, 09 Jan 2009 23:23:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=113</guid>
		<description><![CDATA[Quésako? When?&#160;: 7 &#38; 8 février 2009 What? Where? Europe, Belgique, Bruxelles, ULB Qui y va? Pour ceux que cela intéresse des vidéo sont faites de tous les grands auditoire et disponible en ligne. C&#8217;est gratuit aussi&#8230;.]]></description>
			<content:encoded><![CDATA[<p><a href="http://fr.wikipedia.org/wiki/Free_and_open_source_software_developers%27_european_meeting">Quésako?</a></p>
<p>When?&nbsp;: 7 &amp; 8 février 2009</p>
<p><a href="http://www.fosdem.org/2009/schedule/events">What?</a></p>
<p>Where? Europe, Belgique, Bruxelles, ULB</p>
<p>Qui y va?</p>
<p> <a href="http://www.fosdem.org"><img src="http://www.fosdem.org/promo/going-to" alt="I'm going to FOSDEM, the Free and Open Source Software Developers' European Meeting" /></a>
<p>Pour ceux que cela intéresse des vidéo sont faites de tous les grands auditoire et disponible en ligne. C&#8217;est gratuit aussi&#8230;.</p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F113&amp;linkname=FOSDEM%202009%20j%26%238217%3By%20serait%20encore%20une%20fois" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F113&amp;linkname=FOSDEM%202009%20j%26%238217%3By%20serait%20encore%20une%20fois" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F113&amp;linkname=FOSDEM%202009%20j%26%238217%3By%20serait%20encore%20une%20fois" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F113&amp;linkname=FOSDEM%202009%20j%26%238217%3By%20serait%20encore%20une%20fois" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F113&amp;linkname=FOSDEM%202009%20j%26%238217%3By%20serait%20encore%20une%20fois" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F113&amp;linkname=FOSDEM%202009%20j%26%238217%3By%20serait%20encore%20une%20fois" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F113&amp;title=FOSDEM%202009%20j%26%238217%3By%20serait%20encore%20une%20fois" id="wpa2a_14"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/113/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EEEPC en attente</title>
		<link>http://grummfy.be/blog/112#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/112#comments</comments>
		<pubDate>Tue, 30 Dec 2008 01:05:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[EEEPc]]></category>
		<category><![CDATA[GNU|Linux]]></category>
		<category><![CDATA[trucs et astuces]]></category>
		<category><![CDATA[tutoriel]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=112</guid>
		<description><![CDATA[Comme j&#8217;en avais parler ici, ça y est, j&#8217;ai commandé et il est arrivé mon eeepc. Efin je en l&#8217;ai aps encore entre les mains, snif, snif, &#8230; mais cela c&#8217;est une autre histoire! Bref, le problème est que j&#8217;ai commandé la version MS windows car pour le 1000 la version GNU/Llinux n&#8217;était pas disponible [...]]]></description>
			<content:encoded><![CDATA[<p>Comme j&#8217;en avais parler <a href="index.php?post/2008/09/06/Enfin-un-portable-pour-Grummfy#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed">ici</a>, ça y est, j&#8217;ai commandé et il est arrivé mon eeepc. Efin je en l&#8217;ai aps encore entre les mains, snif, snif, &#8230; mais cela c&#8217;est une autre histoire!</p>
<p>Bref, le problème est que j&#8217;ai commandé la version MS windows car pour le 1000 la version GNU/Llinux n&#8217;était pas disponible partout ou j&#8217;ai regardé. Du coup la question se pose&nbsp;:</p>
<ul>
<li>Xandros, depuis un cd de restauration trouver sur le net?</li>
<li>Ubuntu-EEE qui changera bientôt de nom</li>
<li>Xubuntu-eee</li>
<li>Mandriva</li>
<li>&#8230;</li>
</ul>
<p>De nombreuse distribution linux propose des déclinaisons EEEpc.</p>
<h2>Système de base Xandros via une clef USB</h2>
<p>La première chose c&#8217;est de tester le système de base. En cherchant sur le net on se rends compte que trouver un ISO de cette distribution est assez difficile, pas grave au moins 2 personnes l&#8217;on mis en téléchargement (sans compter les torrents)&nbsp;:</p>
<p><a href="http://www.tododo.com/eee/eeePC_french_support_DVD_1.0.iso">tododo.com</a> ou <a href="http://www.fabcool.net/eee/eeePC_french_support_DVD_1.0.iso">fabcool</a></p>
<p>Une fois récupéré, sous linux&nbsp;:</p>
<ul>
<li>Monter l&#8217;image iso&nbsp;: mount -o loop -t iso9660 /chemin/fichier.iso /chemin/de/montage</li>
<li>Si vous n&#8217;avez pas de lecteur externe vous aurez besoin d&#8217;une clef usb ou d&#8217;une carte mémoire ou de totu support qui peux être relier au eeepc et qui peux être booter, pour la suite on suppose que vous utilisez une clef USB.</li>
<li>Brancher votre clef USB, Démonté la, si elle est montée. sudo umount /dev/sdz (si votre clef usb est le pérphérique /dev/sdz)</li>
<li>Faites dd if=/chemin/montage/iso/dvd/restauration/eepc/xandros/Software/BootTool/BootTool/usb.img of=/dev/sdz (/!\pas /dev/sdz1 ou autre mais bien le périphérique en entier!!!)</li>
<li>Dépluguer et repluger la clef, Monter la si nécéssaire.</li>
<li>Copier les fichiers suivant (toujours du DVD de restauration)&nbsp;: cp -v P701L.gz 2008.01.02_17.24.bld blockcount.dat ver.tag user_start.dat /chemin/montage/clef/usb</li>
<li>Démonter et installer.</li>
<li>Tester</li>
</ul>
<p>Personnellement, c&#8217;est ce que je ferait (la clef est déjà prête) dès que j&#8217;aurais mon EEEPc. Mais je doute de laisser cela en place.</p>
<p>Edit&nbsp;: Il se fait que les distribution que l&#8217;on trouve sont uniquement des distributions pour les versions 700 et non 900 ou 1000. Et de fait, lorsque l&#8217;ont est cela ne fonctionne pas!</p>
<h2>Ubuntu et dérivé</h2>
<h3>Ubuntu-eee</h3>
<p>Tout est expliquer depuis leur site web et je ne voix pas l&#8217;intérêt de le réexpliquer. <a href="http://www.ubuntu-eee.com/wiki/index.php5?title=Get_Ubuntu_Eee" class="broken_link">Plus d&#8217;info?</a></p>
<h3>EEEXubuntu</h3>
<p>Comme l&#8217;autre tout est expliquer sur le site. <a href="http://wiki.eeeuser.com/ubuntu:eeexubuntu:home">Plus d&#8217;info?</a></p>
<h3>Bof&#8230;</h3>
<p>Une remarque, cependant, ubuntu-eee et eeexubuntu sont pour moi nettement moins fiable qu&#8217;une installation d&#8217;un ubuntu correctement paramétré. En effet, ces 2 distributions ont du retards par rapport au version officiel et, toujours pour moi, sont suffisamment proche d&#8217;une version officiel que pour pouvoir être customiser soit même. Mais je compte néanmoins les tester.</p>
<p>Au final je pense que je prendrait, par habitude, un Ubuntu ou peut-être un XUbuntu que je modifierait moi-même. Le tout avec <a href="http://slim.berlios.de/">SLIM</a> comme gestionnaire de connexion.</p>
<h2>Autre?</h2>
<p>Je ne pense pas tester d&#8217;autre système dans l&#8217;immédiat.</p>
<p>Dès que j&#8217;aurais tester tout cela je ferait certainement un billet.</p>
<p>Au passage bonne fête de fin d&#8217;année!!!!!!!!!!</p>
<h2>Quelques liens</h2>
<ul>
<li><a href="http://wiki.eeeuser.com/" title="http://wiki.eeeuser.com/">http://wiki.eeeuser.com/</a></li>
<li><a href="http://doc.ubuntu-fr.org/installation/depuis_une_cle_usb">Installation de ubuntu depuis une clef USB</a></li>
<li><a href="http://doc.ubuntu-fr.org/installation_sur_disque_usb">Même chose que précédent?</a></li>
<li><a href="http://doc.ubuntu-fr.org/asus_eee_pc_901" title="http://doc.ubuntu-fr.org/asus_eee_pc_901">http://doc.ubuntu-fr.org/asus_eee_p&#8230;</a></li>
</ul>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F112&amp;linkname=EEEPC%20en%20attente" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F112&amp;linkname=EEEPC%20en%20attente" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F112&amp;linkname=EEEPC%20en%20attente" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F112&amp;linkname=EEEPC%20en%20attente" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F112&amp;linkname=EEEPC%20en%20attente" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F112&amp;linkname=EEEPC%20en%20attente" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F112&amp;title=EEEPC%20en%20attente" id="wpa2a_16"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/112/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ces morts que l&#8217;on regrette</title>
		<link>http://grummfy.be/blog/103#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/103#comments</comments>
		<pubDate>Thu, 20 Mar 2008 18:52:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=103</guid>
		<description><![CDATA[Il y a des morts qui font de grand trou, et surtout lorsque ces morts se succèdent&#160;: Gary Gygax l&#8217;inventeur de ADD (notamment) et de bien d&#8217;autre chose (il y a quelques semaines) Arthur C. Clark auteur génialisme (hier) Ces deux génies font partie de la culture geek et sont une perte énorme, puissions-nous nous [...]]]></description>
			<content:encoded><![CDATA[<p>Il y a des morts qui font de grand trou, et surtout lorsque ces morts se succèdent&nbsp;:</p>
<ul>
<li>Gary Gygax l&#8217;inventeur de ADD (notamment) et de bien d&#8217;autre chose (il y a quelques semaines)</li>
<li>Arthur C. Clark auteur génialisme (hier)</li>
</ul>
<p>Ces deux génies font partie de la culture geek et sont une perte énorme, puissions-nous nous sustenter de ce qu&#8217;ils ont laissé et faire évolué le reste!</p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F103&amp;linkname=Ces%20morts%20que%20l%26%238217%3Bon%20regrette" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F103&amp;linkname=Ces%20morts%20que%20l%26%238217%3Bon%20regrette" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F103&amp;linkname=Ces%20morts%20que%20l%26%238217%3Bon%20regrette" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F103&amp;linkname=Ces%20morts%20que%20l%26%238217%3Bon%20regrette" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F103&amp;linkname=Ces%20morts%20que%20l%26%238217%3Bon%20regrette" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F103&amp;linkname=Ces%20morts%20que%20l%26%238217%3Bon%20regrette" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F103&amp;title=Ces%20morts%20que%20l%26%238217%3Bon%20regrette" id="wpa2a_18"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/103/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>La non-communication</title>
		<link>http://grummfy.be/blog/101#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/101#comments</comments>
		<pubDate>Sun, 17 Feb 2008 22:51:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[étrange]]></category>
		<category><![CDATA[santé]]></category>
		<category><![CDATA[sbé]]></category>
		<category><![CDATA[vie]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=101</guid>
		<description><![CDATA[<p>La non-communication ou plus simplement l'absence de communication pose souvent problème.</p> <p>Mais le plus gros problème est très loin de ce qu'on pourrait croire, c'est la peur! <em>La peur de l'inconnu</em>.</p>]]></description>
			<content:encoded><![CDATA[<p>La non-communication ou plus simplement l&#8217;absence de communication pose souvent problème.</p>
<p>Mais le plus gros problème est très loin de ce qu&#8217;on pourrait croire, c&#8217;est la peur! <em>La peur de l&#8217;inconnu</em>.</p>
<p><span id="more-101"></span></p>
<p>En effet, les gens peuvent s&#8217;imaginer tout et n&#8217;importe quoi.</p>
<p>On le voit dans les relations humains-humains, humains-animaux, humains-temps, humains-autres; dans les activités humaines, &#8230; bref partout. Regardé votre environnement, observer les gens.</p>
<p>Lorsque les gens ont peur ils font des choses insensés, ne réagissent pas toujours correctement ni de manière cohérente.</p>
<p>Des exemples, je suis sûr que vous en trouverez, il y en a assez autour de nous.</p>
<p>Bref, je dirais pensez à communiquer, que ce soit avec vos proches, mais aussi envers vos clients, vos ennemis, vos profs, bref avec tout, même avec le chat du voisin et la plante carnivore de tante Gertrude. Cela ne peut que faire du bien. Remarqué une chose, je n&#8217;ai pas dit de dire la vérité, amis de communiquer. Certes, dire la vérité en étant honnête est mieux, mais on ne peut pas changer tout le monde, enfin pas tout de suite en tout cas!</p>
<p>Je remercie un de mes hébergeurs, qui a apparemment été hacker (je dis apparemment vu qu&#8217;il n&#8217;y a pas de communication&#8230;) et qui semble restaurer progressivement les sites, les données semblent intacte donc tout va bien!.</p>
]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/101/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Noël et les cadeaux &#8230;.</title>
		<link>http://grummfy.be/blog/100#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/100#comments</comments>
		<pubDate>Tue, 25 Dec 2007 15:07:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[FSB]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=100</guid>
		<description><![CDATA[Joyeux noël, bananné et autre festivité &#8230;. Voila ça c&#8217;est fait &#8230;. Bon revenons en au sujet ça y est FSB 2 (Fire Soft Board) est sorti en version finale!!!!!!!!!!!!!!!!!!! Enfin après tant de temps c&#8217;est sorti. L&#8217;annonce&#160;: http://www.fire-soft-board.com/fsb/index.php?p=topic&#38;t_id=7816]]></description>
			<content:encoded><![CDATA[<p>Joyeux noël, bananné et autre festivité &#8230;.</p>
<p>Voila ça c&#8217;est fait &#8230;.</p>
<p>Bon revenons en au sujet</p>
<p>ça y est FSB 2 (Fire Soft Board) est sorti en version finale!!!!!!!!!!!!!!!!!!!</p>
<p>Enfin après tant de temps c&#8217;est sorti.</p>
<p>L&#8217;annonce&nbsp;: <a href="http://www.fire-soft-board.com/fsb/index.php?p=topic&amp;t_id=7816" hreflang="fr">http://www.fire-soft-board.com/fsb/index.php?p=topic&amp;t_id=7816</a></p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F100&amp;linkname=No%C3%ABl%20et%20les%20cadeaux%20%26%238230%3B." title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F100&amp;linkname=No%C3%ABl%20et%20les%20cadeaux%20%26%238230%3B." title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F100&amp;linkname=No%C3%ABl%20et%20les%20cadeaux%20%26%238230%3B." title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F100&amp;linkname=No%C3%ABl%20et%20les%20cadeaux%20%26%238230%3B." title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F100&amp;linkname=No%C3%ABl%20et%20les%20cadeaux%20%26%238230%3B." title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F100&amp;linkname=No%C3%ABl%20et%20les%20cadeaux%20%26%238230%3B." title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F100&amp;title=No%C3%ABl%20et%20les%20cadeaux%20%26%238230%3B." id="wpa2a_20"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/100/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Les Geek qui font avancer le monde?</title>
		<link>http://grummfy.be/blog/99#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/99#comments</comments>
		<pubDate>Sun, 23 Dec 2007 13:35:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=99</guid>
		<description><![CDATA[Je blogue pas beaucoup, car je n&#8217;ai pas trop le temps. Par contre je lit énormément de flux rss (d&#8217;ailleurs vous pouvez avoir une sélection de certain billet via ce lien). Dans ce que je lit, je suis tombé sur cette articles&#160;: IPv6, pourquoi Je vous donne un extrait qui m&#8217;a frapper&#160;: D&#8217;abord, parce que [...]]]></description>
			<content:encoded><![CDATA[<p>Je blogue pas beaucoup, car je n&#8217;ai pas trop le temps. Par contre je lit énormément de flux rss (d&#8217;ailleurs vous pouvez avoir une sélection de certain billet via ce <a href="http://www.google.com/reader/shared/user/13434689740240571082/state/com.google/broadcast">lien</a>).</p>
<p>Dans ce que je lit, je suis tombé sur cette articles&nbsp;: <a href="http://roland.entierement.nu/blog/2007/12/23/ipv6-pourquoi.html" hreflang="fr">IPv6, pourquoi</a></p>
<p>Je vous donne un extrait qui m&#8217;a frapper&nbsp;:</p>
<blockquote><p>D&#8217;abord, parce que ne l&#8217;oublions pas, ce sont les geeks qui font marcher le monde, pas les marchands de lessive ou les faiseurs d&#8217;opinion. Pas de geeks dans les années 70, pas d&#8217;informatique dans les années 80. Pas de geeks dans les années 90, pas d&#8217;Internet dans les années 2000. Donc quand les geeks disent que certaines choses sont importantes, il est souvent utile de les écouter. Expliquons donc en quoi IPv6 c&#8217;est important.</p>
</blockquote>
<p>ça tue non?</p>
<p>a+</p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F99&amp;linkname=Les%20Geek%20qui%20font%20avancer%20le%20monde%3F" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F99&amp;linkname=Les%20Geek%20qui%20font%20avancer%20le%20monde%3F" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F99&amp;linkname=Les%20Geek%20qui%20font%20avancer%20le%20monde%3F" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F99&amp;linkname=Les%20Geek%20qui%20font%20avancer%20le%20monde%3F" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F99&amp;linkname=Les%20Geek%20qui%20font%20avancer%20le%20monde%3F" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F99&amp;linkname=Les%20Geek%20qui%20font%20avancer%20le%20monde%3F" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F99&amp;title=Les%20Geek%20qui%20font%20avancer%20le%20monde%3F" id="wpa2a_22"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/99/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Sortie importante&#8230;</title>
		<link>http://grummfy.be/blog/97#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/97#comments</comments>
		<pubDate>Thu, 22 Nov 2007 11:51:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[sortie]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=97</guid>
		<description><![CDATA[Hello, dernièrement deux logiciel important, pour peux que vous en ayez besoin , sont sorti! J&#8217;ai nomé&#160;: Wampserver JDOM Wampserver Wampserver est un gestionnaire de serveur tel easyphp (mais en bien mieux, à mon goût en tout cas!), qui permet d&#8217;utiliser apache, php4 ou 5, &#8230; la version 1 était déjà excellent, la v2 s&#8217;annonce [...]]]></description>
			<content:encoded><![CDATA[<p>Hello, dernièrement deux logiciel important, pour peux que vous en ayez besoin <img src='http://grummfy.be/blog/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  , sont sorti!</p>
<p>J&#8217;ai nomé&nbsp;:</p>
<ul>
<li>Wampserver</li>
<li>JDOM</li>
</ul>
<h4>Wampserver</h4>
<p>Wampserver est un gestionnaire de serveur tel easyphp (mais en bien mieux, à mon goût en tout cas!), qui permet d&#8217;utiliser apache, php4 ou 5, &#8230; la version 1 était déjà excellent, la v2 s&#8217;annonce délicieuse!</p>
<p>Le <a href="http://www.wampserver.com/download.php" class="broken_link">[télécharger</a>]</p>
<p>Pour ceux qui connaissent le logiciel, vous remarquerez que tout à été revu de font en comble&nbsp;: design, logo, &#8230;</p>
<p><a href="http://www.wampserver.com/presentation.php">[Présentation du logiciel</a>]</p>
<h4>JDOM</h4>
<p>JDOM est une libraire java permetant de manipuler un arbre dom. Le version 1.1 est sortie</p>
<p>Découvrez cette librairie sur le <a href="http://jdom.org/">[site officiel de JDOM</a>]</p>
<p><a href="http://jdom.org/dist/binary/">[Téléchargement</a>]</p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F97&amp;linkname=Sortie%20importante%26%238230%3B" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F97&amp;linkname=Sortie%20importante%26%238230%3B" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F97&amp;linkname=Sortie%20importante%26%238230%3B" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F97&amp;linkname=Sortie%20importante%26%238230%3B" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F97&amp;linkname=Sortie%20importante%26%238230%3B" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F97&amp;linkname=Sortie%20importante%26%238230%3B" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F97&amp;title=Sortie%20importante%26%238230%3B" id="wpa2a_24"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/97/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Des scripts perso pour se facilité la vie</title>
		<link>http://grummfy.be/blog/96#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/96#comments</comments>
		<pubDate>Wed, 07 Nov 2007 19:26:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[GNU|Linux]]></category>
		<category><![CDATA[libre]]></category>
		<category><![CDATA[Posteet]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[trucs et astuces]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=96</guid>
		<description><![CDATA[Sous GNU/Linux un petit script peux souvent facilité la vie, et allégé mais surtout accéléré certaine tâche. Qu&#8217;est-ce qu&#8217;un script? Un script est une suite d&#8217;instruction enregistré dans un fichier, qui peuvent être exécuté en lançant ce fichier, dans l&#8217;interpréteur de script. Souvent nommé script bash, shell, &#8230; Stocker et accèder facilement à ces scripts [...]]]></description>
			<content:encoded><![CDATA[<p>Sous GNU/Linux un petit script peux souvent facilité la vie, et allégé mais surtout accéléré certaine tâche.</p>
<h2>Qu&#8217;est-ce qu&#8217;un script?</h2>
<p>Un script est une suite d&#8217;instruction enregistré dans un fichier, qui peuvent être exécuté en lançant ce fichier, dans l&#8217;interpréteur de script. Souvent nommé script bash, shell, &#8230;</p>
<h2>Stocker et accèder facilement à ces scripts</h2>
<p>U!ne fois votre script fait, vous pouvez l&#8217;enregistrer dans un simple fichier texte, soit avec l&#8217;extension .sh, soit sans extension (après tout on est sous Linux!). Personnellement, j&#8217;ai un dossier nommé <q>.myScript,</q> dans mon répertoire home (donc <q>/home/grummfy/.myScript/</q>). Afin d&#8217;accédé à mes script je doit tapé<br />
<code>~/.myScript/nomduscript.sh</code>.</p>
<p>Ce n&#8217;est pas pratique du tout!</p>
<p>Afin de ce facilité la tâche, je désire que le PATH inclut mon dossier de script. Le PATH est une variable système qui défini le chemin (<q>path</q> = chemin en français) vers les différent répertoire contenant, notamment, des exécutables.<br />
Je pourrais très bien tapé <br />
<code>set PATH=.....}}</code> <br />
mais je n&#8217;en voix pas l&#8217;utilité et surtout je trouve cela lourd.</p>
<p>Reprenons donc à la base. En principe, lorsque vous lancer la <a href="http://doc.ubuntu-fr.org/console">console</a> ou interpréteur de commande, vous lancer un programme qui va aller chercher toute une série de préférence utilisateur, notamment dans le fichier script <q>~/.bashrc</q></p>
<p>Modifions donc ce fichier, en y ajoutant ceci&nbsp;:</p>
<pre> # set my batch dir PATH=~/.myScript/:&quot;${PATH}&quot; </pre>
<p>La première ligne étant un commentaires, et la deuxième l&#8217;instruction qui ajoute le chemin vers mon dossier de script.</p>
<p>Pour rappel, le <q>~</q> est un raccourci pour <q>/home/vous/</q>, dans mon cas <q>/home/grummfy/</q></p>
<h2>Aller plus loin</h2>
<p>En effectuant divers recherche sur votre moteur de recherche préféré (<a href="http://www.google.com">Google</a>, live search, Yahoo, &#8230;), vous devriez pouvoir trouvez énormément de tuto pour des scripts, que se soit linux, windows, bsd, mac ou autre.</p>
<p>Néanmoins, voici quelques pistes&nbsp;:</p>
<ul>
<li><a href="http://www.tuteurs.ens.fr/unix/shell/script.html">Programmation de scripts en shell</a></li>
<li>Scripting shell sous Linux</li>
<li> Programmation de scripts&nbsp;: intro</li>
<li><a href="http://lea-linux.org/cached/index/Shell.html" class="broken_link">Les bases du shell</a>, de plsu la page comporte des liens vers des sites de références!</li>
<li><a href="http://www.pcinpact.com/forum/sujet_45608.htm" class="broken_link">Les script bash sur pcinpact</a></li>
</ul>
<p>ps&nbsp;: Non GNU/Linux n&#8217;est pas le seul à possédé des scripts, mais ici je m&#8217;y réfère car je parle de ce que j&#8217;ai sous la main&#8230;.</p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F96&amp;linkname=Des%20scripts%20perso%20pour%20se%20facilit%C3%A9%20la%20vie" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F96&amp;linkname=Des%20scripts%20perso%20pour%20se%20facilit%C3%A9%20la%20vie" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F96&amp;linkname=Des%20scripts%20perso%20pour%20se%20facilit%C3%A9%20la%20vie" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F96&amp;linkname=Des%20scripts%20perso%20pour%20se%20facilit%C3%A9%20la%20vie" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F96&amp;linkname=Des%20scripts%20perso%20pour%20se%20facilit%C3%A9%20la%20vie" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F96&amp;linkname=Des%20scripts%20perso%20pour%20se%20facilit%C3%A9%20la%20vie" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F96&amp;title=Des%20scripts%20perso%20pour%20se%20facilit%C3%A9%20la%20vie" id="wpa2a_26"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/96/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AnySurfer ou l&#8217;accessibilité belge!</title>
		<link>http://grummfy.be/blog/95#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/95#comments</comments>
		<pubDate>Fri, 02 Nov 2007 19:11:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[accessibilité]]></category>
		<category><![CDATA[belge]]></category>
		<category><![CDATA[découverte]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=95</guid>
		<description><![CDATA[Je vient de découvrir ce site&#160;: http://www.anysurfer.be via le module de payement en ligne de ma banque Dexia. Je trouve cette idée vraiment génial, de plus, pour une fois, les explications et conseils donnée sont clairs! Bref allez-y&#160;: Le site de AnySurfer Les pages conseils]]></description>
			<content:encoded><![CDATA[<p>Je vient de découvrir ce site&nbsp;: <a href="http://www.anysurfer.be" title="http://www.anysurfer.be">http://www.anysurfer.be</a> via le module de payement en ligne de ma banque <a href="http://www.dexia.be">Dexia</a>.</p>
<p>Je trouve cette idée vraiment génial, de plus, pour une fois, les explications et conseils donnée sont clairs!</p>
<h4>Bref allez-y&nbsp;:</h4>
<p>Le site de <a href="http://www.anysurfer.be">AnySurfer</a><br />
Les <a href="http://www.anysurfer.be/fr/directives/">pages conseils</a></p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F95&amp;linkname=AnySurfer%20ou%20l%26%238217%3Baccessibilit%C3%A9%20belge%21" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F95&amp;linkname=AnySurfer%20ou%20l%26%238217%3Baccessibilit%C3%A9%20belge%21" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F95&amp;linkname=AnySurfer%20ou%20l%26%238217%3Baccessibilit%C3%A9%20belge%21" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F95&amp;linkname=AnySurfer%20ou%20l%26%238217%3Baccessibilit%C3%A9%20belge%21" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F95&amp;linkname=AnySurfer%20ou%20l%26%238217%3Baccessibilit%C3%A9%20belge%21" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F95&amp;linkname=AnySurfer%20ou%20l%26%238217%3Baccessibilit%C3%A9%20belge%21" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F95&amp;title=AnySurfer%20ou%20l%26%238217%3Baccessibilit%C3%A9%20belge%21" id="wpa2a_28"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/95/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nouveau service en route</title>
		<link>http://grummfy.be/blog/93#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/93#comments</comments>
		<pubDate>Tue, 30 Oct 2007 11:55:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[del.icio.us]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=93</guid>
		<description><![CDATA[VOila, ça y est, je vient enfin de m&#8217;enregistrer sur del.iciou.us &#8230; désormais vous aurez accès a certain lien (qui ne sont pas repris dans mes flux rss (voir en bas à droite du blog)) mon compte&#160;: http://del.icio.us/Grummfy]]></description>
			<content:encoded><![CDATA[<p>VOila, ça y est,</p>
<p>je vient enfin de m&#8217;enregistrer sur del.iciou.us &#8230;</p>
<p>désormais vous aurez accès a certain lien (qui ne sont pas repris dans mes flux rss (voir en bas à droite du blog))</p>
<p>mon compte&nbsp;: <a href="http://del.icio.us/Grummfy" title="http://del.icio.us/Grummfy" class="broken_link">http://del.icio.us/Grummfy</a></p>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F93&amp;linkname=Nouveau%20service%20en%20route" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F93&amp;linkname=Nouveau%20service%20en%20route" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F93&amp;linkname=Nouveau%20service%20en%20route" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F93&amp;linkname=Nouveau%20service%20en%20route" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F93&amp;linkname=Nouveau%20service%20en%20route" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F93&amp;linkname=Nouveau%20service%20en%20route" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F93&amp;title=Nouveau%20service%20en%20route" id="wpa2a_30"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/93/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sortie intéressante!</title>
		<link>http://grummfy.be/blog/90#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://grummfy.be/blog/90#comments</comments>
		<pubDate>Mon, 22 Oct 2007 21:28:00 +0000</pubDate>
		<dc:creator>Grummfy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[FSB]]></category>
		<category><![CDATA[GNU|Linux]]></category>

		<guid isPermaLink="false">http://grummfy.be/blog/?p=90</guid>
		<description><![CDATA[Hello, voici deux sortie qui pour moi sont importante&#160;: La distributions linux Ubutntu basé sur debian est sortie en version 7.10 plus d&#8217;info&#160;: http://doc.ubuntu-fr.org/gutsy Sous peu, d&#8217;ici quelques heures, la rc5 de FSB, c&#8217;est-à-dire bientôt la final, va sortir!!!!!&#160;: http://www.fire-soft-board.com =&#62; http://www.fire-soft-board.com/fsb/&#8230;]]></description>
			<content:encoded><![CDATA[<p>Hello, voici deux sortie qui pour moi sont importante&nbsp;:</p>
<ul>
<li>La distributions linux Ubutntu basé sur debian est sortie en version 7.10 plus d&#8217;info&nbsp;: <a href="http://doc.ubuntu-fr.org/gutsy" title="http://doc.ubuntu-fr.org/gutsy">http://doc.ubuntu-fr.org/gutsy</a></li>
<li>Sous peu, d&#8217;ici quelques heures, la rc5 de FSB, c&#8217;est-à-dire bientôt la final, va sortir!!!!!&nbsp;: <a href="http://www.fire-soft-board.com" title="http://www.fire-soft-board.com">http://www.fire-soft-board.com</a> =&gt; <a href="http://www.fire-soft-board.com/fsb/index.php?p=topic&amp;p_id=88263#p88263" title="http://www.fire-soft-board.com/fsb/index.php?p=topic&amp;p_id=88263#p88263">http://www.fire-soft-board.com/fsb/&#8230;</a></li>
</ul>
<p><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F90&amp;linkname=sortie%20int%C3%A9ressante%21" title="Delicious" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_technorati_favorites" href="http://www.addtoany.com/add_to/technorati_favorites?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F90&amp;linkname=sortie%20int%C3%A9ressante%21" title="Technorati Favorites" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/technorati.png" width="16" height="16" alt="Technorati Favorites"/></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F90&amp;linkname=sortie%20int%C3%A9ressante%21" title="Twitter" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F90&amp;linkname=sortie%20int%C3%A9ressante%21" title="Facebook" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_bookmarks" href="http://www.addtoany.com/add_to/google_bookmarks?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F90&amp;linkname=sortie%20int%C3%A9ressante%21" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/google.png" width="16" height="16" alt="Google Bookmarks"/></a><a class="a2a_button_netvibes_share" href="http://www.addtoany.com/add_to/netvibes_share?linkurl=http%3A%2F%2Fgrummfy.be%2Fblog%2F90&amp;linkname=sortie%20int%C3%A9ressante%21" title="Netvibes Share" rel="nofollow" target="_blank"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/icons/netvibes.png" width="16" height="16" alt="Netvibes Share"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fgrummfy.be%2Fblog%2F90&amp;title=sortie%20int%C3%A9ressante%21" id="wpa2a_32"><img src="http://grummfy.be/blog/wp/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://grummfy.be/blog/90/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.623 seconds -->

