<?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>Wed, 19 Jun 2013 05:56:15 -0700</pubDate>
			<lastBuildDate>Wed, 08 May 2013 04:00: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>Remove task on Android device</title>
				<link>http://www.ppshein.net/index.cfm/2013/5/8/Remote-task-on-Android-device</link>
				<description>
				
				Today, I found that how to remove our applications on android device task manager. It&apos;s very simple and same as &lt;b&gt;&quot;android:clearTaskOnLaunch&quot;&lt;/b&gt;.
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Wed, 08 May 2013 04:00:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/5/8/Remote-task-on-Android-device</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>CFDocument in fontembed</title>
				<link>http://www.ppshein.net/index.cfm/2013/4/4/CFDocument-in-fontembed</link>
				<description>
				
				Last 3 days, I&apos;m about to generate one of our reports to PDF with cfdocument but I don&apos;t know why our unicode font is missing as displaying &quot;blank&quot; in cfdocument even this font is in my pc. That&apos;s why I request my junior to  investigate the problem to be solved. After a day, she found how to display unicode font in cfdocument.

First of all, we need to install font in our server first. Then, we need to go CFAdmin &gt; Font Management and add installed font into coldfusion to be recognized. After all, we need to add &lt;b&gt;fontembed=&quot;yes&quot;&lt;/b&gt; in cfdocument as follow.

&lt;code&gt;
&lt;cfdocument format=&quot;pdf&quot; orientation=&quot;portrait&quot; backgroundvisible=&quot;true&quot; filename=&quot;pdf_#id#.pdf&quot; fontembed=&quot;yes&quot; overwrite=&quot;true&quot;&gt;
&lt;/code&gt;
				
				</description>
				
				
				<category>Coldfusion</category>
				
				<category>CF Tag</category>
				
				<pubDate>Thu, 04 Apr 2013 08:52:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/4/4/CFDocument-in-fontembed</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>How to open default activity always in Android</title>
				<link>http://www.ppshein.net/index.cfm/2013/3/14/How-to-open-default-activity-always-in-Android</link>
				<description>
				
				Today got problem that my apps cannot go Index activity always whenever I&apos;ve already configured in manifest file.
&lt;code&gt;
&lt;activity
    android:name=&quot;com.ppshein.inm.IndexActivity&quot;
    android:label=&quot;@string/app_name&quot;
    android:screenOrientation=&quot;portrait&quot; &gt;
    &lt;intent-filter&gt;
        &lt;action android:name=&quot;android.intent.action.MAIN&quot; /&gt;

        &lt;category android:name=&quot;android.intent.category.LAUNCHER&quot; /&gt;
    &lt;/intent-filter&gt;
&lt;/activity&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Thu, 14 Mar 2013 00:14:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/3/14/How-to-open-default-activity-always-in-Android</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>moveToNext and moveToFirst sqlite cursor</title>
				<link>http://www.ppshein.net/index.cfm/2013/3/12/moveToNext-and-moveToFirst-sqlite-cursor</link>
				<description>
				
				Honestly, I&apos;ve never recognized every top record is missing when I retrieve data from sqlite table. It&apos;s really bad when someone point out that one record is missing even it&apos;s in sqlite table. That&apos;s why got stressed that how come every one top record is missing by following coding.

&lt;code&gt;
while(cursor.moveToNext()){    				    				
	startfrom = Integer.parseInt(cursor.getString(0));
}
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>SQLite</category>
				
				<category>Android</category>
				
				<pubDate>Tue, 12 Mar 2013 11:09:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/3/12/moveToNext-and-moveToFirst-sqlite-cursor</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Background image with percentage</title>
				<link>http://www.ppshein.net/index.cfm/2013/3/9/Background-image-with-percentage</link>
				<description>
				
				Today, I&apos;ve found that we can adjust background image with percentage in CSS. The time before I knew only to adjust background image with two positions. It&apos;s left, right, center and bottom, up position. Now I know is to adjust by percentage for those two positions.

&lt;code&gt;
&lt;!--- transitional background image adjustment ---&gt;
.mybg {
background: url(&quot;img&quot;) no-repeat center left;
}
&lt;/code&gt;

Here is modern adjustment

&lt;code&gt;
&lt;!--- transitional background image adjustment ---&gt;
.mybg {
background: url(&quot;img&quot;) no-repeat 50% 25%;
}
&lt;/code&gt;

