<?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 on: How &amp; why you should use Google CDN</title>
	<atom:link href="http://webmuch.com/how-why-you-should-use-google-cdn/feed/" rel="self" type="application/rss+xml" />
	<link>http://webmuch.com/how-why-you-should-use-google-cdn/</link>
	<description>Everything about the web</description>
	<lastBuildDate>Tue, 16 Feb 2010 10:06:03 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Aayush</title>
		<link>http://webmuch.com/how-why-you-should-use-google-cdn/comment-page-1/#comment-446</link>
		<dc:creator>Aayush</dc:creator>
		<pubDate>Tue, 16 Feb 2010 10:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://webmuch.com/?p=133#comment-446</guid>
		<description>hah I know what it looks like, but if you see closely, I haven&#039;t used actually used jQuery anywhere, as you can see I haven&#039;t really been active on this blog. If I actually had a jQ component I would switch to the CDN.</description>
		<content:encoded><![CDATA[<p>hah I know what it looks like, but if you see closely, I haven&#8217;t used actually used jQuery anywhere, as you can see I haven&#8217;t really been active on this blog. If I actually had a jQ component I would switch to the CDN.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://webmuch.com/how-why-you-should-use-google-cdn/comment-page-1/#comment-443</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Thu, 11 Feb 2010 16:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://webmuch.com/?p=133#comment-443</guid>
		<description>The author states he has never seen a web development blog host it on their own server, perhaps he should take a look at a source for this page...</description>
		<content:encoded><![CDATA[<p>The author states he has never seen a web development blog host it on their own server, perhaps he should take a look at a source for this page&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrzej Michalski</title>
		<link>http://webmuch.com/how-why-you-should-use-google-cdn/comment-page-1/#comment-426</link>
		<dc:creator>Andrzej Michalski</dc:creator>
		<pubDate>Mon, 25 Jan 2010 13:19:04 +0000</pubDate>
		<guid isPermaLink="false">http://webmuch.com/?p=133#comment-426</guid>
		<description>We&#039;re wanting to make use of CDN&#039;s in general, but does anyone have any advice on using https - will browsers moan that content is coming from different sources? Does the Google CDN support being accessed via https?
Andrzej</description>
		<content:encoded><![CDATA[<p>We&#8217;re wanting to make use of CDN&#8217;s in general, but does anyone have any advice on using https &#8211; will browsers moan that content is coming from different sources? Does the Google CDN support being accessed via https?<br />
Andrzej</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jet</title>
		<link>http://webmuch.com/how-why-you-should-use-google-cdn/comment-page-1/#comment-309</link>
		<dc:creator>jet</dc:creator>
		<pubDate>Sun, 20 Sep 2009 14:55:53 +0000</pubDate>
		<guid isPermaLink="false">http://webmuch.com/?p=133#comment-309</guid>
		<description>Hello, great article.

I have a question. What about GUnload() function? Since I read about the new google ajax API, I don&#039;t know if it&#039;s still convenient to use it.

I&#039;m starting a new proyect using google maps api, and I&#039;d like to know the best way to work with this api.

After spending lot of time collecting information, these are the best tips I&#039;ve found:
- use google ajax api
- use jquery
- load all the javascript libraries at the bottom of the page, before 

And this an example of my loader script:


google.load(&quot;maps&quot;, &quot;2&quot;, {
    &quot;language&quot;: &quot;es&quot;,
    &quot;other_params&quot;: &quot;sensor=false&quot;
});
google.load(&quot;jquery&quot;, &quot;1.3.2&quot;);

google.setOnLoadCallback(function(){
    if (GBrowserIsCompatible()) {
        var map = new GMap2($(&quot;#map&quot;).get(0));
        map.setCenter(new GLatLng(37.4419, -122.1419), 13);
    }
});

$(document.body).unload(function(){
    if (GBrowserIsCompatible()) {
        GUnload();
    }
});


What do you think?

Thank you.</description>
		<content:encoded><![CDATA[<p>Hello, great article.</p>
<p>I have a question. What about GUnload() function? Since I read about the new google ajax API, I don&#8217;t know if it&#8217;s still convenient to use it.</p>
<p>I&#8217;m starting a new proyect using google maps api, and I&#8217;d like to know the best way to work with this api.</p>
<p>After spending lot of time collecting information, these are the best tips I&#8217;ve found:<br />
- use google ajax api<br />
- use jquery<br />
- load all the javascript libraries at the bottom of the page, before </p>
<p>And this an example of my loader script:</p>
<p>google.load(&#8221;maps&#8221;, &#8220;2&#8243;, {<br />
    &#8220;language&#8221;: &#8220;es&#8221;,<br />
    &#8220;other_params&#8221;: &#8220;sensor=false&#8221;<br />
});<br />
google.load(&#8221;jquery&#8221;, &#8220;1.3.2&#8243;);</p>
<p>google.setOnLoadCallback(function(){<br />
    if (GBrowserIsCompatible()) {<br />
        var map = new GMap2($(&#8221;#map&#8221;).get(0));<br />
        map.setCenter(new GLatLng(37.4419, -122.1419), 13);<br />
    }<br />
});</p>
<p>$(document.body).unload(function(){<br />
    if (GBrowserIsCompatible()) {<br />
        GUnload();<br />
    }<br />
});</p>
<p>What do you think?</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aayush</title>
		<link>http://webmuch.com/how-why-you-should-use-google-cdn/comment-page-1/#comment-94</link>
		<dc:creator>Aayush</dc:creator>
		<pubDate>Thu, 04 Jun 2009 10:36:25 +0000</pubDate>
		<guid isPermaLink="false">http://webmuch.com/?p=133#comment-94</guid>
		<description>It was a comma or two and I didn&#039;t approve your previous comment because it was extremely  disrespectful.</description>
		<content:encoded><![CDATA[<p>It was a comma or two and I didn&#8217;t approve your previous comment because it was extremely  disrespectful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: L</title>
		<link>http://webmuch.com/how-why-you-should-use-google-cdn/comment-page-1/#comment-93</link>
		<dc:creator>L</dc:creator>
		<pubDate>Thu, 04 Jun 2009 10:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://webmuch.com/?p=133#comment-93</guid>
		<description>&gt; looks like you took my advice and made the

i meant &quot;made the corrections&quot;

your grammar is rubbing off on me :)</description>
		<content:encoded><![CDATA[<p>&gt; looks like you took my advice and made the</p>
<p>i meant &#8220;made the corrections&#8221;</p>
<p>your grammar is rubbing off on me <img src='http://webmuch.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: L</title>
		<link>http://webmuch.com/how-why-you-should-use-google-cdn/comment-page-1/#comment-92</link>
		<dc:creator>L</dc:creator>
		<pubDate>Thu, 04 Jun 2009 10:26:26 +0000</pubDate>
		<guid isPermaLink="false">http://webmuch.com/?p=133#comment-92</guid>
		<description>looks like you took my advice and made the; thanks - it&#039;s much more readable.

you should turn off the comments if you delete them all anyways.</description>
		<content:encoded><![CDATA[<p>looks like you took my advice and made the; thanks &#8211; it&#8217;s much more readable.</p>
<p>you should turn off the comments if you delete them all anyways.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
