<?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>media&#124;extranet &#187; Life</title>
	<atom:link href="http://www.mediaextra.net/category/life/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mediaextra.net</link>
	<description>campaign, connect and conquor</description>
	<lastBuildDate>Thu, 04 Mar 2010 05:23:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tips on Local Development</title>
		<link>http://www.mediaextra.net/2010/workflow/tips-on-local-development/</link>
		<comments>http://www.mediaextra.net/2010/workflow/tips-on-local-development/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 05:53:36 +0000</pubDate>
		<dc:creator>Jack Keller</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/?p=57</guid>
		<description><![CDATA[Okay, so I've posted before about MAMP, XAMPP and the alternatives but now I'm going to dig a bit deeper into tricks and tips. Bear in mind that I'm writing this on how I do my development and your software choices and the like may be somewhat different than mine.
Localhost: 	XAMPP
Language:		PHP
Database:		Sequel Pro
Editor:		Coda
OS:			Snow Leopard
I usually set [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, so I've posted before about MAMP, XAMPP and the alternatives but now I'm going to dig a bit deeper into tricks and tips. Bear in mind that I'm writing this on how I do my development and your software choices and the like may be somewhat different than mine.</p>
<p>Localhost: 	<a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a><br />
Language:		<a href="http://www.php.net/">PHP</a><br />
Database:		<a href="http://www.sequelpro.com/">Sequel Pro</a><br />
Editor:		<a href="http://panic.com/coda/">Coda</a><br />
OS:			<a href="http://www.apple.com/macosx/">Snow Leopard</a></p>
<p>I usually set up my sites in the Default <strong>~/Sites</strong> folder on my Mac, just to keep things in one area mainly and for this demo we'll be using stardup.com (a domain I own and have never really done anything with due to time restraints).</p>
<p>I found this tutorial online a while back by <a href="http://www.acwolf.com/2009/02/24/xampp-virtual-hosts-on-a-mac/">Arron Wolf</a> and it was a really good way to keep my logical file structure instead of duping directories back and forth from XAMPP's native htdocs folder. This is not super intense a process even though some people may shy away from Command Line. Follow along with the instructions on that site if you want to get it set up for your latest project. Go ahead, I'll wait…</p>
<p>…Okay great, you're back! Now let's begin with one really dead easy trick to keep your configuration files working on both sides, without having to change them every time you commit many site changes.</p>
<div class="igBar"><span id="lphp-3"><a href="#" onclick="javascript:showPlainTxt('php-3'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-3">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#616100;">if</span> <span style="color:#006600; font-weight:bold;">(</span><span style="color:#0000FF;">$_SERVER</span><span style="color:#006600; font-weight:bold;">[</span><span style="color:#FF0000;">"REMOTE_ADDR"</span><span style="color:#006600; font-weight:bold;">]</span> == <span style="color:#FF0000;">"127.0.0.1"</span><span style="color:#006600; font-weight:bold;">)</span> <span style="color:#006600; font-weight:bold;">{</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">    <span style="color:#0000FF;">$l</span> = <a href="http://www.php.net/mysql_connect"><span style="color:#000066;">mysql_connect</span></a> <span style="color:#006600; font-weight:bold;">(</span> <span style="color:#FF0000;">"localhost"</span> , <span style="color:#FF0000;">"root"</span> , <span style="color:#FF0000;">""</span> <span style="color:#006600; font-weight:bold;">)</span> or <a href="http://www.php.net/die"><span style="color:#000066;">die</span></a><span style="color:#006600; font-weight:bold;">(</span><span style="color:#FF0000;">"Error connecting: &lt;br /&gt;&lt;br /&gt;"</span>.<a href="http://www.php.net/mysql_error"><span style="color:#000066;">mysql_error</span></a><span style="color:#006600; font-weight:bold;">(</span><span style="color:#006600; font-weight:bold;">)</span><span style="color:#006600; font-weight:bold;">)</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">    <a href="http://www.php.net/mysql_select_db"><span style="color:#000066;">mysql_select_db</span></a><span style="color:#006600; font-weight:bold;">(</span> <span style="color:#FF0000;">"stardup"</span> <span style="color:#006600; font-weight:bold;">)</span> or <a href="http://www.php.net/die"><span style="color:#000066;">die</span></a><span style="color:#006600; font-weight:bold;">(</span><span style="color:#FF0000;">"Error getting db: &lt;br /&gt;&lt;br /&gt;"</span>.<a href="http://www.php.net/mysql_error"><span style="color:#000066;">mysql_error</span></a><span style="color:#006600; font-weight:bold;">(</span><span style="color:#006600; font-weight:bold;">)</span><span style="color:#006600; font-weight:bold;">)</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">    </div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">    <span style="color:#0000FF;">$siteurl</span> = <span style="color:#FF0000;">"http://stardup.dev/"</span>; <span style="color:#FF9933; font-style:italic;">// WITH TRAILING SLASH!</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> </div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">}</span> <span style="color:#616100;">else</span> <span style="color:#006600; font-weight:bold;">{</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> </div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">    <span style="color:#0000FF;">$l</span> = <a href="http://www.php.net/mysql_connect"><span style="color:#000066;">mysql_connect</span></a> <span style="color:#006600; font-weight:bold;">(</span> <span style="color:#FF0000;">"localhost"</span> , <span style="color:#FF0000;">"stardup_user"</span> , <span style="color:#FF0000;">"**********"</span> <span style="color:#006600; font-weight:bold;">)</span> or <a href="http://www.php.net/die"><span style="color:#000066;">die</span></a><span style="color:#006600; font-weight:bold;">(</span><span style="color:#FF0000;">"Error connecting: &lt;br /&gt;&lt;br /&gt;"</span>.<a href="http://www.php.net/mysql_error"><span style="color:#000066;">mysql_error</span></a><span style="color:#006600; font-weight:bold;">(</span><span style="color:#006600; font-weight:bold;">)</span><span style="color:#006600; font-weight:bold;">)</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">    <a href="http://www.php.net/mysql_select_db"><span style="color:#000066;">mysql_select_db</span></a><span style="color:#006600; font-weight:bold;">(</span> <span style="color:#FF0000;">"stardup"</span> <span style="color:#006600; font-weight:bold;">)</span> or <a href="http://www.php.net/die"><span style="color:#000066;">die</span></a><span style="color:#006600; font-weight:bold;">(</span><span style="color:#FF0000;">"Error getting db: &lt;br /&gt;&lt;br /&gt;"</span>.<a href="http://www.php.net/mysql_error"><span style="color:#000066;">mysql_error</span></a><span style="color:#006600; font-weight:bold;">(</span><span style="color:#006600; font-weight:bold;">)</span><span style="color:#006600; font-weight:bold;">)</span>;</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"> </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">    <span style="color:#0000FF;">$siteurl</span> = <span style="color:#FF0000;">"http://stardup.com/"</span>; <span style="color:#FF9933; font-style:italic;">// WITH TRAILING SLASH!</span></div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">}</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>This can be done in any other programming language, however the if/else syntax changes a bit. I've also begun taking this a little further, including other bits in my code like $header and $footer stuff that will help me visually determine which one I may be looking at (as I'm often too lazy to look at the address bar).</p>
<p>So my next tip is related to running a lightweight version of XAMPP (because you really don't need all of the features for local development). I write a very simple Applescript that launches XAMPP with options, and then placed it in my System Preferences &gt; Accounts &gt; My Account &gt; Login Items</p>
<div class="igBar"><span id="lcode-4"><a href="#" onclick="javascript:showPlainTxt('code-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-4">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#444444;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">do shell script <span style="color:#CC0000;">"/Applications/XAMPP/xamppfiles/xampp startapache"</span> user name <span style="color:#CC0000;">"yourname"</span> password <span style="color:#CC0000;">"yourpassword"</span> with administrator privileges</div>
</li>
<li style="font-weight: bold;color:#D7D7D7;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">do shell script <span style="color:#CC0000;">"/Applications/XAMPP/xamppfiles/xampp startmysql"</span> user name <span style="color:#CC0000;">"yourname"</span> password <span style="color:#CC0000;">"yourpassword"</span> with administrator privileges </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Now I know a lot of the more hardcore programmers are probably wondering why I have to do the username/pass with administrator privileges twice, the answer is because I know only as much Applescript as I need to, and nothing more.</p>

<div class="sociable">
<div class="sociable_tagline">
Share?
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mediaextra.net%2F2010%2Fworkflow%2Ftips-on-local-development%2F&amp;t=Tips%20on%20Local%20Development" title="Facebook"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Fwww.mediaextra.net%2F2010%2Fworkflow%2Ftips-on-local-development%2F&amp;title=Tips%20on%20Local%20Development" title="Design Float"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/designfloat.png" title="Design Float" alt="Design Float" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.mediaextra.net%2F2010%2Fworkflow%2Ftips-on-local-development%2F&amp;title=Tips%20on%20Local%20Development&amp;notes=Okay%2C%20so%20I%27ve%20posted%20before%20about%20MAMP%2C%20XAMPP%20and%20the%20alternatives%20but%20now%20I%27m%20going%20to%20dig%20a%20bit%20deeper%20into%20tricks%20and%20tips.%20Bear%20in%20mind%20that%20I%27m%20writing%20this%20on%20how%20I%20do%20my%20development%20and%20your%20software%20choices%20and%20the%20like%20may%20be%20somewhat%20differ" title="del.icio.us"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mediaextra.net%2F2010%2Fworkflow%2Ftips-on-local-development%2F&amp;title=Tips%20on%20Local%20Development" title="StumbleUpon"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mediaextra.net%2F2010%2Fworkflow%2Ftips-on-local-development%2F" title="Technorati"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mediaextra.net%2F2010%2Fworkflow%2Ftips-on-local-development%2F&amp;title=Tips%20on%20Local%20Development&amp;bodytext=Okay%2C%20so%20I%27ve%20posted%20before%20about%20MAMP%2C%20XAMPP%20and%20the%20alternatives%20but%20now%20I%27m%20going%20to%20dig%20a%20bit%20deeper%20into%20tricks%20and%20tips.%20Bear%20in%20mind%20that%20I%27m%20writing%20this%20on%20how%20I%20do%20my%20development%20and%20your%20software%20choices%20and%20the%20like%20may%20be%20somewhat%20differ" title="Digg"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2010/workflow/tips-on-local-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You, too, can weather the economic storm</title>
		<link>http://www.mediaextra.net/2008/life/weather-economic-storm/</link>
		<comments>http://www.mediaextra.net/2008/life/weather-economic-storm/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 21:55:22 +0000</pubDate>
		<dc:creator>Jack Keller</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[cost of living]]></category>
		<category><![CDATA[downturn economy]]></category>
		<category><![CDATA[economy]]></category>
		<category><![CDATA[living]]></category>

		<guid isPermaLink="false">http://www.mediaextra.net/?p=30</guid>
		<description><![CDATA[With current economic downturns and fiscal crises on the minds of most working people, there are a few subtle steps you can take when times get really tight. In our society, it's not a secret that goods and services once thought to be a luxury have become a current standard of our lifestyle. Can we [...]]]></description>
			<content:encoded><![CDATA[<p>With current economic downturns and fiscal crises on the minds of most working people, there are a few subtle steps you can take when times get really tight. In our society, it's not a secret that goods and services once thought to be a luxury have become a current standard of our lifestyle. Can we survive living within a new means without sacrificing our happiness? We most certainly can, and can possibly even increase our happiness.<br />
<span id="more-30"></span></p>
<h2>Devaluing the Boob Tube</h2>
<p>There was a day, when you may not have had cable or satellite television. Now you rely on this luxury as the main form of entertainment in your home. Have you forgotten you could be just as happy playing a game of cards with friends and family or by dusting off those old board games? Stage a fun scavenger hunt or a mystery for your family to solve (think fun, not suspense). Many have forgotten the joy of reading a book. If you still want to get a fix for reality, create your own show with that miniDV you bought a few years back and haven't used!</p>
<h2>Saving the Planet While Saving Money</h2>
<p>When I was a kid, you could drink water from a hose in the backyard or even the kitchen sink, but for years people have been brainwashed into believing that bottled water is really better for them. Now I don't want to start an eco-rant about plastic bottles, but it does bear mentioning that people do not think about the benefits of slight impurities in our water. Germs can actually be beneficial in helping us keep and build a stronger immune system. If you're like me, you can always fill an old milk jug with water and keep it in the refrigerator; the illusion of cold water may help you believe that it's better just because it's colder! Speaking of temperature, growing up it was like a holiday at my house when dad turned on the air conditioner. Now we do it when the temperature gets up around 75 degrees. Today too many people go from heating to cooling with the changing seasons and neglect to open their windows to let fresh air indoors. </p>
<h2>Reducing Trips to Increase Cash</h2>
<p>Gone are the days of the gas-guzzlers. Of course commuting is a big deal with the high cost of petroleum in the world market. Some common sense could be planning your daily route to include other activities and stops so you aren't making needless trips. Let's say that tomorrow you have to go to the office and the grocery store, oh and pick up a gift for the Jones' anniversary. That used to be three separate trips before the gas prices went completely haywire. Now it's basically heading into the office and on the ride home pick up that DVD boxed set for the Jones' before your trip to the grocery store, finally you're heading to your doorstep with your hands full and a feeling that you may have saved a few bucks. Instead of driving down the block to grab that candy bar you've been craving, take a walk or ride a bike. This of course has a two-pronged set of results, you're saving some money on gas and burning a couple calories to help burn off that candy bar you just picked up.</p>
<h2>Technically Speaking</h2>
<p>So what about our technical devices, can we save money while keeping our home office running smoothly? A lot of my friends have beefed up home offices, from the laptop to multiple displays to printers and backup drives, and don't forget that desk lamp. I try to follow simple logic in my home office, if I'm on the computer, I should be doing something productive that leads to profit. When I'm not, the Powermac is asleep and monitors are not only off, but unplugged along with my printer. A few years ago I started reading up on how to live more green and I was astonished to learn that even if my devices were turned off, they were still drawing a slight current. Now day-to-day or week-to-week these tricks may not appear to put a dent in costs, but if worked up on the yearly budget it can make a difference. </p>
<h2>Home Office Can Be Less Taxing</h2>
<p>In addition to these changes, take advantage of tax write-offs that can net in a slightly better return at tax time. If you check your work email or have to get those copy changes to your <acronym title="Project Manager">PM</acronym>, you can write off a portion of your broadband or even some of that electrical bill. You just have to remember not to get greedy about it, or your friendly representative of the Internal Revenue Service may pay you a visit. Other logical write-offs can come in form of printing supplies, and that new MacBook or whatnot you've had your eye on.</p>
<p>With that said, this is still a very small tip of the iceberg. I'm hoping to open a dialog for people to share ideas so that we all might live a little better. Be sure to comment and see what others may have shared. </p>

<div class="sociable">
<div class="sociable_tagline">
Share?
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mediaextra.net%2F2008%2Flife%2Fweather-economic-storm%2F&amp;t=You%2C%20too%2C%20can%20weather%20the%20economic%20storm" title="Facebook"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.designfloat.com/submit.php?url=http%3A%2F%2Fwww.mediaextra.net%2F2008%2Flife%2Fweather-economic-storm%2F&amp;title=You%2C%20too%2C%20can%20weather%20the%20economic%20storm" title="Design Float"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/designfloat.png" title="Design Float" alt="Design Float" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fwww.mediaextra.net%2F2008%2Flife%2Fweather-economic-storm%2F&amp;title=You%2C%20too%2C%20can%20weather%20the%20economic%20storm&amp;notes=With%20current%20economic%20downturns%20and%20fiscal%20crises%20on%20the%20minds%20of%20most%20working%20people%2C%20there%20are%20a%20few%20subtle%20steps%20you%20can%20take%20when%20times%20get%20really%20tight.%20In%20our%20society%2C%20it%27s%20not%20a%20secret%20that%20goods%20and%20services%20once%20thought%20to%20be%20a%20luxury%20have%20b" title="del.icio.us"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.mediaextra.net%2F2008%2Flife%2Fweather-economic-storm%2F&amp;title=You%2C%20too%2C%20can%20weather%20the%20economic%20storm" title="StumbleUpon"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fwww.mediaextra.net%2F2008%2Flife%2Fweather-economic-storm%2F" title="Technorati"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mediaextra.net%2F2008%2Flife%2Fweather-economic-storm%2F&amp;title=You%2C%20too%2C%20can%20weather%20the%20economic%20storm&amp;bodytext=With%20current%20economic%20downturns%20and%20fiscal%20crises%20on%20the%20minds%20of%20most%20working%20people%2C%20there%20are%20a%20few%20subtle%20steps%20you%20can%20take%20when%20times%20get%20really%20tight.%20In%20our%20society%2C%20it%27s%20not%20a%20secret%20that%20goods%20and%20services%20once%20thought%20to%20be%20a%20luxury%20have%20b" title="Digg"><img src="http://www.mediaextra.net/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.mediaextra.net/2008/life/weather-economic-storm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
