<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <link xmlns="http://www.w3.org/2005/Atom" rel="hub" href="https://overblog.superfeedr.com"/>
        <link xmlns="http://www.w3.org/2005/Atom" rel="self" href="https://nanokrill.over-blog.com/rss" type="application/rss+xml"/>
        <title><![CDATA[The code in all its forms]]></title>
        <link>https://nanokrill.over-blog.com/</link>
        <generator>Overblog - https://www.over-blog.com</generator>
        <description><![CDATA[Blog on development for developper to serve millions of page views]]></description>
                    <item>
    <title><![CDATA[Php filter array by columns]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/php-filter-array-by-columns.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/php-filter-array-by-columns.html</guid>
    <pubDate>Mon, 30 Mar 2015 13:47:58 +0200</pubDate>
    <description><![CDATA[Convert big array to smaller I have a big array to read or a really big array to copy severall time .... in memory and finaly I use only four columns. That a usualy case, while it's so simple to avoid extra informations. Use filter Example $List[] = array("a"=>"Apple","b"=>"Bananas","c"=>"Caroub","d"=>"diops","e"=>"electron","f"=>"first");... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[php : Convert an array to int only if all value could be cast in int]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/php-convert-an-array-to-int-only-if-all-value-could-be-cast-in-int.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/php-convert-an-array-to-int-only-if-all-value-could-be-cast-in-int.html</guid>
    <pubDate>Mon, 30 Mar 2015 13:43:18 +0200</pubDate>
    <description><![CDATA[Convert an array to int only if all value could be cast in int. Yes very usefull if you use some graphic. Readable version $Serie= range(0,5) ; $Serie = array_is_numeric($Serie) ?array_map('intval',$Serie):$Serie; function array_is_numeric(array $array)... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[php : Array_map]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/php-array-map.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/php-array-map.html</guid>
    <pubDate>Mon, 30 Mar 2015 13:31:29 +0200</pubDate>
    <description><![CDATA[Array_map send each value of an array to a function, multiply each value by itself, and return an array with the new values. Simply, but not simple Ok, one function one usage. Not really true, you could really use this function for another usage Call... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Heard this music for better programming]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/heard-this-music-for-better-programming.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/heard-this-music-for-better-programming.html</guid>
    <pubDate>Wed, 25 Mar 2015 15:23:24 +0100</pubDate>
    <description><![CDATA[Heard this music for better programming Note from the author "Just a few tracks from games and a movie that I've found to be excellent to listen to while programming. I could have expanded this mix by several other tracks from Deus Ex, but tried to keep... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Docker : Read, use and host your own server like my grandma]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/docker-read-use-and-host-your-own-server-like-my-grandma.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/docker-read-use-and-host-your-own-server-like-my-grandma.html</guid>
    <pubDate>Wed, 25 Mar 2015 14:00:18 +0100</pubDate>
    <description><![CDATA[Docker is an open-source program that enables a Linux application and its dependencies to be packaged as a container. Docker is not a VM, you could use system that has different dependency with docker on same os. Ok, but what should I do ? First, don't... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[TiddlyWiki : Standalone wiki]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/tiddlywiki-standalone-wiki.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/tiddlywiki-standalone-wiki.html</guid>
    <pubDate>Tue, 24 Mar 2015 11:50:50 +0100</pubDate>
    <description><![CDATA[TiddlyWiki TiddlyWiki is a simple wiki, fast does not use a database. Interests You can easily host on a local directory without server You can use Dropbox to host THE file. In this case public URL allows you to share your wiki in read-only mode, you... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Focus : Index on MySQL 5.6]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/focus-index-on-mysql-5-6.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/focus-index-on-mysql-5-6.html</guid>
    <pubDate>Tue, 24 Mar 2015 11:46:52 +0100</pubDate>
    <description><![CDATA[Indexes are used to find rows with specific column values quickly. Without an index, MySQL must begin with the first row and then read through the entire table to find the relevant rows. The larger the table, the more this costs. If the table has an index... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[MySQL : Avoid count with subquery]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/mysql-avoid-count-with-subquery.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/mysql-avoid-count-with-subquery.html</guid>
    <pubDate>Wed, 18 Mar 2015 14:07:45 +0100</pubDate>
    <description><![CDATA[In SQL we often used subquery or joins to obtain a number of element (count) and especially when there are several numbers to get in a single query. Fortunately, in some cases we can use a "trick" on function count() by passing conditions. Syntax count(condition)... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Nginx :  Real time analysis]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/nginx-real-time-analysis.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/nginx-real-time-analysis.html</guid>
    <pubDate>Wed, 11 Mar 2015 13:37:04 +0100</pubDate>
    <description><![CDATA[You have an nginx server and you use echo to watch vars ? Please use this tools instead. You can track active request full stack of filter debug LUA trace lua Perf trace file access https://github.com/openresty/nginx-systemtap-toolkit Screen shot ===... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Focus : Add circular menu to your web site]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/focus-add-circular-menu-to-your-web-site.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/focus-add-circular-menu-to-your-web-site.html</guid>
    <pubDate>Wed, 11 Mar 2015 13:28:21 +0100</pubDate>
    <description><![CDATA[Add share actions on your site with small button that can deploy like a circular menu http://sarasoueidan.com/tools/circulus/ ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Gamification : aperçu des différentes techniques]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/gamification-apercu-des-differentes-techniques.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/gamification-apercu-des-differentes-techniques.html</guid>
    <pubDate>Mon, 09 Mar 2015 10:47:29 +0100</pubDate>
    <description><![CDATA[La gamification est un nom utilisé assez récemment. Beaucoup utilisé sur les Applications mobile et plus particulièrement les freemium, il s'agit d'une technique poussant l'utilisateur à revenir sur l'application, y avoir un attachement dont il ne pourra... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Mise en avant : Interpreter Php]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/03/mise-en-avant-interpreter-php.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/03/mise-en-avant-interpreter-php.html</guid>
    <pubDate>Mon, 09 Mar 2015 10:41:05 +0100</pubDate>
    <description><![CDATA[Je tenais à vous présenter un petit outil fort pratique pour exécuter rapidement quelques lignes de php en ligne de commandes. Bien sûr il existait le $php -a mais celui-ci ne permet pas l'édition multi lignes et surtout il n'affiche la sortie que lorsque... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Mise en avant : Gestionnaire de pages pour Facebook]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/02/mise-en-avant-gestionnaire-de-pages-pour-facebook.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/02/mise-en-avant-gestionnaire-de-pages-pour-facebook.html</guid>
    <pubDate>Tue, 17 Feb 2015 11:17:46 +0100</pubDate>
    <description><![CDATA[Manage all your Facebook pages. Features Manage your Facebook Pages Share files directly to the app using the charms menu Live tiles display your last notifications Pin pages to your start screen and be on track with the last news Check your notifications... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Mise en avant : Facebook, gestion de votre audience]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/02/mise-en-avant-facebook-gestion-de-votre-audience.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/02/mise-en-avant-facebook-gestion-de-votre-audience.html</guid>
    <pubDate>Thu, 12 Feb 2015 13:54:38 +0100</pubDate>
    <description><![CDATA[Il est aujourd'hui possible d'utiliser les informations de segmentation des utilisateurs Facebook sur votre propre site pour afficher des publicités sur un groupe de population. Comment ? Facebook livre clé en main l'ensemble des techniques pour le faire... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[php : array_map]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2015/02/php-array-map.html]]></link>
    <guid>https://nanokrill.over-blog.com/2015/02/php-array-map.html</guid>
    <pubDate>Thu, 12 Feb 2015 13:48:47 +0100</pubDate>
    <description><![CDATA[Un petit article pour préciser quelques éléments qui ne sont pas clair dans la documentation array_map de php. En effet, l'utilisation de cette fonction est très puissante et peut dans beaucoup de cas éviter d'écrire un code qui serait difficile à maintenir... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
                    <item>
    <title><![CDATA[Cours XSLT]]></title>
    <link><![CDATA[https://nanokrill.over-blog.com/2014/12/cours-xslt.html]]></link>
    <guid>https://nanokrill.over-blog.com/2014/12/cours-xslt.html</guid>
    <pubDate>Fri, 12 Dec 2014 11:25:45 +0100</pubDate>
    <description><![CDATA[Un cours sur le XSLT !!!! Qu'est ce que c'est ? Tout simplement une façon de rendre lisible du XML. Bon d'accord, si vous ne savez pas ce que c'est, vous comprendrez rapidement que je commence à publier des articles sur le coding. Le premier étant la... ]]></description>
        <dc:creator><![CDATA[Ferey Cyril]]></dc:creator>
    </item>
            </channel>
</rss>

