<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Against All Odds</title>
			<link>http://www.ppshein.net/index.cfm</link>
			<description>A blog for ColdFusion, Android, jQuery, jQueryMobile, Oracle, HL7 and other Web-based programming languages, Web Server like IIS7 and RDMS like Oracle, Microsoft SQL and MySQL.</description>
			<language>en-us</language>
			<pubDate>Sat, 19 May 2012 10:15:04 -0700</pubDate>
			<lastBuildDate>Thu, 10 May 2012 10:11:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>pyaephyoeshein@gmail.com</managingEditor>
			<webMaster>pyaephyoeshein@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>pyaephyoeshein@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Dhamma Cycle is on Google play</title>
				<link>http://www.ppshein.net/index.cfm/2012/5/10/Dhamma-Cycle-is-on-Google-play</link>
				<description>
				
				
				Last Tuesday, I&apos;ve launched Dhamma Cycle on Google Play. It&apos;s for those buddhism who want to keep in touch with Buddha&apos;s dhamma and want to listen while reciting. It&apos;s my so-called 4th android application.

Please help me to use my application.

...
				
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Thu, 10 May 2012 10:11:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/5/10/Dhamma-Cycle-is-on-Google-play</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Parsing List Value in Oracle</title>
				<link>http://www.ppshein.net/index.cfm/2012/4/24/Parsing-List-Value-in-Oracle</link>
				<description>
				
				
				Being Coldfusion programmer, parsing list value in coldfusion is very simple. If list value is &quot;list1|list2|list3|list4&quot;, we can parse with ListToArray in Coldfusion as follow.







Above coding, we must need to assign true for includeEmpty...
				
				 [More]
				</description>
				
				
				<category>Oracle</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Tue, 24 Apr 2012 12:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/4/24/Parsing-List-Value-in-Oracle</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Concatenate numeric and string data field in mssql</title>
				<link>http://www.ppshein.net/index.cfm/2012/4/13/Concatenate-numeric-and-string-data-field-in-mssql</link>
				<description>
				
				Today I&apos;ve found how to concatenate numeric and string format in mssql. As we all know, concatenate two strings in mssql is very simple and well-known formula as follow

&lt;code&gt;
SELECT First_Name + &apos;, &apos; + Last_Name FROM myTable
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>MsSql</category>
				
				<pubDate>Fri, 13 Apr 2012 11:25:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/4/13/Concatenate-numeric-and-string-data-field-in-mssql</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Simple way to check wifi network</title>
				<link>http://www.ppshein.net/index.cfm/2012/4/10/Simple-way-to-check-wifi-network</link>
				<description>
				
				
				Today I know how to check wifi network is ON and OFF for andriod. Normally, there is so many checking for wifi network but what I&apos;m gonna show is very simple way to check. First of all, we need to define that we want to use WIFI network in andriod ma...
				
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Tue, 10 Apr 2012 01:05:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/4/10/Simple-way-to-check-wifi-network</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Wrap Oracle script</title>
				<link>http://www.ppshein.net/index.cfm/2012/3/25/Wrap-Oracle-script</link>
				<description>
				
				
				Today, I know how to wrap Oracle objects called stored procedure, functions, views and so on. It&apos;s because I want to make secure for our project source.

How-to-do is very simple.

1) Open common prompt
2) and go to Bin folder under Oracle just ...
				
				 [More]
				</description>
				
				
				<category>Oracle</category>
				
				<pubDate>Sun, 25 Mar 2012 21:44:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/3/25/Wrap-Oracle-script</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Replace function in SQL</title>
				<link>http://www.ppshein.net/index.cfm/2012/3/6/Replace-function-in-SQL</link>
				<description>
				
				
				Today I&apos;ve found how Replace function is useful in SQL. Because I need to update all columns of every table in our database. Using Replace is very simple.


UPDATE  SET
columnText = REPLACE (columnText, &apos;StringToFind&apos;, &apos;StringToReplace&apos;)


Abo...
				
				
				</description>
				
				
				<category>MsSql</category>
				
				<pubDate>Tue, 06 Mar 2012 00:43:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/3/6/Replace-function-in-SQL</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Share tables of schema in same SID</title>
				<link>http://www.ppshein.net/index.cfm/2012/2/27/Share-tables-of-schema-in-same-SID</link>
				<description>
				
				
				Today, I need to sync data of different schema in same SID (same database). Honestly, I&apos;m not very good at Oracle but I gotta develop this kind of project. That&apos;s why I&apos;ve asked in StackOverFlow and @Luck Woodwords and he replied good solution.

ht...
				
				 [More]
				</description>
				
				
				<category>Oracle</category>
				
				<pubDate>Mon, 27 Feb 2012 04:05:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/2/27/Share-tables-of-schema-in-same-SID</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Get Javascript value from Coldfusion in same page</title>
				<link>http://www.ppshein.net/index.cfm/2012/2/10/Get-Javascript-value-from-Coldfusion-in-same-page</link>
				<description>
				
				
				Today, I&apos;ve found funny resolution to get javascript value from Coldfusion in same page without reloading. I&apos;m not sure whether it might be useful or not, but for me it&apos;s kinda useful.

