<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for lalit.org</title>
	<atom:link href="http://www.lalit.org/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lalit.org</link>
	<description>Personal page of Lalit Patel, an engineer, entrepreneur, geek from Bhubaneswar, India.</description>
	<lastBuildDate>Sat, 28 Aug 2010 20:42:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on At the end of the tunnel&#8230; there is Internet by Sazid Mahammad</title>
		<link>http://www.lalit.org/lab/at-the-end-of-the-tunnel-there-is-internet/comment-page-1#comment-7394</link>
		<dc:creator>Sazid Mahammad</dc:creator>
		<pubDate>Sat, 28 Aug 2010 20:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.lalit.org/?p=118#comment-7394</guid>
		<description>Ahha.... I do remember the port forwarding we used to do through putty in college days... I&#039;ll accept those college days fun with laptop, college lan, wifi adapters, college servers are helping me a lot in my professional life...</description>
		<content:encoded><![CDATA[<p>Ahha&#8230;. I do remember the port forwarding we used to do through putty in college days&#8230; I&#8217;ll accept those college days fun with laptop, college lan, wifi adapters, college servers are helping me a lot in my professional life&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript/CSS Font Detector by Lalit</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6784</link>
		<dc:creator>Lalit</dc:creator>
		<pubDate>Thu, 03 Jun 2010 05:24:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6784</guid>
		<description>Thanks Lemmi for the Prototype version of the script.
Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks Lemmi for the Prototype version of the script.<br />
Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript/CSS Font Detector by viplog</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6781</link>
		<dc:creator>viplog</dc:creator>
		<pubDate>Wed, 02 Jun 2010 18:09:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6781</guid>
		<description>&lt;strong&gt;&#8216;JavaScript / CSS Font Detector&#8217;-Add-On for Prototype...&lt;/strong&gt;

Today I want to show you a little class for detecting fonts on the users operation system based on the great idea of Lalit Patel. As you can read in his detailed article it&#8217;s a small script based on CSS and JavaScript. &#8216;Merde! This looks si...</description>
		<content:encoded><![CDATA[<p><strong>&#8216;JavaScript / CSS Font Detector&#8217;-Add-On for Prototype&#8230;</strong></p>
<p>Today I want to show you a little class for detecting fonts on the users operation system based on the great idea of Lalit Patel. As you can read in his detailed article it&#8217;s a small script based on CSS and JavaScript. &#8216;Merde! This looks si&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript/CSS Font Detector by Lemmi</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6776</link>
		<dc:creator>Lemmi</dc:creator>
		<pubDate>Sun, 30 May 2010 16:18:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6776</guid>
		<description>First, your script is a great idea to find out which font is installed. Keep going!
I often work with the Framework Prototype, so here is a class based on the Prototype methods.

&lt;pre lang=&quot;javascript&quot;&gt;
var Checkfont = Class.create({
    checkedFonts: new Hash(),
    testString: &#039;mmmmmmmmmmlilg&#039;,
    testFontSize: &#039;72px&#039;,
    standardFont: &#039;serif&#039;,
    
    initialize: function() {
        this.body = document.body;
        this.span = new Element(&#039;span&#039;).hide();
        
        this.body.insert(this.span);
        this.defaultDimensions = this._getFontDimensions(this.standardFont);
    },

    test: function(font) {
        font = font.toLowerCase();
        
        var alreadyChecked = this.checkedFonts.get(font);
        if (!Object.isUndefined(alreadyChecked)) {
            return alreadyChecked;
        }
        
        this.testDimensions = this._getFontDimensions(font);

        var test = true;
        if (font != this.standardFont) {
            test = (this.testDimensions.width != this.defaultDimensions.width
                &#124;&#124; this.testDimensions.height != this.defaultDimensions.height);
        }
        this.checkedFonts.set(font, test);
        return test;
    },

    _getFontDimensions: function(font) {
        this.span.setStyle({
            fontFamily: font,
            fontSize: this.testFontSize
        }).update(this.testString);
        var fontDimensions = this.span.getDimensions();
        this.span.update();
        return fontDimensions;
    }
});
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>First, your script is a great idea to find out which font is installed. Keep going!<br />
I often work with the Framework Prototype, so here is a class based on the Prototype methods.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><ol><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #003366; font-weight: bold;">var</span> Checkfont <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">Class</span>.<span style="color: #660066;">create</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    checkedFonts<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">new</span> Hash<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    testString<span style="color: #339933;">:</span> <span style="color: #3366CC;">'mmmmmmmmmmlilg'</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    testFontSize<span style="color: #339933;">:</span> <span style="color: #3366CC;">'72px'</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    standardFont<span style="color: #339933;">:</span> <span style="color: #3366CC;">'serif'</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    initialize<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">body</span> <span style="color: #339933;">=</span> document.<span style="color: #660066;">body</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">new</span> Element<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'span'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hide</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">body</span>.<span style="color: #660066;">insert</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">defaultDimensions</span> <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>._getFontDimensions<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">standardFont</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    test<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>font<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        font <span style="color: #339933;">=</span> font.<span style="color: #660066;">toLowerCase</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #003366; font-weight: bold;">var</span> alreadyChecked <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">checkedFonts</span>.<span style="color: #660066;">get</span><span style="color: #009900;">&#40;</span>font<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>Object.<span style="color: #660066;">isUndefined</span><span style="color: #009900;">&#40;</span>alreadyChecked<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">            <span style="color: #000066; font-weight: bold;">return</span> alreadyChecked<span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #009900;">&#125;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testDimensions</span> <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>._getFontDimensions<span style="color: #009900;">&#40;</span>font<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #003366; font-weight: bold;">var</span> test <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>font <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">standardFont</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">            test <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testDimensions</span>.<span style="color: #660066;">width</span> <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">defaultDimensions</span>.<span style="color: #660066;">width</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">                <span style="color: #339933;">||</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testDimensions</span>.<span style="color: #660066;">height</span> <span style="color: #339933;">!=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">defaultDimensions</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #009900;">&#125;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">checkedFonts</span>.<span style="color: #660066;">set</span><span style="color: #009900;">&#40;</span>font<span style="color: #339933;">,</span> test<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">return</span> test<span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">&nbsp;</div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    _getFontDimensions<span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>font<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span>.<span style="color: #660066;">setStyle</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">            fontFamily<span style="color: #339933;">:</span> font<span style="color: #339933;">,</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">            fontSize<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testFontSize</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">update</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">testString</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #003366; font-weight: bold;">var</span> fontDimensions <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span>.<span style="color: #660066;">getDimensions</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">span</span>.<span style="color: #660066;">update</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">        <span style="color: #000066; font-weight: bold;">return</span> fontDimensions<span style="color: #339933;">;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;">    <span style="color: #009900;">&#125;</span></div></li><li style="font-weight: bold; vertical-align:top;"><div style="font: normal normal 1em/1.2em monospace; margin:0; padding:0; background:none; vertical-align:top;"><span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></li></ol></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript/CSS Font Detector by ¿Y quién diablos es @font-face? &#124; Todowebhosting.com - ..::HOSTING - DISEÑO WEB - FACTURACIÓN ELECTRÓNICA</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6758</link>
		<dc:creator>¿Y quién diablos es @font-face? &#124; Todowebhosting.com - ..::HOSTING - DISEÑO WEB - FACTURACIÓN ELECTRÓNICA</dc:creator>
		<pubDate>Mon, 24 May 2010 22:03:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6758</guid>
		<description>[...] Flash (sIFR), Canvas/VML (Cufón), la librería GD de PHP (FLIR), etc. así como sistemas de detección de fuentes instaladas entre otros muchos inventos que han funcionado más o menos bien, pero que finalmente no dejan de [...]</description>
		<content:encoded><![CDATA[<p>[...] Flash (sIFR), Canvas/VML (Cufón), la librería GD de PHP (FLIR), etc. así como sistemas de detección de fuentes instaladas entre otros muchos inventos que han funcionado más o menos bien, pero que finalmente no dejan de [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ternary nuances in PHP by Sudhir Kumar Suru</title>
		<link>http://www.lalit.org/lab/ternary-operator-nuances-in-php/comment-page-1#comment-6744</link>
		<dc:creator>Sudhir Kumar Suru</dc:creator>
		<pubDate>Tue, 18 May 2010 16:41:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.lalit.org/?p=408#comment-6744</guid>
		<description>Thanks for ur explanation of how simple things can get complicated.</description>
		<content:encoded><![CDATA[<p>Thanks for ur explanation of how simple things can get complicated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting most out of Amazon S3 by Lalit</title>
		<link>http://www.lalit.org/lab/setting-cache-headers-files-in-amazon-s3/comment-page-1#comment-6647</link>
		<dc:creator>Lalit</dc:creator>
		<pubDate>Thu, 01 Apr 2010 06:23:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.lalit.org/?p=259#comment-6647</guid>
		<description>Fred, 
Ideally both, if you are using both of them. 

By default S3 doesn&#039;t have any headers set, so stetting any one of them set is good enough. But to be on the safer side, you should set both.</description>
		<content:encoded><![CDATA[<p>Fred,<br />
Ideally both, if you are using both of them. </p>
<p>By default S3 doesn&#8217;t have any headers set, so stetting any one of them set is good enough. But to be on the safer side, you should set both.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript/CSS Font Detector by Charley Segalla</title>
		<link>http://www.lalit.org/lab/javascript-css-font-detect/comment-page-1#comment-6581</link>
		<dc:creator>Charley Segalla</dc:creator>
		<pubDate>Fri, 05 Mar 2010 01:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.orissabiz.com/?p=10#comment-6581</guid>
		<description>Hi, I came across this article while searching for help with JavaScript. I&#039;ve recently changed browsers from Safari to Microsoft IE 6. Now I seem to have a problem with loading JavaScript. Every time I browse page that needs Javascript, the page freezes and I get a &quot;runtime error javascript.JSException: Unknown name&quot;. I cannot seem to find out how to fix it. Any help is very appreciated! Thanks</description>
		<content:encoded><![CDATA[<p>Hi, I came across this article while searching for help with JavaScript. I&#8217;ve recently changed browsers from Safari to Microsoft IE 6. Now I seem to have a problem with loading JavaScript. Every time I browse page that needs Javascript, the page freezes and I get a &#8220;runtime error javascript.JSException: Unknown name&#8221;. I cannot seem to find out how to fix it. Any help is very appreciated! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting most out of Amazon S3 by Fred</title>
		<link>http://www.lalit.org/lab/setting-cache-headers-files-in-amazon-s3/comment-page-1#comment-6555</link>
		<dc:creator>Fred</dc:creator>
		<pubDate>Sat, 20 Feb 2010 17:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.lalit.org/?p=259#comment-6555</guid>
		<description>Hey Lalit, nice idea. 

To prevent GET requests you need to modify the cache-control http header or the expire header? 

I&#039;ve reade the developer.yahoo.com section about cache control and expire headers and i&#039;m a bit confused :)

Actually i&#039;m using the Amazon s3 plugin for wordpress that modify automatically expire headers, am i ok with those settings?

Thanks
Fred</description>
		<content:encoded><![CDATA[<p>Hey Lalit, nice idea. </p>
<p>To prevent GET requests you need to modify the cache-control http header or the expire header? </p>
<p>I&#8217;ve reade the developer.yahoo.com section about cache control and expire headers and i&#8217;m a bit confused <img src='http://www.lalit.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Actually i&#8217;m using the Amazon s3 plugin for wordpress that modify automatically expire headers, am i ok with those settings?</p>
<p>Thanks<br />
Fred</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cookie Jar: Yummy JSON Cookies (using Prototype) by Gabi</title>
		<link>http://www.lalit.org/lab/jsoncookies/comment-page-1#comment-6532</link>
		<dc:creator>Gabi</dc:creator>
		<pubDate>Sat, 13 Feb 2010 00:03:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.lalit.org/?p=20#comment-6532</guid>
		<description>document.cookie.match(name + &#039;=(.*?)(;&#124;$)&#039;) in get function returns null in ie7 and ie8 -- it works perfectly with FF</description>
		<content:encoded><![CDATA[<p>document.cookie.match(name + &#8216;=(.*?)(;|$)&#8217;) in get function returns null in ie7 and ie8 &#8212; it works perfectly with FF</p>
]]></content:encoded>
	</item>
</channel>
</rss>
