<?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 - BlogCFC</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, 22 May 2013 16:38:31 -0700</pubDate>
			<lastBuildDate>Thu, 31 Mar 2011 21:06: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>Change BlogCFC tweetbacks function</title>
				<link>http://www.ppshein.net/index.cfm/2011/3/31/Change-BlogCFC-tweetbacks-function</link>
				<description>
				
				Yesterday night, I was troubleshooting why my tweetbacks aren&apos;t coming out even they&apos;re in Twitter. I&apos;ve asked &lt;a href=&quot;http://www.coldfusionjedi.com/&quot; target=&quot;_blank&quot;&gt;Ray&lt;/a&gt; about this problem and he told me that previous version of BlogCFC is completely working for tweetbacks but in current version, it doesn&apos;t work at all. That&apos;s why I was troubleshooting on &lt;b&gt;SweetTweets.cfc&lt;/b&gt; and make complicated testing. Finally, I found it&apos;s because &lt;b&gt;getShortURLs&lt;/b&gt; function of it. In blogCFC infrastructure, it posts blog URL into &lt;b&gt;getShortURLs&lt;/b&gt; function and which will make the short URLs and search those short URLs in twitter by &lt;b&gt;getTweetSearchUrl&lt;/b&gt; function. So, &lt;b&gt;getTweetSearchUrl&lt;/b&gt; found no records for my short URLs in twitter. That&apos;s why I&apos;ve changed not to make short URLs and search &lt;b&gt;Original URLs&lt;/b&gt; in twitter and found some of results from twitter as jSON format data.
				 [More]
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>jSON</category>
				
				<category>Twitter</category>
				
				<pubDate>Thu, 31 Mar 2011 21:06:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/3/31/Change-BlogCFC-tweetbacks-function</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>BlogCFC simple add mobile ON/OFF feature with jQueryMobile</title>
				<link>http://www.ppshein.net/index.cfm/2011/3/30/BlogCFC-simple-add-mobile-ONOFF-feature-with-jQueryMobile</link>
				<description>
				
				Yesterday I&apos;ve added mobile version on/off feature in my blog with jQueryMobile. As we know, this mobile version on/off feature is already in BlogCFC. For my side, just put jQueryMobile button and add simple javascript.

Here is my change log in &lt;b&gt;index.cfm&lt;/b&gt; file of BlogCFC mobile folder.

&lt;code&gt;
&lt;div data-role=&quot;fieldcontain&quot; align=&quot;center&quot;&gt;
	&lt;label for=&quot;slider&quot;&gt;Mobile Version:&lt;/label&gt;
	&lt;select name=&quot;slider&quot; id=&quot;slider&quot; data-role=&quot;slider&quot;&gt;
		&lt;option value=&quot;nomobile&quot;&gt;Off&lt;/option&gt;
		&lt;option value=&quot;&quot;&gt;On&lt;/option&gt;
	&lt;/select&gt; 
&lt;/div&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>Coldfusion</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Wed, 30 Mar 2011 23:16:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/3/30/BlogCFC-simple-add-mobile-ONOFF-feature-with-jQueryMobile</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Pagination in BlogCFC with jQuery Mobile</title>
				<link>http://www.ppshein.net/index.cfm/2011/3/18/Pagination-in-BlogCFC-with-jQuery-Mobile</link>
				<description>
				
				I&apos;ve wrote &lt;a href=&quot;http://www.ppshein.net/index.cfm/2011/1/9/Simple-change-BlogCFC-mobile-version-to-jQueryMobile&quot; target=&quot;_blank&quot;&gt;how to integrate blogCFC into jQuerymobile.&lt;/a&gt; Honestly, it&apos;s just simple integration and don&apos;t have pagination features and comments at that time. Because it&apos;s my testing purpose and just want to play jQueryMobile. Now, it&apos;s time for me to add pagination feature in blogCFC with jQueryMobile. For about that, we need to add some codings in &lt;b&gt;index.cfm&lt;/b&gt; and completely don&apos;t need to include &lt;b&gt;posts.cfm&lt;/b&gt; from &lt;b&gt;index.cfm&lt;/b&gt; of blogCFC mobile folder. Because I just took some coding reference from existing mobile version of blogCFC.

First of all, we need to declare following two parameters in &lt;b&gt;index.cfm&lt;/b&gt;.

&lt;code&gt;
&lt;cfparam name=&quot;curPage&quot; default=&quot;1&quot;&gt;
&lt;cfparam name=&quot;Page&quot; default=&quot;1&quot;&gt;
&lt;/code&gt;

After that, we need to replace the following coding from existing &quot;&lt;b&gt;posts.cfm&lt;/b&gt;&quot; instead of  &quot;&lt;b&gt;including=posts.cfm&lt;/b&gt;&quot;. In this point, I&apos;ve changed some codes and add any needed function into it.
				 [More]
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>Coldfusion</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Fri, 18 Mar 2011 03:25:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/3/18/Pagination-in-BlogCFC-with-jQuery-Mobile</guid>
				
				
				<enclosure url="http://www.ppshein.net/enclosures/index.rar" length="1485" type="application/x-rar-compressed"/>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Simple Google Chrome Extension for BlogCFC Feed Reader</title>
				<link>http://www.ppshein.net/index.cfm/2011/2/8/Simple-Google-Chrome-Extension-for-BlogCFC-Feed-Reader</link>
				<description>
				
				Today, I&apos;ve read how to &lt;a href=&quot;http://code.google.com/chrome/extensions/getstarted.html&quot; target=&quot;_blaknk&quot;&gt;create Google Chrome extension&lt;/a&gt;. It&apos;s interesting and want to create Blog Feed Reader. That&apos;s why I kept going with this article and create a simple extension for blogCFC.

