<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Help Build LemonFree.com</title>
	<atom:link href="http://lemonfree.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://lemonfree.wordpress.com</link>
	<description>Help make LemonFree the best automobile search engine.</description>
	<pubDate>Thu, 17 Jul 2008 19:51:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Is PHP Caching Worth it</title>
		<link>http://lemonfree.wordpress.com/2008/07/17/is-php-caching-worth-it/</link>
		<comments>http://lemonfree.wordpress.com/2008/07/17/is-php-caching-worth-it/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 19:46:17 +0000</pubDate>
		<dc:creator>demetrik</dc:creator>
		
		<category><![CDATA[Server Optimization]]></category>

		<category><![CDATA[apache optimization]]></category>

		<category><![CDATA[page load times]]></category>

		<category><![CDATA[PHP opcode]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/?p=25</guid>
		<description><![CDATA[The bug was first planted in my ear when speaking with someone at Zend. Their claim was with the Zend Platform PHP scripts would execute 1 to 10 times faster. Plus the Zend Platform would compress data sent to the browser, monitor MySQL, and mange downloads.
At first the two things that appealed to me the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The bug was first planted in my ear when speaking with someone at Zend. Their claim was with the Zend Platform PHP scripts would execute 1 to 10 times faster. Plus the Zend Platform would compress data sent to the browser, monitor MySQL, and mange downloads.</p>
<p>At first the two things that appealed to me the most was the MySQL monitoring and the compressing of data being sent to the browser. For less money we ended up getting a license from MySQL that also provides support which is simply worth every penny. Doing a little research on the web took me to a great paper on , <a href="http://www.die.net/musings/page_load_time/">optimizing page load times</a>.</p>
<p>What I learned from die.net was that I didn&#8217;t need any fancy software to do what Apache already had built in. There were some pretty common sense things to do, like having browsers cache images and javascript, compressing data sent to the browser, keepalives, etc.</p>
<p>After implementing many of these suggestions there was a noticeable improvement in performance. At least that was the perception when surfing <a href="http://www.lemonfree.com">lemonfree.com</a> from my sister in-law&#8217;s dial-up connection in rural Saskatchewan. I was so happy with the results, that were evident from observation, that I hadn&#8217;t thought about caching PHP opcode or running benchmarks for a very long time.</p>
<p>One thing that really stuck with me from my research was that IBM recommended running <a href="http://eaccelerator.net/">eAccelerator</a> in one of their papers about <a href="http://www.ibm.com/developerworks/web/library/l-tune-lamp-2.html">optimizing Apache and PHP</a>. I figured that it was worth looking at if IBM recommended it. On top of that, techs at our hosting company had on occasion recommended using eAccelertor or the <a href="http://pecl.php.net/package/APC">Alternative PHP Cache</a> (<strong>APC</strong>).</p>
<p>I had installed APC on one server and eAccelertor on another server and really couldn&#8217;t tell if there was any benefit. I recall saying to a co-worker that lemonfree may or may not be any faster. I didn&#8217;t think it was slower. Since it was not obvious I decided to measure actual load times. Die.net came to the rescue here with a peice of Java code that measures the actual load times your users experience and records it in your apache logs. The code is as follows:</p>
<pre class="code">&lt;head&gt;
&lt;title&gt;...&lt;/title&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
var began_loading = (new Date()).getTime();

function done_loading() {
 (new Image()).src = '/timer.gif?u=' + self.location + '&amp;t=' +
  (((new Date()).getTime() - began_loading) / 1000);
}
// --&gt;
&lt;/script&gt;
&lt;!--
Reference any external javascript or stylesheets after the above block.
// --&gt;
&lt;/head&gt;
&lt;body onload="done_loading()"&gt;
&lt;!--
Put your normal page content here.
// --&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Now that I had a way to measure load times I ran three tests on a partner site, <a href="classifieds.carforums.net">classifieds.carforums.net</a>. I picked the partner site as there isn&#8217;t a large amount of Java Script or images to be displayed when compared to lemonfree.com. I figured that it should be easy to see the benefits on a simpler site.</p>
<p>The three tests were without caching, using eAccelortor, and finally using APC. I ran the tests for about a day each, the results are in the table below.</p>
<table>
<tbody>
<tr style="height:12.75pt;">
<td class="xl24" style="height:12.75pt;width:60pt;" width="80" height="17"><strong>Caching</strong></td>
<td class="xl24"><strong>Average</strong></td>
<td class="xl24"><strong>Median</strong></td>
<td class="xl24"><strong>Stdev</strong></td>
<td class="xl24"><strong>Max</strong></td>
<td class="xl24"><strong>Min</strong></td>
<td class="xl24"><strong>n</strong></td>
<td class="xl24"><strong>Start</strong></td>
<td class="xl24"><strong>End</strong></td>
</tr>
<tr style="height:12.75pt;">
<td style="height:12.75pt;" height="17">No Cache</td>
<td align="right">2.5</td>
<td align="right">1.25</td>
<td align="right">5.2</td>
<td align="right">161</td>
<td align="right">0.12</td>
<td align="right">9116</td>
<td>14/Jul:17:10</td>
<td>15/Jul:17:03</td>
</tr>
<tr style="height:12.75pt;">
<td style="height:12.75pt;" height="17">PECL APC</td>
<td align="right">2.6</td>
<td align="right">1.18</td>
<td align="right">6.95</td>
<td align="right">397</td>
<td align="right">0.14</td>
<td align="right">9488</td>
<td>16/Jul:10:41</td>
<td>17/Jul:10:40</td>
</tr>
<tr style="height:12.75pt;">
<td style="height:12.75pt;" height="17">eAccelerator</td>
<td align="right">2.7</td>
<td align="right">1.25</td>
<td align="right">12.4</td>
<td align="right">854</td>
<td align="right">0.14</td>
<td align="right">5902</td>
<td>15/Jul:17:04</td>
<td>16/Jul:10:41</td>
</tr>
</tbody>
</table>
<p>Caching really had no impact on our partner site. What I liked about APC is that it gives you pretty graphs and tells you things like you&#8217;re hitting cached code 99.9% of the time but when you look at the actual page load times there really isn&#8217;t a benefit to caching PHP opcode with respect to page load times. Maybe on a less powerful server it would make a difference but on our partner site the bottle neck is certainly not the overhead from compiling PHP script.</p>
<p>I&#8217;ll be running a more in depth test on Lemonfree.com. We&#8217;re including page load times into our company targets and any change we make will also have the page load times factored in. I plan on running the tests for at least a week at a time on lemonfree.com and I&#8217;ll now in a month if caching is worth it on Lemonfree.</pre>
<p>Demetri</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=25&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2008/07/17/is-php-caching-worth-it/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LemonFree adds Body Search Option</title>
		<link>http://lemonfree.wordpress.com/2008/04/24/lemonfree-adds-body-search-option/</link>
		<comments>http://lemonfree.wordpress.com/2008/04/24/lemonfree-adds-body-search-option/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 17:16:58 +0000</pubDate>
		<dc:creator>lemonfree</dc:creator>
		
		<category><![CDATA[lemonfree]]></category>

		<category><![CDATA[automobile search]]></category>

		<category><![CDATA[lifestyle search]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/?p=24</guid>
		<description><![CDATA[Yesterday we added a body search option to LemonFree.com. LemonFree users now have the option to search for a vehicle by SUV, 4 Door, Truck, 2 Door, Minivan, Wagon, Convertible, Hatchback, Van or Hybrid.
We haven&#8217;t yet added this new option to our squirt alert menu or our advanced search, this will be coming within the [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yesterday we added a body search option to LemonFree.com. LemonFree users now have the option to search for a vehicle by SUV, 4 Door, Truck, 2 Door, Minivan, Wagon, Convertible, Hatchback, Van or Hybrid.</p>
<p>We haven&#8217;t yet added this new option to our squirt alert menu or our advanced search, this will be coming within the next few weeks.</p>
<p>If you have any problem using the new body search please let us know. We&#8217;ve tested it internally to make sure it works, but it always seems that no matter how much we&#8217;ve tested a product it never seems to be flawless the first time.</p>
<p>Email dlegal@lemonfree.com with your comments, questions or concerns.</p>
<p>Cheers,<br />
Dan &amp; The LemonFree Team</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=24&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2008/04/24/lemonfree-adds-body-search-option/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Purchase and Import a Car from the US into Ontario - LemonFree User Submitted Question</title>
		<link>http://lemonfree.wordpress.com/2008/04/24/purchase-and-import-a-car-from-the-us-into-ontario-lemonfree-user-submitted-question/</link>
		<comments>http://lemonfree.wordpress.com/2008/04/24/purchase-and-import-a-car-from-the-us-into-ontario-lemonfree-user-submitted-question/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 17:00:21 +0000</pubDate>
		<dc:creator>lemonfree</dc:creator>
		
		<category><![CDATA[Importing Vehicles]]></category>

		<category><![CDATA[used cars]]></category>

		<category><![CDATA[import car]]></category>

		<category><![CDATA[import from us]]></category>

		<category><![CDATA[import into ontario]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/?p=23</guid>
		<description><![CDATA[Question:
Hello ,I need  to now a few things and would be very greatful for your help .If I was to  purchase a car from the usa from ontario what are the extra expenses I have to  pay to get it here eg taxes duties etc.Aswell Is it possible to get a loan [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Question:</strong><br />
<span style="font-family:Times New Roman;font-size:small;"><span style="font-size:12pt;">Hello ,I need  to now a few things and would be very greatful for your help .If I was to  purchase a car from the usa from ontario what are the extra expenses I have to  pay to get it here eg taxes duties etc.Aswell Is it possible to get a loan for a  car that isfrom the usa???</span></span></p>
<p><strong>Answer:</strong><br />
It depends on the car as to what the expense would be. A friend of mine picked  up a car from New Jersey last year and I think he was out of pocket around  $2,000 in air fair, gas, and fees. He claims he saved a few thousand dollars on  his Volvo. Our office admin also picked up a Honda from the US last year and  she&#8217;s very happy with the money that she saved.</p>
<p>If the car is covered  under NAFTA then you&#8217;ll only pay GST and I think $200 to have it registered with  the Registrar of Imported Vehicles plus an excise tax if it has air conditioning  of around $100.00.</p>
<p>If the car isn&#8217;t covered under NAFTA ( say a 2008 Audi  R8 ) then you&#8217;ll pay duty of around 6.5% on top of the price plus GST.</p>
<p>I&#8217;m  not sure if you&#8217;ll have to pay PST in Ontario. In Manitoba we have to pay 7% PST  on all vehicles (private sale or not) based on the book value of the car when we  insure them.</p>
<p>There&#8217;s more information on importing a car into Canada at  <a href="../2007/11/28/importing-a-us-car-into-canada">http://lemonfree.wordpress.com/2007/11/28/importing-a-us-car-into-canada</a></p>
<p>Getting  a loan on a vehicle outside of Canada depends on your credit and your bank.  You&#8217;ll have to ask them. As long as your credit is good I can&#8217;t see them not  giving you a personal loan.</p>
<p>I don&#8217;t recommend buying or giving a deposit  on a vehicle that you haven&#8217;t seen. There are a lot of scam artists out there  and there will always be another deal to be found if you let one slip past you.</p>
<p>One thing you can do if you&#8217;re really set on having a particular vehicle  is look in the yellow pages of the city that the vehicle is in and hire an auto  appraiser to go and take a look at it. At least you&#8217;ll save yourself the cost of  flying down to look at a vehicle that may not be worth it.</p>
<p>Hope this  helps.</p>
<p>Demetri Karavas<br />
Lemonfree.com</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=23&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2008/04/24/purchase-and-import-a-car-from-the-us-into-ontario-lemonfree-user-submitted-question/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LemonFree.com - Massive Market Exposure!!</title>
		<link>http://lemonfree.wordpress.com/2008/03/25/lemonfreecom-massive-market-exposure/</link>
		<comments>http://lemonfree.wordpress.com/2008/03/25/lemonfreecom-massive-market-exposure/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 20:38:17 +0000</pubDate>
		<dc:creator>lemonfree</dc:creator>
		
		<category><![CDATA[aol]]></category>

		<category><![CDATA[lemonfree]]></category>

		<category><![CDATA[buy a car]]></category>

		<category><![CDATA[car]]></category>

		<category><![CDATA[cars]]></category>

		<category><![CDATA[cars for sale]]></category>

		<category><![CDATA[classifieds]]></category>

		<category><![CDATA[market exposure]]></category>

		<category><![CDATA[partnership]]></category>

		<category><![CDATA[sell my car]]></category>

		<category><![CDATA[where to buy a car]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/?p=22</guid>
		<description><![CDATA[Every single listing that now gets listed on LemonFree via our feed partners or via our listing page now has the option to also be listed on autos.aol.com for&#8230;&#8230; you guessed it, Free!!  That&#8217;s right, every one of our listings is now featured on autos.aol.com.
We invite everyone to come and list there automobiles with us, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Every single listing that now gets listed on <a href="http://www.lemonfree.com">LemonFree</a> via our <a href="http://www.lemonfree.com/feeds.php">feed partners</a> or via our <a href="http://www.lemonfree.com/add_listing.php">listing page</a> now has the option to also be listed on autos.aol.com for&#8230;&#8230; you guessed it, Free!!  That&#8217;s right, every one of our listings is now featured on autos.aol.com.</p>
<p>We invite everyone to come and list there automobiles with us, private sellers, dealers&#8230; everyone!!</p>
<p>Dealers, if you want to learn how you can get your auto listings on <a href="http://www.lemonfree.com">LemonFree</a> for free, <a href="http://www.lemonfree.com/dealer_contact.php">click here now</a>.</p>
<p>If you haven&#8217;t tried <a href="http://www.lemonfree.com">LemonFree.com</a>, please give it a try; we&#8217;re sure you&#8217;ll like it. If you don&#8217;t agree with us make sure you send your comments and suggestions to me <a href="mailto:dlegal@lemonfree.com">dlegal@lemonfree.com</a>. Please tell me why you did or didn&#8217;t like the site.</p>
<p>Cheers,<br />
Dan<br />
dlegal@lemonfree.com</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=22&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2008/03/25/lemonfreecom-massive-market-exposure/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LemonFree is now on Facebook</title>
		<link>http://lemonfree.wordpress.com/2008/03/25/lemonfree-is-now-on-facebook/</link>
		<comments>http://lemonfree.wordpress.com/2008/03/25/lemonfree-is-now-on-facebook/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 20:18:23 +0000</pubDate>
		<dc:creator>lemonfree</dc:creator>
		
		<category><![CDATA[facebook]]></category>

		<category><![CDATA[friends]]></category>

		<category><![CDATA[lemonfree]]></category>

		<category><![CDATA[lemon free]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/?p=21</guid>
		<description><![CDATA[As fast passed a company as we are, it took us quite a while to finally get a LemonFree profile page up on Facebook.
If your a facebook user and would like to show your appreciation for LemonFree.com, go to the LemonFree profile page on Facebook and click on the link &#8220;become a fan&#8221;.
If you have [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As fast passed a company as we are, it took us quite a while to finally get a <a href="http://www.facebook.com/pages/LemonFreecom/10026683569" title="LemonFree Facebook Profile">LemonFree profile page up on Facebook</a>.</p>
<p>If your a facebook user and would like to show your appreciation for LemonFree.com, go to the <a href="http://www.facebook.com/pages/LemonFreecom/10026683569">LemonFree profile page on Facebook</a> and click on the link &#8220;become a fan&#8221;.</p>
<p>If you have comments or questions about the site you can also leave us a note on the discussion board.</p>
<p>Cheers,<br />
Dan &amp; The LemonFree Team</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=21&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2008/03/25/lemonfree-is-now-on-facebook/feed/</wfw:commentRss>
		</item>
		<item>
		<title>autotrader.cm</title>
		<link>http://lemonfree.wordpress.com/2008/03/06/autotradercm/</link>
		<comments>http://lemonfree.wordpress.com/2008/03/06/autotradercm/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 18:10:30 +0000</pubDate>
		<dc:creator>lemonfree</dc:creator>
		
		<category><![CDATA[autotrader.]]></category>

		<category><![CDATA[keyword research]]></category>

		<category><![CDATA[lemonfree]]></category>

		<category><![CDATA[autotrader .com]]></category>

		<category><![CDATA[autotrader .comm]]></category>

		<category><![CDATA[autotrader collector]]></category>

		<category><![CDATA[autotrader magazine]]></category>

		<category><![CDATA[autotrader motorcycles]]></category>

		<category><![CDATA[autotrader online]]></category>

		<category><![CDATA[autotrader used cars]]></category>

		<category><![CDATA[autotrader.c]]></category>

		<category><![CDATA[autotrader.ca]]></category>

		<category><![CDATA[autotrader.cm]]></category>

		<category><![CDATA[autotrader.co]]></category>

		<category><![CDATA[autotrader.cok]]></category>

		<category><![CDATA[autotrader.comhttp]]></category>

		<category><![CDATA[autotrader.comk]]></category>

		<category><![CDATA[autotrader.comm]]></category>

		<category><![CDATA[autotrader.m]]></category>

		<category><![CDATA[autotrader.om]]></category>

		<category><![CDATA[autotradercom]]></category>

		<category><![CDATA[autotraderonline]]></category>

		<category><![CDATA[autotraderonline.com]]></category>

		<category><![CDATA[autotraders]]></category>

		<category><![CDATA[autotraders.com]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/?p=20</guid>
		<description><![CDATA[While doing some keyword research for LemonFree.com I stumbled across this cool little keyword tool put out by decenttools.com
http://www.decenttools.com/aol
The  reason I like the tool so much is because you can enter in something like autotrader  and it will out put all  the different spelling mistakes people  make when typing in autotrader.com
Check [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>While doing some keyword research for <a href="http://www.lemonfree.com">LemonFree.com</a> I stumbled across this cool little keyword tool put out by decenttools.com</p>
<p>http://www.decenttools.com/aol</p>
<p>The  reason I like the tool so much is because you can enter in something like autotrader  and it will out put all  the different spelling mistakes people  make when typing in autotrader.com</p>
<p>Check out the list I got when I entered in autotrader.</p>
<p>autotraders.com<br />
autotraderonline.com<br />
autotrader.cm<br />
autotraders<br />
autotraderonline<br />
autotrader.co<br />
autotrader .com<br />
autotradercom<br />
autotrader online<br />
autotrader.comhttp<br />
autotrader.c<br />
autotrader.comm<br />
autotrader.<br />
autotrader.ca<br />
autotrader magazine<br />
autotrader..com<br />
autotrader.om<br />
autotrader used cars<br />
autotraderom<br />
autotrader motorcycles<br />
autotrader.m<br />
autotrader.comk<br />
autotrader collector<br />
autotrader .comm<br />
autotrader.cok<br />
autotrader. com</p>
<p>If you are into internet marketing, I highly recommend checking out this website.</p>
<p>Cheers,<br />
Dan</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=20&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2008/03/06/autotradercm/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Importing a US car into Canada</title>
		<link>http://lemonfree.wordpress.com/2007/11/28/importing-a-us-car-into-canada/</link>
		<comments>http://lemonfree.wordpress.com/2007/11/28/importing-a-us-car-into-canada/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 23:23:07 +0000</pubDate>
		<dc:creator>demetrik</dc:creator>
		
		<category><![CDATA[Importing Vehicles]]></category>

		<category><![CDATA[cars for sale]]></category>

		<category><![CDATA[used cars]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/2007/11/28/importing-a-us-car-into-canada/</guid>
		<description><![CDATA[It&#8217;s pretty handy having someone in the office who has imported a vehicle into Canada from the US. Our Office Admin did just that this summer. She said it was so easy you save so much money she&#8217;s puzzled as to why more people don&#8217;t do it.
She was kind enough to give us the following [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s pretty handy having someone in the office who has imported a vehicle into Canada from the US. Our Office Admin did just that this summer. She said it was so easy you save so much money she&#8217;s puzzled as to why more people don&#8217;t do it.</p>
<p>She was kind enough to give us the following procedure:</p>
<h2>How to import a used vehicle into Canada</h2>
<p>1. Before importing a vehicle, you must call to make sure it is allowed to be imported into Canada you can find out from:</p>
<p><strong><a href="http://www.riv.ca">Registrar of Imported Vehicles</a></strong>: 1-888-848-8240<br />
<strong><a href="http://www.cbsa-asfc.gc.ca/publications/pub/bsf5048-eng.html">Canada Border Services Agency</a></strong>: 1-800-461-9999<br />
<strong><a href="http://www.tc.gc.ca">Transport Canada</a></strong>:1-800-333-0371 or 1-613-998-8616 (Outside Canada)<br />
<strong><a href="http://www.cra-arc.gc.ca">Canada Customs and Revenue Agency</a></strong>:1-800-461-9999 or 1-506-636-5064 (Outside Canada)</p>
<p>You can also check Transport Canada&#8217;s web site (<a href="http://www.tc.gc.ca">www.tc.gc.ca</a>) for a list of admissible vehicles. Call your insurer to make sure that your imported vehicle has, or requires, an approved anti-theft immobilizer as some insurers will require an immobilizer before certain vehicles can be insured and/or registered.</p>
<p>2. Once you purchase your vehicle, you must have all the required documentation in order to bring your vehicle back into Canada. You will need to a fax all the documents to the U.S. Customs border crossing you will be passing through. They require the paperwork 72 hours prior to export. The documentation required are:</p>
<ol>
<li>A recall clearance letter/printout obtained from the vehicle dealership or the original equipment manufacturer (OEM)</li>
<li>Sales receipt</li>
<li>Title documents (both sides of title)</li>
<li>Registration (if applicable)</li>
</ol>
<p>Call US Customs, at the appropriate boarder crossing, to ensure that they have received your fax and that no other documents are required. At this time you can contact your insurer to advise them that you are purchasing a vehicle in the US and that you require a Temporary Registration Permit, you may require a 2 week permit as it takes time to receive all the required documentation once in Canada before you can insure the vehicle.</p>
<p>Make sure that you have adequate third party liability (<strong>TPL</strong>) coverage. In no fault provinces many people carry $200,000 in TPL, this will not cover you in United States (and provinces like Alberta) where there is <a href="http://en.wikipedia.org/wiki/Tort">tort law</a> governing traffic accidents. Provinces with <a href="http://en.wikipedia.org/wiki/No-fault_insurance">no-fault insurance</a> mitigate the need for having a high TPL limit but where there isn&#8217;t no-fault insurance you should carry at least $1,000,000. The more the better as it typically doesn&#8217;t cost much more to go from $1,000,000 to $3,000,000 TPL.</p>
<p>3. When you are at U.S. Customs they will review all your original documentation and then proceed to your vehicle to check that the VIN matches your paperwork. They will stamp your Certificate of Title and  you will then proceed to the Canada Customs. Canada Customs will give you a &#8220;Vehicle Import Form - Form 1&#8243; to complete (this must be kept in the vehicle until licensed). At Canada Customs you will be required to pay the GST on the Canadian price of your imported vehicle, an air conditioning excise tax (if applicable) of $100.00 as well as a fee of $195.00 plus GST (more in Quebec) to go to the Registrar of Imported Vehicles (RIV). Thankfully you won&#8217;t have to carry cash as they understand Visa and Mastercard at Canada Customs.</p>
<p>There is no duty due for vehicles manufactured in North America or vehicles over 25 years old. If your vehicle does not fit that cirteria you&#8217;ll be assesed duty of 6.2%. You&#8217;ll also have to pay HST or PST either at the border or when you register your vehicle depending on which province the vehicle will be registered in.</p>
<p>4. Once you have entered Canada, within 10 days you should receive a letter from the &#8220;Registrar of Imported Vehicles&#8221; (RIV) with your inspection information (Form 2 of the Vehicle Import Form). This will advise you as to what is required to make your vehicle compliant with Canadian standards. When the modifications are completed (Eg. daytime running lights, metric speedometer &amp; odometer labels, tether bolt) you will take your vehicle to Canadian Tire (RIV has Contracted Canadian Tire) for a Federal inspection (no charge). Once your vehicle passes the inspection they will stamp Form 1 of the Vehicle Import Form. They will fax Form 2 to RIV once everything is approved by them. Be sure to keep all your receipts for any modifications that have been done. Within a week you will receive a Canadian Certification Label from RIV to affix to your vehicle door.</p>
<p>5. You will need to pass a provincial safety prior to insuring your vehicle. Once this is completed you can get license plates on your vehicle. Bring all documentation including the stamped Form 1 of the Vehicle Import Form to the licensing agent as you may be required, depending on your province, to pay the PST on your Canadian purchase price.</p>
<h2>Additional Considerations</h2>
<p>Keep in mind that there may be something specific to your part of Canada that isn&#8217;t included here &#8230; or something that we&#8217;ve left out, the customs people on both sides of the border can make sure you&#8217;ve covered all your basis before you go through the expense of buying a car and traveling down to the States to pick it up.</p>
<p>It&#8217;s a good idea to look at the car and take it for a drive before you buy it. If that doesn&#8217;t fit into your schedule then you can save yourself a potentially expensive mistake by taking a look in the Yellow pages of the city the car is located in for an Auto Appraiser. Basically anywhere there is insurance companies there are people who are experts at appraising them. It may cost a few hundred dollars but you can get a professional opinion about the value of the vehicle as well as its condition.</p>
<p>Finally if the deal looks too good to be true it is. No one will sell you a car with $80,000 worth of modifications for $5,000.</p>
<p>Happy shopping!</p>
<p>Demetri &amp; The LemonFree.com Team</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=19&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2007/11/28/importing-a-us-car-into-canada/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Weak US Dollar has Canadians Looking for Deals</title>
		<link>http://lemonfree.wordpress.com/2007/11/13/weak-us-dollar-has-canadians-looking-for-deals/</link>
		<comments>http://lemonfree.wordpress.com/2007/11/13/weak-us-dollar-has-canadians-looking-for-deals/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 18:08:12 +0000</pubDate>
		<dc:creator>demetrik</dc:creator>
		
		<category><![CDATA[Market Pricing]]></category>

		<category><![CDATA[Canadian Exchange]]></category>

		<category><![CDATA[US Exchange]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/2007/11/13/weak-us-dollar-has-canadians-looking-for-deals/</guid>
		<description><![CDATA[Is the USA now Canada&#8217;s Mexico? Being in Canada (yes it&#8217;s a little known fact but Lemonfree.com is based in Canada) I&#8217;ve been hearing stories, both in the media and anecdotal, about how people are saving hundreds or even thousands of dollars by shopping in the USA instead of Canada.
These stories range from that friend [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Is the USA now Canada&#8217;s Mexico? Being in Canada (yes it&#8217;s a little known fact but <a href="http://www.lemonfree.com" title="Lemonfree.com">Lemonfree.com</a> is based in Canada) I&#8217;ve been hearing stories, both in the media and anecdotal, about how people are saving hundreds or even thousands of dollars by shopping in the USA instead of Canada.</p>
<p>These stories range from that friend of a friend who saved $20,000 on lumber, which ironically originated in Canada, for his Kenora cottage by driving down to Grand Forks, ND to our very own office admin who flew down to Florida and saved $8,000 on a 2004 Honda Accord.</p>
<p>Personally I knew the dollar was strong and took a look at a couple of cars I was interested in back on July when I was deciding between a 2007 City Jetta and a 2007 Jeep Patriot. The <a href="http://www.bank-banque-canada.ca/en/rates/exchange-look.html" title="Canadian Exchange Rates">Canadian Dollar was trading</a> at a whopping $0.95 USD but my two choices of cars hardly seemed worth the hassle of going down the the states just to save a few bucks.</p>
<p>Since the Loonie, what we  Canucks affectionately call our dollar, has gone over par with the US Greenback I&#8217;ve been thinking that I should have picked a different vehicle. Last week the Canadian Dollar briefly broke $1.10 USD making American Cars a really good deal on some models.</p>
<p>Not that I want to add insult to injury by knowing how much I could have saved but I had to take a look at our most popular models to see what the numbers were. I narrowed specifically on the 20 vehicles that Canadians will save the most money on by buying in the States. The table below  shows the average price (in USD) of these vehicles located in the United States and for comparison the average price of those same vehicles located in Canada (in CAD).</p>
<table border="0" cellpadding="0" cellspacing="0" width="484">
<tr>
<td>Vehicle</td>
<td>US Average Price</td>
<td>CAN Average Price</td>
<td>Savings at PAR</td>
<td>Adjusted Savings at $1.03</td>
</tr>
<tr>
<td>2007 LINCOLN NAVIGATOR</td>
<td>$47,201</td>
<td>$74,231</td>
<td>$27,030</td>
<td>$28,405</td>
</tr>
<tr>
<td>2007 FORD EXPEDITION</td>
<td>$31,739</td>
<td>$57,868</td>
<td>$26,129</td>
<td>$27,053</td>
</tr>
<tr>
<td>2007 CHRYSLER ASPEN</td>
<td>$30,018</td>
<td>$55,945</td>
<td>$25,927</td>
<td>$26,801</td>
</tr>
<tr>
<td>2006 CADILLAC STS</td>
<td>$36,468</td>
<td>$60,326</td>
<td>$23,858</td>
<td>$24,920</td>
</tr>
<tr>
<td>2007 CHEVROLET CORVETTE</td>
<td>$57,151</td>
<td>$80,380</td>
<td>$23,229</td>
<td>$24,894</td>
</tr>
<tr>
<td>2007 LINCOLN TOWN CAR</td>
<td>$31,557</td>
<td>$54,705</td>
<td>$23,148</td>
<td>$24,067</td>
</tr>
<tr>
<td>2007 CADILLAC STS</td>
<td>$43,425</td>
<td>$66,277</td>
<td>$22,852</td>
<td>$24,117</td>
</tr>
<tr>
<td>2008 FORD F-450</td>
<td>$48,536</td>
<td>$70,778</td>
<td>$22,242</td>
<td>$23,656</td>
</tr>
<tr>
<td>2007 CHEVROLET TAHOE</td>
<td>$38,777</td>
<td>$60,565</td>
<td>$21,788</td>
<td>$22,917</td>
</tr>
<tr>
<td>2007 CADILLAC DTS</td>
<td>$36,310</td>
<td>$57,918</td>
<td>$21,608</td>
<td>$22,666</td>
</tr>
<tr>
<td>2007 FORD EXPLORER</td>
<td>$25,774</td>
<td>$46,799</td>
<td>$21,025</td>
<td>$21,776</td>
</tr>
<tr>
<td>2007 CADILLAC ESCALADE</td>
<td>$59,017</td>
<td>$78,084</td>
<td>$19,067</td>
<td>$20,786</td>
</tr>
<tr>
<td>2007 CHRYSLER PACIFICA</td>
<td>$23,417</td>
<td>$42,416</td>
<td>$18,999</td>
<td>$19,681</td>
</tr>
<tr>
<td>2007 JEEP GRAND CHEROKEE</td>
<td>$28,137</td>
<td>$46,982</td>
<td>$18,845</td>
<td>$19,665</td>
</tr>
<tr>
<td>2007 NISSAN TITAN</td>
<td>$27,675</td>
<td>$46,423</td>
<td>$18,748</td>
<td>$19,554</td>
</tr>
<tr>
<td>2007 JEEP COMMANDER</td>
<td>$26,672</td>
<td>$45,295</td>
<td>$18,623</td>
<td>$19,400</td>
</tr>
<tr>
<td>2007 BMW X5</td>
<td>$61,165</td>
<td>$79,629</td>
<td>$18,464</td>
<td>$20,246</td>
</tr>
<tr>
<td>2008 JEEP GRAND CHEROKEE</td>
<td>$34,875</td>
<td>$53,238</td>
<td>$18,363</td>
<td>$19,379</td>
</tr>
<tr>
<td>2007 CHEVROLET TRAILBLAZER</td>
<td>$24,379</td>
<td>$42,669</td>
<td>$18,290</td>
<td>$19,000</td>
</tr>
<tr>
<td>2007 FORD F-250 SUPER DUTY</td>
<td>$35,821</td>
<td>$54,057</td>
<td>$18,236</td>
<td>$19,279</td>
</tr>
</table>
<p>When I crunched the numbers I was a little choked. Assuming a par dollar the savings are quite significant, especially when I look at the Jeep Commander. I thought the Commander was a little out of my comfort range for how much I was willing to spend but in reality it was only $6,000 more than what I spent on my Jetta.The Loonie closed a little lower yesterday at $1.03 easing my pain a little bit but there&#8217;s no point in looking back.</p>
<p>We&#8217;ve decided to give Canadian Shoppers the benefit of knowing the Average listing price of a vehicle in Canada as well as the average price in the USA on our Canadian site, <a href="http://www.lemonfree.ca">lemonfree.ca</a>, just look up any make and model and if we have enough data we&#8217;ll give you the average price both north and south of the boarder. For example if you&#8217;re looking for a <a href="http://www.lemonfree.ca/8104028.html">Ford F-150</a> you&#8217;ll see that the average price of this vehicle is $39,531 CAD as listed in Canada but the price south of the border is $27,063 USD.</p>
<p>For those who want to find one close to home we&#8217;ve added a 500 mile radius for your Postal Code Search. You&#8217;ll get listings close to home as well as in the United States.</p>
<p>Demetri</p>
<p>&lt;ahem&gt; We&#8217;ve added some things to consider when <a href="http://www.lemonfree.ca/importing_car_canada.php">Importing a car into Canada</a>.&lt;/ahem&gt;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=18&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2007/11/13/weak-us-dollar-has-canadians-looking-for-deals/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Safest Cars on the Road - NHTSA DATA - Top Performers</title>
		<link>http://lemonfree.wordpress.com/2007/10/26/safest-cars-on-the-road-nhtsa-data-top-performers/</link>
		<comments>http://lemonfree.wordpress.com/2007/10/26/safest-cars-on-the-road-nhtsa-data-top-performers/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 21:06:44 +0000</pubDate>
		<dc:creator>lemonfree</dc:creator>
		
		<category><![CDATA[2008]]></category>

		<category><![CDATA[NHTSA]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/2007/10/26/safest-cars-on-the-road-nhtsa-data-top-performers/</guid>
		<description><![CDATA[NHTSA Ratings are based on the following:
Frontal rating based on the risk of head and chest injury.
Side rating based on chest injury.
Rollover test gauging a vehicle&#8217;s stability.
Two 5 Star Winners for 2008
- 2008 Acura RL
- 2008 Lincoln Town Car
Small Cars
- 2008 Nissan Versa
- 2008 Scion XB &#38; XD
- 2008 Chevrolet Aveo
- 2008 Kia Rondo
- 2008 [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>NHTSA Ratings are based on the following:</p>
<p>Frontal rating based on the risk of head and chest injury.<br />
Side rating based on chest injury.<br />
Rollover test gauging a vehicle&#8217;s stability.</p>
<p>Two 5 Star Winners for 2008<br />
- 2008 Acura RL<br />
- 2008 Lincoln Town Car</p>
<p>Small Cars<br />
- 2008 Nissan Versa<br />
- 2008 Scion XB &amp; XD<br />
- 2008 Chevrolet Aveo<br />
- 2008 Kia Rondo<br />
- 2008 Honda S2000</p>
<p>Mid / Full Size Vehicles<br />
- 2008 BMW 3 Series<br />
- 2008 Chevrloet Impala<br />
- 2008 Nissan Altima<br />
- 2008 Lexus ES350</p>
<p>SUV&#8217;s<br />
- 2008 Acura MDX &amp; RDX<br />
- 2008 Buick Enclave<br />
- 2008 Ford Edge<br />
- 2008 Honda CR-V<br />
- 2008 Subar B9 Trebeca<br />
- 2008 Toyota Highlander<br />
- <a href="http://www.lemonfree.com/map.php?year=2008&amp;make=VOLKSWAGEN&amp;model=TOUAREG">2008 Volkswagon Touareg</a></p>
<p><strong>Note that these vehicles&#8217; ratings are based on models equipped with optional or standard side air bags.</strong></p>
<p>The 2008 NHTSA safety ratings will be dispalyed beside all available models on <a href="http://www.lemonfree.com">LemonFree</a> within the next few weeks. Until then, all the data can be seen at <a href="http://safercar.gov">safercar.gov</a></p>
<p>Cheers and have a great weekend!<br />
The LemonFree Team</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=16&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2007/10/26/safest-cars-on-the-road-nhtsa-data-top-performers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LemonFree.com and Text4Cars.com Partnership</title>
		<link>http://lemonfree.wordpress.com/2007/10/15/lemonfreecom-and-text4carscom-partnership/</link>
		<comments>http://lemonfree.wordpress.com/2007/10/15/lemonfreecom-and-text4carscom-partnership/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 15:57:15 +0000</pubDate>
		<dc:creator>lemonfree</dc:creator>
		
		<category><![CDATA[text4cars]]></category>

		<guid isPermaLink="false">http://lemonfree.wordpress.com/2007/10/15/lemonfreecom-and-text4carscom-partnership/</guid>
		<description><![CDATA[ LemonFree.com and Text4Cars.com entered into a partnership this past Friday.
With this new partnership our Canadian LemonFree users will be able to search an additional 30,000 Canadian cars, this number significantly increases the number of Canadian cars in our database.
For instance we now have over 2200 vehicles in Winnipeg, Manitoba alone; that number will continue to grow [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p> <a href="http://www.lemonfree.com" title="Automobile Search Engine">LemonFree.com</a> and Text4Cars.com entered into a partnership this past Friday.</p>
<p>With this new partnership our Canadian LemonFree users will be able to search an additional 30,000 Canadian cars, this number significantly increases the number of Canadian cars in our database.</p>
<p>For instance we now have over 2200 vehicles in <a href="http://lemonfree.winnipeg,mb.ca" title="Winnipeg Used Cars">Winnipeg, Manitoba</a> alone; that number will continue to grow until we have every car in Canada. Here are some numbers for a few other cities.</p>
<p><a href="http://www.lemonfree.com/map.php?state=1&amp;city=Calgary" title="Calgary Used Cars">Calgary</a>: 5208<br />
<a href="http://www.lemonfree.com/map.php?state=9&amp;city=Scarborough" title="Scarborough Used Cars">Scarborough</a>: 2599<br />
<a href="http://www.lemonfree.com/map.php?state=2&amp;city=Vancouver" title="Used Cars in Vancouver">Vancouver</a>: 2357<br />
<a href="http://www.lemonfree.com/map.php?state=9&amp;city=Toronto" title="Toronto Used Cars">Toronto</a>: 1903<br />
<a href="http://www.lemonfree.com/map.php?state=9&amp;city=Hamilton" title="Hamilton Used Cars">Hamilton</a>: 1652<br />
<a href="http://www.lemonfree.com/map.php?state=9&amp;city=Richmond Hill" title="Used Cars in Richmond Hill">Richmond Hill</a>: 1457<br />
<a href="http://www.lemonfree.com/map.php?state=9&amp;city=Mississauga" title="Used Cars in Mississauga">Mississauga</a>: 1247<br />
Maple Ridge: 1021<br />
<a href="http://www.lemonfree.com/map.php?state=9&amp;city=Newmarket" title="Used Cars in Newmarket">Newmarket</a>: 1002<br />
<a href="http://www.lemonfree.com/map.php?state=9&amp;city=Ottawa" title="Used Cars in Ottawa">Ottawa</a>: 939<br />
<a href="http://www.lemonfree.com/map.php?state=1&amp;city=Edmonton" title="Used Cars in Edmonton">Edmonton</a>: 878</p>
<p>If you have any comments or suggestion for LemonFree, please send to <a href="mailto:dlegal@lemonfree.com">dlegal@lemonfree.com</a></p>
<p>Cheers,<br />
Dan &amp; the rest of the LemonFree Team</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/lemonfree.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/lemonfree.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lemonfree.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lemonfree.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lemonfree.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lemonfree.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lemonfree.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lemonfree.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lemonfree.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lemonfree.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lemonfree.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lemonfree.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lemonfree.wordpress.com&blog=867937&post=15&subd=lemonfree&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://lemonfree.wordpress.com/2007/10/15/lemonfreecom-and-text4carscom-partnership/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>