It&apos;s cool, isn&apos;t it?
				
				</description>
				
				
				<category>Stylesheet</category>
				
				<pubDate>Sat, 09 Mar 2013 05:19:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/3/9/Background-image-with-percentage</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>405 - HTTP verb used to access this page is not allowed</title>
				<link>http://www.ppshein.net/index.cfm/2013/1/9/405--HTTP-verb-used-to-access-this-page-is-not-allowed</link>
				<description>
				
				Yesterday, I&apos;ve encountered this error &lt;b&gt;&quot;server error:405 - HTTP verb used to access this page is not allowed&quot;&lt;/b&gt; when I call &quot;http://www.ppshein.net/test.html&quot; HTTP GET from my android program. I&apos;m confused why I got this error even I&apos;ve tried following url in my desktop browser is fine. Thus I was googling and find how to solve it. After few minutes, I&apos;ve found answer how to solve this problem. It&apos;s quite simple that change file extension to &quot;.cfm&quot;  instead of &quot;.html&quot;. It&apos;s because of web server doesn&apos;t let any request containing POST/GET method to any static page called &quot;.html, .htm&quot;, will return such following error called &quot;405&quot;.

Thanks god that I&apos;ve got new experience.
				
				</description>
				
				
				<category>Android</category>
				
				<category>HTML</category>
				
				<pubDate>Wed, 09 Jan 2013 19:10:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2013/1/9/405--HTTP-verb-used-to-access-this-page-is-not-allowed</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Remove MSWord comment in Coldfusion</title>
				<link>http://www.ppshein.net/index.cfm/2012/12/27/Remove-MSWord-comment-in-Coldfusion</link>
				<description>
				
				Today, I&apos;ve got problem because of messy of Microsoft Word comments in our database. It&apos;s because of our clients wrote some messages in MsWord and paste these into CFTextarea richtext data. That&apos;s why those data cannot be displayed at our project. It&apos;s my bad that I have not thought about how to prevent these kind of problems during project development.
				 [More]
				</description>
				
				
				<category>CF Function</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Thu, 27 Dec 2012 02:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/12/27/Remove-MSWord-comment-in-Coldfusion</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Convert date format UDF</title>
				<link>http://www.ppshein.net/index.cfm/2012/12/24/Convert-date-format-UDF</link>
				<description>
				
				Today, I&apos;ve created simple UDF for convert date format &quot;dd/mm/yyyy&quot; to &quot;mm/dd/yyy&quot;. Because our clients want to use &quot;dd/mm/yyyy&quot; format as our national format into our projects. You may all know that it&apos;s very easy to convert but it&apos;s dedicated to those who start learning Coldfusion UDF.
				 [More]
				</description>
				
				
				<category>UDF</category>
				
				<category>CF Function</category>
				
				<pubDate>Mon, 24 Dec 2012 01:49:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/12/24/Convert-date-format-UDF</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Disable style in CSS</title>
				<link>http://www.ppshein.net/index.cfm/2012/12/12/Disable-style-in-CSS</link>
				<description>
				
				Today I&apos;ve found that how to create CSS for disable input form. It&apos;s very useful and we can do separate class for those event. Here is CSS for normal input event.

&lt;code&gt;
input[type=&quot;text&quot;], input[type=&quot;password&quot;]{
	color: #000000;
	border: solid 1px #999999;
}

select {
	color: #000000;
	border: solid 1px #999999;
}
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>Stylesheet</category>
				
				<pubDate>Wed, 12 Dec 2012 23:03:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/12/12/Disable-style-in-CSS</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Integreate Messi jQuery dialog with Coldfusion</title>
				<link>http://www.ppshein.net/index.cfm/2012/11/19/Integreate-Messi-jQuery-dialog-with-Coldfusion</link>
				<description>
				
				If you&apos;re getting sick of working with coldfusion built-in dialog? Here is beautiful &lt;a href=&quot;http://marcosesperon.es/apps/messi/&quot; target=&quot;_blank&quot;&gt;messi jQuery&lt;/a&gt; dialog can integrate with coldfusion.

Include JS and CSS in your CSS first.

&lt;code&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;CSS/messi.css&quot;&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;JS/jquery.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;JS/messi.js&quot;&gt;&lt;/script&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>jQuery</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Mon, 19 Nov 2012 02:37:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/11/19/Integreate-Messi-jQuery-dialog-with-Coldfusion</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>CFTransaction cannot work for different datasource</title>
				<link>http://www.ppshein.net/index.cfm/2012/11/4/CFTransaction-cannot-work-for-different-datasource</link>
				<description>
				
				Today, I&apos;ve found that CFTransaction cannot work for different datasource. This one is really bad for CFDevelopers like us. Because we need to use CFTransaction when we need to do long process for so many query transaction within our code with different datasource.
				 [More]
				</description>
				
				
				<category>Coldfusion</category>
				
				<category>CF Tag</category>
				
				<pubDate>Sun, 04 Nov 2012 19:37:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/11/4/CFTransaction-cannot-work-for-different-datasource</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Fullscreen in Android</title>
				<link>http://www.ppshein.net/index.cfm/2012/10/18/Fullscreen-in-Android</link>
				<description>
				
				Question : Do you know how to make fullscreen in Android application?