Usage



	
		var whatisyourname = &quot;ppshein&quot;;
		document....
				
				
				</description>
				
				
				<category>Javascript</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Fri, 10 Feb 2012 10:05:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/2/10/Get-Javascript-value-from-Coldfusion-in-same-page</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>get Table height with javascript</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/19/get-Table-height-with-javascript</link>
				<description>
				
				Normally, it&apos;s hard to get table height with javascript because javascript cannot read or retrieve table as follow

&lt;code&gt;
&lt;table id=&quot;tableID&quot;&gt;
	&lt;tr&gt;
		&lt;td&gt;Height&lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;

&lt;script&gt;
&lt;!-- 
	getTableHeight = document.getElementById(&quot;tableID&quot;).offsetHeight;
	alert(getTableHeight)
 --&gt;
&lt;/script&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>Javascript</category>
				
				<pubDate>Thu, 19 Jan 2012 21:29:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/19/get-Table-height-with-javascript</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Backup Oracle database with bat file</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/12/Backup-Oracle-database-with-bat-file</link>
				<description>
				
				
				Today, I&apos;ve found how to backup/export Oracle database with bat file. I&apos;ve just created it for only one schema first. Why I&apos;m using to import Oracle with bat file because of there is no auto backup feature in Oracle (as far as I know). That&apos;s why  it...
				
				 [More]
				</description>
				
				
				<category>Oracle</category>
				
				<pubDate>Thu, 12 Jan 2012 08:57:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/12/Backup-Oracle-database-with-bat-file</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Coldfusion documentation application is in Android market</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/6/Coldfusion-documentation-application-is-in-Android-market</link>
				<description>
				
				Today, I&apos;m glad to inform to all that my Coldfusion documentation application is in Android market now. I&apos;m planning to add more cool features in it just like tablet version and so on.

&lt;a href=&quot;https://market.android.com/details?id=com.cfdocumentation&quot; target=&quot;_blank&quot;&gt;&lt;h3&gt;Coldfusion Documentation&lt;/h3&gt;&lt;/a&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Fri, 06 Jan 2012 09:34:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/6/Coldfusion-documentation-application-is-in-Android-market</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Android Coldfusion documentation application</title>
				<link>http://www.ppshein.net/index.cfm/2012/1/1/Android-Coldfusion-documentation-application</link>
				<description>
				
				
				Today, I&apos;ve finalised Android Coldfusion documentation application for Coldfusion developer. This one is my third android application for my Android developer life and enhance more features which not included in my later applications.

In this Cold...
				
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Sun, 01 Jan 2012 09:37:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/1/1/Android-Coldfusion-documentation-application</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>CFIDE with multiple instance</title>
				<link>http://www.ppshein.net/index.cfm/2011/12/24/CFIDE-with-multiple-instance</link>
				<description>
				
				
				Today I got the problem that I cannot use following sentence in one of my instance.


 


And hit JS error and don&apos;t know why. That&apos;s why I just go viewsource and found that CFIDE is missing for one of my CF instances. I cannot convince why Ado...
				
				 [More]
				</description>
				
				
				<category>CF Function</category>
				
				<category>CF Tag</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Sat, 24 Dec 2011 02:13:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/12/24/CFIDE-with-multiple-instance</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Review for the uCertify(Zend-PHP5 simulator)</title>
				<link>http://www.ppshein.net/index.cfm/2011/12/15/Review-for-the-uCertifyZendPHP5-simulator</link>
				<description>
				
				&lt;p&gt;&lt;img src=&quot;http://www.ppshein.net/images/php_1.jpg&quot; /&gt;&lt;/p&gt;
&lt;div&gt;
	Well, the first ever simulator I&amp;rsquo;ve got present.Overall it has main functions &amp;nbsp;or menu&lt;/div&gt;
&lt;div&gt;
	&amp;nbsp;&lt;/div&gt;
&lt;ul&gt;
	&lt;li&gt;
		Tests&lt;/li&gt;
	&lt;li&gt;
		Quiz&lt;/li&gt;
	&lt;li&gt;
		Notes&lt;/li&gt;
	&lt;li&gt;
		Reports&lt;/li&gt;
&lt;/ul&gt;
				 [More]
				</description>
				
				
				<category>Exam</category>
				
				<category>PHP</category>
				
				<category>Review</category>
				
				<pubDate>Thu, 15 Dec 2011 08:15:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/12/15/Review-for-the-uCertifyZendPHP5-simulator</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Get free exam simulator from uCertify</title>
				<link>http://www.ppshein.net/index.cfm/2011/11/29/Get-free-exam-simulator-from-uCertify</link>
				<description>
				
				
				
	&amp;nbsp;

	uCertify, leading IT certification provider company is willing to spring for a license, that&amp;#39;s a full license, for any of their test prep kits for one of my blog readers. The only requirement to get the full license is that you writ...
				
				
				</description>
				
				
				<category>uCertify</category>
				
				<category>Oracle</category>
				
				<category>PHP</category>
				
				<category>Coldfusion</category>
				
				<category>MsSql</category>
				
				<pubDate>Tue, 29 Nov 2011 23:15:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/11/29/Get-free-exam-simulator-from-uCertify</guid>
				
				
			</item>
			
		 	
			</channel></rss>
