<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Kempwire.com</title>
	
	<link>http://kempwire.com</link>
	<description>By Jonathan Kemp</description>
	<lastBuildDate>Mon, 02 Apr 2012 04:19:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Kempwire" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="kempwire" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Cross Browser CSS Calc()</title>
		<link>http://kempwire.com/css/cross-browser-css-calc.html</link>
		<comments>http://kempwire.com/css/cross-browser-css-calc.html#comments</comments>
		<pubDate>Mon, 02 Apr 2012 04:08:30 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=437</guid>
		<description><![CDATA[This post on CSS calc() on HTML5Rocks got me thinking about how I could use calc() and have it work cross browser. Calc() will be a valuable feature in CSS3 once it is supported. The biggest thing it allows you &#8230; <a href="http://kempwire.com/css/cross-browser-css-calc.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This post on <a href="http://updates.html5rocks.com/2012/03/CSS-layout-gets-smarter-with-calc">CSS calc() on HTML5Rocks</a> got me thinking about how I could use calc() and have it work cross browser. Calc() will be a valuable feature in CSS3 once it is supported. The biggest thing it allows you to do is mix percentage and absolute values as well as mix sizing units.</p>
<p>The biggest problem with calc() right now is that it is not well supported. Firefox supports it with the &#8216;-moz-&#8217; prefix, and Chrome will add support in version 19 with the &#8216;-webkit-&#8217; prefix. IE9 has support for it, un-prefixed. Because of the vendor prefixes, I&#8217;m guessing for now, cross browser syntax would look something like this.</p>
<p><code>#foo {<br />
width: 200px;<br />
width: -webkit-calc(50% - 100px);<br />
width: -moz-calc(50% - 100px);<br />
width: calc(50% - 100px);<br />
}</code></p>
<p>In the above example, I provided a fallback for older browsers first, followed by the 2 vendor prefixed versions and finally the un-prefixed version. See the <a href="https://gist.github.com/2280688">gist here</a>.</p>
<p>While thinking about using calc(), I wondered if Modernizr had a test for it. I was sure it must but discovered that it did not. While it looked like someone tried to add a test, it was missed. So I contacted Paul Irish and asked him about it, and <a href="https://github.com/Modernizr/Modernizr/pull/264">he worked with the original developer</a> to <a href="https://github.com/Modernizr/Modernizr/pull/542">add the test</a>. You can now run the test in Modernizr to see if it is supported and write different CSS rules based on that. But you still need to provide and fallback and use the vendor prefixes.</p>
<p>It also got me wondering about how calc() would work in a language like Sass. I&#8217;m assuming you would just write it out and it would work, but since Sass has it&#8217;s own method for doing calculations, it&#8217;s worth exercising caution.</p>
<p>I can&#8217;t wait until we are able to use calc() to calculate values in CSS. It&#8217;s the first step to being able to use something like Sass in the browser. But until it is well supported, it requires you to write multiple rules. If you are opposed to that, you should stick with Sass or Less which do the calculations and conversion for you.</p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=437&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=7pT4k7Z89Xw:hQegH_XNnQo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=7pT4k7Z89Xw:hQegH_XNnQo:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=7pT4k7Z89Xw:hQegH_XNnQo:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=7pT4k7Z89Xw:hQegH_XNnQo:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=7pT4k7Z89Xw:hQegH_XNnQo:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/css/cross-browser-css-calc.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Dropping Support for 3.6</title>
		<link>http://kempwire.com/firefox/firefox-dropping-support-for-3-6.html</link>
		<comments>http://kempwire.com/firefox/firefox-dropping-support-for-3-6.html#comments</comments>
		<pubDate>Mon, 26 Mar 2012 14:37:49 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=434</guid>
		<description><![CDATA[Firefox is forward thinking. After two years of regular updates, we’ll end our support for Firefox 3.6 on April 24th. In the years since Firefox 3.6, we’ve make incredible improvements to Firefox, including phenomenal HTML5 capabilities, Firefox Sync, faster JavaScript &#8230; <a href="http://kempwire.com/firefox/firefox-dropping-support-for-3-6.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Firefox is forward thinking.</p>
<blockquote><p>After two years of regular updates, we’ll end our support for Firefox 3.6 on April 24th. In the years since Firefox 3.6, we’ve make incredible improvements to Firefox, including phenomenal HTML5 capabilities, Firefox Sync, faster JavaScript performance, support for the Do Not Track header, and an easier, quieter update process. Barring any major stability or security issues found over the next few weeks, Firefox 3.6.28 will be our last 3.6 release.</p></blockquote>
<p>Firefox 3.6 was released on January 21, 2010. They also announced that the minimum supported Windows version will change to Windows XP SP2 in Firefox 13.</p>
<p>via <a href="http://blog.mozilla.com/futurereleases/2012/03/23/upcoming-firefox-support-changes/">Upcoming Firefox Support Changes | Future Releases</a>.</p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=434&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=xflAYEl0ipE:Ic_1aKA1h1Q:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=xflAYEl0ipE:Ic_1aKA1h1Q:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=xflAYEl0ipE:Ic_1aKA1h1Q:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=xflAYEl0ipE:Ic_1aKA1h1Q:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=xflAYEl0ipE:Ic_1aKA1h1Q:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/firefox/firefox-dropping-support-for-3-6.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sass Makes Responsive Design Easier</title>
		<link>http://kempwire.com/css/sass-makes-responsive-design-easier.html</link>
		<comments>http://kempwire.com/css/sass-makes-responsive-design-easier.html#comments</comments>
		<pubDate>Thu, 22 Mar 2012 03:52:07 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=432</guid>
		<description><![CDATA[If you are familiar with concept of Responsive Web Design, you should also understand fluid layouts. Sass, the CSS pre-processing language, has a few features to assist you with calculating values for fluid layouts. This tutorial shows you how to &#8230; <a href="http://kempwire.com/css/sass-makes-responsive-design-easier.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are familiar with concept of Responsive Web Design, you should also understand fluid layouts. Sass, the CSS pre-processing language, has a few features to assist you with calculating values for fluid layouts.</p>
<p>This tutorial shows you how to calculate percentages with the percentage function in Sass and also how to write a custom function in Sass to convert pixel values to ems.</p>
<p><a href="http://thesassway.com/intermediate/responsive-web-design-part-1">Responsive Web Design in Sass Part 1: Fluid Layouts and Fluid Images &#8211; Intermediate</a>.</p>
<p>You should be using Sass already because it supports variables, functions and nesting. But if you&#8217;ve been holding out for some reason, now you have another reason to use it. This is the future of CSS.</p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=432&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=ccq50CJxeuU:93HcBUzp9Ms:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=ccq50CJxeuU:93HcBUzp9Ms:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=ccq50CJxeuU:93HcBUzp9Ms:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=ccq50CJxeuU:93HcBUzp9Ms:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=ccq50CJxeuU:93HcBUzp9Ms:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/css/sass-makes-responsive-design-easier.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Commits to Supporting H.264</title>
		<link>http://kempwire.com/firefox/firefox-commits-to-supporting-h-264.html</link>
		<comments>http://kempwire.com/firefox/firefox-commits-to-supporting-h-264.html#comments</comments>
		<pubDate>Thu, 22 Mar 2012 03:37:23 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=430</guid>
		<description><![CDATA[Mozilla finally came to their senses and realized if they want Firefox to be relevant it has to be on mobile phones, and it has to support H.264 video. What I do know for certain is this: H.264 is absolutely &#8230; <a href="http://kempwire.com/firefox/firefox-commits-to-supporting-h-264.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mozilla finally came to their senses and realized if they want Firefox to be relevant it has to be on mobile phones, and it has to support H.264 video.</p>
<blockquote><p>What I do know for certain is this: H.264 is absolutely required right now to compete on mobile. I do not believe that we can reject H.264 content in Firefox on Android or in B2G and survive the shift to mobile.</p></blockquote>
<p>via <a href="http://hacks.mozilla.org/2012/03/video-mobile-and-the-open-web/">Video, Mobile, and the Open Web ? Mozilla Hacks – the Web developer blog</a>.</p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=430&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=B9JmNc1qtwA:a42ClLFNTLM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=B9JmNc1qtwA:a42ClLFNTLM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=B9JmNc1qtwA:a42ClLFNTLM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=B9JmNc1qtwA:a42ClLFNTLM:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=B9JmNc1qtwA:a42ClLFNTLM:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/firefox/firefox-commits-to-supporting-h-264.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time to start using JavaScript strict mode</title>
		<link>http://kempwire.com/javascript/time-to-start-using-javascript-strict-mode.html</link>
		<comments>http://kempwire.com/javascript/time-to-start-using-javascript-strict-mode.html#comments</comments>
		<pubDate>Sat, 17 Mar 2012 02:23:58 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=427</guid>
		<description><![CDATA[ECMAScript 5 introduced &#8220;strict mode&#8221; to JavaScript. Nicholas Zakas makes the argument that strict mode has many benefits and has enough browser support now that JavaScript developers should make the effort to start using it everywhere. via It’s time to &#8230; <a href="http://kempwire.com/javascript/time-to-start-using-javascript-strict-mode.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>ECMAScript 5 introduced &#8220;strict mode&#8221; to JavaScript. Nicholas Zakas makes the argument that strict mode has many benefits and has enough browser support now that JavaScript developers should make the effort to start using it everywhere.</p>
<p>via <a href="http://www.nczonline.net/blog/2012/03/13/its-time-to-start-using-javascript-strict-mode/">It’s time to start using JavaScript strict mode | NCZOnline</a>.</p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=427&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=OoPKupLOmCg:LTc6fpxgZa4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=OoPKupLOmCg:LTc6fpxgZa4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=OoPKupLOmCg:LTc6fpxgZa4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=OoPKupLOmCg:LTc6fpxgZa4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=OoPKupLOmCg:LTc6fpxgZa4:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/javascript/time-to-start-using-javascript-strict-mode.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>0to255</title>
		<link>http://kempwire.com/tools/0to255.html</link>
		<comments>http://kempwire.com/tools/0to255.html#comments</comments>
		<pubDate>Fri, 16 Mar 2012 17:17:37 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=425</guid>
		<description><![CDATA[0to255 is a simple tool that helps web designers find variations of any color. via 0to255.]]></description>
			<content:encoded><![CDATA[<p>0to255 is a simple tool that helps web designers find variations of any color.</p>
<p>via <a href="http://0to255.com/">0to255</a>.</p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=425&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=dhmxGDJxK0M:urDGSHamE-w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=dhmxGDJxK0M:urDGSHamE-w:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=dhmxGDJxK0M:urDGSHamE-w:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=dhmxGDJxK0M:urDGSHamE-w:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=dhmxGDJxK0M:urDGSHamE-w:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/tools/0to255.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 11 Release Notes</title>
		<link>http://kempwire.com/browsers/firefox-11-release-notes.html</link>
		<comments>http://kempwire.com/browsers/firefox-11-release-notes.html#comments</comments>
		<pubDate>Thu, 15 Mar 2012 13:53:48 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=422</guid>
		<description><![CDATA[Firefox 11 was released on March 13, 2012. Firefox 11 Release Notes &#8211; Desktop]]></description>
			<content:encoded><![CDATA[<p>Firefox 11 was released on March 13, 2012.</p>
<p><a href="http://www.mozilla.org/en-US/firefox/11.0/releasenotes/">Firefox 11 Release Notes &#8211; Desktop</a></p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=422&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=KBELYMyMQr8:WAusHkbYIV0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=KBELYMyMQr8:WAusHkbYIV0:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=KBELYMyMQr8:WAusHkbYIV0:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=KBELYMyMQr8:WAusHkbYIV0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=KBELYMyMQr8:WAusHkbYIV0:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/browsers/firefox-11-release-notes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>W3Fools – A W3Schools Intervention</title>
		<link>http://kempwire.com/standards/w3fools-a-w3schools-intervention.html</link>
		<comments>http://kempwire.com/standards/w3fools-a-w3schools-intervention.html#comments</comments>
		<pubDate>Tue, 22 Mar 2011 13:11:28 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[Standards]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=400</guid>
		<description><![CDATA[A very interesting resource I came across last night, We hope we can illuminate why W3Schools is a troublesome resource, why their faulty information is a detriment to the web, and what you (and they) can do about it. http://w3fools.com/ &#8230; <a href="http://kempwire.com/standards/w3fools-a-w3schools-intervention.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A very interesting resource I came across last night,</p>
<blockquote><p>We hope we can illuminate why W3Schools is a troublesome resource, why their faulty information is a detriment to the web, and what you (and they) can do about it.</p></blockquote>
<p><a href="http://w3fools.com/">http://w3fools.com/</a></p>
<p>I admit that I have used W3Schools a lot as a resource for JavaScript, but I also know that the info is a bit dated and plain wrong in many cases. But someone just starting out may not know that. This site along with <a href="http://promotejs.com/">Promote JS</a> is designed to dislodge sites like W3Schools from their rankings in Google and promote more up to date and accurate resources.</p>
<p>One tip…</p>
<blockquote><p>To filter out w3schools from your searches, add -w3schools. Meanwhile, to get results from the Mozilla Docs Center, just prepend mdc.</p></blockquote>
<p>Google might even take notice of behavior like that and demote these sites in the rankings.</p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=400&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=zf59x_SE9HM:xAaOqjr0yVQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=zf59x_SE9HM:xAaOqjr0yVQ:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=zf59x_SE9HM:xAaOqjr0yVQ:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=zf59x_SE9HM:xAaOqjr0yVQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=zf59x_SE9HM:xAaOqjr0yVQ:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/standards/w3fools-a-w3schools-intervention.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Proposes Releasing Every Six Weeks</title>
		<link>http://kempwire.com/browsers/firefox-proposes-releasing-every-six-weeks.html</link>
		<comments>http://kempwire.com/browsers/firefox-proposes-releasing-every-six-weeks.html#comments</comments>
		<pubDate>Sun, 20 Mar 2011 01:54:23 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=397</guid>
		<description><![CDATA[Read the proposal here. I predicted this here. This is obviously a response to Google Chrome releasing a new version every six weeks. Chrome is eating Firefox&#8217;s lunch. Maybe not in overall marketshare, but Chrome is definitely faster. In the &#8230; <a href="http://kempwire.com/browsers/firefox-proposes-releasing-every-six-weeks.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://people.mozilla.com/~sayrer/2011/temp/process.html">Read the proposal here.</a></p>
<p><a href="http://kempwire.com/modern-browser-development-timeline">I predicted this here.</a></p>
<p>This is obviously a response to Google Chrome releasing a new version every six weeks. Chrome is eating Firefox&#8217;s lunch. Maybe not in overall marketshare, but Chrome is definitely faster. In the browser market, faster is better. People are noticing this.</p>
<p>Also, developers are shifting to Chrome, and I would argue that developers were a big force in pushing adoption of Firefox. Chrome is helping itself in this area by having native dev tools and focusing on improving those tools.</p>
<p>Firefox 4 was in development for over a year with the <a href="http://www.techspot.com/news/42868-mozilla-schedules-firefox-40-for-march-22.html">release date slipping multiple times</a>. Firefox could simply not continue on it&#8217;s current path and stay relevant in the current market.</p>
<p>Firefox 4 is set to be released on March 22, 2011. Versions 5, 6 and 7 are also currently planned for release in 2011.</p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=397&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=5tIK78P7XWI:eY9RzUCMh9o:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=5tIK78P7XWI:eY9RzUCMh9o:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=5tIK78P7XWI:eY9RzUCMh9o:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=5tIK78P7XWI:eY9RzUCMh9o:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=5tIK78P7XWI:eY9RzUCMh9o:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/browsers/firefox-proposes-releasing-every-six-weeks.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Support</title>
		<link>http://kempwire.com/browsers/browser-support.html</link>
		<comments>http://kempwire.com/browsers/browser-support.html#comments</comments>
		<pubDate>Sat, 11 Dec 2010 04:43:26 +0000</pubDate>
		<dc:creator>Jonathan Kemp</dc:creator>
				<category><![CDATA[Browsers]]></category>

		<guid isPermaLink="false">http://kempwire.com/?p=389</guid>
		<description><![CDATA[I recently put together a timeline of release dates for the major browser versions because I needed a quick reference to help with browser support. The goal of this is to show how long each browser version has been around &#8230; <a href="http://kempwire.com/browsers/browser-support.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently put together a timeline of release dates for the major browser versions because I needed a quick reference to help with browser support. The goal of this is to show how long each browser  version has been around to help us make more informed decisions when deciding which browser  versions to support.</p>
<p><a href="http://kempwire.com/modern-browser-development-timeline">Modern Browser Development Timeline</a></p>
<img src="http://kempwire.com/?ak_action=api_record_view&id=389&type=feed" alt="" /><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Kempwire?a=QfvMagIaul8:4BY4ylYNyyg:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=QfvMagIaul8:4BY4ylYNyyg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/Kempwire?i=QfvMagIaul8:4BY4ylYNyyg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=QfvMagIaul8:4BY4ylYNyyg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Kempwire?a=QfvMagIaul8:4BY4ylYNyyg:I9og5sOYxJI"><img src="http://feeds.feedburner.com/~ff/Kempwire?d=I9og5sOYxJI" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://kempwire.com/browsers/browser-support.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

