<?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: efficient JS minification using PHP</title>
	<atom:link href="http://verens.com/2008/05/20/efficient-js-minification-using-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://verens.com/2008/05/20/efficient-js-minification-using-php/</link>
	<description>klog - Kae&#039;s Log</description>
	<lastBuildDate>Fri, 10 Feb 2012 21:49:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Minify and Compress all your JavaScript files into One, on the Fly &#124; ChrisRenner.com</title>
		<link>http://verens.com/2008/05/20/efficient-js-minification-using-php/#comment-1482</link>
		<dc:creator>Minify and Compress all your JavaScript files into One, on the Fly &#124; ChrisRenner.com</dc:creator>
		<pubDate>Fri, 04 Feb 2011 14:47:10 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2008/05/20/efficient-js-minification-using-php/#comment-1482</guid>
		<description>[...] I decided to find a way to automate this process.  I stumbled upon the JSmin class PHP class, which is an implementation of Douglas Crockford&#039;s JSMin.  The solution would implement JSmin, but with a wrapper class that would read each .js file, minify (and compress if possible), and then output into a single file.  More helpful ideas were found in this blog article at verens.com. [...]</description>
		<content:encoded><![CDATA[<p>[...] I decided to find a way to automate this process.  I stumbled upon the JSmin class PHP class, which is an implementation of Douglas Crockford&#039;s JSMin.  The solution would implement JSmin, but with a wrapper class that would read each .js file, minify (and compress if possible), and then output into a single file.  More helpful ideas were found in this blog article at verens.com. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roScripts &#045; Webmaster resources and websites</title>
		<link>http://verens.com/2008/05/20/efficient-js-minification-using-php/#comment-1108</link>
		<dc:creator>roScripts &#045; Webmaster resources and websites</dc:creator>
		<pubDate>Fri, 23 May 2008 04:15:14 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2008/05/20/efficient-js-minification-using-php/#comment-1108</guid>
		<description>&lt;strong&gt;klog  &#xBB; Blog Archive   &#xBB; efficient JS minification using PHP&lt;/strong&gt;

klog  &#xBB; Blog Archive   &#xBB; efficient JS minification using PHP</description>
		<content:encoded><![CDATA[<p><strong>klog  &#xBB; Blog Archive   &#xBB; efficient JS minification using PHP</strong></p>
<p>klog  &#xBB; Blog Archive   &#xBB; efficient JS minification using PHP</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Huck</title>
		<link>http://verens.com/2008/05/20/efficient-js-minification-using-php/#comment-1107</link>
		<dc:creator>Jason Huck</dc:creator>
		<pubDate>Thu, 22 May 2008 17:23:14 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2008/05/20/efficient-js-minification-using-php/#comment-1107</guid>
		<description>We&#039;ve been doing something very similar to this (including the use of a checksum to name the cached file) in our CMS for a while. Works great. We use YUI Compressor instead of JSMin (it&#039;s a little bit safer), and we run our CSS files through it as well.</description>
		<content:encoded><![CDATA[<p>We&#8217;ve been doing something very similar to this (including the use of a checksum to name the cached file) in our CMS for a while. Works great. We use YUI Compressor instead of JSMin (it&#8217;s a little bit safer), and we run our CSS files through it as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web 2.0 Announcer</title>
		<link>http://verens.com/2008/05/20/efficient-js-minification-using-php/#comment-1106</link>
		<dc:creator>Web 2.0 Announcer</dc:creator>
		<pubDate>Thu, 22 May 2008 15:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2008/05/20/efficient-js-minification-using-php/#comment-1106</guid>
		<description>&lt;strong&gt;Efficient JS minification using PHP&lt;/strong&gt;

[...]Here’s a method to create minified JS files on-the-fly, without incurring the time cost of the minification process.&#xD;
&#xD;
To explain, minification is the act of removing all whitespace from JavaScript so the file can be downloade...</description>
		<content:encoded><![CDATA[<p><strong>Efficient JS minification using PHP</strong></p>
<p>[...]Here’s a method to create minified JS files on-the-fly, without incurring the time cost of the minification process.&#xD;<br />
&#xD;<br />
To explain, minification is the act of removing all whitespace from JavaScript so the file can be downloade&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Kees</title>
		<link>http://verens.com/2008/05/20/efficient-js-minification-using-php/#comment-1105</link>
		<dc:creator>David Kees</dc:creator>
		<pubDate>Wed, 21 May 2008 17:51:58 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2008/05/20/efficient-js-minification-using-php/#comment-1105</guid>
		<description>Interesting idea.  I&#039;m going to have to play around with this and see how it goes.</description>
		<content:encoded><![CDATA[<p>Interesting idea.  I&#8217;m going to have to play around with this and see how it goes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kae Verens&#8217; Blog: efficient JS minification using PHP &#124; Development Blog With Code Updates : Developercast.com</title>
		<link>http://verens.com/2008/05/20/efficient-js-minification-using-php/#comment-1104</link>
		<dc:creator>Kae Verens&#8217; Blog: efficient JS minification using PHP &#124; Development Blog With Code Updates : Developercast.com</dc:creator>
		<pubDate>Wed, 21 May 2008 15:37:20 +0000</pubDate>
		<guid isPermaLink="false">http://verens.com/archives/2008/05/20/efficient-js-minification-using-php/#comment-1104</guid>
		<description>[...] a new post today, Kae Verens takes a look at a method for easy and quick javascript minification with help [...]</description>
		<content:encoded><![CDATA[<p>[...] a new post today, Kae Verens takes a look at a method for easy and quick javascript minification with help [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

