<?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</title>
	<atom:link href="http://www.how2guru.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.how2guru.com</link>
	<description>My Technical Sharing Blog</description>
	<lastBuildDate>Mon, 09 Apr 2012 02:34:14 +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>[How-to] Convert multi byte character to Unicode.</title>
		<link>http://www.how2guru.com/archives/how-to-convert-multi-byte-character-to-unicode/</link>
		<comments>http://www.how2guru.com/archives/how-to-convert-multi-byte-character-to-unicode/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 02:34:14 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[unicode]]></category>

		<guid isPermaLink="false">http://www.how2guru.com/?p=283</guid>
		<description><![CDATA[I was working on some integration that required to pass data (if multi byte like Chinese, Japanese, etc) into unicode format to the other application. Search through the php.net, not standard PHP function was found for this purpose. At last, found a solution from web for unicode conversion. ?View Code PHPfunction str2unicode2hex&#40;$data&#41; &#123; $mb_hex = [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/how-to-convert-multi-byte-character-to-unicode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>2</slash:comments>
		</item>
		<item>
		<title>automate pull linux backup file to window server</title>
		<link>http://www.how2guru.com/archives/automate-pull-linux-backup-file-to-window-server/</link>
		<comments>http://www.how2guru.com/archives/automate-pull-linux-backup-file-to-window-server/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 09:43:05 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[pscp]]></category>
		<category><![CDATA[remote backup]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=249</guid>
		<description><![CDATA[Scenario: Guys, there are always a very good question on &#8220;where are the backup file store?&#8221;. In the IT field, we know that it is not SAFE to store backup file inside the same disk storage. Recently, I has a customer would like to pull their application backup file from a Window server. Here is [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/automate-pull-linux-backup-file-to-window-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wp to twitter error</title>
		<link>http://www.how2guru.com/archives/wp-to-twitter-error/</link>
		<comments>http://www.how2guru.com/archives/wp-to-twitter-error/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 07:23:10 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Class 'OAuthSignatureMethod_HMAC_SHA1' not found.]]></category>
		<category><![CDATA[OAuthSignatureMethod_HMAC_SHA1]]></category>
		<category><![CDATA[wp to twitter problem]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=243</guid>
		<description><![CDATA[Scenario: I upgrade one of my wordpress plugin &#8220;WP to Twitter&#8221; to latest version (Version 2.2.0) for the OAuth and found that it doesn&#8217;t work with my hosting plan (hostgator). When I click on the &#8220;Connect to Twitter&#8221; and there is a fatal error &#8220;Fatal error: Class &#8216;OAuthSignatureMethod_HMAC_SHA1&#8242; not found.&#8221; After performing some debugging and [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/wp-to-twitter-error/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>how to exclude directories while using tar command</title>
		<link>http://www.how2guru.com/archives/how-to-exclude-directories-while-using-tar-command/</link>
		<comments>http://www.how2guru.com/archives/how-to-exclude-directories-while-using-tar-command/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 03:45:27 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[exclude multiple directories]]></category>
		<category><![CDATA[tar command]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=240</guid>
		<description><![CDATA[A quick post to teach on how to exclude directories while using tar command in linux. Most of the developers/system administrator should know how to using tar command to create a archive/backup for an application. But I am facing some difficulty to use the tar command exclude multiple directories until I found this post. ?View [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/how-to-exclude-directories-while-using-tar-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>retrieve visitor country information</title>
		<link>http://www.how2guru.com/archives/retrieve-visitor-country-information/</link>
		<comments>http://www.how2guru.com/archives/retrieve-visitor-country-information/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 05:00:50 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[visitor country]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=236</guid>
		<description><![CDATA[I am quite busy for the pass 1-2 months and did not update this blog. Today I would like to share a simple and useful script to all on how to retrieve visitor country information. It is useful when you want to analysis/track your visitor information (similar with those webstats that show the visitors country [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/retrieve-visitor-country-information/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Article Template plugin fix</title>
		<link>http://www.how2guru.com/archives/wordpress-article-template-plugin-fix/</link>
		<comments>http://www.how2guru.com/archives/wordpress-article-template-plugin-fix/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 07:28:22 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[article template]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=225</guid>
		<description><![CDATA[Scenario: A week ago, I upgraded my blog version to the latest version 3.0 and installed few plugins into this blog. Found a very useful plugins call Article Templates that contribute by Binny V A. Enables template support for posts and pages. You can see all existing templates in the Manage Templates page. But found [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/wordpress-article-template-plugin-fix/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>PHP send email request read receipt</title>
		<link>http://www.how2guru.com/archives/php-send-email-request-read-receipt/</link>
		<comments>http://www.how2guru.com/archives/php-send-email-request-read-receipt/#comments</comments>
		<pubDate>Mon, 31 May 2010 09:54:03 +0000</pubDate>
		<dc:creator>h2Guru</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Email Read Receipt]]></category>
		<category><![CDATA[phpmailer]]></category>

		<guid isPermaLink="false">http://www.myhow2guru.com/?p=172</guid>
		<description><![CDATA[Guys, When users using Emails function in some web base application (like sugarcrm, joomla), they might need to request read receipt from the recipients. Here is a simple tutorial on how to add in the &#8220;Request read receipt&#8221; in email while send out email thru PHP. I am using the phpmailer class to develop the [...]]]></description>
		<wfw:commentRss>http://www.how2guru.com/archives/php-send-email-request-read-receipt/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

