<?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 - Firefox 4</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>Sun, 26 May 2013 02:51:45 -0700</pubDate>
			<lastBuildDate>Sun, 12 Jun 2011 02:20: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 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>One of my favourite changelogs in Firefox</title>
				<link>http://www.ppshein.net/index.cfm/2011/3/28/One-of-my-favourite-changelogs-in-Firefox</link>
				<description>
				
				I cannot say what I found in Firefox 4 aren&apos;t cool enough but they&apos;re awesome. Because of those, I cannot write that much coding for my projects when I push my clients to use Firefox 4 as our project default browser. Don&apos;t look at those new changelogs first. Just look GUI of Firefox4. I can feel it&apos;s cool because they can screw the layout of menu toolbar and the obvious button for previous browsing history. Another one is saving password. I can obviously see the message box after I typing password into my blog, email or etc.

Ok, here is one of my changelogs of Firefox4 for me.

&lt;ul&gt;
&lt;li&gt;Javascript Alert Box&lt;/li&gt;
&lt;li&gt;Javascript Prompt Box&lt;/li&gt;
&lt;li&gt;Javascript Confirm Box&lt;/li&gt;
&lt;/ul&gt;
				 [More]
				</description>
				
				
				<category>HTML5</category>
				
				<category>Firefox 4</category>
				
				<category>HTML</category>
				
				<pubDate>Mon, 28 Mar 2011 21:16:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/3/28/One-of-my-favourite-changelogs-in-Firefox</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>To save data into localStorage when Offline</title>
				<link>http://www.ppshein.net/index.cfm/2011/3/13/To-save-data-into-localStorage-when-Offline</link>
				<description>
				
				Today I&apos;ve found how to save the information of your data when offline (when your internet connection is disconnect). That&apos;s same as when Google email work. It&apos;s very useful to use because our submitted data is sometimes lost when our connection is disconnect or offline. Using this feature in HTML5 can prevent these bad situation. The important part is we need to check whether our browser can support &quot;&lt;b&gt;localStorage&lt;/b&gt;&quot; or not. If not support, cannot develop anymore. If support, let&apos;s go.

First of all, we need to create manifest file for &quot;&lt;b&gt;localStorage&lt;/b&gt;&quot;. It&apos;s the main part to let browser know our application will be using &quot;&lt;b&gt;localStorage&lt;/b&gt;&quot;. So, we need to add all of files name we will be using into this manifest file as follow. Current my simple application, I&apos;ve used 2 files called &lt;b&gt;index.html&lt;/b&gt; and &lt;b&gt;lc.js&lt;/b&gt;. So, I need to add as follow

&lt;code&gt;
CACHE MANIFEST
index.html
lc.js
&lt;/code&gt;

Now I need to let our clients know he/she is now online or office with following javascript.

&lt;code&gt;
navigator.onLine ? &quot;online&quot; :&quot;offline&quot;
&lt;/code&gt;

After that, I need to create index.html file. As HTML5 standard, I need to follow the rule of HTML5. 

&lt;code&gt;
&lt;!DOCTYPE HTML&gt;
&lt;html manifest=&quot;/loc.manifest&quot;&gt;  
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>HTML5</category>
				
				<category>Firefox 4</category>
				
				<category>Javascript</category>
				
				<category>HTML</category>
				
				<pubDate>Sun, 13 Mar 2011 19:40:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/3/13/To-save-data-into-localStorage-when-Offline</guid>
				
				
			</item>
			
		 	
			</channel></rss>