<?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 - Twitter</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, 25 May 2013 09:46:36 -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>Coldfusion load content like Facebook and Twitter</title>
				<link>http://www.ppshein.net/index.cfm/2010/10/14/coldfusion-load-content-like-facebook-and-twitter</link>
				<description>
				
				Today, I&apos;ve tested how to load content like facebook and twitter when scrolling down at the bottom of document. I feel it&apos;s cool and flexible for developers and users. As mention in previous post, don&apos;t need to include pagination and don&apos;t need to retrieve all data from database.By using like that, we can save our client time to click pagination link and don&apos;t need them to worry how many pages he/she already clicked.
In this demo, index.cfm is the main page and action.cfm will display the rest of limited records when scrolling down at the bottom of document.
				 [More]
				</description>
				
				
				<category>jQuery</category>
				
				<category>Coldfusion</category>
				
				<category>Twitter</category>
				
				<category>Facebook</category>
				
				<category>Stylesheet</category>
				
				<pubDate>Thu, 14 Oct 2010 19:28:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/10/14/coldfusion-load-content-like-facebook-and-twitter</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Load Content like Facebook and Twitter</title>
				<link>http://www.ppshein.net/index.cfm/2010/10/14/load-content-like-facebook-and-twitter</link>
				<description>
				
				Today, I found one of the new features of Twitter&apos;s new face is loading content while scrolling like Facebook. I feel it&apos;s cool and the advantage of using is don&apos;t need to fetch all records from database at once and don&apos;t need to use annoying pagination feature (I didn&apos;t say all pagination are annoying). 
Here is how they work with jQuery.
&lt;code&gt;
/* Load jQuery from Google API */
$(document).ready(function(){
    
    /* Alert the height of content */
    alert(&quot;Current Document Height is : &quot; + $(document).height() + &quot;px&quot;);
    
    function AnotherContent() 
    {     
        /* get current Height of content */
        var currentHeight = $(document).height();
        
        /* increase Height of content */
        var IncreaseHeight = currentHeight +  200;        
        $(&apos;#myHeight&apos;).height(IncreaseHeight);
                
        /* Alert the new current height of content */
        alert(&quot;Current Document Height is : &quot; + IncreaseHeight + &quot;px&quot;);    
        
        /* 
            if you wanna load another page, use this script. 
            $(&quot;#myHeight&quot;).load(&quot;index.cfm&quot;);
        */
        
    };  
    
    $(window).scroll(function(){
        /* Load AnotherContent() function when scroll down to the bottom of page. */
        if  ($(window).scrollTop() == $(document).height() - $(window).height()){
           AnotherContent();
        }
    }); 
    
});
&lt;/code&gt;

&lt;code&gt;
&lt;body&gt;
    &lt;table cellpadding=&quot;4&quot; cellspacing=&quot;1&quot; border=&quot;1&quot; height=&quot;640&quot; width=&quot;100%&quot;&gt;
    &lt;tr&gt;
        &lt;td id=&quot;myHeight&quot; valign=&quot;middle&quot; align=&quot;center&quot;&gt;What?&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
&lt;/body&gt;
&lt;/code&gt;
				
				</description>
				
				
				<category>jQuery</category>
				
				<category>Javascript</category>
				
				<category>Twitter</category>
				
				<category>Facebook</category>
				
				<pubDate>Thu, 14 Oct 2010 19:22:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/10/14/load-content-like-facebook-and-twitter</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Twitter Search with jQuery</title>
				<link>http://www.ppshein.net/index.cfm/2010/5/26/twitter-search-with-jquery</link>
				<description>
				
				Last week, I&apos;ve attended Webcamps seminar organized by Microsoft in Singapore. Describing my previous thread, they&apos;re focus on MS visual studio 2010, IIS7 and MVC 2. Meanwhile, James Senior (&lt;em&gt;actually he&apos;s main person for this seminar&lt;/em&gt;) let us know how to create &quot;&lt;a href=&quot;http://www.jamessenior.com/post/Twitter-Search-with-jQuery-Templating.aspx&quot; target=&quot;_blank&quot;&gt;&lt;em&gt;twitter search with jQuery&lt;/em&gt;&lt;em&gt;template&lt;/em&gt;&lt;/a&gt; &quot;. It&apos;s absolutely cool and we don&apos;t need any server-side programming for it.

Here you go:
&lt;a href=&quot;http://www.jamessenior.com/post/Twitter-Search-with-jQuery-Templating.aspx&quot; target=&quot;_blank&quot;&gt;http://www.jamessenior.com/post/Twitter-Search-with-jQuery-Templating.aspx&lt;/a&gt;&lt;/p&gt;
				
				</description>
				
				
				<category>jQuery</category>
				
				<category>Twitter</category>
				
				<pubDate>Wed, 26 May 2010 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/5/26/twitter-search-with-jquery</guid>
				
				
			</item>
			
		 	
			</channel></rss>