<?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>Zivo NiX BLog &#187; Programación</title>
	<atom:link href="http://blog.yucas.info/category/programacion/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yucas.info</link>
	<description>Acerca de Linux, Solaris, Mac OSX, BSD y notas personales</description>
	<lastBuildDate>Tue, 20 Jul 2010 18:39:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>MySQL Cluster in 5 minutes</title>
		<link>http://blog.yucas.info/2010/03/08/mysql-cluster-in-5-minutes/</link>
		<comments>http://blog.yucas.info/2010/03/08/mysql-cluster-in-5-minutes/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 22:12:11 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[PHP mySQL]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/?p=1157</guid>
		<description><![CDATA[http://forge.mysql.com/tools/tool.php?id=16]]></description>
		<wfw:commentRss>http://blog.yucas.info/2010/03/08/mysql-cluster-in-5-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Setup MySQL Replication</title>
		<link>http://blog.yucas.info/2009/11/05/how-to-setup-mysql-replication/</link>
		<comments>http://blog.yucas.info/2009/11/05/how-to-setup-mysql-replication/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 02:24:04 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[PHP mySQL]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/?p=1120</guid>
		<description><![CDATA[This tutorial will go through the setup of MySQL database replication. I will also talk about how to get everything working smoothly again after a server crash, or if you wish to switch databases. I will try to explain what &#8230; <a href="http://blog.yucas.info/2009/11/05/how-to-setup-mysql-replication/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.yucas.info/2009/11/05/how-to-setup-mysql-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replication MySQL multiple DBs</title>
		<link>http://blog.yucas.info/2009/11/05/replication-mysql-multiple-dbs/</link>
		<comments>http://blog.yucas.info/2009/11/05/replication-mysql-multiple-dbs/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 02:22:33 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[PHP mySQL]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/?p=1118</guid>
		<description><![CDATA[============================= MASTER: add lines to my.cnf ============================= binlog-do-db=database_name_1 binlog-do-db=database_name_2 binlog-do-db=database_name_3 ============================= MASTER: SQL SYNTAX ============================= GRANT REPLICATION SLAVE ON *.* TO 'user'@'%' IDENTIFIED BY 'password'; FLUSH PRIVILEGES; FLUSH TABLES WITH READ LOCK; UNLOCK TABLES; SHOW MASTER STATUS; output&#62; file &#124; &#8230; <a href="http://blog.yucas.info/2009/11/05/replication-mysql-multiple-dbs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.yucas.info/2009/11/05/replication-mysql-multiple-dbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Replication</title>
		<link>http://blog.yucas.info/2009/10/19/database-replication/</link>
		<comments>http://blog.yucas.info/2009/10/19/database-replication/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 14:25:15 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[PHP mySQL]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/?p=1113</guid>
		<description><![CDATA[http://www.howtoforge.com/mysql_database_replication]]></description>
		<wfw:commentRss>http://blog.yucas.info/2009/10/19/database-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5 OSCOMMERCE BUG</title>
		<link>http://blog.yucas.info/2008/08/18/php-5-oscommerce-bug/</link>
		<comments>http://blog.yucas.info/2008/08/18/php-5-oscommerce-bug/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 20:04:31 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[PHP mySQL]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/?p=568</guid>
		<description><![CDATA[PHP 5 Oscommerce BUG Hello! D:\xampplite\htdocs\linux\shop\admin\includes\classes\ipload.php on line 31 i did this: instead of this: ________________________ // self destruct $this = null; return false; } } } ________________________ biggrin.gif i did this: ________________________ // self destruct unset($this); return false; } &#8230; <a href="http://blog.yucas.info/2008/08/18/php-5-oscommerce-bug/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.yucas.info/2008/08/18/php-5-oscommerce-bug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FORTRAN WIKI</title>
		<link>http://blog.yucas.info/2008/06/14/fortran-wiki/</link>
		<comments>http://blog.yucas.info/2008/06/14/fortran-wiki/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 15:28:19 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[Programación]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/?p=491</guid>
		<description><![CDATA[http://en.wikibooks.org/wiki/Fortran]]></description>
		<wfw:commentRss>http://blog.yucas.info/2008/06/14/fortran-wiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide intro text joomla</title>
		<link>http://blog.yucas.info/2008/04/25/hide-intro-text-joomla/</link>
		<comments>http://blog.yucas.info/2008/04/25/hide-intro-text-joomla/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 18:12:51 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[PHP mySQL]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/?p=462</guid>
		<description><![CDATA[Hide Intro Text we usually set the defaults in the relevant XML files for the user to make it easier when they are adding and editing new content. Like you, we often find we&#8217;re wanting Hide intro text on by &#8230; <a href="http://blog.yucas.info/2008/04/25/hide-intro-text-joomla/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.yucas.info/2008/04/25/hide-intro-text-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search and Reemplace</title>
		<link>http://blog.yucas.info/2008/03/16/search-and-reemplace/</link>
		<comments>http://blog.yucas.info/2008/03/16/search-and-reemplace/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 14:37:35 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[PHP mySQL]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/2008/03/16/search-and-reemplace/</guid>
		<description><![CDATA[&#160;update esalud_content set introtext = replace(introtext,CONVERT( _utf8 &#8216;%{ }%&#8217; USING latin1 ),&#8217; &#8216;)]]></description>
		<wfw:commentRss>http://blog.yucas.info/2008/03/16/search-and-reemplace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>moseasymedia</title>
		<link>http://blog.yucas.info/2007/11/20/moseasymedia/</link>
		<comments>http://blog.yucas.info/2007/11/20/moseasymedia/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 05:14:12 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[PHP mySQL]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/2007/11/20/moseasymedia/</guid>
		<description><![CDATA[{moseasymedia media=/consulta/banner.swf height=195 width=170}]]></description>
		<wfw:commentRss>http://blog.yucas.info/2007/11/20/moseasymedia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AUTO_INCREMENT</title>
		<link>http://blog.yucas.info/2007/11/09/auto_increment/</link>
		<comments>http://blog.yucas.info/2007/11/09/auto_increment/#comments</comments>
		<pubDate>Fri, 09 Nov 2007 16:20:05 +0000</pubDate>
		<dc:creator>carlosap</dc:creator>
				<category><![CDATA[PHP mySQL]]></category>

		<guid isPermaLink="false">http://blog.yucas.info/2007/11/09/auto_increment/</guid>
		<description><![CDATA[El valor inicial para AUTO_INCREMENT para la tabla. En MySQL 5.0, sólo funciona para tablas MyISAM y MEMORY. También se soporta para InnoDB desde MySQL 5.0.3. Para inicializar el primer valor de auto incremento para motores que no soporten esta &#8230; <a href="http://blog.yucas.info/2007/11/09/auto_increment/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://blog.yucas.info/2007/11/09/auto_increment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
