<?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>Karlesnine</title>
	<atom:link href="http://www.karlesnine.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.karlesnine.com</link>
	<description>Run linux since 1994</description>
	<lastBuildDate>Wed, 08 Feb 2012 09:29:22 +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>Changement d&#8217;hébergement pour le blog</title>
		<link>http://www.karlesnine.com/2012/02/08/changement-dhebergement-pour-le-blog/</link>
		<comments>http://www.karlesnine.com/2012/02/08/changement-dhebergement-pour-le-blog/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 09:09:24 +0000</pubDate>
		<dc:creator>karles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[dotclear]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.karlesnine.com/?p=786</guid>
		<description><![CDATA[Bonjour Karlesnine.com est toujours vivant et continue sa route depuis 2004 Le blog a changé d&#8217;hébergement. Depuis 2006 il était hébergé sur une machine virtuel  xen gracieusement mise à disposition par mes amis de chez eNiX avec une installation classique LAMP dont j&#8217;ai déjà détaillé une partie de la configuration A partir de maintenant le blog <a href='http://www.karlesnine.com/2012/02/08/changement-dhebergement-pour-le-blog/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Bonjour</p>
<p>Karlesnine.com est toujours vivant et continue sa route depuis <a title="Thème Monkey-lovers et Gorilla sur Gnome 2.4.1" href="http://www.karlesnine.com/2004/03/09/theme-monkey-lovers-et-gorilla/" target="_blank">2004</a></p>
<p>Le blog a changé d&#8217;hébergement. Depuis 2006 il était hébergé sur une machine virtuel  xen gracieusement mise à disposition par mes amis de chez <a title="eNiX" href="http://www.enix.org/" target="_blank">eNiX</a> avec une installation classique LAMP dont j&#8217;ai déjà détaillé une partie de la configuration</p>
<p>A partir de maintenant le blog Karlesnine.com est hébergé par <a href="http://www.kathryl.net/" target="_blank">kathryl</a>, toujours sur une VM xen mais avec une installation Ngnix / php5-fpm / mysql 5.5 / wordpress. Cela change un peu <img src='http://www.karlesnine.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlesnine.com/2012/02/08/changement-dhebergement-pour-le-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NCDU OSX une alternative en bash</title>
		<link>http://www.karlesnine.com/2011/02/18/ncdu-osx-une-alternative-en-bash/</link>
		<comments>http://www.karlesnine.com/2011/02/18/ncdu-osx-une-alternative-en-bash/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 11:07:00 +0000</pubDate>
		<dc:creator>karles</dc:creator>
				<category><![CDATA[Technologic]]></category>

		<guid isPermaLink="false">http://wp.karlesnine.com/index.php/2011/02/18/ncdu-osx-une-alternative-en-bash/</guid>
		<description><![CDATA[A mettre dans votre Bashrc. du -cks * &#124; sort -rn &#124; while read size fname; do for unit in k M G T P E Z Y; do if &#91; $size -lt 1024 &#93;; then echo -e &#34;${size}${unit}\t${fname}&#34;; break; fi; size=$&#40;&#40;size/1024&#41;&#41;; done; done Ceci n&#8217;a pas la puissance de NCDU mais est bien utile <a href='http://www.karlesnine.com/2011/02/18/ncdu-osx-une-alternative-en-bash/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>A mettre dans votre <a href="/post/2009/04/27/Mac-OS-X">Bashrc</a>.</p>
<pre class="bash bash" style="font-family:inherit"><span style="color: #c20cb9; font-weight: bold;">du</span> <span style="color: #660033;">-cks</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #660033;">-rn</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> <span style="color: #c20cb9; font-weight: bold;">size</span> fname; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #000000; font-weight: bold;">for</span> unit <span style="color: #000000; font-weight: bold;">in</span> k M G T P E Z Y; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$size</span> <span style="color: #660033;">-lt</span> <span style="color: #000000;">1024</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span>;      <span style="color: #000000; font-weight: bold;">then</span> <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${size}</span><span style="color: #007800;">${unit}</span><span style="color: #000099; font-weight: bold;">\t</span><span style="color: #007800;">${fname}</span>&quot;</span>;      <span style="color: #7a0874; font-weight: bold;">break</span>;      <span style="color: #000000; font-weight: bold;">fi</span>;      <span style="color: #007800;">size</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>size<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1024</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>;     <span style="color: #000000; font-weight: bold;">done</span>; <span style="color: #000000; font-weight: bold;">done</span></pre>
<p>Ceci n&#8217;a pas la puissance de <a href="http://dev.yorhel.nl/ncdu" hreflang="en">NCDU</a> mais est bien utile pour le répertoire courant.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlesnine.com/2011/02/18/ncdu-osx-une-alternative-en-bash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Une aventure formidable !</title>
		<link>http://www.karlesnine.com/2011/02/03/un-aventure-formidable/</link>
		<comments>http://www.karlesnine.com/2011/02/03/un-aventure-formidable/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 10:15:00 +0000</pubDate>
		<dc:creator>karles</dc:creator>
				<category><![CDATA[Actu Pro]]></category>

		<guid isPermaLink="false">http://wp.karlesnine.com/index.php/2011/02/03/un-aventure-formidable/</guid>
		<description><![CDATA[Je suis navré de ne pas partager plus mes découvertes techniques mais je vis depuis un an une aventure professionnel formidable avec weka-entertainment . Cette aventure me prend beaucoup de temps. A défaut de pouvoir vous donner de l&#8217;information technique peut être que certains pourrais venir partager cette aventure. L&#8217;Infra de Weka Entertainment c&#8217;est 2 <a href='http://www.karlesnine.com/2011/02/03/un-aventure-formidable/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.weka-entertainment.com/wp-content/uploads/2010/06/weka33.png" alt="" /></p>
<p>Je suis navré de ne pas partager plus mes découvertes techniques mais je vis depuis un an une aventure professionnel formidable avec <a href="http://www.weka-entertainment.com/" hreflang="fr">weka-entertainment</a> . Cette aventure me prend beaucoup de temps. A défaut de pouvoir vous donner de l&#8217;information technique peut être que certains pourrais venir partager cette aventure.</p>
<p>L&#8217;Infra de Weka Entertainment c&#8217;est 2 milliards de pages produites par mois ( 12/2010) depuis des architectures 100% cloud.</p>
<p>Vous maitrisez au choix&nbsp;: puppet, capistrano, redis, Lamp, memcached pinba, ec2, aws, nodejs, python, nginx, cfengine, hudson, zabbix</p>
<p><a href="http://www.weka-entertainment.com/jobs/administrateur-systeme-senior-hf-882" hreflang="fr">Engagez vous !</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlesnine.com/2011/02/03/un-aventure-formidable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>L&#8217;internet bug a Prisma Presse</title>
		<link>http://www.karlesnine.com/2010/11/18/l-internet-bug-a-prisma-presse/</link>
		<comments>http://www.karlesnine.com/2010/11/18/l-internet-bug-a-prisma-presse/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 17:48:00 +0000</pubDate>
		<dc:creator>karles</dc:creator>
				<category><![CDATA[Actu Pro]]></category>
		<category><![CDATA[Caminteresse.fr]]></category>
		<category><![CDATA[Cuisine-et-recette.fr]]></category>
		<category><![CDATA[Curriculum vitae]]></category>
		<category><![CDATA[eZ publish]]></category>
		<category><![CDATA[Femmeactuelle.fr]]></category>
		<category><![CDATA[Femmes.com]]></category>
		<category><![CDATA[Gala.fr]]></category>
		<category><![CDATA[Geo.fr]]></category>
		<category><![CDATA[nationalgeographic.fr]]></category>
		<category><![CDATA[Prisma Presse]]></category>
		<category><![CDATA[prismapub.com]]></category>
		<category><![CDATA[Programme-tv.net]]></category>
		<category><![CDATA[Tele-loisirs.fr]]></category>
		<category><![CDATA[Voici.fr]]></category>

		<guid isPermaLink="false">http://wp.karlesnine.com/?p=583</guid>
		<description><![CDATA[Je ne suis pas le seul à partir. 24 des 26 personnes composants la DSI Internet de Prisma Presse partent également. En effet la quasi totalité des personnes assurant l&#8217;activité technique de l&#8217;internet dans cette entreprise ont souscrit au plan de départ volontaire ouvert dans le cadre d&#8217;un plan de sauvegarde de l&#8217;emplois. Développeur, Administrateur <a href='http://www.karlesnine.com/2010/11/18/l-internet-bug-a-prisma-presse/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Je ne suis pas le seul à partir. 24 des 26 personnes composants la DSI Internet de Prisma Presse partent également. En effet la quasi totalité des personnes assurant l&#8217;activité technique de l&#8217;internet dans cette entreprise ont souscrit au <a href="http://tempsreel.nouvelobs.com/actualites/medias/20091027.OBS5961/prisma_presse_précise_son_externalisation_du_web.html" hreflang="fr">plan de départ volontaire ouvert</a> dans le cadre d&#8217;un plan de sauvegarde de l&#8217;emplois.</p>
<p>Développeur, Administrateur système et réseau, Architecte Web, Chef de Projet, Expert SEO, Assistante, Responsable d&#8217;application, Chef de Projet Technique et même le Responsable de service on adhéré à ce plan. Cette unanimité a souhaiter partir de la part de personne au cœur d&#8217;une activité d&#8217;avenir pour l&#8217;entreprise soulève forcément beaucoup de question. Il ne m&#8217;appartiens pas d&#8217;expliquer comme la direction de Prisma Presse à laisser ceci ce produire. Un professeur d&#8217;HEC écrira peut être un mémoire de management sur ce plan ou alors un sociologue étudiera cette dynamique de groupe qui conduit tout un service à préférer partir. Mais force est de constater que cette situation n&#8217;a jamais été désirée ou voulue de la part de l&#8217;entreprise. A mon humble avis la situation ainsi générée devrait induire au moins 20% de coût supplémentaire pour Prisma Presse dans son activité Internet et lui couter quelque point d&#8217;audience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlesnine.com/2010/11/18/l-internet-bug-a-prisma-presse/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Pour connaitre la taille d&#8217;une table ou d&#8217;une bases MySQL en ligne de commande</title>
		<link>http://www.karlesnine.com/2010/10/01/pour-connaitre-la-taille-d-une-table-ou-d-une-bases-mysql-en-ligne-de-commande/</link>
		<comments>http://www.karlesnine.com/2010/10/01/pour-connaitre-la-taille-d-une-table-ou-d-une-bases-mysql-en-ligne-de-commande/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 11:18:00 +0000</pubDate>
		<dc:creator>karles</dc:creator>
				<category><![CDATA[Technologic]]></category>
		<category><![CDATA[innodb]]></category>
		<category><![CDATA[Mysql]]></category>

		<guid isPermaLink="false">http://wp.karlesnine.com/index.php/2010/10/01/pour-connaitre-la-taille-d-une-table-ou-d-une-bases-mysql-en-ligne-de-commande/</guid>
		<description><![CDATA[Pour connaitre la taille d&#8217;une table ou d&#8217;une de vos bases MySQL en ligne de commande. J&#8217;avais pas Alors pour la taille de toutes les bases&#160;: SELECT table_schema &#34;Databases&#34;, sum&#40; data_length + index_length&#41; / 1024 / 1024 &#34;Size of DB in MB&#34; FROM information_schema. TABLES GROUP BY table_schema; Pour la taille d&#8217;une base&#160;: SELECT table_schema <a href='http://www.karlesnine.com/2010/10/01/pour-connaitre-la-taille-d-une-table-ou-d-une-bases-mysql-en-ligne-de-commande/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Pour connaitre la taille d&#8217;une table ou d&#8217;une de vos bases MySQL en ligne de commande. J&#8217;avais pas</p>
<p>Alors pour la taille de toutes les bases&nbsp;:</p>
<pre class="bash bash" style="font-family:inherit">SELECT table_schema <span style="color: #ff0000;">&quot;Databases&quot;</span>, <span style="color: #c20cb9; font-weight: bold;">sum</span><span style="color: #7a0874; font-weight: bold;">&#40;</span> data_length + index_length<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000;">1024</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000;">1024</span> <span style="color: #ff0000;">&quot;Size of DB in MB&quot;</span> FROM information_schema. TABLES GROUP BY table_schema;</pre>
<p>Pour la taille d&#8217;une base&nbsp;:</p>
<pre class="bash bash" style="font-family:inherit">SELECT table_schema <span style="color: #ff0000;">&quot;Database&quot;</span>, <span style="color: #c20cb9; font-weight: bold;">sum</span><span style="color: #7a0874; font-weight: bold;">&#40;</span> data_length + index_length<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000;">1024</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000;">1024</span> <span style="color: #ff0000;">&quot;Size of DB in MB&quot;</span> FROM information_schema. TABLES WHERE table_schema = <span style="color: #ff0000;">&quot;DBNAME&quot;</span> GROUP BY table_schema;</pre>
<p>La taille de toutes les tables d&#8217;une base&nbsp;:</p>
<pre class="bash bash" style="font-family:inherit">SELECT table_name AS <span style="color: #ff0000;">&quot;Tables&quot;</span>, round<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>data_length + index_length<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000;">1024</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000;">1024</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>, <span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #ff0000;">&quot;Size in MB&quot;</span> FROM information_schema. TABLES WHERE table_schema = <span style="color: #ff0000;">&quot;<span style="color: #007800;">$DB_NAME</span>&quot;</span>;</pre>
<p>et la taille d&#8217;une table d&#8217;une base&nbsp;:</p>
<pre class="bash bash" style="font-family:inherit">SELECT table_name AS <span style="color: #ff0000;">&quot;Table&quot;</span>, round<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>data_length + index_length<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000;">1024</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000;">1024</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>, <span style="color: #000000;">2</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #ff0000;">&quot;Size in MB&quot;</span> FROM information_schema. TABLES WHERE table_schema = <span style="color: #ff0000;">&quot;DBNAMEE&quot;</span> AND table_name = <span style="color: #ff0000;">&quot;TABLENAME&quot;</span>;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.karlesnine.com/2010/10/01/pour-connaitre-la-taille-d-une-table-ou-d-une-bases-mysql-en-ligne-de-commande/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

