<?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 Robert Accettura's Fun With Wordage</title>
	<atom:link href="http://robert.accettura.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://robert.accettura.com</link>
	<description>Robert Accettura's Personal Blog on Web Development and Tech</description>
	<lastBuildDate>Sat,  4 Jul 2009 18:30:06 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Optimizing @font-face For Performance by James John Malcolm</title>
		<link>http://robert.accettura.com/blog/2009/07/03/optimizing-font-face-for-performance/comment-page-1/#comment-766603</link>
		<dc:creator>James John Malcolm</dc:creator>
		<pubDate>Sat, 04 Jul 2009 18:30:06 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/?p=2834#comment-766603</guid>
		<description>Well, a 10-15% overhead for a regular serif, bold serif, italic serif, nevermind a whole sans-serif family...it all adds up!</description>
		<content:encoded><![CDATA[<p>Well, a 10-15% overhead for a regular serif, bold serif, italic serif, nevermind a whole sans-serif family&#8230;it all adds up!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing @font-face For Performance by Da Scritch</title>
		<link>http://robert.accettura.com/blog/2009/07/03/optimizing-font-face-for-performance/comment-page-1/#comment-766383</link>
		<dc:creator>Da Scritch</dc:creator>
		<pubDate>Sat, 04 Jul 2009 07:23:23 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/?p=2834#comment-766383</guid>
		<description>This “good advice” will be spotted by copyright-fanatics to enweighten their websites in 3.... 2.... 1....
Oooooooh ! JPEG headers and backgrounds urldata-encoded in the source code !

Just joking. Anyway, it is very useful, if you use this kind of technique (and it&#039;s better for very small documents, as 1Kb png images, not for 50Kb  fonts), to activate gzip compression on server-side. But remember that CSS and JS zipped-served are NOT cached by MS-W-IE. So, use it a lot, it makes a better “cool and fast attitude” for non Trident based modern navigators ;)</description>
		<content:encoded><![CDATA[<p>This “good advice” will be spotted by copyright-fanatics to enweighten their websites in 3&#8230;. 2&#8230;. 1&#8230;.<br />
Oooooooh ! JPEG headers and backgrounds urldata-encoded in the source code !</p>
<p>Just joking. Anyway, it is very useful, if you use this kind of technique (and it&#8217;s better for very small documents, as 1Kb <acronym title="Portable Network Graphics">PNG</acronym> images, not for 50Kb  fonts), to activate gzip compression on server-side. But remember that <acronym title="Cascading Style Sheets">CSS</acronym> and JS zipped-served are NOT cached by <acronym title="Microsoft">MS</acronym>-W-<acronym title="Internet Explorer">IE</acronym>. So, use it a lot, it makes a better “cool and fast attitude” for non Trident based modern navigators <img src='http://robert.accettura.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing @font-face For Performance by Robert</title>
		<link>http://robert.accettura.com/blog/2009/07/03/optimizing-font-face-for-performance/comment-page-1/#comment-766066</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Fri, 03 Jul 2009 20:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/?p=2834#comment-766066</guid>
		<description>Very true.. but most sites gzip these days cutting down the file size... I suspect you&#039;d see 10-15% overhead in practice. 

Considering the large amounts of JS and images on many sites today and the proliferation of broadband connections, file size is generally less important than the # of requests.

A typical cable modem connection these days can easily handle 6Mbps and burst as high as 20Mbps.  Unfortunately the latency is still there.

An extra 30kb (assuming 2x 15kb overhead on a base64&#039;d 50kb font) is going to be perceived faster in many cases than an 2 extra requests (assuming you only use 1 serif and 1 sans serif font).  Especially if your not offloading to a CDN or other low latency origin.</description>
		<content:encoded><![CDATA[<p>Very true.. but most sites gzip these days cutting down the file size&#8230; I suspect you&#8217;d see 10-15% overhead in practice. </p>
<p>Considering the large amounts of JS and images on many sites today and the proliferation of broadband connections, file size is generally less important than the # of requests.</p>
<p>A typical cable modem connection these days can easily handle 6Mbps and burst as high as 20Mbps.  Unfortunately the latency is still there.</p>
<p>An extra 30kb (assuming 2x 15kb overhead on a base64&#8242;d 50kb font) is going to be perceived faster in many cases than an 2 extra requests (assuming you only use 1 serif and 1 sans serif font).  Especially if your not offloading to a CDN or other low latency origin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing @font-face For Performance by malte</title>
		<link>http://robert.accettura.com/blog/2009/07/03/optimizing-font-face-for-performance/comment-page-1/#comment-766054</link>
		<dc:creator>malte</dc:creator>
		<pubDate>Fri, 03 Jul 2009 19:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/?p=2834#comment-766054</guid>
		<description>The base64 encoding used in the data: uri will increase the font&#039;s size by a third. Gzipping the css file probably reduces this to something lower, but not to a factor of one. So if file size matters, it&#039;s probably better to leave the font a separate file. After the first page load, (in a proper setup) it will be cached just like the css.

Also, the whole page won&#039;t be shown until *all* css files have downloaded completely. So while this technique prevents some text from showing up in a &quot;wrong&quot;  font for a short while, it prevents the whole page from showing up at all for that same time.</description>
		<content:encoded><![CDATA[<p>The base64 encoding used in the data: <acronym title="Uniform Resource Identifier">URI</acronym> will increase the font&#8217;s size by a third. Gzipping the <acronym title="Cascading Style Sheets">CSS</acronym> file probably reduces this to something lower, but not to a factor of one. So if file size matters, it&#8217;s probably better to leave the font a separate file. After the first page load, (in a proper setup) it will be cached just like the <acronym title="Cascading Style Sheets">CSS</acronym>.</p>
<p>Also, the whole page won&#8217;t be shown until *all* <acronym title="Cascading Style Sheets">CSS</acronym> files have downloaded completely. So while this technique prevents some text from showing up in a &#8220;wrong&#8221;  font for a short while, it prevents the whole page from showing up at all for that same time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Optimizing @font-face For Performance by Justin Dolske</title>
		<link>http://robert.accettura.com/blog/2009/07/03/optimizing-font-face-for-performance/comment-page-1/#comment-766052</link>
		<dc:creator>Justin Dolske</dc:creator>
		<pubDate>Fri, 03 Jul 2009 19:16:48 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/?p=2834#comment-766052</guid>
		<description>base64 encoding adds 33% overhead for the encoding, so I&#039;m not sure turning large files into a data: URI is what I&#039;d call a optimization!</description>
		<content:encoded><![CDATA[<p>base64 encoding adds 33% overhead for the encoding, so I&#8217;m not sure turning large files into a data: <acronym title="Uniform Resource Identifier">URI</acronym> is what I&#8217;d call a optimization!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on @font-face Hacks by Robert</title>
		<link>http://robert.accettura.com/blog/2009/06/29/font-face-hacks/comment-page-1/#comment-766023</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Fri, 03 Jul 2009 18:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/?p=2806#comment-766023</guid>
		<description>@Charles: I did a &lt;a href=&quot;/blog/2009/07/03/optimizing-font-face-for-performance/&quot; rel=&quot;nofollow&quot;&gt;blog post&lt;/a&gt; dedicated just to that topic</description>
		<content:encoded><![CDATA[<p>@Charles: I did a <a href="/blog/2009/07/03/optimizing-font-face-for-performance/" rel="nofollow">blog post</a> dedicated just to that topic</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPod touch 2nd Generation? by Buy Cordless Screwdrivers</title>
		<link>http://robert.accettura.com/blog/2007/09/09/ipod-touch-2nd-generation/comment-page-1/#comment-765945</link>
		<dc:creator>Buy Cordless Screwdrivers</dc:creator>
		<pubDate>Fri, 03 Jul 2009 14:28:36 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/archives/2007/09/09/ipod-touch-2nd-generation/#comment-765945</guid>
		<description>Hello. Great job. I did not expect this on interent. This is a great story. Thanks!</description>
		<content:encoded><![CDATA[<p>Hello. Great job. I did not expect this on interent. This is a great story. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on @font-face Hacks by Charles</title>
		<link>http://robert.accettura.com/blog/2009/06/29/font-face-hacks/comment-page-1/#comment-765381</link>
		<dc:creator>Charles</dc:creator>
		<pubDate>Thu, 02 Jul 2009 15:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/?p=2806#comment-765381</guid>
		<description>Does font-face src support a data: url  as this would allow local storage of the font and so a lot quicker?</description>
		<content:encoded><![CDATA[<p>Does font-face src support a data: <acronym title="Uniform Resource Locator">URL</acronym>  as this would allow local storage of the font and so a lot quicker?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Things You&#8217;ll Love About Firefox 3.5 by Things You’ll Love About Firefox 3.5</title>
		<link>http://robert.accettura.com/blog/2009/06/20/things-youll-love-about-firefox-3-5/comment-page-1/#comment-765178</link>
		<dc:creator>Things You’ll Love About Firefox 3.5</dc:creator>
		<pubDate>Thu, 02 Jul 2009 06:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/?p=2706#comment-765178</guid>
		<description>[...]   [...]</description>
		<content:encoded><![CDATA[<p>[...]   [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Things You&#8217;ll Love About Firefox 3.5 by James</title>
		<link>http://robert.accettura.com/blog/2009/06/20/things-youll-love-about-firefox-3-5/comment-page-1/#comment-764649</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 01 Jul 2009 09:14:23 +0000</pubDate>
		<guid isPermaLink="false">http://robert.accettura.com/?p=2706#comment-764649</guid>
		<description>Things you&#039;ll hate about Firefox 3.5 - &lt;a href=&quot;https://bugzilla.mozilla.org/show_bug.cgi?id=495794&quot; rel=&quot;nofollow&quot;&gt;crashing on the start page video&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Things you&#8217;ll hate about Firefox 3.5 &#8211; <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495794" rel="nofollow">crashing on the start page video</a>.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
