<?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 - Facebook</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 22:13:15 -0700</pubDate>
			<lastBuildDate>Mon, 11 Jul 2011 05:55: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>Download Facebook Video Part 2</title>
				<link>http://www.ppshein.net/index.cfm/2011/7/11/Download-Facebook-Video-Part-2</link>
				<description>
				
				I wrote how to download Facebook video &lt;a href=&quot;http://www.ppshein.net/index.cfm/2011/6/12/Download-Facebook-video-without-installing-addons&quot; target=&quot;_blank&quot;&gt;Download Facebook video without installing addons&lt;/a&gt; in my old post. At that time, Facebook using &quot;embed&quot; tag as displaying their video and it&apos;s easy to get original mp4 video from Facebook. Yesterday, one commenter wrote that he cannot download Facebook video regarding the instruction of my previous post. I was confused and cannot understand why he cannot download at all. That&apos;s why I&apos;ve open Facebook video page and reviewed source code of it. Oddly, Facebook don&apos;t use &quot;embed&quot; tag as displaying their video anymore and changed their coding for using javascript as displaying. That&apos;s why I need to find out how to download original mp4 file of this movie from Facebook again.
				 [More]
				</description>
				
				
				<category>Javascript</category>
				
				<category>Facebook</category>
				
				<pubDate>Mon, 11 Jul 2011 05:55:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/7/11/Download-Facebook-Video-Part-2</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Download Facebook video without installing addons</title>
				<link>http://www.ppshein.net/index.cfm/2011/6/12/Download-Facebook-video-without-installing-addons</link>
				<description>
				
				Before time, I know how to download Youtube video with &lt;a href=&quot;http://keepvid.com/&quot; target=&quot;_blank&quot;&gt;http://keepvid.com&lt;/a&gt;. This site is cool because we can download all types of Youtube video without installing any addons or softwares except Java Applet. Unfortunately, we cannot download Facebook video with this site and I don&apos;t know why. 

Today, I know how to download Facebook video without installing any addons. Ok, I don&apos;t waste your time and let make it short.
				 [More]
				</description>
				
				
				<category>Firefox 4</category>
				
				<category>Facebook</category>
				
				<pubDate>Sun, 12 Jun 2011 02:20:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/6/12/Download-Facebook-video-without-installing-addons</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>Tagged like facebook</title>
				<link>http://www.ppshein.net/index.cfm/2010/5/22/tagged-like-facebook</link>
				<description>
				
				When I started using facebook, everybody can tag their friends&apos; names in photo and after tagging it, Alternate text will occur when mouse-over on this photo. It&apos;s very impressive for me and want to know how it&apos;s developed. When I deep woring &lt;a href=&quot;http://www.w3schools.com/tags/tag_area.asp&quot; target=&quot;_blank&quot;&gt;&lt;area&gt;&lt;/a&gt; tag of HTML, it&apos;s very simple to do like facebook.
My idea of how to create this tagged in facebook is:

&lt;ul&gt;
&lt;li&gt;selected A (&lt;em&gt;it&apos;s someone or something&lt;/em&gt;) choose in this pic&lt;/li&gt;
&lt;li&gt;note x,y coordinate of A&lt;/li&gt;
&lt;li&gt;save x,y coordinate and caption of A&lt;/li&gt;
&lt;li&gt;display this pic by &lt;a href=&quot;http://www.w3schools.com/tags/tag_area.asp&quot; target=&quot;_blank&quot;&gt;&lt;area&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;mouse-over on coordinate then display caption&lt;/li&gt;
&lt;/ul&gt;

&lt;code&gt;&lt;html&gt;
&lt;head&gt;
&lt;invalidTag type=&quot;text/javascript&quot;&gt;
function writeText(txt)
{
document.getElementById(&quot;desc&quot;).innerHTML=txt;
}
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;img src=&quot;b1.jpg&quot; width=&quot;145&quot; height=&quot;126&quot; alt=&quot;Planets&quot; usemap=&quot;#planetmap&quot; /&gt;
&lt;map name=&quot;planetmap&quot;&gt;
&lt;area shape =&quot;rect&quot; coords =&quot;0,0,82,126&quot; onMouseOver=&quot;writeText(&apos;The Sun and the gas giant planets like Jupiter are by far the largest objects in our Solar System.&apos;)&quot; href =&quot;sun.htm&quot; target =&quot;_blank&quot; alt=&quot;Sun&quot; /&gt;
&lt;area shape =&quot;circle&quot; coords =&quot;90,58,3&quot; onMouseOver=&quot;writeText(&apos;The planet Mercury is very difficult to study from the Earth because it is always so close to the Sun.&apos;)&quot; href =&quot;mercur.htm&quot; target =&quot;_blank&quot; alt=&quot;Mercury&quot; /&gt;
&lt;area shape =&quot;circle&quot; coords =&quot;124,58,8&quot; onMouseOver=&quot;writeText(&apos;Until the 1960s, Venus was often considered a twin sister to the Earth because Venus is the nearest planet to us, and because the two planets seem to share many characteristics.&apos;)&quot; href =&quot;venus.htm&quot; target =&quot;_blank&quot; alt=&quot;Venus&quot; /&gt;
&lt;/map&gt;
&lt;p id=&quot;desc&quot;&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;/code&gt;

