<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://dotclear.placeoweb.com/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>PlaceOweb Dotclear</title>
  <link>http://dotclear.placeoweb.com/</link>
  <atom:link href="http://dotclear.placeoweb.com/feed/rss2" rel="self" type="application/rss+xml"/>
  <description></description>
  <language>fr</language>
  <pubDate>Thu, 17 May 2012 22:26:56 +0200</pubDate>
  <copyright></copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>javascript array supprimer élément</title>
    <link>http://dotclear.placeoweb.com/post/javascript-supprimer-%C3%A9l%C3%A9ment</link>
    <guid isPermaLink="false">urn:md5:2e6bb613ead7a50b30d4a6cc8d1c448a</guid>
    <pubDate>Fri, 20 Apr 2012 19:51:00 +0200</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Javascript</category>
        <category>javascript</category>    
    <description>&lt;p&gt;En JavaScript, la suppression du premier ou dernier élément d'un tableau (Array) est facile avec ces méthodes&amp;nbsp;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;shift() (retirer le premier élément d'un tableau)&lt;/li&gt;
&lt;li&gt;pop() (effacer le dernier élément d'un tableau)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Mais comment et avec quelle méthode supprimer un élément (par sa clé/index ou valeur) situé en plein milieu d'un tableau JavaScript&amp;nbsp;?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;splice() (effacer et ajouter des éléments)&lt;/li&gt;
&lt;/ul&gt;    &lt;p&gt;La méthode à utiliser pour supprimer des éléments (intermédiaires) dans un tableau Javascript : Array.splice


Array.splice

Array.splice() écrase une tranche de tableau
splice() (effacer et ajouter des éléments)
splice : Adds and/or removes elements from an array.


PS : à ne pas confondre avec Array.slice()

Array.slice() retourne une tranche de... &lt;a href=&quot;http://dotclear.placeoweb.com/post/javascript-supprimer-%C3%A9l%C3%A9ment&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; javascript array supprimer élément&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/javascript-supprimer-%C3%A9l%C3%A9ment#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/javascript-supprimer-%C3%A9l%C3%A9ment#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/524</wfw:commentRss>
      </item>
    
  <item>
    <title>javascript textarea string.length diffère entre firefox, chrome et internet explorer</title>
    <link>http://dotclear.placeoweb.com/post/javascript-textarea-string.length-diff%C3%A8re-entre-firefox-chrome-et-internet-explorer</link>
    <guid isPermaLink="false">urn:md5:5d86744a1edc83f7dc11ce0d18a9e170</guid>
    <pubDate>Mon, 16 Apr 2012 13:50:00 +0200</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Javascript</category>
        <category>javascript</category>    
    <description>&lt;p&gt;Selon votre navigateur, l'attribut .length retourne une taille différente entre firefox, chrome et internet explorer, car ils ne compte pas de le même manière les saut de ligne.&lt;/p&gt;    &lt;p&gt;var o = window.document.getElementById(&quot;textarea_commentaire&quot;);
console.log(o.value.length);


01234567890123465789
Firefox, Chrome et internet Explorer : 20


0123456789
0123456789
Firefox et Chrome : 21
Internet Explorer : 22


Vous devrez donc calculer vous même les retours chariot :

function limitChars(textid, limit, infodiv)
{
	var text =... &lt;a href=&quot;http://dotclear.placeoweb.com/post/javascript-textarea-string.length-diff%C3%A8re-entre-firefox-chrome-et-internet-explorer&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; javascript textarea string.length diffère entre firefox, chrome et internet explorer&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/javascript-textarea-string.length-diff%C3%A8re-entre-firefox-chrome-et-internet-explorer#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/javascript-textarea-string.length-diff%C3%A8re-entre-firefox-chrome-et-internet-explorer#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/522</wfw:commentRss>
      </item>
    
  <item>
    <title>PHP DateTime</title>
    <link>http://dotclear.placeoweb.com/post/PHP-DateTime</link>
    <guid isPermaLink="false">urn:md5:33cf4cd04485fe41d518c002923e289f</guid>
    <pubDate>Mon, 16 Apr 2012 13:28:00 +0200</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>PHP</category>
        <category>php</category>    
    <description>&lt;p&gt;Quelques notes sur l'utilisation de la classe &lt;a href=&quot;http://php.net/manual/fr/class.datetime.php&quot;&gt;DateTime&lt;/a&gt; de PHP&lt;/p&gt;    &lt;p&gt;La classe DateTime


Différence entre 2 dates


DateTime::diff
DateTime::format

formaté avec les options de DateInterval::format


$dateTimeCurrent = new DateTime();
$dateTimeChanged = new DateTime($row['date_from_mysql']);
$interval = $dateTimeCurrent-&gt;diff($dateTimeChanged);
 
echo $dateTimeCurrent-&gt;format(DATE_ATOM);
echo... &lt;a href=&quot;http://dotclear.placeoweb.com/post/PHP-DateTime&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; PHP DateTime&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/PHP-DateTime#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/PHP-DateTime#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/523</wfw:commentRss>
      </item>
    
  <item>
    <title>PHP 5.5 changements et configuration</title>
    <link>http://dotclear.placeoweb.com/post/PHP-5.5</link>
    <guid isPermaLink="false">urn:md5:27b8781057c56052a329ab29b52edeab</guid>
    <pubDate>Sun, 15 Apr 2012 19:23:00 +0200</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>PHP</category>
        <category>php</category>    
    <description>&lt;p&gt;Petit tour d'horizon des modifications sur PHP 5.5 qui succède à la version de &lt;a href=&quot;http://dotclear.placeoweb.com/post/PHP-5.4&quot;&gt;PHP 5.4&lt;/a&gt;.&lt;/p&gt;    &lt;p&gt;Les versions de PHP5.4.x et son avancement sur :

PHP/NEWS ou PHP/NEWS
PHP Quality Assurance Team Web Page
Téléchargement des dernières compilations instantanés : PHP 5.5 Snapshots... &lt;a href=&quot;http://dotclear.placeoweb.com/post/PHP-5.5&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; PHP 5.5 changements et configuration&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/PHP-5.5#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/PHP-5.5#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/521</wfw:commentRss>
      </item>
    
  <item>
    <title>Firefox : Attention : le script ne répond pas</title>
    <link>http://dotclear.placeoweb.com/post/Firefox-Attention-le-script-ne-r%C3%A9pond-pas</link>
    <guid isPermaLink="false">urn:md5:69f546d482479826ea449bcc1cb7b538</guid>
    <pubDate>Wed, 11 Apr 2012 19:56:00 +0200</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Outils Internet</category>
            
    <description>&lt;p&gt;Sur certains sites les pages moulines et résultent de fenêtres à confirmer&amp;nbsp;: &lt;q&gt;Attention&amp;nbsp;: le script ne répond pas&lt;/q&gt;&lt;/p&gt;    &lt;p&gt;Attention : le script ne répond pas

Firefox se bloque



Vous pouvez, configurer d'afficher ou non cette alerte et de Laisser le script s'exécuter plus longtemps

Dans la barre d'adresse, saisissez about:config, puis appuyez sur Entrée.
Cherchez la préférence dom.max_script_run_time, et double-cliquez dessus.


Si vous recevez toujours l'invite... &lt;a href=&quot;http://dotclear.placeoweb.com/post/Firefox-Attention-le-script-ne-r%C3%A9pond-pas&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Firefox : Attention : le script ne répond pas&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/Firefox-Attention-le-script-ne-r%C3%A9pond-pas#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/Firefox-Attention-le-script-ne-r%C3%A9pond-pas#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/519</wfw:commentRss>
      </item>
    
  <item>
    <title>Comparatif serveur dedié Kimsufi (OVH) et Dedibox (Online)</title>
    <link>http://dotclear.placeoweb.com/post/Comparatif-serveur-dedi%C3%A9-OVH-Kimsufi-Dedibox</link>
    <guid isPermaLink="false">urn:md5:fdd0367d6a7de6a9517c682d006342bf</guid>
    <pubDate>Tue, 10 Apr 2012 02:25:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Outils Internet</category>
            
    <description>&lt;p&gt;La comparaison entres les offres OVH &lt;a href=&quot;http://www.kimsufi.com/&quot;&gt;Kimsufi&lt;/a&gt; et celles de Online &lt;a href=&quot;http://www.dedibox.fr/&quot;&gt;Dedibox&lt;/a&gt; au sujet des serveurs dédiés à bas coût.&lt;/p&gt;    &lt;p&gt;Nous ne parlons pas de serveur virtuel, mais bien de serveur dédié !


Comparatif serveur dedié Kimsufi (OVH) et Dedibox (Online) en 2012


Backup FTP (sauvegarde distante)

10Go pour Online - Dedibox (en doublant leur 5Go, il reste loin de l'offre Kimsufi)
100Go pour Kimsufi - OVH


Comparatif serveur dedié OVH Kimsufi et Dedibox en 2011... &lt;a href=&quot;http://dotclear.placeoweb.com/post/Comparatif-serveur-dedi%C3%A9-OVH-Kimsufi-Dedibox&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Comparatif serveur dedié Kimsufi (OVH) et Dedibox (Online)&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/Comparatif-serveur-dedi%C3%A9-OVH-Kimsufi-Dedibox#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/Comparatif-serveur-dedi%C3%A9-OVH-Kimsufi-Dedibox#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/280</wfw:commentRss>
      </item>
    
  <item>
    <title>MediaWiki</title>
    <link>http://dotclear.placeoweb.com/post/MediaWiki</link>
    <guid isPermaLink="false">urn:md5:f413bc322d2eb716730922191d426956</guid>
    <pubDate>Sat, 07 Apr 2012 15:02:00 +0200</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Outils Internet</category>
        <category>mysql</category><category>php</category><category>sql</category>    
    <description>&lt;p&gt;&lt;a href=&quot;http://fr.wikibooks.org/wiki/MediaWiki_pour_d%C3%A9butants&quot; hreflang=&quot;fr&quot;&gt;MediaWiki&lt;/a&gt;, un logiciel libre développé à l'origine pour Wikipédia.&lt;/p&gt;    &lt;p&gt;MediaWiki


MediaWiki.org MediaWiki/fr
MediaWiki MediaWiki
MediaWiki pour débutants


Page d’accueil par défaut


Comment puis-je changer la page d'accueil ?


index.php?title=MediaWiki:Mainpage&amp;action=edit


Barre de menu


Comment puis-je personnaliser la barre de navigation ?
Manual:Interface/Sidebar
Help:Navigation/fr... &lt;a href=&quot;http://dotclear.placeoweb.com/post/MediaWiki&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; MediaWiki&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/MediaWiki#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/MediaWiki#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/517</wfw:commentRss>
      </item>
    
  <item>
    <title>html 5</title>
    <link>http://dotclear.placeoweb.com/post/html-5</link>
    <guid isPermaLink="false">urn:md5:511fd6ca1bdb5aa9cf4d8c09eaa5cd9c</guid>
    <pubDate>Sun, 01 Apr 2012 20:31:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Outils Internet</category>
        <category>HTML5</category><category>javascript</category>    
    <description>&lt;p&gt;&lt;a href=&quot;http://www.mess-land.be/trucs/internet/1776-local-storage-et-session-storage-html5.html&quot; hreflang=&quot;fr&quot;&gt;&lt;/a&gt;Qu'est que l'&lt;a href=&quot;http://dotclear.placeoweb.com/tag/HTML5&quot;&gt;HTML5&lt;/a&gt;&amp;nbsp;? Quels principaux navigateurs sont compatibles html 5&amp;nbsp;? xhtml 5&amp;nbsp;?&lt;/p&gt;    &lt;p&gt;Test compatibilité HTML 5


Selon le test de Test et démo de Canvas, si vous voyez 2 formes (rectangle bleu et cercle vert) c'est que votre navigateur prends en charge la nouvelle balise &quot;canvas&quot;. Cette balise &quot;canvas&quot; permet d'afficher du graphisme en 2D dans le navigateur et ainsi faire de celui-ci une plateforme d'applications web riches.... &lt;a href=&quot;http://dotclear.placeoweb.com/post/html-5&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; html 5&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/html-5#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/html-5#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/399</wfw:commentRss>
      </item>
    
  <item>
    <title>jQuery Mobile vs Sencha Touch</title>
    <link>http://dotclear.placeoweb.com/post/jQuery-Mobile-vs-Sencha-Touch</link>
    <guid isPermaLink="false">urn:md5:ad50e6f923ed34591591cc401fbd73f0</guid>
    <pubDate>Sat, 17 Mar 2012 22:18:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Javascript</category>
        <category>framework</category><category>gwt</category><category>HTML5</category><category>javascript</category><category>jQuery</category>    
    <description>&lt;p&gt;Pour vos développement web à destination des mobiles (pda, smartphone), quel &lt;a href=&quot;http://dotclear.placeoweb.com/tag/framework&quot;&gt;framework&lt;/a&gt; &lt;a href=&quot;http://dotclear.placeoweb.com/tag/javascript&quot;&gt;javascript&lt;/a&gt; utiliser&amp;nbsp;?&lt;/p&gt;


&lt;p&gt;Déjà en terme lexical,&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&quot;PDA&quot; a disparu au profil de &quot;smartphone&quot; (petit téléphone, qui est en fait un mini ordinateur),&lt;/li&gt;
&lt;li&gt;le &quot;touch&quot; pour &quot;touché tactile&quot;, modifie l'ergonomie des clics et défilements avec vos gros doigts,&lt;/li&gt;
&lt;li&gt;et avec l'implémentation de l'HTML5 et de JavaScript par les navigateurs, on peut augmenter les possibilités de l'application cliente&lt;/li&gt;
&lt;li&gt;d'autant si vous standardisez votre UI (&lt;a href=&quot;http://en.wikipedia.org/wiki/User_interface&quot; hreflang=&quot;en&quot;&gt;user interface&lt;/a&gt;&amp;nbsp;: &lt;a href=&quot;http://fr.wikipedia.org/wiki/Interface_homme-machine&quot; hreflang=&quot;fr&quot;&gt;interface utilisateur&lt;/a&gt;) ...&lt;/li&gt;
&lt;/ul&gt;    &lt;p&gt;17 mars 2012 : jQuery Mobile vs Sencha Touch, quel est le meilleur framework html5 javascript pour mobile ?


jQuery Mobile, Sencha Touch, autre ?


Licences


jQuery Mobile


MIT et GPL


Sencha Touch 2 Build Mobile Web Apps with HTML5, et Sencha Touch Charts Mobile HTML5 Charts

Sencha Touch est distribué sous licence libre licences commerciales... &lt;a href=&quot;http://dotclear.placeoweb.com/post/jQuery-Mobile-vs-Sencha-Touch&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; jQuery Mobile vs Sencha Touch&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/jQuery-Mobile-vs-Sencha-Touch#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/jQuery-Mobile-vs-Sencha-Touch#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/513</wfw:commentRss>
      </item>
    
  <item>
    <title>Librairies graphiques PHP</title>
    <link>http://dotclear.placeoweb.com/post/librairies-graphiques-php</link>
    <guid isPermaLink="false">urn:md5:9418162aed1e1921870483a0f2460a6d</guid>
    <pubDate>Sun, 11 Mar 2012 23:23:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>PHP</category>
        <category>php</category>    
    <description>&lt;p&gt;Générez des courbes, des histogrammes, des camemberts et bien plus encore...
Les diagrammes circulaires, les graphiques en lignes, en barres...&lt;/p&gt;    &lt;p&gt;JpGraph


JpGraph JpGraph est une bibliothèque graphique orientée objet la création pour PHP &gt;= 5.1 La bibliothèque est entièrement écrit en PHP et prête à être utilisé dans les scripts PHP (both CGI/APXS/CLI versions of PHP are supported).


The library can be used to create numerous types of graphs either on-line or written to a file. JpGraph... &lt;a href=&quot;http://dotclear.placeoweb.com/post/librairies-graphiques-php&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Librairies graphiques PHP&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/librairies-graphiques-php#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/librairies-graphiques-php#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/14</wfw:commentRss>
      </item>
    
  <item>
    <title>Librairies graphiques JavaScript HTML5</title>
    <link>http://dotclear.placeoweb.com/post/librairies-graphiques-javascript-html5</link>
    <guid isPermaLink="false">urn:md5:22d12d5cce821d87a5d38ff234c56edb</guid>
    <pubDate>Sun, 11 Mar 2012 23:22:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Javascript</category>
        <category>HTML5</category><category>javascript</category><category>jQuery</category>    
    <description>&lt;p&gt;Générez des courbes, des histogrammes, des camemberts et bien plus encore...
Les diagrammes circulaires, les graphiques en lignes, en barres...
... avec &lt;a href=&quot;http://dotclear.placeoweb.com/tag/HTML5&quot;&gt;HTML5&lt;/a&gt; les possibilités augmentent.&lt;/p&gt;    &lt;p&gt;Comparatifs des librairies JavaScript pour les graphiques


Tableau comparatif collaboratif de toutes les librairies JavaScript pour faire des visualisations de données graphiques et interactives


Librairies graphiques JavaScript (SVG, HTML5 ou non, en tant que framework ou non)


Morris.js


Morris.js est une bibliothèque légère qui utilise... &lt;a href=&quot;http://dotclear.placeoweb.com/post/librairies-graphiques-javascript-html5&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Librairies graphiques JavaScript HTML5&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/librairies-graphiques-javascript-html5#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/librairies-graphiques-javascript-html5#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/512</wfw:commentRss>
      </item>
    
  <item>
    <title>Génération de tableaux graphiques (charts)</title>
    <link>http://dotclear.placeoweb.com/post/Generation-de-tableaux-graphiques-charts</link>
    <guid isPermaLink="false">urn:md5:9b5024975fb1a4e100b8ce24a6dfba7c</guid>
    <pubDate>Sun, 11 Mar 2012 23:21:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Outils Internet</category>
        <category>csv</category><category>HTML5</category><category>javascript</category><category>php</category><category>swf</category><category>xml</category>    
    <description>&lt;p&gt;Faire un rendu propre d'histogrammes, camemberts, diagrammes de gant, etc...&lt;/p&gt;    &lt;p&gt;Les rendus en images (jpg, gif..) ou HTML5 (canvas)


Des explications des différents outils/frameworks existant pour générer des graphs (côté client ou serveur).


Librairies graphiques JavaScript HTML5 pour générer des courbes, des barres, etc... avec les options javascript, c.à.d. le survol, le rechargement des données et du visuel dynamique... &lt;a href=&quot;http://dotclear.placeoweb.com/post/Generation-de-tableaux-graphiques-charts&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Génération de tableaux graphiques (charts)&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/Generation-de-tableaux-graphiques-charts#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/Generation-de-tableaux-graphiques-charts#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/142</wfw:commentRss>
      </item>
    
  <item>
    <title>Voici comment google considère vos centres d'intérêt, votre age et sexe</title>
    <link>http://dotclear.placeoweb.com/post/Google-consid%C3%A8re-vos-centres-d-int%C3%A9r%C3%AAt-age-sexe</link>
    <guid isPermaLink="false">urn:md5:9850b6032cb1479f81b1fa1a26e262dc</guid>
    <pubDate>Sun, 26 Feb 2012 20:53:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>General</category>
            
    <description>    &lt;p&gt;Selon les cookies, Google trace vos recherches (pour afficher la publicité ciblée). Tellement que sur leur page Préférences pour les annonces, il vous indique comment Google considère vos centres d'intérêt et les données démographiques :


Vos catégories

Informatique et électronique - Logiciels
Informatique et électronique - Programmation - Java... &lt;a href=&quot;http://dotclear.placeoweb.com/post/Google-consid%C3%A8re-vos-centres-d-int%C3%A9r%C3%AAt-age-sexe&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Voici comment google considère vos centres d'intérêt, votre age et sexe&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/Google-consid%C3%A8re-vos-centres-d-int%C3%A9r%C3%AAt-age-sexe#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/Google-consid%C3%A8re-vos-centres-d-int%C3%A9r%C3%AAt-age-sexe#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/515</wfw:commentRss>
      </item>
    
  <item>
    <title>Mumble, logiciel libre et gratuit de VoIP</title>
    <link>http://dotclear.placeoweb.com/post/Mumble</link>
    <guid isPermaLink="false">urn:md5:a3bf5942c0477defe4ddf9193cd6096b</guid>
    <pubDate>Sun, 26 Feb 2012 19:46:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Outils Internet</category>
        <category>linux</category><category>messagerie</category><category>windows</category>    
    <description>&lt;p&gt;Dans la série des logiciels de &lt;a href=&quot;http://fr.wikipedia.org/wiki/Voix_sur_IP&quot; hreflang=&quot;fr&quot;&gt;voix sur IP (VoIP) ou &quot;Voice over IP&quot;&lt;/a&gt;, tels que &lt;a href=&quot;http://fr.wikipedia.org/wiki/Skype&quot; hreflang=&quot;fr&quot;&gt;Skype&lt;/a&gt;, &lt;a href=&quot;http://fr.wikipedia.org/wiki/TeamSpeak&quot; hreflang=&quot;fr&quot;&gt;TeamSpeak&lt;/a&gt; et &lt;a href=&quot;http://fr.wikipedia.org/wiki/Ventrilo&quot; hreflang=&quot;fr&quot;&gt;Ventrilo&lt;/a&gt; qui sont des logiciels propriétaires, il en existe un qui sort du lot en tant que logiciel libre de VoIP, il s'agit de &lt;a href=&quot;http://fr.wikipedia.org/wiki/Mumble&quot; hreflang=&quot;fr&quot;&gt;Mumble&lt;/a&gt;.&lt;/p&gt;


&lt;p&gt;Tout comme les autres, il multi-platerformes&amp;nbsp;: Windows, Mac OS X et Linux. Et possède également des clients pour les smartphones mobiles&amp;nbsp;: Android, iPhone.&lt;/p&gt;    &lt;p&gt;Ressources


Mumble

Télécharger Mumble
FAQ

Qu'est ce que Mumble ? Mumble est un logiciel de chat vocal pour les groupes.
Qu'est ce que Murmur ? &quot;Murmur&quot; est le nom de l'application serveur. Dans tous les cas, les pourparlers au sujet de quelqu'un si il est Murmur pour une partie du serveur sûr.

Running Murmur
Murmurguide
Mumble 1.2.3
1.2.2... &lt;a href=&quot;http://dotclear.placeoweb.com/post/Mumble&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Mumble, logiciel libre et gratuit de VoIP&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/Mumble#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/Mumble#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/507</wfw:commentRss>
      </item>
    
  <item>
    <title>status de processus</title>
    <link>http://dotclear.placeoweb.com/post/process-state</link>
    <guid isPermaLink="false">urn:md5:cf38944a5f71b74de1c59171fd97c967</guid>
    <pubDate>Sun, 19 Feb 2012 19:48:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Système</category>
        <category>linux</category>    
    <description>&lt;p&gt;La commande &quot;ps fauxwww&quot; ou &quot;top&quot; listant le détail des processus qui sont en train de tourner sont superbes, mails encore faut il savoir lire le résultat&lt;/p&gt;

&lt;pre&gt;
  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND
27149 www-data  20   0  296m  41m  22m R   69  2.1  11:35.47 apache2
26626 www-data  20   0  295m  31m  12m R   68  1.6  24:32.84 apache2

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root     18093  0.0  0.5 288144 10956 ?        Ss   Feb19   0:01 /usr/sbin/apache2 -k start
www-data 26626 71.2  1.5 302508 32044 ?        R    09:15  27:24  \_ /usr/sbin/apache2 -k start
www-data 26926 64.4  3.4 319332 69760 ?        R    09:21  21:01  \_ /usr/sbin/apache2 -k start
www-data 27149 51.8  2.1 303276 42724 ?        R    09:26  14:27  \_ /usr/sbin/apache2 -k start
www-data 27293  0.0  1.3 291412 26384 ?        S    09:29   0:00  \_ /usr/sbin/apache2 -k start
www-data 27488  0.0  0.9 292132 19140 ?        S    09:33   0:00  \_ /usr/sbin/apache2 -k start
www-data 27922  0.0  0.9 291644 19324 ?        S    09:41   0:00  \_ /usr/sbin/apache2 -k start
&lt;/pre&gt;
    &lt;p&gt;Selon le &quot;man ps&quot;, on peut lire le code STATE du processus :


CODES D'ÉTAT DE PROCESSUS
       Voici les différentes valeurs que les indicateurs de sortie s, stat et state (entête « STAT » ou « S ») afficheront pour décrire l'état d'un processus :
       D    dormant non interruptible (normalement entrées-sorties) ;
       R    s'exécutant ou... &lt;a href=&quot;http://dotclear.placeoweb.com/post/process-state&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; status de processus&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/process-state#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/process-state#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/501</wfw:commentRss>
      </item>
    
  <item>
    <title>Ressources graphiques d'images et d'icones</title>
    <link>http://dotclear.placeoweb.com/post/Ressources-images-graphiques-icones</link>
    <guid isPermaLink="false">urn:md5:55fb3a4714a04dba427b2b026eaa8cf2</guid>
    <pubDate>Sat, 11 Feb 2012 19:35:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Outils Internet</category>
            
    <description>&lt;p&gt;Besoins d'icônes graphiques et petites images .png ou .gif&amp;nbsp;?&lt;/p&gt;    &lt;p&gt;Ressources graphiques


famfamfam.com

SILK ICONS is a smooth, free icon set, containing over 700 16-by-16 pixel icons in strokably-soft PNG format.


crystalxp.net

Crystal Clear PNG


findicons.com Moteur de Recherche d'Icônes


iconarchive.com Icon Archive


Google Image


D'autres ressources et pack d'images


iconfinder.com
webmaster-tips.net... &lt;a href=&quot;http://dotclear.placeoweb.com/post/Ressources-images-graphiques-icones&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Ressources graphiques d'images et d'icones&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/Ressources-images-graphiques-icones#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/Ressources-images-graphiques-icones#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/204</wfw:commentRss>
      </item>
    
  <item>
    <title>Content-Disposition: attachment; filename</title>
    <link>http://dotclear.placeoweb.com/post/Content-Disposition-attachment-filename</link>
    <guid isPermaLink="false">urn:md5:333efa110a9b7b146b3eada02f3b57d5</guid>
    <pubDate>Fri, 27 Jan 2012 19:07:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Outils Internet</category>
        <category>apache</category><category>php</category><category>windows</category>    
    <description>&lt;p&gt;Comment faire un téléchargement forcé compatible avec tous les navigateurs ?...&lt;/p&gt;


&lt;pre&gt;Content-Disposition: attachment; filename=xxx&lt;/pre&gt;    &lt;p&gt;Ma conclusion

if( preg_match(&quot;/.*MSIE .*/&quot;,$_SERVER[&quot;HTTP_USER_AGENT&quot;]) ) {
							/**
							 * IE (Internet Explorer)
							 * Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; InfoPath.3)
							 * Mozilla/5.0 (compatible;... &lt;a href=&quot;http://dotclear.placeoweb.com/post/Content-Disposition-attachment-filename&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Content-Disposition: attachment; filename&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/Content-Disposition-attachment-filename#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/Content-Disposition-attachment-filename#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/499</wfw:commentRss>
      </item>
    
  <item>
    <title>Specified VM install not found: type Standard VM, name jre6</title>
    <link>http://dotclear.placeoweb.com/post/Specified-VM-install-not-found-type-Standard-VM-name-jre6</link>
    <guid isPermaLink="false">urn:md5:d6fff3ce46d0f2092a68b79c39965641</guid>
    <pubDate>Fri, 20 Jan 2012 13:43:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>JAVA</category>
        <category>eclipse</category><category>java</category>    
    <description>&lt;p&gt;En lançant sous Eclipse un tache Ant, j'ai le retour d'erreur&amp;nbsp;:&lt;/p&gt;


&lt;pre&gt;Specified VM install not found: type Standard VM, name jre6&lt;/pre&gt;


&lt;p&gt;La solution est de configurer la JRE dans&amp;nbsp;:&lt;/p&gt;


&lt;pre&gt;build.xml -&amp;gt; Run As -&amp;gt; External Tools Configuration -&amp;gt; JRE -&amp;gt; choisissez la jre ou jdk appropriée&lt;/pre&gt;


&lt;p&gt;ici vous retrouvez l'erreur&amp;nbsp;: [JRE]: Unable to resolve JRE: jre6 (Standard VM).&lt;/p&gt;


&lt;p&gt;Choisissez la bonne JRE, et compilez&amp;nbsp;!&lt;/p&gt;    &lt;p&gt;Alternativement on aurait pu de supprimer :


D:\workspaceEclipse37Indigo\.metadata\.plugins\org.eclipse.debug.core\.launches\MonNomDeProjet projectBuilder.xml.launch... &lt;a href=&quot;http://dotclear.placeoweb.com/post/Specified-VM-install-not-found-type-Standard-VM-name-jre6&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Specified VM install not found: type Standard VM, name jre6&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/Specified-VM-install-not-found-type-Standard-VM-name-jre6#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/Specified-VM-install-not-found-type-Standard-VM-name-jre6#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/497</wfw:commentRss>
      </item>
    
  <item>
    <title>Java EE vs PHP</title>
    <link>http://dotclear.placeoweb.com/post/J2EE-vs-PHP</link>
    <guid isPermaLink="false">urn:md5:9bfbce4dc4818115c0053dd175e671c8</guid>
    <pubDate>Fri, 20 Jan 2012 08:17:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>Système</category>
        <category>java</category><category>linux</category><category>php</category><category>windows</category>    
    <description>    &lt;p&gt;Quelle technologie choisir pour du faire du web et du métier entreprise (mail, web service, ssl, https taches de fond, taches planifiées, génération et exportation de documents PDF, Excel, Word, OOo, ...) ?


PHP 5 ou Java EE (J2EE) ?


Confrontons sommairement Java Entreprise (Java EE : Enterprise Edition - anciennement nommé J2EE) à PHP 5 qui... &lt;a href=&quot;http://dotclear.placeoweb.com/post/J2EE-vs-PHP&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Java EE vs PHP&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/J2EE-vs-PHP#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/J2EE-vs-PHP#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/520</wfw:commentRss>
      </item>
    
  <item>
    <title>SOPA/PIPA</title>
    <link>http://dotclear.placeoweb.com/post/SOPA-PIPA</link>
    <guid isPermaLink="false">urn:md5:f6dff489aaa7364627d3597e5a8f5361</guid>
    <pubDate>Wed, 18 Jan 2012 08:30:00 +0100</pubDate>
    <dc:creator>PlaceOweb</dc:creator>
        <category>PHP</category>
        <category>php</category>    
    <description>&lt;p&gt;La page d'accueil de &lt;a href=&quot;http://www.php.net&quot; title=&quot;http://www.php.net&quot;&gt;http://www.php.net&lt;/a&gt; indique un message &quot;503: Stop SOPA/PIPA&quot;, alors que le manuel PHP reste disponible &lt;a href=&quot;http://www.php.net/manual/&quot; title=&quot;http://www.php.net/manual/&quot;&gt;http://www.php.net/manual/&lt;/a&gt;.&lt;/p&gt;    &lt;p&gt;503: Stop SOPA/PIPA


The SOPA/PIPA bills threaten the open nature of the Web and thus threaten Open Source projects like ours. If you have the ability to vote in the United States, help us out and contact your representatives. If you are not able to vote in the United States, you can help by petitioning the U.S. state department. Bills like these... &lt;a href=&quot;http://dotclear.placeoweb.com/post/SOPA-PIPA&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; SOPA/PIPA&lt;/a&gt;&lt;/p&gt;</description>
    
    
    
          <comments>http://dotclear.placeoweb.com/post/SOPA-PIPA#comment-form</comments>
      <wfw:comment>http://dotclear.placeoweb.com/post/SOPA-PIPA#comment-form</wfw:comment>
      <wfw:commentRss>http://dotclear.placeoweb.com/feed/atom/comments/496</wfw:commentRss>
      </item>
    
</channel>
</rss>
