<?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>Blog.hio.fr</title>
	<atom:link href="http://blog.hio.fr/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.hio.fr</link>
	<description>Success is the ability to go from one failure to another with no loss of enthusiasm.</description>
	<lastBuildDate>Wed, 16 May 2012 15:50:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Quick install mongodb debian</title>
		<link>http://blog.hio.fr/2012/05/16/quick-install-mongodb-debian.html</link>
		<comments>http://blog.hio.fr/2012/05/16/quick-install-mongodb-debian.html#comments</comments>
		<pubDate>Wed, 16 May 2012 15:31:37 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mongodb]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=1049</guid>
		<description><![CDATA[sudo -s aptitude install mongodb pecl install mongo echo &#34;extension=mongo.so&#34; &#62; /etc/php5/cgi/conf.d/mongo.ini echo &#34;extension=mongo.so&#34; &#62; /etc/php5/cli/conf.d/mongo.ini git clone https://github.com/jwage/php-mongodb-admin.git]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/05/16/quick-install-mongodb-debian.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design pattern decorator</title>
		<link>http://blog.hio.fr/2012/05/13/design-pattern-decorator.html</link>
		<comments>http://blog.hio.fr/2012/05/13/design-pattern-decorator.html#comments</comments>
		<pubDate>Sun, 13 May 2012 09:14:05 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[design patterns]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[decorator]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=1046</guid>
		<description><![CDATA[&#60;?php &#160; interface IDecorator &#123; public function decorate&#40;&#41;; &#125; &#160; abstract class Decorator implements IDecorator &#123; protected $_toDecorate; &#160; public function __construct&#40;IDecorator $toDecorate&#41; &#123; $this-&#62;_toDecorate = $toDecorate; &#125; &#125; &#160; class Html implements IDecorator &#123; protected $_str; &#160; public function &#8230; <a href="http://blog.hio.fr/2012/05/13/design-pattern-decorator.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/05/13/design-pattern-decorator.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install node.js and npm quickly</title>
		<link>http://blog.hio.fr/2012/04/27/install-node-js-and-npm-quickly.html</link>
		<comments>http://blog.hio.fr/2012/04/27/install-node-js-and-npm-quickly.html#comments</comments>
		<pubDate>Fri, 27 Apr 2012 13:53:07 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[node.js]]></category>
		<category><![CDATA[npm]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=1037</guid>
		<description><![CDATA[node.js go on nodejs.org download source tar -xvzf node-v0.6.15.tar.gz cd node node-v0.6.15/ ./configure make make test make doc sudo make install npm wget http://npmjs.org/install.sh sudo bash install.sh &#160; tar=/bin/tar version: tar &#40;GNU tar&#41; 1.25 Copyright &#40;C&#41; 2010 Free Software Foundation, &#8230; <a href="http://blog.hio.fr/2012/04/27/install-node-js-and-npm-quickly.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/04/27/install-node-js-and-npm-quickly.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony2 preExecute Controller</title>
		<link>http://blog.hio.fr/2012/04/17/symfony2-preexecute-controller.html</link>
		<comments>http://blog.hio.fr/2012/04/17/symfony2-preexecute-controller.html#comments</comments>
		<pubDate>Tue, 17 Apr 2012 16:11:34 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony2]]></category>
		<category><![CDATA[listener]]></category>
		<category><![CDATA[preExecute]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=1032</guid>
		<description><![CDATA[Listener/PublisherListener.php &#60;?php namespace Main\PublisherBundle\Listener; &#160; use Symfony\Component\EventDispatcher\Event; use Symfony\Component\HttpKernel\HttpKernelInterface; use Symfony\Component\HttpKernel\Event\FilterControllerEvent; &#160; class PublisherListener &#123; &#160; public function onCoreController&#40;FilterControllerEvent $event&#41; &#123; if&#40;HttpKernelInterface::MASTER_REQUEST == $event-&#62;getRequestType&#40;&#41;&#41; &#123; $_controller = $event-&#62;getController&#40;&#41;; if&#40;isset&#40;$_controller&#91;0&#93;&#41;&#41; &#123; $controller = $_controller&#91;0&#93;; if&#40;method_exists&#40;$controller, 'preExecute'&#41;&#41; &#123; $controller-&#62;preExecute&#40;&#41;; &#125; &#125; &#125; &#8230; <a href="http://blog.hio.fr/2012/04/17/symfony2-preexecute-controller.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/04/17/symfony2-preexecute-controller.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>symfony2 twig i18n date</title>
		<link>http://blog.hio.fr/2012/04/17/symfony2-twig-i18n-date.html</link>
		<comments>http://blog.hio.fr/2012/04/17/symfony2-twig-i18n-date.html#comments</comments>
		<pubDate>Tue, 17 Apr 2012 10:25:43 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony2]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[i18n]]></category>
		<category><![CDATA[twig]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=1029</guid>
		<description><![CDATA[sudo aptitude install php5-intl app/config/config.yml services: twig.extension.intl: class: Twig_Extensions_Extension_Intl tags: - { name: twig.extension } In twig template {{ game.created_at&#124; localizeddate('full', 'none') }}]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/04/17/symfony2-twig-i18n-date.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>twig macro link title translation</title>
		<link>http://blog.hio.fr/2012/04/13/twig-macro-link-title-translation.html</link>
		<comments>http://blog.hio.fr/2012/04/13/twig-macro-link-title-translation.html#comments</comments>
		<pubDate>Fri, 13 Apr 2012 13:31:11 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony2]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[twig]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=1018</guid>
		<description><![CDATA[{% macro link(route, title, name, attr) %} {% spaceless %} &#60;a href=&#34;{{ path(route) }}&#34; title=&#34;{{ title&#124;trans({}, 'link') }}&#34;{% for attrname,attrvalue in attr %} {{attrname}}=&#34;{{attrvalue}}&#34;{% endfor %}&#62;{{ name&#124;trans({}, 'link') }}&#60;/a&#62; {% endspaceless %} {% endmacro %} &#160; &#60;!-- Usage {{ macro.link('route_name', &#8230; <a href="http://blog.hio.fr/2012/04/13/twig-macro-link-title-translation.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/04/13/twig-macro-link-title-translation.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jenkins for php project</title>
		<link>http://blog.hio.fr/2012/04/09/jenkins-for-php-project.html</link>
		<comments>http://blog.hio.fr/2012/04/09/jenkins-for-php-project.html#comments</comments>
		<pubDate>Mon, 09 Apr 2012 19:18:06 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[jenkins]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=1009</guid>
		<description><![CDATA[read http://jenkins-php.org/ aptitude install jenkins #!/bin/bash host=&#34;http://jenkins.domain.tld:8080&#34; &#160; wget $host/jnlpJars/jenkins-cli.jar java -jar jenkins-cli.jar -s $host install-plugin checkstyle java -jar jenkins-cli.jar -s $host install-plugin cloverphp java -jar jenkins-cli.jar -s $host install-plugin dry java -jar jenkins-cli.jar -s $host install-plugin htmlpublisher java -jar &#8230; <a href="http://blog.hio.fr/2012/04/09/jenkins-for-php-project.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/04/09/jenkins-for-php-project.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Symfony2 service + manager</title>
		<link>http://blog.hio.fr/2012/03/30/symfony2-service-manager.html</link>
		<comments>http://blog.hio.fr/2012/03/30/symfony2-service-manager.html#comments</comments>
		<pubDate>Fri, 30 Mar 2012 12:05:13 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[symfony2]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[service]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=999</guid>
		<description><![CDATA[Resources/config/services.xml &#60;?xml version=&#34;1.0&#34; ?&#62; &#160; &#60;container xmlns=&#34;http://symfony.com/schema/dic/services&#34; xmlns:xsi=&#34;http://www.w3.org/2001/XMLSchema-instance&#34; xsi:schemaLocation=&#34;http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd&#34;&#62; &#160; &#60;parameters&#62; &#60;parameter key=&#34;main_publisher.game.manager.class&#34;&#62;Main\PublisherBundle\Manager\GameManager&#60;/parameter&#62; &#60;/parameters&#62; &#160; &#60;services&#62; &#60;service id=&#34;main_publisher.game.manager&#34; class=&#34;%main_publisher.game.manager.class%&#34;&#62; &#60;argument type=&#34;service&#34; id=&#34;doctrine.orm.entity_manager&#34; /&#62; &#60;/service&#62; &#60;/services&#62; &#60;/container&#62; Manager/BaseManager.php &#60;?php namespace Main\PublisherBundle\Manager; &#160; class BaseManager &#123; &#160; protected function persistAndFlush&#40;$entity&#41; &#123; &#8230; <a href="http://blog.hio.fr/2012/03/30/symfony2-service-manager.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/03/30/symfony2-service-manager.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vim tricks</title>
		<link>http://blog.hio.fr/2012/03/22/vim-tricks.html</link>
		<comments>http://blog.hio.fr/2012/03/22/vim-tricks.html#comments</comments>
		<pubDate>Thu, 22 Mar 2012 08:31:23 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=991</guid>
		<description><![CDATA[remove windows end of lines (^M) :%s/C-vC-m//g]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/03/22/vim-tricks.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql subquery</title>
		<link>http://blog.hio.fr/2012/03/18/mysql-subquery.html</link>
		<comments>http://blog.hio.fr/2012/03/18/mysql-subquery.html#comments</comments>
		<pubDate>Sun, 18 Mar 2012 21:10:52 +0000</pubDate>
		<dc:creator>HiO</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[subquery]]></category>

		<guid isPermaLink="false">http://blog.hio.fr/?p=982</guid>
		<description><![CDATA[Database CREATE TABLE IF NOT EXISTS `author` &#40; `id` INT&#40;10&#41; UNSIGNED NOT NULL AUTO_INCREMENT, `name` VARCHAR&#40;50&#41; NOT NULL, PRIMARY KEY &#40;`id`&#41; &#41; ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; &#160; INSERT INTO `author` &#40;`id`, `name`&#41; VALUES &#40;1, 'HiO'&#41;, &#40;2, 'Blu'&#41;, &#40;3, 'Pouet'&#41;; &#8230; <a href="http://blog.hio.fr/2012/03/18/mysql-subquery.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.hio.fr/2012/03/18/mysql-subquery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

