<?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>zechim.com</title>
	<atom:link href="http://zechim.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://zechim.com/blog</link>
	<description>PHP &#38; jQuery specialist [+55 11 7053 2239]</description>
	<lastBuildDate>Sat, 19 May 2012 20:48:48 +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>List installed / loaded modules on apache2</title>
		<link>http://zechim.com/blog/2012/05/19/list-installed-loaded-modules-on-apache2/</link>
		<comments>http://zechim.com/blog/2012/05/19/list-installed-loaded-modules-on-apache2/#comments</comments>
		<pubDate>Sat, 19 May 2012 20:48:48 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=232</guid>
		<description><![CDATA[sudo apache2ctl -M]]></description>
			<content:encoded><![CDATA[<pre>
sudo apache2ctl -M
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F19%2Flist-installed-loaded-modules-on-apache2%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=232" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/19/list-installed-loaded-modules-on-apache2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable htaccess rewrite on Apache2 Ubuntu 12.04</title>
		<link>http://zechim.com/blog/2012/05/19/enable-htaccess-rewrite-on-apache2-ubuntu-12-04/</link>
		<comments>http://zechim.com/blog/2012/05/19/enable-htaccess-rewrite-on-apache2-ubuntu-12-04/#comments</comments>
		<pubDate>Sat, 19 May 2012 20:47:27 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=229</guid>
		<description><![CDATA[sudo a2enmod rewrite Edit /etc/apache2/sites-available/default, change &#8220;AllowOverride None&#8221; to &#8220;AllowOverride All&#8221; sudo service apache2 restart]]></description>
			<content:encoded><![CDATA[<pre>
sudo a2enmod rewrite
</pre>
<p>Edit /etc/apache2/sites-available/default, change &#8220;AllowOverride None&#8221; to &#8220;AllowOverride All&#8221;</p>
<pre>
sudo service apache2 restart
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F19%2Fenable-htaccess-rewrite-on-apache2-ubuntu-12-04%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=229" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/19/enable-htaccess-rewrite-on-apache2-ubuntu-12-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Java Runtime Environment on Ubuntu 12.04</title>
		<link>http://zechim.com/blog/2012/05/18/install-java-runtime-environment-on-ubuntu-12-04/</link>
		<comments>http://zechim.com/blog/2012/05/18/install-java-runtime-environment-on-ubuntu-12-04/#comments</comments>
		<pubDate>Fri, 18 May 2012 11:29:41 +0000</pubDate>
		<dc:creator>Guilherme Franco</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[12.04]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[jre]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=224</guid>
		<description><![CDATA[To install the Oracle version of JRE and JDK, you should update your PPA to add this new repository: sudo add-apt-repository ppa:webupd8team/java sudo apt-get update And then install it ! =) sudo apt-get install oracle-java7-installer]]></description>
			<content:encoded><![CDATA[<p>To install the Oracle version of JRE and JDK, you should update your PPA to add this new repository:</p>
<pre>sudo add-apt-repository ppa:webupd8team/java</pre>
<pre>sudo apt-get update</pre>
<p>And then install it ! =)</p>
<pre>sudo apt-get install oracle-java7-installer</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F18%2Finstall-java-runtime-environment-on-ubuntu-12-04%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=224" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/18/install-java-runtime-environment-on-ubuntu-12-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignore chmod changes on GIT</title>
		<link>http://zechim.com/blog/2012/05/17/ignore-chmod-change-on-git/</link>
		<comments>http://zechim.com/blog/2012/05/17/ignore-chmod-change-on-git/#comments</comments>
		<pubDate>Thu, 17 May 2012 17:57:29 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[GIT]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=213</guid>
		<description><![CDATA[git config core.filemode false thanks Piero http://twitter.com/#!/pierophp]]></description>
			<content:encoded><![CDATA[<pre>
git config core.filemode false
</pre>
<p>thanks Piero http://twitter.com/#!/pierophp</p>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F17%2Fignore-chmod-change-on-git%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=213" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/17/ignore-chmod-change-on-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPMyAdmin install on ubuntu</title>
		<link>http://zechim.com/blog/2012/05/16/phpmyadmin-install-on-ubuntu/</link>
		<comments>http://zechim.com/blog/2012/05/16/phpmyadmin-install-on-ubuntu/#comments</comments>
		<pubDate>Wed, 16 May 2012 11:52:43 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=207</guid>
		<description><![CDATA[sudo apt-get install phpmyadmin sudo cp /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf sudo service apache2 reload]]></description>
			<content:encoded><![CDATA[<pre>
sudo apt-get install phpmyadmin
</pre>
<pre>
sudo cp /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf
</pre>
<pre>
sudo service apache2 reload
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F16%2Fphpmyadmin-install-on-ubuntu%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=207" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/16/phpmyadmin-install-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop Shorcut on Ubuntu</title>
		<link>http://zechim.com/blog/2012/05/16/desktop-shorcut-on-ubuntu/</link>
		<comments>http://zechim.com/blog/2012/05/16/desktop-shorcut-on-ubuntu/#comments</comments>
		<pubDate>Wed, 16 May 2012 11:33:46 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=204</guid>
		<description><![CDATA[gnome-desktop-item-edit --create-new ~/Desktop]]></description>
			<content:encoded><![CDATA[<pre>
gnome-desktop-item-edit --create-new ~/Desktop
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F16%2Fdesktop-shorcut-on-ubuntu%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=204" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/16/desktop-shorcut-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install PHPunit on Ubuntu</title>
		<link>http://zechim.com/blog/2012/05/16/install-phpunit-on-ubuntu/</link>
		<comments>http://zechim.com/blog/2012/05/16/install-phpunit-on-ubuntu/#comments</comments>
		<pubDate>Wed, 16 May 2012 11:11:30 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=201</guid>
		<description><![CDATA[Install the package sudo apt-get install PHPunit Upgrade PEAR sudo pear upgrade pear Install all the dependencies sudo pear channel-discover pear.phpunit.de sudo pear channel-discover components.ez.no sudo pear channel-discover pear.symfony-project.com sudo pear install --alldeps phpunit/PHPunit Test phpunit --version]]></description>
			<content:encoded><![CDATA[<p>Install the package</p>
<pre>
sudo apt-get install PHPunit
</pre>
<p>Upgrade PEAR</p>
<pre>
sudo pear upgrade pear
</pre>
<p>Install all the dependencies</p>
<pre>
sudo pear channel-discover pear.phpunit.de
sudo pear channel-discover components.ez.no
sudo pear channel-discover pear.symfony-project.com
sudo pear install --alldeps phpunit/PHPunit
</pre>
<p>Test </p>
<pre>
phpunit --version
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F16%2Finstall-phpunit-on-ubuntu%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=201" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/16/install-phpunit-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install MySQL Workbench on Ubuntu 12.04</title>
		<link>http://zechim.com/blog/2012/05/16/install-mysql-workbench-on-ubuntu-12-04/</link>
		<comments>http://zechim.com/blog/2012/05/16/install-mysql-workbench-on-ubuntu-12-04/#comments</comments>
		<pubDate>Wed, 16 May 2012 11:07:42 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=198</guid>
		<description><![CDATA[download MySQL Workbench on http://www.mysql.com/downloads/mirror.php?id=406525#mirrors wget https://launchpad.net/ubuntu/+archive/primary/+files/libzip1_0.9.3-1_i386.deb sudo dpkg -i libzip1_0.9.3-1_i386.deb 64bits => https://launchpad.net/ubuntu/+source/libzip/0.9.3-1/+build/1728114/+files/libzip1_0.9.3-1_amd64.deb This package (libmysqlclient16) was removed from 12.04 repos, so you need to grab the old one. wget http://launchpadlibrarian.net/94563300/libmysqlclient16_5.1.58-1ubuntu5_i386.deb sudo dpkg -i libmysqlclient16_5.1.58-1ubuntu5_i386.deb 64bits => http://launchpadlibrarian.net/94808408/libmysqlclient16_5.1.58-1ubuntu5_amd64.deb sudo &#8230;<p class="read-more"><a href="http://zechim.com/blog/2012/05/16/install-mysql-workbench-on-ubuntu-12-04/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>download MySQL Workbench on http://www.mysql.com/downloads/mirror.php?id=406525#mirrors</p>
<pre>
wget https://launchpad.net/ubuntu/+archive/primary/+files/libzip1_0.9.3-1_i386.deb
sudo dpkg -i libzip1_0.9.3-1_i386.deb
</pre>
<p>64bits => https://launchpad.net/ubuntu/+source/libzip/0.9.3-1/+build/1728114/+files/libzip1_0.9.3-1_amd64.deb</p>
<p>This package (libmysqlclient16) was removed from 12.04 repos, so you need to grab the old one.</p>
<pre>
wget http://launchpadlibrarian.net/94563300/libmysqlclient16_5.1.58-1ubuntu5_i386.deb
sudo dpkg -i libmysqlclient16_5.1.58-1ubuntu5_i386.deb
</pre>
<p>64bits => http://launchpadlibrarian.net/94808408/libmysqlclient16_5.1.58-1ubuntu5_amd64.deb</p>
<pre>
sudo apt-get install python-paramiko python-pysqlite2 mysql-client mysql-common libctemplate0 libgtkmm-2.4-1c2a
</pre>
<p>now install MySQL Workbench</p>
<pre>
sudo dpkg -i mysql-workbench-gpl-5.2.38-1ubu1104-i386.deb
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F16%2Finstall-mysql-workbench-on-ubuntu-12-04%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=198" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/16/install-mysql-workbench-on-ubuntu-12-04/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Output while running (PHP)</title>
		<link>http://zechim.com/blog/2012/05/15/output-while-running-php/</link>
		<comments>http://zechim.com/blog/2012/05/15/output-while-running-php/#comments</comments>
		<pubDate>Tue, 15 May 2012 18:44:09 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=195</guid>
		<description><![CDATA[ob_start(); for($i=0; $i]]></description>
			<content:encoded><![CDATA[<pre>
ob_start();
for($i=0; $i<3; $i++)
{
   echo 'printing...';
   echo str_repeat(' ', 65536); // set a minimum output

   ob_flush();
   flush();
   usleep(300000);
}
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F15%2Foutput-while-running-php%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=195" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/15/output-while-running-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reverse Engineer (Workbench, Doctrine, Symfony2) with annotation</title>
		<link>http://zechim.com/blog/2012/05/07/reverse-engineer-doctrine-workbench-symfony2-with-annotation/</link>
		<comments>http://zechim.com/blog/2012/05/07/reverse-engineer-doctrine-workbench-symfony2-with-annotation/#comments</comments>
		<pubDate>Mon, 07 May 2012 12:09:37 +0000</pubDate>
		<dc:creator>zechim</dc:creator>
				<category><![CDATA[Doctrine]]></category>
		<category><![CDATA[Symfony2]]></category>
		<category><![CDATA[doctrine]]></category>
		<category><![CDATA[hints]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://zechim.com/blog/?p=186</guid>
		<description><![CDATA[Hi guys!! First of all you need to create a data model on workbench and update your database After your database is populated, run this: php app/console doctrine:mapping:convert xml ./src/[YOUR/BUNDLE]/Resources/config/doctrine/metadata/orm --from-database --force so run this: php app/console doctrine:mapping:import [YourBundle] annotation &#8230;<p class="read-more"><a href="http://zechim.com/blog/2012/05/07/reverse-engineer-doctrine-workbench-symfony2-with-annotation/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Hi guys!!</p>
<p>First of all you need to create a data model on workbench and update your database</p>
<p>After your database is populated, run this:</p>
<pre>
php app/console doctrine:mapping:convert xml ./src/[YOUR/BUNDLE]/Resources/config/doctrine/metadata/orm --from-database --force
</pre>
<p>so run this:</p>
<pre>
php app/console doctrine:mapping:import [YourBundle] annotation
</pre>
<p>and this:</p>
<pre>
php app/console doctrine:generate:entities [YourBundle]
</pre>
<div class="facebook_like_button"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fzechim.com%2Fblog%2F2012%2F05%2F07%2Freverse-engineer-doctrine-workbench-symfony2-with-annotation%2F&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="padding: 0px 0px; border:none; overflow:hidden; width:450px; height:70px;"></iframe></div> <img src="http://zechim.com/blog/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=186" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://zechim.com/blog/2012/05/07/reverse-engineer-doctrine-workbench-symfony2-with-annotation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 1115/1142 objects using disk: basic

Served from: zechim.com @ 2012-05-20 13:13:48 -->