Ref for &lt;a href=&quot;http://www.w3schools.com/tags/tag_area.asp&quot; target=&quot;_blank&quot;&gt;&lt;area&gt;&lt;/a&gt;: &lt;a href=&quot;http://www.w3schools.com/js/js_image_maps.asp&quot; target=&quot;_blank&quot;&gt;http://www.w3schools.com/js/js_image_maps.asp&lt;/a&gt;
				
				</description>
				
				
				<category>Javascript</category>
				
				<category>Facebook</category>
				
				<pubDate>Sat, 22 May 2010 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/5/22/tagged-like-facebook</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Facebook &quot;Like&quot; API</title>
				<link>http://www.ppshein.net/index.cfm/2010/3/12/facebook-like-api</link>
				<description>
				
				Now 9:30pm Singapore Time. I saw some websites integrate &lt;a title=&quot;Facebook Like API&quot; href=&quot;http://developers.facebook.com/docs/reference/plugins/like&quot; target=&quot;_blank&quot;&gt;Facebook &quot;Like&quot; API&lt;/a&gt; in their website. I feel it&apos;s awesome and can communicate their customers between their websites and facebook. That&apos;s why I like to add this API on my so-called website, &lt;a title=&quot;Planet.com.mm&quot; href=&quot;http://www.planet.com.mm/&quot; target=&quot;_blank&quot;&gt;Planet.com.mm&lt;/a&gt;. Using this API is very simple. You need to define your dynamic URL and type of like button. Normally, there are two types of Like API. One is standard and the rest one is count. Standard one can describe detail information (&lt;em&gt;full name&lt;/em&gt;) of how many people click on it and show name if your friends also did. Count one is just for count.

&lt;strong&gt;It&apos;s for standard one&lt;/strong&gt;

&lt;code&gt;&lt;invalidTag src=&quot;http://www.facebook.com/widgets/like.php?href=[Your Website URL]&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:23px&quot;&gt;&lt;/iframe&gt;&lt;/code&gt;
If you don&apos;t define any value in Layout attribute, default is standard.

For count, use it so.

&lt;code&gt;&lt;invalidTag src=&quot;http://www.facebook.com/widgets/like.php?href=[&lt;em&gt;Your Website URL&lt;/em&gt;]&amp;amp;&lt;strong&gt;layout=count&lt;/strong&gt;&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;border:none; width:450px; height:23px&quot;&gt;&lt;/iframe&gt;&lt;/code&gt;
				
				</description>
				
				
				<category>Facebook</category>
				
				<pubDate>Fri, 12 Mar 2010 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2010/3/12/facebook-like-api</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Facebook Like Plugin for MangoBlog</title>
				<link>http://www.ppshein.net/index.cfm/2009/10/2/facebook-like-plugin-for-mangoblog</link>
				<description>
				
				&lt;p&gt;Today I&apos;ve created Facebook Like Pluging for MangoBlog. Honestly, it&apos;s very simple to install Facebook Like API into your blog without using my plugin. But, using my plugin is easier than by doing yourself. It&apos;s just simple plugin and can choose &quot;&lt;strong&gt;standard, button_count&lt;/strong&gt; and &lt;strong&gt;box_count&lt;/strong&gt;&quot; like Facebook API. Oddly, it&apos;s my first plugin for mangoBlog. And feel proud of myself of this plugin.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Plugin Name&lt;/strong&gt; : Facebook Like&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Plugin Version&lt;/strong&gt; : 1.0.0&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Owner&lt;/strong&gt; : Pyae Phyoe Shein&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;URL&lt;/strong&gt; : &lt;a href=&quot;/assets/content/facebookLike.zip&quot; target=&quot;_blank&quot;&gt;http://www.ppshein.net/assets/content/facebookLike.zip&lt;/a&gt;&lt;/p&gt;
				
				</description>
				
				
				<category>Coldfusion</category>
				
				<category>Facebook</category>
				
				<category>MangoBlog</category>
				
				<pubDate>Fri, 02 Oct 2009 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/10/2/facebook-like-plugin-for-mangoblog</guid>
				
				
			</item>
			
		 	
			</channel></rss>