<?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>How 2 Guru &#187; How to</title>
	<atom:link href="http://www.how2guru.com/archives/category/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.how2guru.com</link>
	<description>My Technical Sharing Blog</description>
	<lastBuildDate>Tue, 04 Oct 2011 04:50:32 +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>[How-to] SVN update using command line</title>
		<link>http://www.how2guru.com/archives/how-to-svn-update-using-command-line/</link>
		<comments>http://www.how2guru.com/archives/how-to-svn-update-using-command-line/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 04:50:32 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[Tortoise]]></category>

		<guid isPermaLink="false">http://www.how2guru.com/?p=276</guid>
		<description><![CDATA[Scenario: Tutorial on how to use command line (TORTOISE SVN) to perform svn update in window environment. Solution: Install Tortoise SVN Check out your source from SVN Perform command line update using following command ?View Code OTHER&#34;C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe&#34; /command:update /path:&#34;C:/svn/source&#34; /closeonend:2]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/how-to-svn-update-using-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[How-to] dump out MySQL Functions, Stored Procedures &amp; Triggers</title>
		<link>http://www.how2guru.com/archives/how-to-dump-out-mysql-functions-stored-procedures-triggers/</link>
		<comments>http://www.how2guru.com/archives/how-to-dump-out-mysql-functions-stored-procedures-triggers/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 03:50:52 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Mysqldump]]></category>
		<category><![CDATA[Mysqldump with function & stored procedures & triggers]]></category>

		<guid isPermaLink="false">http://www.how2guru.com/?p=263</guid>
		<description><![CDATA[Scenario: When working with MySQL Functions, Stored Procedures and Triggers, it is very important to know how to export those custom items out from MySQL. Default mysqldump command will not export out Functions, Stored Procedures or Triggers. So, additional parameters is required. Below is the mysqldump example: Solution: ?View Code LINUXuser1@AP[~]$ mysqldump -u&#60;DBUSER&#62; -p -h&#60;MYSQL_HOST&#62; [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/how-to-dump-out-mysql-functions-stored-procedures-triggers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[How-to] MySQL function example.</title>
		<link>http://www.how2guru.com/archives/how-to-mysql-function-example/</link>
		<comments>http://www.how2guru.com/archives/how-to-mysql-function-example/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 04:05:48 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Mysql Function]]></category>

		<guid isPermaLink="false">http://www.how2guru.com/?p=257</guid>
		<description><![CDATA[Scenario: Guys, this is a simple tutorial on how to create a MySQL function. For example, I need a MySQL function that will take in 2 integer input parameters and return a tinyint value to user. Solution: Here is the sample function code: ?View Code MYSQLDELIMITER $$ &#160; DROP FUNCTION IF EXISTS `sampleFunc1`$$ &#160; CREATE [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/how-to-mysql-function-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL server has gone away</title>
		<link>http://www.how2guru.com/archives/mysql-server-has-gone-away/</link>
		<comments>http://www.how2guru.com/archives/mysql-server-has-gone-away/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 03:50:55 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[max_allowed_packet]]></category>
		<category><![CDATA[MySQL gone away]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=36</guid>
		<description><![CDATA[Today I am trying to restore one of MySQL dump into my development database. While I executing the mysql -uroot -p XXXX &#60; XXXX.sql, the restoration show me the error of &#8221;ERROR 2006 (HY000) at line 3051: MySQL server has gone away&#8220;. Then I double check on the database that I restore, I found that the [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/mysql-server-has-gone-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to reset MySQL root password</title>
		<link>http://www.how2guru.com/archives/how-to-reset-mysql-root-password/</link>
		<comments>http://www.how2guru.com/archives/how-to-reset-mysql-root-password/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 02:31:15 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[reset password]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=24</guid>
		<description><![CDATA[As a database administrator, you might forget the root password for your database. It is a serious problem. This tutorial is to teach you how to reset the root password if you forget it. ?View Code MYSQL#Stop the MySQL service. /etc/init.d/mysql stop &#160; #Start the MySQL in the safe mode. mysqld_safe --skip-grant-tables &#38; &#160; #Login [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/how-to-reset-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Detect &amp; trigger action while user exit webpage</title>
		<link>http://www.how2guru.com/archives/detect-trigger-action-while-user-exit-webpage/</link>
		<comments>http://www.how2guru.com/archives/detect-trigger-action-while-user-exit-webpage/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 04:02:00 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[onbeforeunload]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=22</guid>
		<description><![CDATA[Some of website developers are need to track on visitor&#8217;s activity during browsing their website. Even would like to track when the visitor exit or quit their website. Below is a simple example on how to using a javascript command to track on visitor exit/close page action. Example: &#60;script language=&#8221;javascript&#8221;&#62; function trackUser(){ //doing something here [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/detect-trigger-action-while-user-exit-webpage/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Telnet mail server send email</title>
		<link>http://www.how2guru.com/archives/telnet-mail-server-send-email/</link>
		<comments>http://www.how2guru.com/archives/telnet-mail-server-send-email/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 13:52:37 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Telnet]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=16</guid>
		<description><![CDATA[Telnet mail server send email Below is some instruction on how to testing your mail server using the telnet command. I found this is useful while you do some debugging on the mail server to send out email to others. 1. Open a Command Prompt window 2. Telnet to your mail server. Normally the port [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/telnet-mail-server-send-email/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Disable select in Mozilla Firefox</title>
		<link>http://www.how2guru.com/archives/disable-select-in-mozilla-firefox/</link>
		<comments>http://www.how2guru.com/archives/disable-select-in-mozilla-firefox/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 13:18:15 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[Webpage Language]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=10</guid>
		<description><![CDATA[This post is to teaching a simple way on how to disable the select on the mozilla firefox. As I know, if you want to disable select in the Internet Explorer(IE), you may using the javascript onselect event to return a &#8220;FALSE&#8221;. This method will be only work for IE but not Firefox. Below is [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/disable-select-in-mozilla-firefox/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Sending email using Oracle procedures.</title>
		<link>http://www.how2guru.com/archives/oracle-send-email/</link>
		<comments>http://www.how2guru.com/archives/oracle-send-email/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 12:55:26 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://myhow2guru.cymemories.com/?p=1</guid>
		<description><![CDATA[This is a post to share that how to sending out email by using oracle procedures. Some of the time. As a developer, I would like this receive some notification email from my procedures, so that I could know that the procedures is running &#38; how many records had been update/inserted. Below is the same [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/oracle-send-email/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

