<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>The Code Dojo &#187; Luke</title>
	<atom:link href="http://dojo.codegreene.com/author/luke/feed/" rel="self" type="application/rss+xml" />
	<link>http://dojo.codegreene.com</link>
	<description>The Code Dojo is the veritable repository of random musings from the development team at Code Greene.</description>
	<lastBuildDate>Fri, 20 Jan 2012 18:09:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CSS3 PIE and WordPress</title>
		<link>http://dojo.codegreene.com/2011/10/css3-pie-and-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=css3-pie-and-wordpress</link>
		<comments>http://dojo.codegreene.com/2011/10/css3-pie-and-wordpress/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 21:56:25 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CSS Pie]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[IE7 CSS3]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=735</guid>
		<description><![CDATA[We all love CSS3 and the things we can do with it. It is saddening when a client opens up the site you just coded and doesn&#8217;t see all the CSS3 goodness because they are using some version of IE. Frequently, CSS3 PIE has saved me from the client saying: &#8220;Why don&#8217;t the buttons have [...]]]></description>
			<content:encoded><![CDATA[<p>We all love CSS3 and the things we can do with it. It is saddening when a client opens up the site you just coded and doesn&#8217;t see all the CSS3 goodness because they are using some version of IE. Frequently, <a href="http://css3pie.com/" target="_blank">CSS3 PIE</a> has saved me from the client saying: &#8220;Why don&#8217;t the buttons have the rounded corners like your design?&#8221;</p>
<p>CSS3 PIE makes some CSS3 features work in IE6 &#8211; 9. It supports border-radius, box-shadow, and linear-gradient. It works great and is super easy to set up. Unless you use it in WordPress. After some Google searching, a fair amount of testing, and a lot of grumbling I got it working in a WordPress site. It is really simple. I hope that this will save others from some headache.</p>
<p>1. Put the PIE.htc file in the WP Root directory and then reference it in your css as &#8211; behavior: url(&#8220;PIE.htc&#8221;);<br />
2. All the elements that use CSS3 features will need either position: relative or position: block on them</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2011/10/css3-pie-and-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The ‘nth-child’ Pseudo-selector</title>
		<link>http://dojo.codegreene.com/2010/03/the-%e2%80%98nth-child%e2%80%99-pseudo-selector/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-%25e2%2580%2598nth-child%25e2%2580%2599-pseudo-selector</link>
		<comments>http://dojo.codegreene.com/2010/03/the-%e2%80%98nth-child%e2%80%99-pseudo-selector/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 16:00:08 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=503</guid>
		<description><![CDATA[As Front End Web Devs CSS is our biggest tool. CSS itself keeps getting better and better. We need to keep up on our tool to use it to its fullest. I&#8217;d like to talk about a pseudo-selector tool that I have not used much that I would like to embrace in upcoming projects. I [...]]]></description>
			<content:encoded><![CDATA[<p>As Front End Web Devs CSS is our biggest tool. CSS itself keeps getting better and better. We need to keep up on our tool to use it to its fullest. I&#8217;d like to talk about a pseudo-selector tool that I have not used much that I would like to embrace in upcoming projects. I find that it will be really valuable to me. I think the Backend Devs will like it to because I won&#8217;t have to come bug them as much if I can make proper use of this selector. It is the nth-child selector.</p>
<p><img class="alignright size-full wp-image-534" src="http://dojo.codegreene.com/wp-content/uploads/2010/03/nth-child.png" alt="nth-child" width="252" height="208" /></p>
<p>Lets say that a client decided they would like the background of every other &lt;li&gt; tag to be darker than the rest. This &lt;li&gt; is created dynamically. In the past I would have to go contact a Back End Dev and have him write some code to put a class on every other &lt;li&gt;. Then I would go style those with the new class. With the use of the nth-child pseudo selector I can do this with the CSS alone. Here&#8217;s how:</p>
<p><code>ul li:nth-child(2n+1) { background:#212121; } </code></p>
<p>The expression 2n+1 will match the first, third, fifth, seventh, and so on, elements if they exist. 2n+1 isn&#8217;t the only expression you can run. Here is a list of a few possibilities:</p>
<ul>
<li>4n+1 would select the first, fifth, ninth, thirteenth&#8230;</li>
<li>4n would select fourth, eighth, twelfth, sixteenth&#8230;</li>
<li>-n+5 would select fifth, fourth, third, second, first, none</li>
</ul>
<p>If this isn&#8217;t making perfect sense yet just run the math loop in your head and it will. Lets take the first example again. 2n+1</p>
<ul>
<li>2*0+1=1</li>
<li>2*1+1=3</li>
<li>2*2+1=5</li>
<li>2*3+1=7</li>
</ul>
<p>Before we go out and use this everywhere I should point out that IE doesn&#8217;t support this in any of its versions. The saving point to this though is that <a href="http://www.jquery.com">jQuery</a> does support all CSS selectors so if you are using <a href="http://www.jquery.com">jQuery</a> you should be fine. For examples of how the nth-child works with jQuery see <a href="http://api.jquery.com/nth-child-selector/">this page</a>. Happy Coding.</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2010/03/the-%e2%80%98nth-child%e2%80%99-pseudo-selector/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Updated GeekTool Weather Images</title>
		<link>http://dojo.codegreene.com/2009/12/updated-geektool-weather-images/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=updated-geektool-weather-images</link>
		<comments>http://dojo.codegreene.com/2009/12/updated-geektool-weather-images/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 16:35:12 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Geek Tool Scripts]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=372</guid>
		<description><![CDATA[The code in an older post that talks about GeekTool calls the weather images to your desktop through Yahoo. They recently changed the location of these images so the GeekTool code no longer works. If you take the url at the beginning of your GeekTool script and paste it into a browser it will redirect [...]]]></description>
			<content:encoded><![CDATA[<p>The code in an <a href="http://dojo.codegreene.com/2009/geektool-scripts/">older post</a> that talks about GeekTool calls the weather images to your desktop through Yahoo. They recently changed the location of these images so the GeekTool code no longer works. If you take the url at the beginning of your GeekTool script and paste it into a browser it will redirect you to the new url. Take that one and paste it back into GeekTool and it will be working again.</p>
<p>http://weather.yahoo.com/forecast/USUT0078.html</p>
<p>changes to</p>
<p>http://weather.yahoo.com/united-states/utah/farmington-2402466/</p>
<p>Sorry took so long to get this posted.</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2009/12/updated-geektool-weather-images/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Whirly Bin</title>
		<link>http://dojo.codegreene.com/2009/10/whirly-bin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=whirly-bin</link>
		<comments>http://dojo.codegreene.com/2009/10/whirly-bin/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 21:39:19 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[CakePHP]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Online Store]]></category>
		<category><![CDATA[PayPal Online Store]]></category>
		<category><![CDATA[Whirly Bin]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=353</guid>
		<description><![CDATA[We recently launched a small ecommerce site for Whirly Bin. They sell all sorts of stationary. They needed a super simple shopping cart. Instead of hooking in our custom cart in CakePHP we hooked it up to PayPal. Whirly Bin can add new products and upload photos and descriptions for those products through a simple [...]]]></description>
			<content:encoded><![CDATA[<p>We recently launched a small ecommerce site for <a href="http://whirlybin.com" target="_blank">Whirly Bin</a>. They sell all sorts of stationary. They needed a super simple shopping cart. Instead of hooking in our custom cart in <a href="http://cakephp.org/">CakePHP</a> we hooked it up to <a href="http://paypal.com">PayPal</a>. Whirly Bin can add new products and upload photos and descriptions for those products through a simple admin section we created with CakePHP. Whilry Bin was great to work with and we got the site designed, built, and up really quick. <a href="http://whirlybin.com" target="_blank">Check out</a> their site.</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2009/10/whirly-bin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GeekTool Scripts</title>
		<link>http://dojo.codegreene.com/2009/10/geektool-scripts/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=geektool-scripts</link>
		<comments>http://dojo.codegreene.com/2009/10/geektool-scripts/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 15:59:45 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=343</guid>
		<description><![CDATA[The code on this post has been updated. View here to get the latest. In my previous post I talked about what I have been doing to my desktop the last little while. I had quite a few email or IM me asking about how the GeekTool scripts I used. Just take these scripts and [...]]]></description>
			<content:encoded><![CDATA[<p>The code on this post has been updated. View<a href="http://dojo.codegreene.com/2009/updated-geektool-weather-images/"> here</a> to get the latest.</p>
<p>In my previous post I talked about what I have been doing to my desktop the last little while. I had quite a few email or IM me asking about how the GeekTool scripts I used. Just take these scripts and copy the lines you want into the command area of a Geeklet. Most of these were written by Mac Newbold. Enjoy!</p>
<p style="margin-bottom: 0; font-weight: bold;">CPU Usage</p>
<blockquote><p><code>top -n1 -l1 | grep "Load Avg" | sed 's/.*usage: //; s/ user.*//;'<br />
top -n1 -l1 | grep "Load Avg" | sed 's/.*user, //; s/ sys.*//;'<br />
top -n1 -l1 | grep "Load Avg" | sed 's/.*sys, //; s/ idle.*//;'<br />
</code></p></blockquote>
<p style="padding-top: 10px; margin-bottom: 0; font-weight: bold;">Memory</p>
<blockquote><p><code>top -n 1 -l 1 | grep PhysMem | sed 's/.* inactive, //; s/ used.*//;'<br />
top -n 1 -l 1 | grep PhysMem | sed 's/.* used, //; s/ free.*//;'<br />
</code></p></blockquote>
<p style="padding-top: 10px; margin-bottom: 0; font-weight: bold;">Month</p>
<blockquote><p><code>date +%B</code></p></blockquote>
<p style="padding-top: 10px; margin-bottom: 0; font-weight: bold;">Date</p>
<blockquote><p><code>date +%d</code></p></blockquote>
<p style="padding-top: 10px; margin-bottom: 0; font-weight: bold;">Day</p>
<blockquote><p><code>date +%A</code></p></blockquote>
<p style="padding-top: 10px; margin-bottom: 0; font-weight: bold;">Time</p>
<blockquote><p><code>date +%I:%M</code></p></blockquote>
<p style="padding-top: 10px; margin-bottom: 0; font-weight: bold;">AM / PM</p>
<blockquote><p><code>date +%p</code></p></blockquote>
<p style="padding-top: 10px; margin-bottom: 0; font-weight: bold;">Weather</p>
<blockquote><p><code>curl --silent "http://xml.weather.yahoo.com/forecastrss?p=USUT0078&amp;u=f" | grep -E '(Current Conditions:|F&lt;BR)' | sed -e 's/Current Conditions://' -e 's/&lt;br \/&gt;//' -e 's/&lt;b&gt;//' -e 's/&lt;\/b&gt;//' -e 's/&lt;BR \/&gt;//' -e 's/&lt;description&gt;//' -e 's/&lt;\/description&gt;//'</code></p></blockquote>
<p>Look for the &#8216;UT0078&#8242; here and replace it with the city code you want to display. Get the city code by going to <a href="http://weather.yahoo.com" target="blank">Yahoo Weather</a> and searching for your city. Once found look in the url and you will see your city code at the end of the url.</p>
<p style="padding-top: 10px; margin-bottom: 0; font-weight: bold;">Weather Image</p>
<p>Create a new Shell Geeklet and use this as the command:</p>
<blockquote><p><code>curl --silent "http://weather.yahoo.com/forecast/USUT0078.html" | grep "forecast-icon" | sed "s/.*background\:url(\'\(.*\)\')\;\ _background.*/\1/" | xargs curl --silent -o /tmp/weather1.png\</code></p></blockquote>
<p>Replace the city code with your city code. ( same steps to get city code as above )</p>
<p>Then create a new Image Geeklet and use this as the url:</p>
<blockquote><p><code>file:///tmp/weather1.png</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2009/10/geektool-scripts/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Dockless Desktop</title>
		<link>http://dojo.codegreene.com/2009/10/dockless-desktop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dockless-desktop</link>
		<comments>http://dojo.codegreene.com/2009/10/dockless-desktop/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 15:51:52 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=338</guid>
		<description><![CDATA[So for a few weeks now I have been playing around with a themed desktop for my mac. I have always wanted to try something like this out just never had the guts or time. I have found that it isn&#8217;t scary at all and rather quick to get going. There are some free tools [...]]]></description>
			<content:encoded><![CDATA[<p>So for a few weeks now I have been playing around with a themed desktop for my mac. I have always wanted to try something like this out just never had the guts or time. I have found that it isn&#8217;t scary at all and rather quick to get going. There are some free tools I have used and some nice things I have learned along the way.<a target="_blank" href="http://skitch.com/lukelarsen/nbjrp/desktop1"><img src="http://lukelarsen.com/articles/wp-content/uploads/2009/10/desktop1.jpg" alt="desktop1" width="450" height="281" class="alignnone size-full wp-image-119" /></a></p>
<p>Not having a dock at all has taken some getting used to. I use Quicksilver for just about everything now. I do have a pull down docklike thing at the top middle in case I ever need it. Here is a list of tools I have used to create my new desktop.</p>
<p><a target="_blank" href="http://www.panic.com/candybar/">CandyBar</a> &#8211; Change all the folders icons and HD icons.<br />
<a target="_blank" href="http://magnifique.pcwizcomputer.com/">Magnifique</a> &#8211; Change the folder and App nav areas to black<br />
<a target="_blank" href="http://projects.tynsoe.org/en/geektool/">GeekTool</a> &#8211; Add time, weather, and computer status to the desktop.</p>
<p>GeekTool was by far the most fun. You can do much more with it than what I have done here. If you come up with something good for you I&#8217;d love to see it.</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2009/10/dockless-desktop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Screen Sharing with CrossLoop</title>
		<link>http://dojo.codegreene.com/2009/05/screen-sharing-with-crossloop/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=screen-sharing-with-crossloop</link>
		<comments>http://dojo.codegreene.com/2009/05/screen-sharing-with-crossloop/#comments</comments>
		<pubDate>Thu, 07 May 2009 15:48:41 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=278</guid>
		<description><![CDATA[I have needed a screen sharing service multiple times and I have never had a really easy way to do it. I have shared screens with clients that use Macs with iChat but more often than not the person I want to screen share with isn&#8217;t on a Mac. CrossLoop is super easy and lets [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://crossloop.com" target="_blank"><img src="http://lukelarsen.com/articles/wp-content/uploads/2009/05/crossloop.png" alt="crossloop" width="304" height="89" class="alignleft size-full wp-image-93" /></a>I have needed a screen sharing service multiple times and I have never had a really easy way to do it. I have shared screens with clients that use Macs with iChat but more often than not the person I want to screen share with isn&#8217;t on a Mac. <a href="http://crossloop.com" target="_blank">CrossLoop</a> is super easy and lets you screen share with any Mac or PC. If you ever need to screen share use <a href="http://crossloop.com" target="_blank">CrossLoop.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2009/05/screen-sharing-with-crossloop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music for Coding #2</title>
		<link>http://dojo.codegreene.com/2009/04/music-for-coding-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=music-for-coding-2</link>
		<comments>http://dojo.codegreene.com/2009/04/music-for-coding-2/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 22:52:27 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Coding Music]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=242</guid>
		<description><![CDATA[It has been a while since our first Music for Coding post. I have been going through a mellow music stage and thought I would put a plug in for El Ten Eleven. My favorite album is Ten Eleven. They have some great guitar! I love the overall mood that they create when I am [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.last.fm/music/El+Ten+Eleven"><img src="http://dojo.codegreene.com/wp-content/uploads/2009/04/etecover.jpg" alt="etecover" width="271" height="271" class="alignleft size-full wp-image-244" /></a>It has been a while since our first Music for Coding post. I have been going through a mellow music stage and thought I would put a plug in for El Ten Eleven. My favorite album is Ten Eleven. They have some great guitar! I love the overall mood that they create when I am coding. <a href="http://www.last.fm/music/El+Ten+Eleven">Listen to El Ten Eleven</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2009/04/music-for-coding-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>We launched the IMWNSDO site</title>
		<link>http://dojo.codegreene.com/2009/03/we-launched-the-imwnsdo-site/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=we-launched-the-imwnsdo-site</link>
		<comments>http://dojo.codegreene.com/2009/03/we-launched-the-imwnsdo-site/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 17:32:40 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=224</guid>
		<description><![CDATA[Yea I know, that&#8217;s a long chunk of capital letters in the title. It stands for Intermountain West Nursing Staff Development Organization. They are a group of nurses that needed to be able to post news and events on their site. They host educational events for developing a well trained staff of nurses. They had [...]]]></description>
			<content:encoded><![CDATA[<p>Yea I know, that&#8217;s a long chunk of capital letters in the title. It stands for <a href="http://www.imwnsdo.com" target="_blank">Intermountain West Nursing Staff Development Organization.</a> They are a group of nurses that needed to be able to post news and events on their site. They host educational events for developing a well trained staff of nurses. They had a small site but it was still very fun to code. Let us know what you think.<br />
<div id="attachment_227" class="wp-caption alignnone" style="width: 518px"><a target="_blank" href="http://imwnsdo.com"><img src="http://dojo.codegreene.com/wp-content/uploads/2009/03/imw.jpg" alt="Screenshot of the IMWNSDO website" width="506" height="390" class="size-full wp-image-227" /></a><p class="wp-caption-text">Screenshot of the IMWNSDO website</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2009/03/we-launched-the-imwnsdo-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will IE8 be the last IE?</title>
		<link>http://dojo.codegreene.com/2009/03/will-ie8-be-the-last-ie/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=will-ie8-be-the-last-ie</link>
		<comments>http://dojo.codegreene.com/2009/03/will-ie8-be-the-last-ie/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 21:39:32 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Browsers]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=188</guid>
		<description><![CDATA[On the train ride home Friday Kevin Carter and I were talking and complaining about good ol Microsoft. We talked how it would be great if Microsoft just quit making a browser. The next day he sent me this article. I was pretty surprised that what we were talking about on the train might become [...]]]></description>
			<content:encoded><![CDATA[<p>On the train ride home Friday <a href="http://www.dexterthedragon.com">Kevin Carter</a> and I were talking and complaining about good ol Microsoft. We talked how it would be great if Microsoft just quit making a browser. The next day he sent me <a href="http://weblog.infoworld.com/enterprisedesktop/archives/2009/03/is_version_8_th.html">this</a> article. I was pretty surprised that what we were talking about on the train might become partly true. Infoworld mentions that it is quite possible that IE8 will be the last IE. That doesn&#8217;t mean that Microsoft will quit making a browser. They will just create a new browser not running on the IE engine. That would be awesome to not have the IE engine around anymore. Anyways check out <a href="http://weblog.infoworld.com/enterprisedesktop/archives/2009/03/is_version_8_th.html">the article</a> for yourself and let us know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2009/03/will-ie8-be-the-last-ie/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

