<?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>Kennedy&#039;s Garage</title>
	<atom:link href="http://kennedysgarage.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kennedysgarage.com</link>
	<description></description>
	<lastBuildDate>Wed, 25 Aug 2010 17:53:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Godaddy: Increase upload max filesize</title>
		<link>http://kennedysgarage.com/godaddy-increase-upload-max-filesize/</link>
		<comments>http://kennedysgarage.com/godaddy-increase-upload-max-filesize/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 03:03:37 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[Godaddy]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=1303</guid>
		<description><![CDATA[Today I will show you how to increase you file upload limit if you have a Godaddy shared hosting plan. Why would you want to do this? To increase the size of your upload of course! By default Godaddy has &#8230; <a href="http://kennedysgarage.com/godaddy-increase-upload-max-filesize/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I will show you how to increase you file upload limit if you have a Godaddy shared hosting plan. Why would you want to do this? To increase the size of your upload of course! By default Godaddy has it set it 8M (8 megabytes) and according to them the limit is 64M (megabytes). So how do we know what it is currently. Simple, let makes a new file in your root directory and call it <strong>phpinfo.php</strong> and  inside this file we will put:</p>

<pre><code class="prettyprint">
&lt;?php phpinfo (); ?&gt;
</code></pre>

<p>Now go to <strong>yourdomain.com/phpinfo.php</strong> in your browser. You should see tables made with long list that include labels and values. Search for <strong>upload_max_filesize</strong> and you should see something that looks like:</p>
<img src="http://kennedysgarage.com/wp-content/uploads/2010/08/upload_max_filesize.png" alt="" title="upload_max_filesize" width="742" height="26" class="aligncenter size-full wp-image-1306" />

<p>There! We caught Godaddy red handed on setting our limitations on max upload! It really doesn&#8217;t matter, most people do not have the need. So we won&#8217;t get too upset at them. Lets press on and change that number! In the root directory we will create another file called <strong>php5.ini</strong> and inside this file we will put:</p>

<pre><code class="prettyprint">
upload_max_filesize = 64M
post_max_size = 64M
</code></pre>

<p>Now we wait&#8230;for at least an hour (according to Godaddy). A few things to take note of: Most of the time you would name the file php.ini, but Godaddy told me that was one reason it was not working for me when I tried. Also when I was on the phone with them they put me on hold. When he came back he told me that the max was 64M, then he paused to see if I would believe it. I told him I would do it his way first, then I paused to see if he would tell me not to go over that number. So later I will try it 250M and see where it goes. </p>

<p>What if you are on a dedicated hosting plan with Godaddy? Go read <a href="http://help.godaddy.com/article/1409">Godaddy article 1409</a> (this does not apply to shared hosting plans).</p>

<p>Now you are all set up and can take full advantage of your Godaddy services. Let me know if you have questions.</p>
<hr/>
<p><strong>Update (08/24/10):</strong> I put the upload_max_filesize at 250M and it showed up on the phpinfo, but it does not upload 250M worth.</p>
<p><strong>Update (08/25/10):</strong> Maybe I was a bit impatient, but it seems that I am now able to upload 250M. I will not test the waters above this number, but I am sure that you can increase it more if you wanted to.  </p>]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/godaddy-increase-upload-max-filesize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Google map with custom icon</title>
		<link>http://kennedysgarage.com/simple-google-map-with-custom-icon/</link>
		<comments>http://kennedysgarage.com/simple-google-map-with-custom-icon/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 13:28:42 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=1193</guid>
		<description><![CDATA[For whatever reason I could not find a simple Google map with one point with a custom icon. So ventured on and came upon Google Map API. My first impression was why is there so much information to make a &#8230; <a href="http://kennedysgarage.com/simple-google-map-with-custom-icon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For whatever reason I could not find a simple Google map with one point with a custom icon. So ventured on and came upon <a href="http://code.google.com/apis/maps/index.html">Google Map API</a>. My first impression was why is there so much information to make a map. After a few hours of reading I found out there is a lot of cool shit you can do with this API, but I still didn&#8217;t know how to make a simple map. Maybe I missed that page. So after a few more hours of trial and error I think I have it. Please enjoy and ask questions.</p>
<img src="http://kennedysgarage.com/wp-content/uploads/2010/08/googlemap-460x144.png" alt="" title="googlemap-460x144" width="460" height="144" class="aligncenter size-full wp-image-1218" />
<h3>What you need:</h3>

<h4>Call the API</h4>
<p>Just add this to the head.</p>
<pre><code class="prettyprint">
&lt;script type=&quot;text/javascript&quot; src=&quot;http://maps.google.com/maps/api/js?sensor=false&quot;&gt;&lt;/script&gt;
</code></pre>

<h4>Map JavaScript</h4>
<p>I am not going to go into too much detail as Google has covered every possible aspect in their <a href="http://code.google.com/apis/maps/documentation/javascript/basics.html">documentation</a>. Basically what this is doing is calling the coordinates by latitude/longitude and placing an image at that spot. Some things that you might want to change to better fit your needs:</p>
<ul>
<li>Coordinates (40.779166,-73.962928) &#8211; I had a hard time finding a simple method of getting the coordinates. For now <a href="http://itouchmap.com/latlong.html">itouchmap</a> works.</li>
<li>Zoom (15) &#8211; Between 0 (the lowest zoom level, in which the entire world can be seen on one map) to 21  are the set of numbers you can use.</li>
<li>MarkerImage (img/house.png &amp; img/house_shadow.png) &#8211; You change the path or image name.</li>

</ul>
<pre><code class="prettyprint">
&lt;script type=&quot;text/javascript&quot;&gt;
function initialize() {
	var latlng = new google.maps.LatLng(40.779166,-73.962928);
	var settings = {
		zoom: 15,
		center: latlng,
		mapTypeControl: false,
		mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
		navigationControl: true,
		navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
		mapTypeId: google.maps.MapTypeId.ROADMAP};
	var map = new google.maps.Map(document.getElementById(&quot;map_canvas&quot;), settings);
	var contentString = &#39;&#39;;
	var infowindow = new google.maps.InfoWindow({
		content: contentString
	});
	
	var companyImage = new google.maps.MarkerImage(&#39;img/house.png&#39;,
		new google.maps.Size(100,50),
		new google.maps.Point(0,0),
		new google.maps.Point(50,50)
	);

	var companyShadow = new google.maps.MarkerImage(&#39;img/house_shadow.png&#39;,
		new google.maps.Size(130,50),
		new google.maps.Point(0,0),
		new google.maps.Point(65, 50));

	var companyPos = new google.maps.LatLng(40.779166,-73.962928);

	var companyMarker = new google.maps.Marker({
		position: companyPos,
		map: map,
		icon: companyImage,
		shadow: companyShadow,
		title:&quot;Kennedy&#39;s Garage&quot;,
		zIndex: 3});
	
	
	google.maps.event.addListener(companyMarker, &#39;click&#39;, function() {
		infowindow.open(map,companyMarker);
	});
}
&lt;/script&gt;
</code></pre>

<h4>Call the map</h4>
<p>So now that we have all of this information lets put it to use. Just place this code where you would like the map to be displayed at. This calls the Map JavaScript from above.</p>
<pre><code class="prettyprint">
&lt;div id=&quot;map_canvas&quot; style=&quot;width:500px; height:300px&quot;&gt;&lt;/div&gt;
</code></pre>

<h4>Last bit of code</h4>
<p>I have made this last part of code last because that is how it will work on your site. Your JavaScript will load when the website is finished loading&#8230;in return display your map.</p>
<pre><code class="prettyprint">
&lt;body onload=&quot;initialize()&quot;&gt;
</code></pre>

<h4>Images</h4>
<p>We need a custom icon for our map. I created my own, feel free to use it. There is two parts: icon and shadow. The icon is 50&#215;50 with a bit of transparency and the shadow is 70&#215;50 also with some transparency.</p>
<img src="http://kennedysgarage.com/wp-content/uploads/2010/08/house.png" alt="" title="house" width="50" height="50" class="aligncenter size-full wp-image-1204" />
<img src="http://kennedysgarage.com/wp-content/uploads/2010/08/house_shadow.png" alt="" title="house_shadow" width="70" height="50" class="aligncenter size-full wp-image-1204" />

<h4>Finished</h4>
<p>There you go that is all you really need to have a simple one point location Google map with a custom icon.</p>


<p id="buttons"><a href="http://kennedysgarage.com/demo/simple-google-map-with-custom-icon/" class="button">Demo</a> <a href="http://kennedysgarage.com/wp-content/uploads/2010/08/SimpleGoogleMap.zip" class="button">Download</a></p>]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/simple-google-map-with-custom-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do you charge?</title>
		<link>http://kennedysgarage.com/how-do-you-charge/</link>
		<comments>http://kennedysgarage.com/how-do-you-charge/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 16:44:32 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[Interview]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=1107</guid>
		<description><![CDATA[I have noticed there is several way to charge clients and a lot of debate about each way. So, I once again called upon the experts in our field. The answers I was looking for was the method, not how &#8230; <a href="http://kennedysgarage.com/how-do-you-charge/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have noticed there is several way to charge clients and a lot of debate about each way. So, I once again called upon the experts in our field. The answers I was looking for was the method, not how much.</p>
<p>I have broken the main three ways of ways to charge clients:</p>
<ul>
<li><strong>Short Term:</strong> This is what I am officially calling &#8220;charging by the hour&#8221;. You give your client an estimate on amount of hours it will take for the project. If the clients demand more additions or changes you can easily charge more. This also might limit the client on something they really want.</li>
<li><strong>Project:</strong> This sounds like what it is, you charge per project. A client tells you that they have a set price and you either take it or leave it. The great thing about per project is both sides of the party know exactly how much they are getting. The bad part is the client can beat you into quitting your job if you do not lay out everything in the beginning.</li>
<li><strong>Retainer:</strong> This is where you set up a yearly contract, sometimes a half year. This is better for someone that does freelance full time or a company. You set up an initial fee, then brake down the year into monthly payments. This can work great because you can have a better relationship with your client and a website is always living. This gives it room to grow and improve. You have to be organized and have a set schedule to to get everything done in the day.</li>
</ul>
<br/><hr/><br/>

<p>
<strong>Name:</strong> David Perel<br/>
<strong>Website:</strong><a href="http://www.from-the-couch.com/" title="www.from-the-couch.com"> www.from-the-couch.com</a><br/>
<strong>Twitter:</strong><a href="https://twitter.com/obox" title="@obox"> @obox</a><br/>
<strong>Promoting:</strong><a href="http://www.obox-design.com" title="www.obox-design.com"> www.obox-design.com</a><br/>
<strong>Location:</strong> Cape Town, South Africa<br/>
</p>
<p><strong class="q">Q:</strong> How do you charge?<br/>
<strong class="a">A:</strong> It depends on the project but we always use either &#8220;per project&#8221; or &#8220;per hour&#8221;.</p>
<p>In cases where we charge per hour we set a minimum payment amount. We also only do this when the scope is not yet finalized or if there is a lot of design work that is required (social network sized sites).</p>
<p>For &#8220;Per Project&#8221; deals we have a minimum starting point as well. These kinds of projects are usually WordPress type blogs which involve the design and the coding.</p>
<p>I would say that with experience we have worked out that we benefit from either method. There have been the odd occasions where I wish we had used an hourly setup and vise versa. My advice is to always charge a 50% deposit up front.</p>
<p>If you are charging per hour make sure that you charge for minute that you are doing that work, that includes actually thinking up concepts etc. We also round off our minutes, so even if we do 5mins work we write down 15mins.</p>
<hr/><br/>

<p>
<strong>Name:</strong> Dustin Ward<br/>
<strong>Website:</strong><a href="http://www.dustinward.com/" title="www.dustinward.com"> www.dustinward.com</a><br/>
<strong>Twitter:</strong><a href="https://twitter.com/duward" title="@duward "> @duward </a><br/>
<strong>Promoting:</strong>Custom WordPress Theme Development<br/>
<strong>Location:</strong> Oklahoma City, OK<br/>
</p>
<p><strong class="q">Q:</strong> How do you charge?<br/>
<strong class="a">A:</strong> This is a very common question in the web development business, and there is not a right or wrong answer. For me, it comes down to the actual project at hand. In some cases it does not make sense to charge a fixed price. If I am only modifying a portion of the site, or adding functionality, I normally charge an hourly rate. If a client comes to me with an end-to-end project it usually makes sense for me to charge a fixed price. Although, if not done correctly and guidelines are not set up front, you can really put yourself in a bad place and will find yourself working on the site with no finish line in sight. The most important thing about a fixed price project is what has to be accomplished and what the end point for you is. Now, do not think that hourly pricing does not come with its own issues. With some clients you will run into what is an actual billable hour or how long “they” think it should take to finish something. Sites like odesk.com help with this, in some regards, with their oDesk Team software that takes random screenshots of developer’s desktops while logged in and it charges hours to the client. I prefer this method as it is rock solid proof of the billed hours that I’ve claimed. </p>
<p>Milestone payments are another way to charge clients. A milestone is a specific set of defined tasks agreed upon by you and your client. After you reach a milestone, a payment is made to you, and you and the client agrees on the next set. You can communicate with your client about unexpected issues of that portion of the project and both parties can decide to continue on to the next set of milestones. Identifying possible schedule issues earlier reduces your risk of investing more time than you originally estimated. I use the milestone way of doing fixed-price projects if the project is expected to run six months or longer. At the end of the day, the decision is yours on how to charge your client. The best solution that I have come up with is communication with the client. You should find out what they can or cannot do and what works best for you. I use all of the methods that I have talked about, and have had to adjust to the client’s needs, and I think that is one of the most important parts of being a web developer. </p>
<hr/><br/>

<p>
<strong>Name:</strong> Kevin Tomasso<br/>
<strong>Website:</strong><a href="http://www.progrphx.com/" title="www.progrphx.com"> www.progrphx.com</a><br/>
<strong>Twitter:</strong><a href="https://twitter.com/ktomasso" title="@ktomasso"> @ktomasso</a><br/>
<strong>Location:</strong> Tallahassee, FL<br/>
</p>
<p><strong class="q">Q:</strong> How do you charge?<br/>
<strong class="a">A:</strong>  Per Project. The caliber of clients I have are all on very limited budgets, and the thought of not knowing how much the total would be (by using per hour) is terrifying to them. Per project works because, like you said, it lets both parties know how much the project is worth up front. However, it&#8217;s often times hard to get a fair price, as the actual cost to profit on a job scares the client away. The other main drawback is &#8220;scope creep,&#8221; where the project starts out with one set of services, and ends up being twice the amount of work after multiple &#8220;can you just add this&#8221; requests by the client.</p>
<hr/><br/>

<p>
<strong>Name:</strong> Jacob Gube<br/>
<strong>Website:</strong><a href="http://sixrevisions.com" title="sixrevisions.com"> sixrevisions.com</a><br/>
<strong>Twitter:</strong><a href="https://twitter.com/sixrevisions" title="@sixrevisions"> @sixrevisions</a><br/>
<strong>Location:</strong> Bloomington, IN<br/>
</p>
<p><strong class="q">Q:</strong> How do you charge?<br/>
<strong class="a">A:</strong> To me, the best/easiest method is to charge by project. However, this sort of charging method is best left to professionals who are experienced and good at solid requirements-gathering. You don&#8217;t want to end up doing more work than you had quoted for due to something that you failed to account for. A contract for this method has to be bullet-proof. You should also have contingencies for charging more if there is scope creep. What&#8217;s nice here is that there&#8217;s mutual agreement between you and the partner about the exact deliverables that you will be providing for the rate that you are charging; this gives both parties a road map and a checklist which can be nice in providing closure to projects.</p>
<hr/><br/>

<p>
<strong>Name:</strong> Jacob Cass<br/>
<strong>Website:</strong><a href="http://justcreativedesign.com" title="justcreativedesign.com"> justcreativedesign.com</a><br/>
<strong>Twitter:</strong><a href="https://twitter.com/justcreative" title="@justcreative"> @justcreative</a><br/>
<strong>Location:</strong> Brooklyn, New York<br/>
</p>
<p><strong class="q">Q:</strong> How do you charge?<br/>
<strong class="a">A:</strong> For identity design projects I charge 50% upfront and then 50% before delivery of high res files. For web design jobs it is split in increments based on the size of the project. I&#8217;ve found working on a project to project basis makes things easier for both the client and designer, though you must ensure everything is outlined in the contract before starting the project otherwise, like you said, things could backfire later down the track.</p>
<hr/><br/>

<p>
<strong>Name:</strong> Andrew Houle<br/>
<strong>Website:</strong><a href="http://www.myinkblog.com" title="www.myinkblog.com"> www.myinkblog.com</a><br/>
<strong>Twitter:</strong><a href="https://twitter.com/myinkblog" title="@myinkblog"> @myinkblog</a><br/>
<strong>Location:</strong> WNY<br/>
</p>
<p><strong class="q">Q:</strong> How do you charge?<br/>
<strong class="a">A:</strong> At this point, I always bill by project. I&#8217;ve learned through trial and error that this is the best technique for me. I also think it&#8217;s the fairest method. Charging by the hour has too many troublesome variables to deal with. From the client&#8217;s perspective, they tend to be consumed with the amount per hour, and have the urge to cut corners to save on cost. From my perspective, I was never sure what the right amount to charge was. Plus, I tend to work in spurts, so it was a challenge to keep track of my time. Charging by the project allows me to work toward the best possible solution at a set rate. The client knows what to expect, and I avoid rushing the job.</p>
<hr/><br/>

<p>
<strong>Name:</strong> Tim Smith<br/>
<strong>Website:</strong><a href="http://timothybsmith.com" title="timothybsmith.com"> timothybsmith.com</a><br/>
<strong>Twitter:</strong><a href="https://twitter.com/timothybsmith" title="@timothybsmith"> @timothybsmith</a><br/>
<strong>Promoting:</strong> &#8220;Art Direction&#8221; on the web through his personal site.<br/>
<strong>Location:</strong> San Diego, CA<br/>
</p>
<p><strong class="q">Q:</strong> How do you charge?<br/>
<strong class="a">A:</strong> The method I use really depends on the project. However, I find myself using the &#8220;short-term&#8221; and &#8220;project&#8221; methods the most. There are some clients that due to their loyalty, I give them a flat rate. It doesn&#8217;t matter if I end up working a bit more than projected because, I know they&#8217;ll come back. To first time clients, I&#8217;ll usually charge by the hour. Thankfully, I haven&#8217;t had any problems with clients and I believe it has to do with my flexibility in method. Really, you could charge them the same with each method but, some feel more secure doing it a certain way and I&#8217;m more than happy to oblige.</p>
<hr/><br/>

<p>
<strong>Name:</strong> Elliot Jay Stocks<br/>
<strong>Website:</strong><a href="http://elliotjaystocks.com/" title="elliotjaystocks.com"> elliotjaystocks.com</a><br/>
<strong>Twitter:</strong><a href="https://twitter.com/elliotjaystocks" title="@elliotjaystocks"> @elliotjaystocks</a><br/>
<strong>Location:</strong> Cheshire, England<br/>
</p>
<p><strong class="q">Q:</strong> How do you charge?<br/>
<strong class="a">A:</strong> By and large, I charge on a per-day basis; i.e: if it takes 10 days, you pay for 10; if it takes 20 days, you pay for 20. The main reason I do this is because very early on in my freelance career (when I was freelancing alongside a full-time job) I took on a project which spiralled out of control from what was initially a week to months and months and months of work. Fortunately, I charged by the day from the outset, which saved me from working for free for all that time. It could&#8217;ve been a disaster!</p>
<p>But in general, clients like to have fixed prices. So I often quote them a fixed per-project price based on the number of days I think something will take, and be prepared to have a bit of flexibility with the time. But I also explain that if it starts running into more than 3 or 4 days extra, then they&#8217;ll have to be billed for that (assuming it&#8217;s down to client demands rather than me making mistakes). Really it&#8217;s about agreeing on a spec before any work begins and then sticking to that. If the spec changes, so can the money.</p>
<p>Having said all that, I charge differently for illustration and identity work, where I offer a fixed price for a certain amount of iterations, another fixed price for a further amount of iterations, etc. This keeps things manageable and affordable for the client.</p>
<hr/><br/>]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/how-do-you-charge/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CS-Cart Permalinks</title>
		<link>http://kennedysgarage.com/cs-cart-permalinks/</link>
		<comments>http://kennedysgarage.com/cs-cart-permalinks/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 07:54:51 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[CS-Cart]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=557</guid>
		<description><![CDATA[I wanted to have nice, clean, friendly URL links. I set off to CS-Cart&#8216;s documentation and came up short. I found bits of information here and there, but nothing was really too useful on this subject. I thought I would &#8230; <a href="http://kennedysgarage.com/cs-cart-permalinks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I wanted to have nice, clean, friendly URL links. I set off to <a href="http://www.cs-cart.com">CS-Cart</a>&#8216;s documentation and came up short. I found bits of information here and there, but nothing was really too useful on this subject. I thought I would spend a few extra minutes writing up this tutorial to save you a little time. If you have any questions please feel free to ask.</p>

<ol>
<li>Login into your admin panel.</li>
<li>Click the &#8220;Administration&#8221; tab.</li>
<li>Click the &#8220;Addons&#8221; link (it’s right underneath the tabs).</li>
<li>We are now looking for the link: SEO (requires URL manipulation engine &#8211; mod_rewrite or isapi_rewrite)</li>
<li>Change the status to &#8220;Active&#8221;</li>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/10/addons-a.png" alt="addons-a" title="addons-a" width="600" height="88" class="aligncenter size-full wp-image-571" />
<li>Click &#8220;edit&#8221;</li>
<li>Change the &#8220;product/page SEF URL format:&#8221; to &#8220;product_name.html&#8221; in the top pull down box.</li>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/10/selectclean.png" alt="selectclean" title="selectclean" width="600" height="311" class="aligncenter size-full wp-image-569" />
</ol>
<h3>Requires URL manipulation engine &#8211; mod_rewrite or isapi_rewrite?</h3>

<p>Now if you are anything like me, you have this feeling that you probable don&#8217;t have what is required. I read what was required a few time and it still didn&#8217;t make much sense right off the bat. Basically all it is say it to make sure you have mod_rewrite installed on your server. Great, now I bet you are going to ask how to check to see if it’s installed. There are a couple of different ways. </p>

<h4>WAMP</h4>
<p>If you are using <a href="http://www.wampserver.com">WAMP</a> as your local sever, you are in luck. WAMP has made this a very easy task.</p>

<ol>
<li>Go to <a href="http://localhost/">http://localhost/</a> and click &#8220;phpinfo()&#8221; under tools.</li>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/10/phptools.png" alt="phptools" title="phptools" width="215" height="111" class="aligncenter size-full wp-image-567" />
<li>Ctrl + F or search for &#8220;mod_rewrite&#8221;. If you have it, it should be under &#8220;Loaded Modules&#8221;.</li>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/10/searchmod.png" alt="searchmod" title="searchmod" width="600" height="341" class="aligncenter size-full wp-image-568" />
<li>If it is there great, it’s enabled. If not, go to the next step.</li>
<li>Left click on the WAMP icon in your system try.</li>
<li>Then go to &#8220;Apache modules&#8221;.</li>
<li>Then find &#8220;rewrite_module&#8221;. Make sure it has a check mark next to it, if it does not, click it so it does.</li>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/10/mod_rewrite.png" alt="mod_rewrite" title="mod_rewrite" width="513" height="468" class="aligncenter size-full wp-image-566" />
<li>Now you have &#8220;mod_rewrite&#8221; enabled!</li>
</ol>
<h4>Hosted Server</h4>
<p>If you are hosting your website on an actual server like <a href="http://www.tkqlhce.com/click-3684510-10378406" target="_top">www.GoDaddy.com </a><img src="http://www.awltovhc.com/image-3684510-10378406" width="1" height="1" border="0"/>, like I do, then follow along.</p>
<ol>
<li>Open a text editor and name a new file: phpinfo.php</li>
<li>Inside this new file place the following code (w/o quotes): &#8220;&lt;?php phpinfo(); ?&gt;&#8221;</li>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/10/text-file.png" alt="text-file" title="text-file" width="348" height="223" class="aligncenter size-full wp-image-570" />
<li>Upload this file to your base directory on your server.</p>
<li>Open up your favorite browser and go to your new page: http://yourwebsite.com/phpinfo.php</li>
<li> Ctrl + F or search for &#8220;mod_rewrite&#8221;. If you have it great, it&#8217;s enabled.</li>
<li>Note: Most hosting company have &#8220;mod_rewrite&#8221; installed as a default. In this case you will not be able to find it.</li>
<li>If you don&#8217;t know if your hosting company has it installed by default, either switch over to another hosting company like <a href="http://www.tkqlhce.com/click-3684510-10378406" target="_top">www.GoDaddy.com </a><img src="http://www.awltovhc.com/image-3684510-10378406" width="1" height="1" border="0"/> or call yours up and ask &#8220;Can you please add mod_rewrite to my Apache configuration?&#8221;</p>
</ol>
<h3>You’re done! Maybe?</h3>
<p>So now everything should be working. Let’s go to the home page and refresh the page, then click on a link. Does it take you to the page or show you an error? If you went to the correct page congrats, if not, it looks like you are stuck with me for a little bit more.</p>

<h3>The last fix.</h3>
<ol>
<li>Go to your root directory and open the file called: .htaccess</li>
<li>Open the file in a text editor and find the following: RewriteBase</li>
<li>Now replace that line of code with the following: RewriteBase /your_cscart_directory</li>
<li>Put a big smile on your face and leave us a comment.</li>
</ol>
<h3>Extra</h3>
<p>I have found these pages from <a href="http://www.cs-cart.com">CS-cart</a> and thought you guys might find it useful.</p>

<p><a href="http://docs.cs-cart.com/">http://docs.cs-cart.com</a><br/>
<a href="http://kb2.cs-cart.com/">http://kb2.cs-cart.com</a><br/>
<a href="http://kb.cs-cart.com/">http://kb.cs-cart.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/cs-cart-permalinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Magento – 04</title>
		<link>http://kennedysgarage.com/installing-magento-04/</link>
		<comments>http://kennedysgarage.com/installing-magento-04/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 04:14:18 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Screencast]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=468</guid>
		<description><![CDATA[Today we will be talking about Installing Magento on your local host using Wamp. I just wanted to show you how easy it is to install. This was a very time consuming install. I had a problem with logging in &#8230; <a href="http://kennedysgarage.com/installing-magento-04/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today we will be talking about Installing Magento on your local host using Wamp. I just wanted to show you how <del datetime="2009-08-17T03:50:13+00:00">easy it is</del> to install. This was a very time consuming install. I had a problem with logging in to the admin panel after the fresh install. It had something to do with the cookies. If you have problems with this install let me know and I will help you with it.</p>

<center>
<object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2502975&#038;feedurl=http%3A//kennedysgarage.blip.tv/rss/&#038;autostart=false&#038;brandname=Kennedy%26apos%3Bs%20Garage&#038;brandlink=http%3A//kennedysgarage.blip.tv/" width="600" height="455" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2502975&#038;feedurl=http%3A//kennedysgarage.blip.tv/rss/&#038;autostart=false&#038;brandname=Kennedy%26apos%3Bs%20Garage&#038;brandlink=http%3A//kennedysgarage.blip.tv/" /><param name="quality" value="best" /></object>
</center>

<h3>Links:</h3>
<p><a href="http://www.magentocommerce.com">Magento</a></p>
<h3>Special Thanks:</h3>
<p>Arju thanks for helping us log-in in to Magento! He made a post over at <em>Oracle in World</em> called <a href="http://arjudba.blogspot.com/2009/04/after-installing-magento-cant-log-in-to.html">After installing magento can&#8217;t log in to admin panel</a></p>
<h3>No Thanks:</h3>
<p>Magento with their documentation on the post of <a href="http://www.magentocommerce.com/wiki/groups/227/how_to_reset_your_password">How To Reset Your Password</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/installing-magento-04/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Billy Mays Overtake Plugin</title>
		<link>http://kennedysgarage.com/billy-mays-plugin/</link>
		<comments>http://kennedysgarage.com/billy-mays-plugin/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 06:08:53 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=407</guid>
		<description><![CDATA[<p>Do you which you could have Billy Mays pitch your blog. Now you can! "But wait there’s more!" A great man can live on, in the form of a plugin.</p> <a href="http://kennedysgarage.com/billy-mays-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Do you wish you could have Billy Mays pitch your blog? Now you can! &#8220;But wait there’s more!&#8221; A great man can live on, in the form of a plugin.</p>

<h3>Main Features</h3>
<p>&bull; ALL CAPS, EVERYWHERE!</p>

<h3>Screenshots</h3>
<p>Take a screenshot of your blog and we will post it.</p>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/08/kgscreenshot.png" alt="kgscreenshot" title="kgscreenshot" width="300" height="300" class="aligncenter size-full wp-image-414" />

<h3>Download</h3>

<a href="http://wordpress.org/extend/plugins/billy-mays-overtake/">
<img src="http://kennedysgarage.com/wp-content/uploads/2009/08/download.png" alt="download" title="download" width="212" height="35" class="aligncenter size-full wp-image-457" />
</a>



<h3>Installation</h3>
<ol>
<li>Unzip and Upload the `<em>billymaysovertake.php</em>` to the `/wp-content/plugins/` directory.</li>
<li>Go to `WP Admin » Plugins` and activate the ‘<em>Billy Mays Overtake</em>’ plugin.</li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/billy-mays-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Where is the wine folder at on my mac?</title>
		<link>http://kennedysgarage.com/where-is-the-wine-folder-at-on-my-mac/</link>
		<comments>http://kennedysgarage.com/where-is-the-wine-folder-at-on-my-mac/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 19:31:24 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=328</guid>
		<description><![CDATA[I just recently purchased a new MacBook Pro and it has been kicking my ass. This article is influenced by trying to install Wine on my Mac. Wine makes it possible to run windows software on either a Mac or &#8230; <a href="http://kennedysgarage.com/where-is-the-wine-folder-at-on-my-mac/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just recently purchased a new MacBook Pro and it has been kicking my ass. This article is influenced by trying to install <a href="http://www.winehq.org">Wine</a> on my Mac. Wine makes it possible to run windows software on either a Mac or Linux computer. I installed Wine with no problem with the help of <a href="http://davidbaumgold.com">davidbaumgold.com</a> with his article “<a href="http://davidbaumgold.com/tutorials/wine-mac/">Installing Wine on Mac OS X</a>”. The article is pretty in-depth on how to do this, so I will not go over that. </p>
<p>The part I had a hard time understanding is where wine installed my windows programs. I must have looked for three hours before I figured it out from a number of sources. I just figured that Macs where so simple. I found this program that is called <a href="http://www.bresink.com/osx/TinkerTool.html">Tinker tool</a>. It allows you to show hidden files on your Mac, among other things. </p>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/08/tinker.png" alt="tinker" title="tinker" width="600" height="343" class="aligncenter size-full wp-image-332" />
<p>For me the location of my files where:<br/>
Macintosh HD/user/kennedy/.wine/drive_c/<br/>
From here you will see you “Program Files” and other important Window files. (Replace kennedy with what ever you name your machine)</p>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/08/drivec.png" alt="drivec" title="drivec" width="600" height="370" class="aligncenter size-full wp-image-334" />
<p>Another problem I had was, I did not want to go to the terminal every time I wanted to a run program. I found another great little app called <a href="http://www.kronenberg.org/darwine/">Darwine</a>. This program allows you to run .exe files from the folder and not the terminal. </p>
<p>Note: To all the Mac users out there: I am only using my window programs until I purchase my Mac programs. I have already heard form my Mac friends “I would never run Window programs on Mac”.</p>]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/where-is-the-wine-folder-at-on-my-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Drupal &#8211; 03</title>
		<link>http://kennedysgarage.com/installing-drupal-03/</link>
		<comments>http://kennedysgarage.com/installing-drupal-03/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 20:42:49 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Screencast]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=255</guid>
		<description><![CDATA[Today we will be talking about Installing Drupal on your local host using Wamp. I just wanted to show you how easy it is to install. <a href="http://kennedysgarage.com/installing-drupal-03/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today we will be talking about Installing Drupal on your local host using Wamp. I just wanted to show you how easy it is to install.</p>

<center>
<object type="application/x-shockwave-flash" data="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2427842&#038;feedurl=http%3A//kennedysgarage.blip.tv/rss/&#038;autostart=false&#038;brandname=Kennedy%26apos%3Bs%20Garage&#038;brandlink=http%3A//kennedysgarage.blip.tv/" width="600" height="455" allowfullscreen="true" id="showplayer"><param name="movie" value="http://blip.tv/scripts/flash/showplayer.swf?enablejs=true&#038;file=http%3A//blip.tv/rss/flash/2427842&#038;feedurl=http%3A//kennedysgarage.blip.tv/rss/&#038;autostart=false&#038;brandname=Kennedy%26apos%3Bs%20Garage&#038;brandlink=http%3A//kennedysgarage.blip.tv/" /><param name="quality" value="best" /></object>
</center>

<h4>Links:</h4>
<ul class="list">
<li><a href="http://drupal.org">Drupal</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/installing-drupal-03/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Woot Explained</title>
		<link>http://kennedysgarage.com/woot-explained/</link>
		<comments>http://kennedysgarage.com/woot-explained/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 06:16:55 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[Explained]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=162</guid>
		<description><![CDATA[<p>Here is your guide for woot.com. Woot is “is an online store and community that focuses on selling cool stuff cheap”. It is a great place to buy all kinds of things. Anything from a Bag of California Jumbo Premium Pistachios to an iRobot Roomba Sage for cheap, real cheap.</p> <a href="http://kennedysgarage.com/woot-explained/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="intro">Here is your guide for woot.com. Woot is “is an online store and community that focuses on selling cool stuff cheap”. It is a great place to buy all kinds of things. Anything from a Bag of California Jumbo Premium Pistachios to an iRobot Roomba Sage for cheap, real cheap.</p>

<p><strong>Normal Woot Day:</strong> They sell one item for a 24 hour period, until it is sold out. After this 24 hour period, whether the item is sold out or not, they will post a new item for the next 24 hours.</p>

<a href="http://kennedysgarage.com/wp-content/uploads/2009/07/iwantone.jpg"><img class="aligncenter"  src="http://kennedysgarage.com/wp-content/uploads/2009/07/iwantone.jpg" alt="iwantone" title="iwantone" width="185" height="81" class="alignleft size-full wp-image-176" /></a>
<p><strong>Bouncing “I Want One!”:</strong> There are only a few left, so buy it now if you want one.</p>

<a href="http://kennedysgarage.com/wp-content/uploads/2009/07/wootoff.JPG"><img class="aligncenter"  src="http://kennedysgarage.com/wp-content/uploads/2009/07/wootoff.JPG" alt="wootoff" title="wootoff" width="492" height="56" class="alignleft size-full wp-image-180" /></a>

<p><strong>Woot Off!:</strong> This lasts anywhere from 24 -72 hours and is a constant stream of great deals. During this time they will sell a Bag O’ Crap (maybe). When the bar is full (all orange) the deal just started. When the bar is empty (all white) the item is sold out.</p>

<a href="http://kennedysgarage.com/wp-content/uploads/2009/07/bagocrap.jpg"><img class="aligncenter"  src="http://kennedysgarage.com/wp-content/uploads/2009/07/bagocrap-150x150.jpg" alt="bagocrap" title="bagocrap" width="150" height="150" class="alignleft size-thumbnail wp-image-184" /></a>
<p><strong>Bag O’ Crap:</strong> The Bag of Crap cost $1 + $5 for shipping. It is a random assortment of randomness. There is always one during a Woot Off! Example: Anything from a bag of Texas Air to 10 men’s Bulova Watches. Watch what people receive in there boc on YouTube.</p>
 
<a href="http://kennedysgarage.com/wp-content/uploads/2009/07/2fortuesday.jpg"><img class="aligncenter"  src="http://kennedysgarage.com/wp-content/uploads/2009/07/2fortuesday.jpg" alt="2fortuesday" title="2fortuesday" width="77" height="80" class="alignleft size-full wp-image-187" /></a>
<p><strong>2-for-Tuesday:</strong> This is where they offer 2 items for the price of one.</p>

<p><strong>Shipping:</strong> It cost $5 for shipping no matter how big or how many you buy.</p>

<h3>I have come up with some common questions that usually get asked in the member forums.</h3>

<p><strong>Q:</strong> How many can I Buy?<br/>
<strong>A:</strong> You can buy 1, 2, or 3 items and no more than that.</p>
<p><strong>Q:</strong> What do the color squares mean next to my user name in the members forum?<br/>
<strong>A:</strong> It is the number of times you have purchased.<br/>
&bull; Clear &#8211; 0 Woots<br/>
&bull; Yellow &#8211; 1 Woot<br/>
&bull; Orange &#8211; 2 Woots<br/>
&bull; Blue &#8211; 3 to 10 Woots<br/>
&bull; Dark Red &#8211; 11 to 25 Woots<br/>
&bull; Black &#8211; 25+ Woots<br/>
</p>
<p><strong>Q:</strong> If I completed a purchase, but it’s not on my “your account” page, does that mean that it didn’t go through?<br/>
<strong>A:</strong> Yes. Since there are lots of people that want to buy the same thing, the server might kick people off. So retry to buy the item until it shows up in “your account”</p>
<p><strong>Q:</strong> If you buy multiple items do you pay shipping for each one?<br/>
<strong>A:</strong> No you pay $5 per a purchase. So if you buy 1, its $5. If you buy 2, it’s $5. If you buy 3, it’s $5.</p>
<p><strong>Q:</strong> What should I have in my signature?<br/>
<strong>A:</strong> A lot of people put a itemize list of what they have bought or they put images of what they have bought.</p>
<p><strong>Q:</strong> How do I post a picture in the member’s forums?<br/>
<strong>A:</strong> You have to know BBCode. [img class="aligncenter" ][/img class="aligncenter" ]<br/>
For example: [img class="aligncenter" ] http://www.google.com/intl/en_ALL/images/logo.gif [/img class="aligncenter" ]</p>
<p><strong>Q:</strong> What was sold in the past few days?<br/>
<strong>A:</strong> Simply click “the community”</p>
<p><strong>Q:</strong> What are the best Woot Off items?<br/>
<strong>A:</strong> Woot monkey and Leak Frogs (but never talk about the Leak Frog)</p>
<p><strong>Q:</strong> What gets you on probation?<br/>
<strong>A:</strong> Bad manners</p>
<p><strong>Q:</strong> What if someone spams the page with vulgar pictures?<br/>
<strong>A:</strong> 1: Right click the image<br/>
2: Click “Block Images from …”</p>
<p><strong>Q:</strong> Is there a Firefox extension?<br/>
<strong>A:</strong> <a href="https://addons.mozilla.org/en-US/firefox/addon/4458" title="https://addons.mozilla.org/en-US/firefox/addon/4458">addons.mozilla.org/en-US/firefox/addon/4458</a></p>
<p><strong>Q:</strong> How can I learn more?<br/>
<strong>A:</strong> Go to the forums</p>

<h4>If you have any more question please check out:</h4>
<ul>
<li><a href="http://www.woot.com/WhatIsWoot.aspx" title="http://www.woot.com/WhatIsWoot.aspx">www.woot.com/WhatIsWoot.aspx</a></li>
<li><a href="http://en.wikipedia.org/wiki/Woot.com" title="http://en.wikipedia.org/wiki/Woot.com">en.wikipedia.org/wiki/Woot.com</a></li>
<li><a href="http://www.woot.com/Blog/ViewEntry.aspx?Id=2595" title="http://www.woot.com/Blog/ViewEntry.aspx?Id=2595">www.woot.com/Blog/ViewEntry.aspx?Id=2595</a></li>
<li><a href="http://woot.wikia.com/wiki/Main_Page" title="http://woot.wikia.com/wiki/Main_Page">woot.wikia.com/wiki/Main_Page</a></li>
</ul>

<h4>And for getting in touch with Woot:</h4>
<ul>
<li><a href="http://www.woot.com" title="www.woot.com">www.woot.com</a></li>
<li><a href="http://www.shirt.woot.com" title="www.shirt.woot.com">www.shirt.woot.com</a></li>
<li><a href="http://www.wine.woot.com" title="www.wine.woot.com">www.wine.woot.com</a></li>
<li><a href="http://www.sellout.woot.com" title="www.sellout.woot.com">www.sellout.woot.com</a></li>
<li><a href="http://www.twitter.com/woot" title="www.twitter.com/woot">www.twitter.com/woot</a></li>
<li><a href="http://www.mywoot.net" title="www.mywoot.net">www.mywoot.net</a></li>
</ul>

<h4>***EXTRA***</h4>
<ul>
<li>If something seems strange in a comment, click reply to see what they typed. Here are some common examples:</li>
<li><i>“What you type = What you get”</i></li>
<li>haha = *giggles*</li>
<li>lame = male</li>
<li>FAIL = I am an un-original person</li>
<li>bag of crap = Banjo of Consternation</li>
<li>boc = Blogging Old CEO</li>
<li>b0c = Brigand on Call</li>
<li>b.o.c. = Braille on Cookies</li>
<li>bag of crap = bag of carp</li>
<li>crap = carp</li>
<li>wootkiller = I should probably go outside</li>
<li>woot killer = This is my favorite product yet!</li>
<li>sucks = vacuums</li>
<li>wtf = PAAAaaaAAaaaanCAAAAAKES!</li>
<li>do not want! = Crooooooooow</li>
<li>LOL = llo</li>
<li>boo = I lost my spaghetti. =(</li>
<li>omg = Ovaltina, my goat</li>
<li>stfu = I’M BEING ATTACKED BY RABID WEASELS!</li>
<li>retard = Observer</li>
<li>douchebag = Dark Helmet</li>
<li>gay = pleasantly upbeat</li>
<li>refurb = respiffied</li>
<li>shit = Manos, the Hands of Fate</li>
<li>fuck = frak</li>
<li>fuckers = frakkers</li>
<li>fucking = frakking</li>
<li>bitch = grumble and/or bemoan fate</li>
<li>cunt = muffin</li>
<li>slut = homey don’t play that</li>
<li>dick = beautiful tulip</li>
<li>cock = purty scarf</li>
<li>asshole = ratholes</li>
<li>fugly = very ugly-duckling</li>
<li>? = cork soaker</li>
<li>? = ticks! GET THEM OFF! HURRY!</li>
<li>? = tree ants</li>
</ul>
<p>People own letter/word change = Bagles Originate Constipation, Bushels of Corn, Basket of Crackers,  Busch Oil Cans, Barney on Cleopatra, Barns on Clouds , Barak Obama’s Candy, Barack Obama’s Credibility, Big Ole Catfish, Bullwinkle on Couch, Big Ole’ Calliope, Battle Of Carthage, Barge of Concrete, Beijing Olympics, China, Bales of Cocaine, Brotherhood of Catfishermen, Bolivian Ox Carts, Basket of Carnivores, Blinged-Out Cabbage, Bag of Condoms, Barnacled Old Canoe, and Big Old Clown</p>
<a href="http://kennedysgarage.com/wp-content/uploads/2009/07/28fe043e-c578-40c3-9f72-7a34a742f7d4.jpg"><img class="aligncenter"  src="http://kennedysgarage.com/wp-content/uploads/2009/07/28fe043e-c578-40c3-9f72-7a34a742f7d4.jpg" alt="28fe043e-c578-40c3-9f72-7a34a742f7d4" title="28fe043e-c578-40c3-9f72-7a34a742f7d4" width="500" height="375" class="aligncenter size-full wp-image-190" /></a>
]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/woot-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Cleartype</title>
		<link>http://kennedysgarage.com/enable-cleartype/</link>
		<comments>http://kennedysgarage.com/enable-cleartype/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 20:24:17 +0000</pubDate>
		<dc:creator>kennedy</dc:creator>
				<category><![CDATA[Solutions]]></category>

		<guid isPermaLink="false">http://kennedysgarage.com/?p=141</guid>
		<description><![CDATA[If you ever think to yourself “these large fonts on the web look like crap”.  I might have a 30 second solution for you. <a href="http://kennedysgarage.com/enable-cleartype/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The other day when I was surfing the web, I notice that the large sized fonts look like crap. So I tried to change some settings on my screen, and then messed with firefox and it still looked the same. So I came across <a href="http://support.microsoft.com/kb/306527">Cleartype</a>. Cleartype is a setting that smoothes and sharpens the fonts being displayed. So after I enable it, I was very pleased with the results. This is how you do it.</p>
<ol>
<li>Right click on your desktop and click “Properties”.</li>
<li>Click the “Appearance” tab.</li>
<li>Click “Effects”.</li>
<li>Check the box that says “Use the following method to smooth edges of screen fonts:”.</li>
<li>Then choose “ClearType”.</li>
<li>Enjoy.</li>
</ol>
<img src="http://kennedysgarage.com/wp-content/uploads/2009/07/cleartype02.png" alt="ClearType How to" title="ClearType How to" width="600" height="327" class="aligncenter size-full wp-image-144" />]]></content:encoded>
			<wfw:commentRss>http://kennedysgarage.com/enable-cleartype/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