Answer : It&apos;s very simple and only one line code to fulfill your desire. You need to add following line in your java file after &quot;&lt;b&gt;requestWindowFeature&lt;/b&gt;&quot; line. But don&apos;t forget to assign &quot;&lt;b&gt;Window.FEATURE_NO_TITLE&lt;/b&gt;&quot; in &quot;&lt;b&gt;requestWindowFeature&lt;/b&gt;&quot; just like &quot;&lt;b&gt;requestWindowFeature(Window.FEATURE_NO_TITLE);&lt;/b&gt;&quot;

&lt;code&gt;
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
&lt;/code&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Thu, 18 Oct 2012 02:40:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/10/18/Fullscreen-in-Android</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Check Wifi or moblie network is connected</title>
				<link>http://www.ppshein.net/index.cfm/2012/9/20/Check-Wifi-or-moblie-network-is-connected</link>
				<description>
				
				In these days, I&apos;ve published two updated android application to Google Play (&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.planetmyanmarnews&quot; target=&quot;_blank&quot;&gt;Planet Myanmar News&lt;/a&gt; and &lt;a href=&quot;https://play.google.com/store/apps/details?id=com.ppshein.PlanetDictionary&quot; target=&quot;_blank&quot;&gt;Planet Myanmar Dictionary&lt;/a&gt;). In both of them, I&apos;ve changed 100% sidemenu UI design like Facebook and GooglePlus for easy to use and navigate. You may ask why I didn&apos;t use Tabs and Menu features of android. It&apos;s because of I don&apos;t want those tabs will overlap on my screen and want bigger screen for my application. For menu, I don&apos;t want to use because some android users don&apos;t know how to use menu (I mean, which button needed to click to appear menu action).
				 [More]
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Thu, 20 Sep 2012 03:22:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/9/20/Check-Wifi-or-moblie-network-is-connected</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>New version of android Planet Myanmar Dictionary is launched</title>
				<link>http://www.ppshein.net/index.cfm/2012/9/12/New-version-of-android-Planet-Myanmar-Dictionary-is-launched</link>
				<description>
				
				Today, I&apos;ve launched new version of android Planet Myanmar Dictionary. I&apos;ve changed 100% UI and added sync function on it.

Download link : &lt;a href=&quot;http://www.ppshein.net/Android/PlanetMyanmarDictionary/v05/planetdictionary2.apk&quot;&gt;&lt;h1&gt;DOWNLOAD&lt;/h1&gt;&lt;/a&gt;


&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-13-12-50-54[1].png&quot; width=&quot;150&quot; /&gt;
&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-13-12-51-00[1].png&quot; width=&quot;150&quot; /&gt;
&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-13-12-51-13[1].png&quot; width=&quot;150&quot; /&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Wed, 12 Sep 2012 22:16:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/9/12/New-version-of-android-Planet-Myanmar-Dictionary-is-launched</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Latest application of Andriod Planet Myanmar News</title>
				<link>http://www.ppshein.net/index.cfm/2012/9/11/Latest-application-of-Andriod-Planet-Myanmar-News</link>
				<description>
				
				Today, I&apos;ve totally wrapped out new version of Planet Myanmar News application. In this one, we can read planet myanmar in offline version.

&lt;a href=&quot;http://www.ppshein.net/Android/PlanetMyanmarNews/v02/Planetmyanmarnews.apk&quot;&gt;Download&lt;/a&gt;

&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-11-17-56-33.png&quot; width=&quot;150&quot; /&gt;
&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-11-17-56-12.png&quot; width=&quot;150&quot; /&gt;
&lt;img src=&quot;http://www.ppshein.net/images/Screenshot_2012-09-11-17-56-40.png&quot; width=&quot;150&quot; /&gt;
				
				</description>
				
				
				<category>Android</category>
				
				<pubDate>Tue, 11 Sep 2012 03:36:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2012/9/11/Latest-application-of-Andriod-Planet-Myanmar-News</guid>
				
				
			</item>
			
		 	
			</channel></rss>