<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0"
     xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Steph.eLuna.org: Comments</title>
    <link>http://steph.eluna.org</link>
    <description>Comments of http://steph.eluna.org website.</description>
    <language>en</language>
    <pubDate>Tue, 23 Feb 2010 20:21:40 +0100</pubDate>
    <image>
      <url>http://steph.eluna.org/fileadmin/images/libellule_small.png</url>
      <title>Steph.eLuna.org</title>
      <link>http://steph.eluna.org</link>
      <width>145</width>
      <height>112</height>
    </image>
    <item>
      <title>Comment on eLuna Graph System by dfgdf</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1219</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1219</guid>
      <pubDate>Tue, 23 Feb 2010 17:33:40 +0100</pubDate>
      <content:encoded><![CDATA[fgdfgdfg]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Steph</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1211</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1211</guid>
      <pubDate>Tue, 05 Jan 2010 20:05:12 +0100</pubDate>
      <content:encoded><![CDATA[J'en suis ravi !<br /><br />Bon apprentissage ;)]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Benoît</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1210</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1210</guid>
      <pubDate>Tue, 05 Jan 2010 19:59:18 +0100</pubDate>
      <content:encoded><![CDATA[Bonjour,<br /><br />J'apprécie beaucoup votre logiciel, simple mais très efficace, pratique et sympa.<br />Il va sans doute beaucoup m'aider dans mes débuts dans la musique.<br />Merci !]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Steph</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1209</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1209</guid>
      <pubDate>Wed, 23 Dec 2009 12:03:01 +0100</pubDate>
      <content:encoded><![CDATA[Merci pour ta contribution !]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Benoit</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1208</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1208</guid>
      <pubDate>Wed, 23 Dec 2009 11:54:28 +0100</pubDate>
      <content:encoded><![CDATA[Bonjour,<br /><br />J'ai implémenté les graphs apache_hits à partir des scripts donnés dans les commentaires.  Mais j'ai eu quelques problèmes :<br />- dans la version proposée par matao il y a 3 ans, il manque le create.sh, le RRD doit être en ABSOLUTE et non pas en DERIVE comme la version de Steph, puisque dans la version de matao on ne traite que le nombre de connexions sur les 5 dernières minutes et non pas le total des connexions.<br />- c'est lent si les fichiers de logs sont gros.<br />- le filtre de logs par date n'est pas forcément correct suivant l'heure à laquelle c'est appelé.<br /><br />Je propose donc la version suivante, utilisant grep :<br />$ cat ../08_apache_hits/create.sh <br />#!/bin/bash<br /><br />rrdtool create apache_hits.rrd \<br />  --start `date +%s` \<br />  --step 300 \<br />  DS:hits:ABSOLUTE:600:0:U \<br />  RRA:AVERAGE:0.5:1:2016 \<br />  RRA:AVERAGE:0.5:6:1344 \<br />  RRA:AVERAGE:0.5:24:732 \<br />  RRA:AVERAGE:0.5:144:1460<br /><br />$ cat ../08_apache_hits/update.pl <br />#!/usr/bin/perl<br /><br />$logpath=&quot;/var/log/apache2/pps.ipercom.lan-access_log&quot;;<br /><br />$daten1 = `date -d 'now - 1 min' '+%d/%h/%Y:%H:%M'`;<br />$daten2 = `date -d 'now - 2 min' '+%d/%h/%Y:%H:%M'`;<br />$daten3 = `date -d 'now - 3 min' '+%d/%h/%Y:%H:%M'`;<br />$daten4 = `date -d 'now - 4 min' '+%d/%h/%Y:%H:%M'`;<br />$daten5 = `date -d 'now - 5 min' '+%d/%h/%Y:%H:%M'`;<br /><br />chomp $daten1 ;<br />chomp $daten2 ;<br />chomp $daten3 ;<br />chomp $daten4 ;<br />chomp $daten5 ;<br /><br />$nbhits = `grep -c -e $daten5 -e $daten4 -e $daten3 -e $daten2 -e $daten1 $logpath` ;<br /><br />chomp $nbhits ;<br /><br />system( &quot;rrdtool update apache_hits.rrd -t hits N:$nbhits&quot; );<br /><br />$ cat graph.pm <br />$GRAPH_TITLES{'apache_hits'} = &quot;{#server#} - Apache Hits&quot;;<br />$GRAPH_CMDS{'apache_hits'} = &lt;&lt;&quot;AH_GRAPH_CMD&quot;;<br />--title &quot;{#server#} - Apache Hits&quot;<br />--vertical-label=&quot;Hits Per Minute&quot;<br />--units-exponent 0<br />--lower-limit 0<br />DEF:hits={#path#}apache_hits.rrd:hits:AVERAGE<br />CDEF:hits_mn=hits,60,*<br />AREA:hits_mn{#color2#}:&quot;Hits Per Minute &quot;<br />GPRINT:hits_mn:LAST:&quot;Current\\: %5.0lf &quot;<br />GPRINT:hits_mn:AVERAGE:&quot;Average\\: %5.0lf &quot;<br />GPRINT:hits_mn:MAX:&quot;Maximum\\: %5.0lf\n&quot;<br />LINE1:hits_mn{#linecolor#}<br />AH_GRAPH_CMD<br /><br />1; # Return true<br />]]></content:encoded>
    </item>
    <item>
      <title>Comment on La Nef des Fous by Yves</title>
      <link>http://steph.eluna.org/la_nef_des_fous.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1207</link>
      <guid>http://steph.eluna.org/la_nef_des_fous.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1207</guid>
      <pubDate>Fri, 11 Dec 2009 17:54:39 +0100</pubDate>
      <content:encoded><![CDATA[Une bien belle découverte ... Très belle chanson que &quot;les papillons&quot;<br />Amitiés<br />Yves]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Steph</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1201</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1201</guid>
      <pubDate>Fri, 27 Nov 2009 17:02:37 +0100</pubDate>
      <content:encoded><![CDATA[Thanks !]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Web Development Surrey</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1200</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1200</guid>
      <pubDate>Fri, 27 Nov 2009 14:06:41 +0100</pubDate>
      <content:encoded><![CDATA[Quite inspiring,<br /><br />THis is very helpful,<br /><br />Keep up the good work,<br /><br />Thanks]]></content:encoded>
    </item>
    <item>
      <title>Comment on Pieces for Guitar by Steph</title>
      <link>http://steph.eluna.org/pieces_pour_guitare.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1195</link>
      <guid>http://steph.eluna.org/pieces_pour_guitare.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1195</guid>
      <pubDate>Wed, 28 Oct 2009 18:59:37 +0100</pubDate>
      <content:encoded><![CDATA[Thank you !]]></content:encoded>
    </item>
    <item>
      <title>Comment on Pieces for Guitar by Alejandro Valverde</title>
      <link>http://steph.eluna.org/pieces_pour_guitare.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1194</link>
      <guid>http://steph.eluna.org/pieces_pour_guitare.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1194</guid>
      <pubDate>Wed, 28 Oct 2009 18:37:27 +0100</pubDate>
      <content:encoded><![CDATA[Greetings from Costa Rica. Congrats, beautiful music.]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Steph</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1190</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1190</guid>
      <pubDate>Fri, 02 Oct 2009 21:09:24 +0200</pubDate>
      <content:encoded><![CDATA[Pour le nom des accords ? ... ou bien pour le nom des notes et des accords ?<br /><br />Si c'est pour juste le nom des accords, effectivement, c'est la convention dans les pays francophones, et c'est une bonne suggestion :) ... Si je fais une mise à jour, j'y penserai.<br /><br />Par contre, si c'est pour notes et accords, alors c'est qu'on est en langue anglaise, et donc il suffit d'utiliser la version anglaise: http://steph.eluna.org/eluna_ear_training.html?lang=en]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by vincent</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1189</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1189</guid>
      <pubDate>Fri, 02 Oct 2009 20:46:58 +0200</pubDate>
      <content:encoded><![CDATA[super outil, bravo pour l'idée et la réalisation soignée.<br />une petite suggestion. S'il était possible de choisir le type de notation, Do ou C, cela serait parfait.]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Steph</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1188</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1188</guid>
      <pubDate>Sat, 26 Sep 2009 11:21:01 +0200</pubDate>
      <content:encoded><![CDATA[Bonjour Florent,<br /><br />Merci pour ton retour. Je n'indique pas le chiffrage &quot;classique&quot; dont tu parles pour plusieurs raisons :<br /><br />- Ca impliquerait une mise en page difficile à réaliser, les chiffrages pouvant être sur une, deux, trois, ... lignes<br /><br />- Ca impliquerait d'utiliser des dessins plutôt qu'une police de caractère (comment tu fais un 7 barré par exemple ?)<br /><br />- ... mais surtout, comme tu le sais sans doute, le chiffrage classique des accords est dépendant du contexte, et donc lorsqu'on est &quot;hors-contexte&quot;, c'est pas du tout le meilleur choix de chiffrage à faire. Comment tu chiffres par exemple le renversement de l'accord de 7ème mineure et quinte diminuée ? ... ça va dépendre si c'est le IIème degré d'une gamme mineure, le VIIème d'une gamme majeure.<br /><br />- Autre grosse raison, ce chiffrage est loin d'être universel. Beaucoup de profs d'analyse utilisent un autre chiffrage par exemple (si c'est le renversement sur la tierce, on commence par écrire un 3, ...), les allemands en utilisent encore un autre, ... L'avantage de l'écriture &quot;en toutes lettres&quot;, c'est que c'est plus universel, et compris pas uniquement des &quot;classiqueux&quot;, mais également des jazzmen, ...<br /><br />Voilà pourquoi ;)]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Florent</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1187</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1187</guid>
      <pubDate>Sat, 26 Sep 2009 10:53:22 +0200</pubDate>
      <content:encoded><![CDATA[Bonjour,<br />Tout d'abord un grand merci pour ce logiciel qui me sert énormément =)<br />Pour ce qui est des suggestions maintenant, pourquoi ne pas mettre les noms des renversements lors de la reconnaissance d'accord; par exemple au lieu de dire premier renversement d'un accord parfait; dire 6, etc...<br />Encore merci!<br />Florent]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Steph</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1186</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1186</guid>
      <pubDate>Wed, 16 Sep 2009 17:16:11 +0200</pubDate>
      <content:encoded><![CDATA[Mais avec plaisir ! ;)]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by arnaud</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1185</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1185</guid>
      <pubDate>Wed, 16 Sep 2009 17:13:27 +0200</pubDate>
      <content:encoded><![CDATA[Bonjour Steph,<br />Juste quelques mots pour te remercier.<br />J'essaie péniblement d'affiner ma feuille, c'est pas facile tous les jours, mais les reconnaissances d'accords et d'intervalles que tu as mis en ligne m'aident sacrément.<br />C'est pratique, c'est fun, c'est complet. Bravo!!<br />Merci,<br />Arnaud]]></content:encoded>
    </item>
    <item>
      <title>Comment on Light'n Shade  by Steph</title>
      <link>http://steph.eluna.org/light_n_shade.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1173</link>
      <guid>http://steph.eluna.org/light_n_shade.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1173</guid>
      <pubDate>Mon, 18 May 2009 19:01:26 +0200</pubDate>
      <content:encoded><![CDATA[Hey Nico !<br /><br />... à part le premier paragraphe, je suis d'accord avec tout le reste ;)<br /><br />Chouette ton webzine sinon !<br /><br />Au plaisir de se croiser,<br />Steph]]></content:encoded>
    </item>
    <item>
      <title>Comment on Light'n Shade  by NICO C.</title>
      <link>http://steph.eluna.org/light_n_shade.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1172</link>
      <guid>http://steph.eluna.org/light_n_shade.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1172</guid>
      <pubDate>Mon, 18 May 2009 16:14:21 +0200</pubDate>
      <content:encoded><![CDATA[HELLO STEPH,<br /><br />hé ben mon gars les souvenirs.... !!! Maintenant que je suis vieux il y a prescription donc je m'auto balance: objectivement, qu'est ce que je chantais comme une merde... j'étais déja assez lucide sur ce fait à l'époque mais aujourd'hui ça dépasse l'entendement : j'ai bien fait d'interrompre définitivement ma carrière de rock star parce que j'aurais surement fini un jour par me prendre deux ou trois canettes dans la tronche de la part du public !!!<br /><br />Light'n Shade c'est tout de même de sacrés souvenirs de jeunesse : des répètes épiques dans le garage de JB, des concerts à l'arrachés, sans préparation et complètement bourrés (surtout vous hein : moi je bois pas !), des engeulades et des coups de gueules mémorables mais aussi des moments d'éclates totales et de sacrés tranches de rigolades : le parcours de n'importe quelle groupe en définitive...<br /><br />Un peu de nostalgie ? Bon ou mauvais groupe , Light'n shade nous aura, quoi qu'il en soit, sortit un peu de notre torpeur adolescente : c'est bien la moindre des choses que l'on peut accorder à ce chouette trip rock'n bière. Quand même, c'était le bon temps merde...<br /><br />j'espere que tu va bien steph !<br />A bientôt<br /><br />NICO<br /><br />(tu peux toujours jeter un petit coup d'oeil à mon site : www.maniacs.fr)<br /><br />]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Steph</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1169</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1169</guid>
      <pubDate>Mon, 04 May 2009 22:59:44 +0200</pubDate>
      <content:encoded><![CDATA[Salut Robert, salut Spirit,<br /><br />Merci à vous deux pour vos feedbacks.<br /><br />@spirit : très sympa le skin en effet ;) ... peux-tu m'envoyer par email ta source ? je serais intéressé par ajouter dans une prochaine version tes deux graphs sur MySQL. Merci d'avance ;)]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by spirit</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1168</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1168</guid>
      <pubDate>Mon, 04 May 2009 22:37:25 +0200</pubDate>
      <content:encoded><![CDATA[J'avais oublié de le faire... merci à toi pour cette super appli, facilement extensible! Après quelque tweaks divers et variés je suis arrivé à avoir un skin sympa et quelque mesures en plus -&gt; http://www.statsdigger.com]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Robert</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1162</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1162</guid>
      <pubDate>Tue, 21 Apr 2009 07:58:48 +0200</pubDate>
      <content:encoded><![CDATA[Bonjour,<br /><br />Je suis en train de tester eLuna sur Ubuntu 8.10 sur x86_64 : très joli. J'ai un curieux problème sur Intrepid : on dirait qu'une commande cron n'est pas exécutée si on la fait précéder du nom de l'utilisateur ? il a fallu que je fasse sauter 'root' dans crontab pour que ça marche ? Ça aura été le seul ennui.]]></content:encoded>
    </item>
    <item>
      <title>Comment on Other Pieces by Steph</title>
      <link>http://steph.eluna.org/autres_pieces.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1161</link>
      <guid>http://steph.eluna.org/autres_pieces.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1161</guid>
      <pubDate>Fri, 03 Apr 2009 12:31:38 +0200</pubDate>
      <content:encoded><![CDATA[Je pense que tu parles du concert de l'année dernière :)<br /><br />Je ne pense pas que j'en referai un cette année, histoire d'espacer un peu, mais sans doute l'année prochaine.<br /><br />J'ai bien des concerts de prévus, dont un le 9 mai prochain, mais à Liège ;)]]></content:encoded>
    </item>
    <item>
      <title>Comment on Other Pieces by Etincelle</title>
      <link>http://steph.eluna.org/autres_pieces.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1160</link>
      <guid>http://steph.eluna.org/autres_pieces.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1160</guid>
      <pubDate>Fri, 03 Apr 2009 12:15:40 +0200</pubDate>
      <content:encoded><![CDATA[Non, Stéphane, non, je ne voulais pas dire austère dans le sens un peu trop simple.<br />C'était austère dans le  sens ou je n'ai pas ressenti une once de gaité ou de légereté dans cette musique. Une musique un peu triste mais qui finalement correspond assez bien à l'austérité des mares lunaires. Pas de vie !<br />Enfin, c'est comme ça que je l'ai ressenti.<br />J'ai vu que tu vas donner un concert dans ta contrée d'origine en juillet.<br />Ca me plairait beaucoup d'y assister ...  <br /><br /><br /><br /><br /><br /><br /><br /><br />]]></content:encoded>
    </item>
    <item>
      <title>Comment on Other Pieces by Steph</title>
      <link>http://steph.eluna.org/autres_pieces.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1157</link>
      <guid>http://steph.eluna.org/autres_pieces.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1157</guid>
      <pubDate>Fri, 20 Mar 2009 22:21:48 +0100</pubDate>
      <content:encoded><![CDATA[J'aime bien tout ce qui tourne autour de la lune effectivement...<br /><br />Pour ce qui est de l'austérité, j'imagine que c'est à prendre dans le sens &quot;simple, dénué d'agréments&quot;, et donc je te répondrai qu'il faut pas voir ça comme de vraies pièces : ce sont juste des petits thèmes simples que j'ai enregistré sur un piano, en étant non pianiste, et en soulignant juste l'harmonie au minimum, sans faire d'arrangement.<br /><br />D'ailleurs, je suis d'ailleurs en train de refaire complètement mon site (nouvelles pièces, enregistrements vidéos, ...) et ces petits thèmes n'y figureront plus ;)]]></content:encoded>
    </item>
    <item>
      <title>Comment on Other Pieces by Etincelle</title>
      <link>http://steph.eluna.org/autres_pieces.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1156</link>
      <guid>http://steph.eluna.org/autres_pieces.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1156</guid>
      <pubDate>Fri, 20 Mar 2009 15:52:17 +0100</pubDate>
      <content:encoded><![CDATA[Oups ! Petit problème !<br />Je voulais te dire que tu sembles être souvent dans la lune.<br />Les compositions que ses mers t'inspirent sont assez austères, non ?<br />Ben apparemment, moi aussi ! (Je suis dans la lune)<br />Peux-tu supprimer les commentaires précédents SVP ?]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Steph</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1151</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1151</guid>
      <pubDate>Fri, 13 Feb 2009 09:43:29 +0100</pubDate>
      <content:encoded><![CDATA[Merci du tuyau ;)]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Matthieu</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1150</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1150</guid>
      <pubDate>Fri, 13 Feb 2009 01:08:29 +0100</pubDate>
      <content:encoded><![CDATA[salut Steph,<br /><br />j'ai finalement trouvé une solution qui fonctionne :<br /># rrdtool dump mysql_queries.rrd &gt; aaa.xml <br />editer aaa.xml à la main pour enlever la valeur pic<br /># rrdtool restore aaa.xml mysql_queries.rrd]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Steph</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1149</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1149</guid>
      <pubDate>Thu, 12 Feb 2009 21:19:07 +0100</pubDate>
      <content:encoded><![CDATA[Je t'avoue que depuis la création du soft j'ai pas retouché à RRDTool, je ne me souviens plus bien de ses subtilités d'utilisation :)<br /><br />... essaye peut-être la documentation officielle : http://oss.oetiker.ch/rrdtool/doc/index.en.html]]></content:encoded>
    </item>
    <item>
      <title>Comment on Light'n Shade  by Steph</title>
      <link>http://steph.eluna.org/light_n_shade.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1147</link>
      <guid>http://steph.eluna.org/light_n_shade.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1147</guid>
      <pubDate>Wed, 28 Jan 2009 16:11:08 +0100</pubDate>
      <content:encoded><![CDATA[Hey Alex !<br /><br />Longtemps que j'avais pas eu de tes nouvelles !<br /><br />Aux Antilles alors ? J'espère que tout se passe bien pour toi là bas...<br /><br />Du coup, je me suis réécouté &quot;Ode&quot;, t'as quand même un sacré timbre de voix ! J'espère que tu chantes toujours :)<br /><br />A un de ces jours j'espère !]]></content:encoded>
    </item>
    <item>
      <title>Comment on Light'n Shade  by alex</title>
      <link>http://steph.eluna.org/light_n_shade.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1146</link>
      <guid>http://steph.eluna.org/light_n_shade.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1146</guid>
      <pubDate>Wed, 28 Jan 2009 15:28:54 +0100</pubDate>
      <content:encoded><![CDATA[hello les jeunes!<br />Content de voir que light'n shade aura laissé une trace et plus de 10 ans après, vu des antilles où je suis installé depuis quelques années ça fait chaud au coeur (même si on n'a pas besoin de ça niveau châleur! lol)<br />]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Shadow aok</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1145</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1145</guid>
      <pubDate>Thu, 04 Dec 2008 16:26:48 +0100</pubDate>
      <content:encoded><![CDATA[Quelqu'un a-t-il réussi à réaliser un graph de ping, façon smokeping ?<br />J'avais tenté de le faire il y a quelques temps mais j'obtenais toujours des erreurs, à cause du format numérique de la valeur renvoyée par ping en perl, me semble-t-il.<br /><br />Merci.]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Steph</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1137</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1137</guid>
      <pubDate>Sat, 11 Oct 2008 18:53:25 +0200</pubDate>
      <content:encoded><![CDATA[Bien sûr ;)]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Ear Training by Jean-Marie Bellec</title>
      <link>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1136</link>
      <guid>http://steph.eluna.org/eluna_ear_training.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1136</guid>
      <pubDate>Sat, 11 Oct 2008 18:17:23 +0200</pubDate>
      <content:encoded><![CDATA[Super ce logiciel multiplateforme qui permet de travailler en ligne ! Merci !<br /><br />Je me suis permis de mettre un lien pour mes élèves du Conservatoire de Nantes, êtes vous ok ?<br /><br />Cordialement,<br /><br />Jean-Marie Bellec]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Shadow aok</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1131</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1131</guid>
      <pubDate>Thu, 03 Apr 2008 23:06:01 +0200</pubDate>
      <content:encoded><![CDATA[Autant pour moi, il s'agit bien de bits.<br />(Je me suis laissé avoir par l'interface réseau et par la bande passant de mon serveur qui sont à 100Mbits/s).<br /><br />Je vais donc revenir en arrière :)]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Shadow aok</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1130</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1130</guid>
      <pubDate>Thu, 03 Apr 2008 23:03:47 +0200</pubDate>
      <content:encoded><![CDATA[Je poursuis avec le script d'affichage de la consommation de ressource.<br />N'ayant pas de dans mon /proc/meminfo sur gentoo, le calcul s'en retrouve faussé.<br />J'ai donc changé le calcul pour $mem de la façon suivante dans update.pl :<br />my $mem = ($total?100-(int(($memfree/$total)*100)):0);<br /><br />(méthode reprise du calcul de la consommation de swap)]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Steph</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1129</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1129</guid>
      <pubDate>Thu, 03 Apr 2008 22:54:52 +0200</pubDate>
      <content:encoded><![CDATA[Salut Shadow aok,<br /><br />Merci pour ton feedback.<br /><br />Il est bien marqué sur les graphiques du traffic réseau que c'est des bytes qui sont affichés, c'est à dire des octets. En multipliant par 8 tu obtiens des bits, et non des bytes (j'imagine que iptraf t'affiche lui des bits, mais ici, c'est bien des octets que je veux afficher).<br /><br />Si tu conserve cette multiplication par 8, n'oublie pas de changer la légende de bytes à bits ;)]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Shadow aok</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1128</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1128</guid>
      <pubDate>Thu, 03 Apr 2008 22:42:50 +0200</pubDate>
      <content:encoded><![CDATA[Bonjour,<br /><br />Le calcul du traffic réseau est erroné au niveau de la génération du graphique.<br />Ex: Pour le traffic sortant, dans graph.pm<br />Il faut rajouter cette ligne après le DEF=<br />CDEF:outo=out,8,* <br />Et changer les 5 références suivantes à out en outo :)<br /><br />Sinon le taux affiché ne correspond pas à la réalité (vérifié avec iptraf).<br />Il faut en faire de même pour le trafic entrant (avec in et ino) :)]]></content:encoded>
    </item>
    <item>
      <title>Comment on Pieces for Guitar by Steph</title>
      <link>http://steph.eluna.org/pieces_pour_guitare.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1126</link>
      <guid>http://steph.eluna.org/pieces_pour_guitare.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1126</guid>
      <pubDate>Sat, 01 Mar 2008 09:58:59 +0100</pubDate>
      <content:encoded><![CDATA[Merci Jean-Marc !<br /><br />Je me souviens effectivement. J'espère que tu es content de ta studio II (ce dont je ne doute pas ;)).<br /><br />Musicalement,<br />Steph]]></content:encoded>
    </item>
    <item>
      <title>Comment on Pieces for Guitar by Randon Jean-Mazrc</title>
      <link>http://steph.eluna.org/pieces_pour_guitare.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1125</link>
      <guid>http://steph.eluna.org/pieces_pour_guitare.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1125</guid>
      <pubDate>Sat, 01 Mar 2008 09:46:01 +0100</pubDate>
      <content:encoded><![CDATA[En septembre j'ai acheté une studio II lorsque tu prenais possession de ta guitare grand concert ton partage musicale m'avait touché. Puis je viens de découvrir ton site et écouter tes compositions que je trouve pleines de douceurs et de poésie, c'est super!....<br />Et merci de nous en faire profiter. Bon courage également pour tes études et tes examens à venir (enfin il me semble)<br />Cordialement,<br /><br />Jean-Marc.]]></content:encoded>
    </item>
    <item>
      <title>Comment on eLuna Graph System by Steph</title>
      <link>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1124</link>
      <guid>http://steph.eluna.org/eluna_graph_system.html?lang=en&amp;tx_elunapagecomments_pi1[show_comments]=1#eluna_pagecomments_1124</guid>
      <pubDate>Thu, 21 Feb 2008 11:02:54 +0100</pubDate>
      <content:encoded><![CDATA[You're welcome ;)]]></content:encoded>
    </item>
  </channel>
</rss>