<?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: If the web was smaller</title>
	<atom:link href="http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/feed/" rel="self" type="application/rss+xml" />
	<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 21 Feb 2010 13:51:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jason Huck</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-53</link>
		<dc:creator>Jason Huck</dc:creator>
		<pubDate>Tue, 08 Jul 2008 11:52:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-53</guid>
		<description>Think how much better many sites could be at describing the structure and hierarchy of their contents to user agents, if only they used more appropriate markup, instead of relying on so many generic div&#039;s for everything...</description>
		<content:encoded><![CDATA[<p>Think how much better many sites could be at describing the structure and hierarchy of their contents to user agents, if only they used more appropriate markup, instead of relying on so many generic div&#8217;s for everything&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-52</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 08 Jul 2008 11:38:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-52</guid>
		<description>@micho, you are completely right for every 2 characters there should be 4 bytes. However I worked that out on an average of the top 5 websites. My calculations may not be that accurate.</description>
		<content:encoded><![CDATA[<p>@micho, you are completely right for every 2 characters there should be 4 bytes. However I worked that out on an average of the top 5 websites. My calculations may not be that accurate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: micho</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-51</link>
		<dc:creator>micho</dc:creator>
		<pubDate>Tue, 08 Jul 2008 11:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-51</guid>
		<description>hello can someone pleas explain this:

&quot;For every element that would be converted to a , on average 5.93 bytes are saved.&quot;

div - d  = 2
\div - d = 2

= 4 bytes

So when i replace  i only get 4 bytes, not 5.93, what am i doing wrong?</description>
		<content:encoded><![CDATA[<p>hello can someone pleas explain this:</p>
<p>&#8220;For every element that would be converted to a , on average 5.93 bytes are saved.&#8221;</p>
<p>div &#8211; d  = 2<br />
\div &#8211; d = 2</p>
<p>= 4 bytes</p>
<p>So when i replace  i only get 4 bytes, not 5.93, what am i doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Davis</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-59</link>
		<dc:creator>Paul Davis</dc:creator>
		<pubDate>Mon, 07 Jul 2008 16:09:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-59</guid>
		<description>Easy to do (though the real benefit is up for debate).
Send your pages as XML, use XSLT to transform the d&#039;s to div&#039;s on the client. If you&#039;re doing that, you might as well shortcut all of your tags at the same time....</description>
		<content:encoded><![CDATA[<p>Easy to do (though the real benefit is up for debate).<br />
Send your pages as XML, use XSLT to transform the d&#8217;s to div&#8217;s on the client. If you&#8217;re doing that, you might as well shortcut all of your tags at the same time&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Forrow</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-58</link>
		<dc:creator>Alex Forrow</dc:creator>
		<pubDate>Mon, 07 Jul 2008 13:59:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-58</guid>
		<description>The vast majority of requests are from browsers that support gzipping. The great thing about the HTTP protocol is that the browser specifies whether it can accept gzipping when it makes the request, so unsupporting browsers can continue as normal.

Grabbing XML is no different, just use a client library that supports gzip. Sometimes its nice to be able to talk standard text for simple apps, but relatively thats a tiny amount of traffic.

As for CPU usage, in most cases the the benefits of bandwidth savings outweigh the problems of using extra cycles.

I&#039;m not saying gzipping should be mandatory, but more widespread web server support would save a fair amount of bandwidth.</description>
		<content:encoded><![CDATA[<p>The vast majority of requests are from browsers that support gzipping. The great thing about the HTTP protocol is that the browser specifies whether it can accept gzipping when it makes the request, so unsupporting browsers can continue as normal.</p>
<p>Grabbing XML is no different, just use a client library that supports gzip. Sometimes its nice to be able to talk standard text for simple apps, but relatively thats a tiny amount of traffic.</p>
<p>As for CPU usage, in most cases the the benefits of bandwidth savings outweigh the problems of using extra cycles.</p>
<p>I&#8217;m not saying gzipping should be mandatory, but more widespread web server support would save a fair amount of bandwidth.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-57</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 07 Jul 2008 13:52:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-57</guid>
		<description>@BTM I wouldn&#039;t agree that using 127 divs is a sign that you don&#039;t know what you are doing many sites have a lot of content, or even a lot of round corners.

The fact is image how much space you would save in the entire Internet if all the div&#039;s were converted into d&#039;s.</description>
		<content:encoded><![CDATA[<p>@BTM I wouldn&#8217;t agree that using 127 divs is a sign that you don&#8217;t know what you are doing many sites have a lot of content, or even a lot of round corners.</p>
<p>The fact is image how much space you would save in the entire Internet if all the div&#8217;s were converted into d&#8217;s.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BTM</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-56</link>
		<dc:creator>BTM</dc:creator>
		<pubDate>Mon, 07 Jul 2008 13:45:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-56</guid>
		<description>Oh, and as for Jared&#039;s example, gziping things that are still :

[root@~] curl -s http://www.youtube.com/ &#124; gzip &#124; wc -c
13022

So thats 123 bytes saved .. not that much really ...</description>
		<content:encoded><![CDATA[<p>Oh, and as for Jared&#8217;s example, gziping things that are still :</p>
<p>[root@~] curl -s <a href="http://www.youtube.com/" rel="nofollow">http://www.youtube.com/</a> | gzip | wc -c<br />
13022</p>
<p>So thats 123 bytes saved .. not that much really &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BTM</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-55</link>
		<dc:creator>BTM</dc:creator>
		<pubDate>Mon, 07 Jul 2008 13:42:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-55</guid>
		<description>I cant agree on the &quot;gziping should be enforced&quot; part. First, you&#039;ve said yourself that not every brwoser supports it. True. And remember that not only browsers are used to browse the Net, but sometimes you&#039;ve got to fetch XML, pocke a hole in some sockets etc. Then both you and the server has to spend time (read: CPU cycles) gziping/ungziping the data and I can bet the time spent on that is far greater than sending another 1k bytes.

And the &quot;127 div&#039;s for page&quot; is absurd. 127 divs is a sign of :

a) something way to big - like yahoo - how many sites like yahoo have YOU written? :&gt;
b) someone who dosn&#039;t have any idea what he&#039;s doing - I usually get sites done in ~20 div&#039;s, rest goes in  and the other bunch. Can&#039;t shorten  :P</description>
		<content:encoded><![CDATA[<p>I cant agree on the &#8220;gziping should be enforced&#8221; part. First, you&#8217;ve said yourself that not every brwoser supports it. True. And remember that not only browsers are used to browse the Net, but sometimes you&#8217;ve got to fetch XML, pocke a hole in some sockets etc. Then both you and the server has to spend time (read: CPU cycles) gziping/ungziping the data and I can bet the time spent on that is far greater than sending another 1k bytes.</p>
<p>And the &#8220;127 div&#8217;s for page&#8221; is absurd. 127 divs is a sign of :</p>
<p>a) something way to big &#8211; like yahoo &#8211; how many sites like yahoo have YOU written? :&gt;<br />
b) someone who dosn&#8217;t have any idea what he&#8217;s doing &#8211; I usually get sites done in ~20 div&#8217;s, rest goes in  and the other bunch. Can&#8217;t shorten  <img src='http://dtsn.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james wilson</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-54</link>
		<dc:creator>james wilson</dc:creator>
		<pubDate>Mon, 07 Jul 2008 13:41:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-54</guid>
		<description>not convinced those savings are remotely worth it to be honest......</description>
		<content:encoded><![CDATA[<p>not convinced those savings are remotely worth it to be honest&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/comment-page-1/#comment-63</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 07 Jul 2008 13:18:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.dtsn.co.uk/2008/07/05/if-the-web-was-smaller-idea/#comment-63</guid>
		<description>Yeah, gzipping should be enforced. It would be a lot better and more efficient.</description>
		<content:encoded><![CDATA[<p>Yeah, gzipping should be enforced. It would be a lot better and more efficient.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
