<?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: The Importance Of Dynamic Content</title>
	<atom:link href="http://www.bravenewcode.com/2008/07/the-importance-of-dynamic-content/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bravenewcode.com/2008/07/the-importance-of-dynamic-content/</link>
	<description>You dream it up, we code it to life.</description>
	<lastBuildDate>Fri, 30 Jul 2010 15:16:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sean</title>
		<link>http://www.bravenewcode.com/2008/07/the-importance-of-dynamic-content/comment-page-1/#comment-2298</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Tue, 02 Dec 2008 15:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.bravenewcode.com/?p=209#comment-2298</guid>
		<description>That&#039;s a problem I&#039;m trying to figure out right now. I coded my own blog from hand, and I&#039;m still working on making some adjustments and improvements. The next thing I&#039;d like to add is a image uploading script, but what how should I resize the image? If I make it too small, then it looks bad if I decide I want to make it larger. If I make it too big, it takes too long to download. Ergh.

As a side note, I&#039;m sure you&#039;ve probably noticed, but for some reason this post keeps showing up in Google Reader. Right now for your RSS feed it&#039;s just this post, thirty times. Don&#039;t know what&#039;s going on there.</description>
		<content:encoded><![CDATA[<p>That&#8217;s a problem I&#8217;m trying to figure out right now. I coded my own blog from hand, and I&#8217;m still working on making some adjustments and improvements. The next thing I&#8217;d like to add is a image uploading script, but what how should I resize the image? If I make it too small, then it looks bad if I decide I want to make it larger. If I make it too big, it takes too long to download. Ergh.</p>
<p>As a side note, I&#8217;m sure you&#8217;ve probably noticed, but for some reason this post keeps showing up in Google Reader. Right now for your RSS feed it&#8217;s just this post, thirty times. Don&#8217;t know what&#8217;s going on there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: davin</title>
		<link>http://www.bravenewcode.com/2008/07/the-importance-of-dynamic-content/comment-page-1/#comment-2294</link>
		<dc:creator>davin</dc:creator>
		<pubDate>Tue, 02 Dec 2008 07:38:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.bravenewcode.com/?p=209#comment-2294</guid>
		<description>Hardcoding the dimensions in the HTML does speed up rendering, depending on the layout.

But anyway, that doesn&#039;t matter since the difference is neglibile in most scenarios in this day and age.  

Good post.  CSS can override inline HTML widths though, so perhaps part of this post is moot?  I used max-width for my iPhone CSS layout (which is not perfect yet, but getting there). 

Die IE6!

Random: Your RSS feed has blown up with about 27 new RSS entries for 2 new posts.  I clicked on one to get here and it went through about 5-10 (no idea) feedburner redirects.  What is going on?</description>
		<content:encoded><![CDATA[<p>Hardcoding the dimensions in the HTML does speed up rendering, depending on the layout.</p>
<p>But anyway, that doesn&#8217;t matter since the difference is neglibile in most scenarios in this day and age.  </p>
<p>Good post.  CSS can override inline HTML widths though, so perhaps part of this post is moot?  I used max-width for my iPhone CSS layout (which is not perfect yet, but getting there). </p>
<p>Die IE6!</p>
<p>Random: Your RSS feed has blown up with about 27 new RSS entries for 2 new posts.  I clicked on one to get here and it went through about 5-10 (no idea) feedburner redirects.  What is going on?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dale Mugford</title>
		<link>http://www.bravenewcode.com/2008/07/the-importance-of-dynamic-content/comment-page-1/#comment-1394</link>
		<dc:creator>Dale Mugford</dc:creator>
		<pubDate>Thu, 07 Aug 2008 04:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.bravenewcode.com/?p=209#comment-1394</guid>
		<description>As an addendum, are the nanoseconds gained by hardcoded declaration worth a dime, really? It&#039;s more likely that the optimization of the image itself for the web will yield far greater results in terms of speed than in hardcoding its width and height.</description>
		<content:encoded><![CDATA[<p>As an addendum, are the nanoseconds gained by hardcoded declaration worth a dime, really? It&#8217;s more likely that the optimization of the image itself for the web will yield far greater results in terms of speed than in hardcoding its width and height.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duane Storey</title>
		<link>http://www.bravenewcode.com/2008/07/the-importance-of-dynamic-content/comment-page-1/#comment-1243</link>
		<dc:creator>Duane Storey</dc:creator>
		<pubDate>Fri, 25 Jul 2008 16:22:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.bravenewcode.com/?p=209#comment-1243</guid>
		<description>Obviously it depends how much you scale the image up, but in most cases I&#039;ve run into it, the image was larger than the post area anyways, in which case you were already scaling it down.   For example, most people I know include Flickr photos in their posts, even though the standard Flickr size is larger than their post area.  In that case, it&#039;s definitely possible to adjust the size of the image via CSS and still have it look correct.  Also, I would argue that in many cases, scaling an image or a video up by 10-20% looks far better than having a smaller version that looks obviously out of place in the context of the rest of the content.

I&#039;m not sure I buy that specifying width/height speeds it up.  I mean, CSS is parsed before the image, so it could potentially read that before it reads the inline definition for the image.   Also, I&#039;m fairly sure that XHTML strict doesn&#039;t allow any width/height or inline styles either, so using those elements basically means you&#039;re forcing your clients to be in transitional or below when designing their sites.</description>
		<content:encoded><![CDATA[<p>Obviously it depends how much you scale the image up, but in most cases I&#8217;ve run into it, the image was larger than the post area anyways, in which case you were already scaling it down.   For example, most people I know include Flickr photos in their posts, even though the standard Flickr size is larger than their post area.  In that case, it&#8217;s definitely possible to adjust the size of the image via CSS and still have it look correct.  Also, I would argue that in many cases, scaling an image or a video up by 10-20% looks far better than having a smaller version that looks obviously out of place in the context of the rest of the content.</p>
<p>I&#8217;m not sure I buy that specifying width/height speeds it up.  I mean, CSS is parsed before the image, so it could potentially read that before it reads the inline definition for the image.   Also, I&#8217;m fairly sure that XHTML strict doesn&#8217;t allow any width/height or inline styles either, so using those elements basically means you&#8217;re forcing your clients to be in transitional or below when designing their sites.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jamie</title>
		<link>http://www.bravenewcode.com/2008/07/the-importance-of-dynamic-content/comment-page-1/#comment-1241</link>
		<dc:creator>Jamie</dc:creator>
		<pubDate>Fri, 25 Jul 2008 14:22:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.bravenewcode.com/?p=209#comment-1241</guid>
		<description>A prevalent line of thought about specifying width and height when using an  tag is that this allows the browser to parse the image faster; it knows how much space it needs to allocate in advance, rather than relying on a CSS declaration or examining the width of the image itself. As a web developer I do this, as do a lot of others I know.

Also, I was a bit puzzled by this: &quot;For example, let?s say you manually specify a width of 400px for an image. If one day you decide to change your theme post area to display 500px worth of content, suddenly all your images are too small. To fix the problem, you most likely have to go through and manually edit every IMG HTML tags to change the width.&quot;

I&#039;m not quite sure I understand what you&#039;re implying. If you change your theme post area to 500px instead of 400px, your images won&#039;t change size whether you specify the width or not. If the image is 400px it&#039;ll still be 400px. Are you talking about using CSS to stretch out of proportion in order to fit a container? If so then I humbly suggest that your results will probably look silly. If you change a container from 400px to 500px and the images within are 400px, if you want them to be bigger you&#039;ll still have to manipulate the images.</description>
		<content:encoded><![CDATA[<p>A prevalent line of thought about specifying width and height when using an  tag is that this allows the browser to parse the image faster; it knows how much space it needs to allocate in advance, rather than relying on a CSS declaration or examining the width of the image itself. As a web developer I do this, as do a lot of others I know.</p>
<p>Also, I was a bit puzzled by this: &#8220;For example, let?s say you manually specify a width of 400px for an image. If one day you decide to change your theme post area to display 500px worth of content, suddenly all your images are too small. To fix the problem, you most likely have to go through and manually edit every IMG HTML tags to change the width.&#8221;</p>
<p>I&#8217;m not quite sure I understand what you&#8217;re implying. If you change your theme post area to 500px instead of 400px, your images won&#8217;t change size whether you specify the width or not. If the image is 400px it&#8217;ll still be 400px. Are you talking about using CSS to stretch out of proportion in order to fit a container? If so then I humbly suggest that your results will probably look silly. If you change a container from 400px to 500px and the images within are 400px, if you want them to be bigger you&#8217;ll still have to manipulate the images.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