First of all, I need to create a folder for the extension. Then, create &lt;b&gt;manifest.json&lt;/b&gt; file and needed to put following coding into it.

&lt;code&gt;
{
	&quot;name&quot;: &quot;Against All Odds Feeds&quot;,
	&quot;version&quot;: &quot;1.0&quot;,
	&quot;description&quot;: &quot;Fetching RSS Feeds from BlogCFC&quot;,
	&quot;browser_action&quot;: {
		&quot;default_icon&quot;: &quot;pps.gif&quot;, &lt;!--- icon ---&gt;
		&quot;popup&quot;: &quot;RSS.html&quot; &lt;!--- file which read RSS ---&gt;
	},
	&quot;permissions&quot;: [
		&quot;http://www.ppshein.net/&quot;
	]
}
&lt;/code&gt;

After that, I need a &lt;b&gt;image&lt;/b&gt; to represent the extension on Google Chrome Toolbar.
				 [More]
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>Coldfusion</category>
				
				<category>Chrome</category>
				
				<pubDate>Tue, 08 Feb 2011 23:02:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/2/8/Simple-Google-Chrome-Extension-for-BlogCFC-Feed-Reader</guid>
				
				
				<enclosure url="http://www.ppshein.net/enclosures/PPShein.rar" length="11414" type="application/octet-stream"/>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Simple change BlogCFC mobile version to jQueryMobile</title>
				<link>http://www.ppshein.net/index.cfm/2011/1/9/Simple-change-BlogCFC-mobile-version-to-jQueryMobile</link>
				<description>
				
				Yesterday I&apos;ve upgraded my blogCFC mobile version to &lt;a href=&quot;http://jquerymobile.com/&quot; target=&quot;_blank&quot;&gt;jQueryMobile&lt;/a&gt;. Currently, blogCFC use jQtouch as their mobile version. Once I saw jQueryMobile, I want to upgrade and test it at my site. Installation jQueryMobile is kinda simple.

First of all, we need to include following stylesheet and JS file into our CFM page.

&lt;code&gt;
[link rel=&quot;stylesheet&quot; href=&quot;jquery.mobile-1.0a2.min.css&quot; /]
[script src=&quot;jquery-1.4.3.min.js&quot;][/script]
[script src=&quot;jquery.mobile-1.0a2.min.js&quot;][/script]
&lt;/code&gt; 

After that, we need to change a bit of blogCFC mobile version index file like that.
				 [More]
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>Coldfusion</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Sun, 09 Jan 2011 18:37:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/1/9/Simple-change-BlogCFC-mobile-version-to-jQueryMobile</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Finally I&apos;m on BlogCFC</title>
				<link>http://www.ppshein.net/index.cfm/2010/10/23/Finally-Im-on-BlogCFC</link>
				<description>
				
				I&apos;ve spent 24 hours for migration my official blog from MangoBlog to BlogCFC. I don&apos;t want to clarify why I decided to move from MangoBlog to BlogCFC because most of facts have been clarified by Nil at his blog. &lt;a href=&quot;http://nil.checksite.co.uk/index.cfm/2010/1/27/A-Return-to-BlogCFC&quot; target=&quot;_blank&quot;&gt;http://nil.checksite.co.uk&lt;/a&gt;

For me, the important reason that I choose BlogCFC because of Mobile version and others are such as tweetbacks and gravatars picture from comment (which I really like this one :)).

MangoBlog has also advantages such as one-click-plugin-installation and themes which are based on Blogger and Wordpress. Please don&apos;t get me wrong either.

Database migration? No idea. I configured two databases by myself(manual) because my hosting is based on Railo which doesn&apos;t currently support ORM.
				 [More]
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>Coldfusion</category>
				
				<category>Railo</category>
				
				<category>MangoBlog</category>
				
				<pubDate>Sat, 23 Oct 2010 00:55:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/10/23/Finally-Im-on-BlogCFC</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Migrating Wordpress to MangoBlog</title>
				<link>http://www.ppshein.net/index.cfm/2009/12/11/migrating-wordpress-to-mangoblog</link>
				<description>
				
				&lt;p&gt;As far as I know, I&apos;ve got two bugs when migrated Worldpress to MangoBlog.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Formatting (&lt;/strong&gt;&lt;strong&gt;Enter)&lt;/strong&gt; = whenever I formatting, especially &quot;enter&quot; in my paragraph, MangoBlog remove &quot;enter&quot; keycode.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Category (Tags)&lt;/strong&gt; = whenever I gave a tag in my Wordpress 
posts, MangeBlog change &quot;tags&quot; to &quot;category&quot; and oddly my orginal 
categories from Wordpress are lost. It&apos;s really awesome.&lt;/li&gt;
&lt;/ul&gt;
				
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>Coldfusion</category>
				
				<pubDate>Fri, 11 Dec 2009 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/12/11/migrating-wordpress-to-mangoblog</guid>
				
				
			</item>
			
		 	
			</channel></rss>