<?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: Stunningly Simple CSS Minifier</title>
	<atom:link href="http://www.lateralcode.com/css-minifier/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lateralcode.com/css-minifier/</link>
	<description>A Web Development Blog Focused on Code and Technology</description>
	<lastBuildDate>Thu, 07 Jul 2011 20:22:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: somethingkindawierd</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-10024</link>
		<dc:creator>somethingkindawierd</dc:creator>
		<pubDate>Thu, 23 Dec 2010 16:34:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-10024</guid>
		<description>Very nice. I have a cleaning script I run when publishing my projects live. It reads all css files, merges them into 1, compresses them, then saves the production file. 

For my most recent project CSSTidy was breaking the css and only saving 11%.

Using this simple function I was able to shave off 25.1% on the merged css files :)

Thanks for the post!</description>
		<content:encoded><![CDATA[<p>Very nice. I have a cleaning script I run when publishing my projects live. It reads all css files, merges them into 1, compresses them, then saves the production file. </p>
<p>For my most recent project CSSTidy was breaking the css and only saving 11%.</p>
<p>Using this simple function I was able to shave off 25.1% on the merged css files <img src='http://www.lateralcode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks for the post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guido Parakaz</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-6384</link>
		<dc:creator>Guido Parakaz</dc:creator>
		<pubDate>Thu, 11 Nov 2010 03:23:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-6384</guid>
		<description>Uhhhm, if you use ASP.NET (yeah, Microsoft, I know), it gets a lot simpler with this:
http://www.codeproject.com/KB/aspnet/CombineAndMinify.aspx

It does JavaScript as well as CSS plus lots more performance enhancing stuff.</description>
		<content:encoded><![CDATA[<p>Uhhhm, if you use ASP.NET (yeah, Microsoft, I know), it gets a lot simpler with this:<br />
<a href="http://www.codeproject.com/KB/aspnet/CombineAndMinify.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/CombineAndMinify.aspx</a></p>
<p>It does JavaScript as well as CSS plus lots more performance enhancing stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-5904</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 31 Oct 2010 16:56:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-5904</guid>
		<description>Thanks man that is simple.  And it works.  Other scripts I&#039;ve used blow out my webkit styles and only compress about 16%.  Yours got me 17.7% savings!</description>
		<content:encoded><![CDATA[<p>Thanks man that is simple.  And it works.  Other scripts I&#8217;ve used blow out my webkit styles and only compress about 16%.  Yours got me 17.7% savings!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-4585</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Sun, 26 Sep 2010 04:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-4585</guid>
		<description>Awesome post. I had tried using minify on my wordpress but everytime the CSS was minified using wp-minify plugin, the layout broke. Will try this now.</description>
		<content:encoded><![CDATA[<p>Awesome post. I had tried using minify on my wordpress but everytime the CSS was minified using wp-minify plugin, the layout broke. Will try this now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: La guerre aux millisecondes</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-4413</link>
		<dc:creator>La guerre aux millisecondes</dc:creator>
		<pubDate>Tue, 21 Sep 2010 09:44:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-4413</guid>
		<description>[...] Stunningly Simple CSS Minifier [...]</description>
		<content:encoded><![CDATA[<p>[...] Stunningly Simple CSS Minifier [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Pennebaker</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-4042</link>
		<dc:creator>Andrew Pennebaker</dc:creator>
		<pubDate>Wed, 08 Sep 2010 17:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-4042</guid>
		<description>Great post! You can minify CSS even more if you change the regexes to handle newlines as well as spaces.

Example:

$css = str_replace( &#039;;\w+&#039;, &#039;;&#039;, $css );</description>
		<content:encoded><![CDATA[<p>Great post! You can minify CSS even more if you change the regexes to handle newlines as well as spaces.</p>
<p>Example:</p>
<p>$css = str_replace( &#8216;;\w+&#8217;, &#8216;;&#8217;, $css );</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terri Ann</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-3287</link>
		<dc:creator>Terri Ann</dc:creator>
		<pubDate>Mon, 16 Aug 2010 20:27:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-3287</guid>
		<description>Thanks this was incredibly helpful to minify on the fly!</description>
		<content:encoded><![CDATA[<p>Thanks this was incredibly helpful to minify on the fly!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kerido</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-1063</link>
		<dc:creator>kerido</dc:creator>
		<pubDate>Sun, 18 Apr 2010 13:08:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-1063</guid>
		<description>Hi. Your minifier is sure simple.
However, you use regular expressions. On my blog post I came up with a different approach. It&#039;s faster and produces very compact output. Here&#039;s the address: http://www.ko-sw.com/Blog/post/An-Ultra-Fast-CSS-Minify-Algorithm.aspx. The code is in C#, however, it can be easily converted to PHP. There is no fancy stuff there.
Anyway, thanks for the post!</description>
		<content:encoded><![CDATA[<p>Hi. Your minifier is sure simple.<br />
However, you use regular expressions. On my blog post I came up with a different approach. It&#8217;s faster and produces very compact output. Here&#8217;s the address: <a href="http://www.ko-sw.com/Blog/post/An-Ultra-Fast-CSS-Minify-Algorithm.aspx" rel="nofollow">http://www.ko-sw.com/Blog/post/An-Ultra-Fast-CSS-Minify-Algorithm.aspx</a>. The code is in C#, however, it can be easily converted to PHP. There is no fancy stuff there.<br />
Anyway, thanks for the post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Part II: Managing CSS and JavaScript files within a Zend Framework App &#124; Leaking Abstraction</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-990</link>
		<dc:creator>Part II: Managing CSS and JavaScript files within a Zend Framework App &#124; Leaking Abstraction</dc:creator>
		<pubDate>Mon, 15 Feb 2010 07:23:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-990</guid>
		<description>[...] little more googling gets us to this solution. Sure, it&#039;s not perfect, but performing 90% of the necessary packing is good for me. My CSS view [...]</description>
		<content:encoded><![CDATA[<p>[...] little more googling gets us to this solution. Sure, it&#39;s not perfect, but performing 90% of the necessary packing is good for me. My CSS view [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SEO Blog &#124; Tips To Improve Your Page Load Speed</title>
		<link>http://www.lateralcode.com/css-minifier/#comment-975</link>
		<dc:creator>SEO Blog &#124; Tips To Improve Your Page Load Speed</dc:creator>
		<pubDate>Tue, 26 Jan 2010 17:09:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.lateralcode.com/?p=1197#comment-975</guid>
		<description>[...] http://www.lateralcode.com/css-minifer/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.lateralcode.com/css-minifer/" rel="nofollow">http://www.lateralcode.com/css-minifer/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

