<?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>Comentarios en: Google Closure, Google nos ayuda a optimizar nuestro Javascript</title>
	<atom:link href="http://www.anieto2k.com/2009/11/09/google-closure-google-nos-ayuda-a-optimizar-nuestro-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anieto2k.com/2009/11/09/google-closure-google-nos-ayuda-a-optimizar-nuestro-javascript/</link>
	<description>Desarrollo web, Wordpress, y alguna cosilla más</description>
	<lastBuildDate>Sun, 21 Mar 2010 19:56:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Por: Andrés Fernández</title>
		<link>http://www.anieto2k.com/2009/11/09/google-closure-google-nos-ayuda-a-optimizar-nuestro-javascript/#comment-61274</link>
		<dc:creator>Andrés Fernández</dc:creator>
		<pubDate>Fri, 13 Nov 2009 07:36:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=9233#comment-61274</guid>
		<description>Me parece muy interesante este comentario:
http://www.sitepoint.com/blogs/2009/11/12/google-closure-how-not-to-write-javascript/</description>
		<content:encoded><![CDATA[<p>Me parece muy interesante este comentario:<br />
<a href="http://www.sitepoint.com/blogs/2009/11/12/google-closure-how-not-to-write-javascript/" rel="nofollow">http://www.sitepoint.com/blogs/2009/11/12/google-closure-how-not-to-write-javascript/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Google Closure, para optimizar nuestro JavaScript &#171; Historial de un navegante</title>
		<link>http://www.anieto2k.com/2009/11/09/google-closure-google-nos-ayuda-a-optimizar-nuestro-javascript/#comment-61270</link>
		<dc:creator>Google Closure, para optimizar nuestro JavaScript &#171; Historial de un navegante</dc:creator>
		<pubDate>Thu, 12 Nov 2009 21:42:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=9233#comment-61270</guid>
		<description>[...] Noviembre 2009 de Ángel    Leo otro interesantísimo post en anieto2k, donde nos cuenta que Google ha sacado una herramienta para ayudar a los desarrolladores a [...]</description>
		<content:encoded><![CDATA[<p>[...] Noviembre 2009 de Ángel    Leo otro interesantísimo post en anieto2k, donde nos cuenta que Google ha sacado una herramienta para ayudar a los desarrolladores a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: aNieto2k</title>
		<link>http://www.anieto2k.com/2009/11/09/google-closure-google-nos-ayuda-a-optimizar-nuestro-javascript/#comment-61261</link>
		<dc:creator>aNieto2k</dc:creator>
		<pubDate>Thu, 12 Nov 2009 07:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=9233#comment-61261</guid>
		<description>&lt;a href=&quot;#comment-61258&quot; title=&quot;Responder a Manuel Aravena&quot; rel=&quot;nofollow&quot;&gt;@Manuel Aravena&lt;/a&gt;: Más que agilizarlo es que es menos pesado y tarda menos en llegar al navegador. El tiempo de ejecución es el mismo.</description>
		<content:encoded><![CDATA[<p><a href="#comment-61258" title="Responder a Manuel Aravena" rel="nofollow">@Manuel Aravena</a>: Más que agilizarlo es que es menos pesado y tarda menos en llegar al navegador. El tiempo de ejecución es el mismo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Manuel Aravena</title>
		<link>http://www.anieto2k.com/2009/11/09/google-closure-google-nos-ayuda-a-optimizar-nuestro-javascript/#comment-61258</link>
		<dc:creator>Manuel Aravena</dc:creator>
		<pubDate>Wed, 11 Nov 2009 23:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=9233#comment-61258</guid>
		<description>Para mis conocimientos esta un poco enrredado :S

tema aparte. el hecho de que el codigo java script no tenga espacios ni comentarios... eso lo agiliza?</description>
		<content:encoded><![CDATA[<p>Para mis conocimientos esta un poco enrredado :S</p>
<p>tema aparte. el hecho de que el codigo java script no tenga espacios ni comentarios&#8230; eso lo agiliza?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Kingreil</title>
		<link>http://www.anieto2k.com/2009/11/09/google-closure-google-nos-ayuda-a-optimizar-nuestro-javascript/#comment-61182</link>
		<dc:creator>Kingreil</dc:creator>
		<pubDate>Mon, 09 Nov 2009 20:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.anieto2k.com/?p=9233#comment-61182</guid>
		<description>No sería mejor:

&lt;pre&gt;&lt;code&gt;$script = file_get_contents($_GET[&#039;js&#039;]);
$ch = curl_init(&#039;http://closure-compiler.appspot.com/compile&#039;);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, &#039;output_info=compiled_code&amp;output_format=text&amp;compilation_level=SIMPLE_OPTIMIZATIONS&amp;js_code=&#039; . urlencode($script));
$output = curl_exec($ch);
curl_close($ch);&lt;/code&gt;&lt;/pre&gt;

Asi se pasa por get y solo se pega en la url del navegador?

No se mucho, no me hagas caso.</description>
		<content:encoded><![CDATA[<p>No sería mejor:</p>
<pre><code>$script = file_get_contents($_GET['js']);
$ch = curl_init('http://closure-compiler.appspot.com/compile');

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'output_info=compiled_code&amp;output_format=text&amp;compilation_level=SIMPLE_OPTIMIZATIONS&amp;js_code=' . urlencode($script));
$output = curl_exec($ch);
curl_close($ch);</code></pre>
<p>Asi se pasa por get y solo se pega en la url del navegador?</p>
<p>No se mucho, no me hagas caso.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
