<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Official Site of Joseph Hinson &#187; Tips</title>
	<atom:link href="http://josephhinson.com/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://josephhinson.com</link>
	<description>Thoughts and Ramblings of Joseph Hinson</description>
	<lastBuildDate>Wed, 18 Jan 2012 02:56:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>2 Free Alternatives to Expensive Software</title>
		<link>http://josephhinson.com/2011/09/2-free-alternatives-to-expensive-software/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=2-free-alternatives-to-expensive-software</link>
		<comments>http://josephhinson.com/2011/09/2-free-alternatives-to-expensive-software/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 02:56:10 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://outthinkgroup.com/?p=199</guid>
		<description><![CDATA[I recently bought a new computer; when I went through the options deciding what I did/didn&#8217;t want, I cut it down to the barebones. I elected not to have any software on the computer that I&#8217;d have to pay for. Below are a few terrific free alternatives to spending lots of money on software. OpenOffice.org [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I recently bought a new computer; when I went through the options deciding what I did/didn&#8217;t want, I cut it down to the barebones. I elected not to have any software on the computer that I&#8217;d have to pay for. Below are a few terrific free alternatives to spending lots of money on software.</p>
<h3>OpenOffice.org 3.0</h3>
<p style="text-align: left;">Anyone who has used a computer without Microsoft Office knows that Word Pad is no alternative to Microsoft Word. OpenOffice.org&#8217;s word processor is, with most of the functionality of MS Word, it does a great job. Even down to the look and feel, it&#8217;s right on.</p>
<p style="text-align: left;">And it&#8217;s not just Word, the spreadsheet program is great too. I do my household budget in Excel, so I was a bit concerned that it wouldn&#8217;t work in OpenOffice, but I had no problems. You can even save to .xls for other users to open in Microsoft products. I haven&#8217;t needed to use the other applications in the suite, but I&#8217;m quite confident they&#8217;ll be great too.</p>
<p style="text-align: left;"><a title="OpenOffice is very nice" href="http://www.openoffice.org">Learn more at OpenOffice.org</a></p>
<h3>Avast Antivirus</h3>
<p style="text-align: left;">When I chose to deselect Norton Antivirus from my home computer build, it dropped $85 off of the final price. That&#8217;s pretty great, since Avast does just as good of a job for me.</p>
<p style="text-align: left;">It has great active protection, if a threat is detected it will immediately prompt you. Plus it has a toolbar attachment to Firefox / IE, if you want to use it.</p>
<p style="text-align: left;"><a title="Avast, a handy antivirus program" href="http://www.avast.com">Learn more about it here</a></p>
<p style="text-align: left;">I have since learned that <em><strong>AVG</strong></em> is as good if not better. <a href="http://avg.com">See it here.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://josephhinson.com/2011/09/2-free-alternatives-to-expensive-software/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My New Favorite CSS Selector</title>
		<link>http://josephhinson.com/2011/09/my-new-favorite-css-selector/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=my-new-favorite-css-selector</link>
		<comments>http://josephhinson.com/2011/09/my-new-favorite-css-selector/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 02:56:06 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://outthinkgroup.com/?p=222</guid>
		<description><![CDATA[I recently read the book &#8220;CSS Mastery: Advanced Web Standards Solutions&#8221; which I highly reccommend to anyone who uses CSS extensively. In the book it lists not just what you can do, but how to do it right. One selector that I read about in the book and implemented last week was the [att$=val] attribute [...]]]></description>
			<content:encoded><![CDATA[<p>I recently read the book &#8220;CSS Mastery: Advanced Web Standards Solutions&#8221; which I highly reccommend to anyone who uses CSS extensively. In the book it lists not just what you can do, but how to do it right. One selector that I read about in the book and implemented last week was the [att$=val] attribute selector.</p>
<p>This selector is super easy to use and looks like this:</p>
<pre>a[href$=".pdf"] {
    padding:7px 0 4px 31px;
    background: url(images/pdfsmall.jpg) no-repeat left top;
    display: block;
}</pre>
<p>This way any time someone links a .pdf document, a &#8220;Acrobat Reader&#8221; icon will show up to the left of the link, this way the visitor knows what he&#8217;s getting into when he clicks it.</p>
<p>Now the link looks like this:</p>
<p><img class="alignnone size-full wp-image-223" title="pdfscreen" src="http://outthinkgroup.com/wp-content/uploads/2008/12/screen_10-2008-12-19.gif" alt="pdfscreen" width="232" height="31" /></p>
<p>This works just as well with any other attribute. Just swap out the .pdf and image name and there it is.</p>
<p><em>Note: It should be stated that this attribute selector doesn&#8217;t work in IE6 (what a shocker). Although it does degrade gracefully into just a standard link.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://josephhinson.com/2011/09/my-new-favorite-css-selector/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Controlling a Budget; Restaurants</title>
		<link>http://josephhinson.com/2011/09/controlling-a-budget-restaurants/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=controlling-a-budget-restaurants</link>
		<comments>http://josephhinson.com/2011/09/controlling-a-budget-restaurants/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 02:56:04 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[budgeting]]></category>
		<category><![CDATA[favorite]]></category>
		<category><![CDATA[finances]]></category>

		<guid isPermaLink="false">http://geekitopia.com/?p=778</guid>
		<description><![CDATA[My family unit (at this point in time) is myself, my wife, and my 16 month old daughter. In the past year we have budgeted sporatically, but as of late have gotten back on the wagon. The biggest area of controllable spending for us was restaurants. This past month, with some extra travel expendatures and [...]]]></description>
			<content:encoded><![CDATA[<p>My family unit (at this point in time) is myself, my wife, and my 16 month old daughter. In the past year we have budgeted sporatically, but as of late have gotten back on the wagon. The biggest area of controllable spending for us was restaurants. This past month, with some extra travel expendatures and large utility bills, we needed to tighten down as much as possible. Below are a few ways we stayed out of the Restaurants:</p>
<h3>1. Will Power</h3>
<p>Obviously, the biggest difficulty in choosing not to eat out is the choice. We&#8217;ve found that the times we&#8217;re tempted the most is when we&#8217;re tired, near restaurants where it&#8217;s convenient, or it&#8217;s getting late and we aren&#8217;t about to be home to take care of dinner. Especially with a child, the thought of getting home and feeding the little one, then getting her bathed and in bed can be a little overwhelming. Sometimes it takes a little extra umph on the will power side of things.</p>
<h3>2. Cash Budget</h3>
<p>Having envelopes devoted specifically to food helps keep you from overspending. It also provides a visual representation of how much money you have left, and with some simple calculations, how many more times you can eat out. It reminds you that your finances are limited.</p>
<p>It also helps balance the rest of your budget, because it keeps you from spending the money that&#8217;s intended for gas or housing.</p>
<h3>3. Planning Meals out in advance</h3>
<p>My wife is a stay at home mom, she does a great job of planning our meals. She offers these tips for planning ahead:</p>
<ol>
<li><strong>Make a Calendar of what you will eat throughout the week/month.</strong>
<ul>
<li>It&#8217;s easier to stay on your cash budget for groceries because you know what you will need.</li>
<li>It takes away the work of deciding what to cook. You essentially spend one day planning all the meals instead of every day thinking about what you&#8217;re going to make.</li>
<li>It&#8217;s easier to prepare the meal because at 8am you know what you&#8217;re going to make for dinner.</li>
</ul>
</li>
<li><strong>Take Inventory of what you need to purchase before you go grocery shopping</strong>
<ul>
<li>This enables you to have everything you need to make the meal before the day starts, eliminating the hassle of having to run to the store to get something, or not having what you need and adding to the frustration of cooking at home.</li>
</ul>
</li>
<li><strong>Find meals that you can make extra and heat up later</strong>
<ul>
<li>We make Black bean and corn burritos that are easy to heat up and make later, use paper plates to further eliminate the hassle of dish washing.</li>
<li>Spaghetti is another good one for reheating (it&#8217;s also pretty cheap and easy to make).</li>
</ul>
</li>
<li><strong>Finish preparing the meal at dinner time (or at least have it started)</strong>
<ul>
<li>The main reason for this is that you&#8217;ve already committed to dinner at home if you&#8217;re most of the way into it. It removes the temptation to take the easy route and order pizza.</li>
</ul>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://josephhinson.com/2011/09/controlling-a-budget-restaurants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geekitopia 1.0 (the theme) released</title>
		<link>http://josephhinson.com/2011/09/geekitopia-1-0-the-theme-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=geekitopia-1-0-the-theme-released</link>
		<comments>http://josephhinson.com/2011/09/geekitopia-1-0-the-theme-released/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 02:56:02 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[downloads]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://geekitopia.com/?p=764</guid>
		<description><![CDATA[I&#8217;ve been working on my old theme that I called Geekitopia. The design for this was originally to captivate my personality with the color pallete and the feel of the site. I love classic games and geeky stuff, so that&#8217;s what&#8217;s going on in the theme. I also , so I added a color scheme [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on my old theme that I called Geekitopia. The design for this was originally to captivate my personality with the color pallete and the feel of the site. I love classic games and geeky stuff, so that&#8217;s what&#8217;s going on in the theme. I also <!--intlink id="570" type="post" text="love zombies"-->, so I added a color scheme for that as well. I built a color-scheme picker in the backend under &#8220;Change Color Scheme&#8221;. If anyone is interested, you&#8217;re more than welcome to it. I&#8217;ll post the download link here, and a few screenshots. Give it a test drive and drop some feedback.</p>
<p>Please keep in mind that I am releasing the theme &#8220;warts and all&#8221;, so don&#8217;t expect it to be perfect. It does, however, have dynamic sidebars and all major HTML element styles are supported.</p>
<p><a href="http://geekitopia.com/wp-content/uploads/2009/11/geekitopia.zip">Geekitopia Theme</a></p>

<a href='http://josephhinson.com/2011/09/geekitopia-1-0-the-theme-released/firefox-2/' title='BlueTheme'><img width="150" height="150" src="http://josephhinson.com/wp-content/uploads/2009/11/Firefox-2-150x150.png" class="attachment-thumbnail" alt="Screenshot of Blue theme" title="BlueTheme" /></a>
<a href='http://josephhinson.com/2011/09/geekitopia-1-0-the-theme-released/firefox/' title='Color Schemes'><img width="150" height="150" src="http://josephhinson.com/wp-content/uploads/2009/11/Firefox-150x150.png" class="attachment-thumbnail" alt="5 Color Scheme options" title="Color Schemes" /></a>

]]></content:encoded>
			<wfw:commentRss>http://josephhinson.com/2011/09/geekitopia-1-0-the-theme-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickly Organize Layers (Photoshop tip)</title>
		<link>http://josephhinson.com/2011/07/quickly-organize-layers-photoshop-tip/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=quickly-organize-layers-photoshop-tip</link>
		<comments>http://josephhinson.com/2011/07/quickly-organize-layers-photoshop-tip/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 15:12:53 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[layers]]></category>
		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://josephhinson.com/2009/06/quickly-organize-layers-photoshop-tip/</guid>
		<description><![CDATA[Here I&#8217;m describing how to get your layers together quickly in Photoshop. 1. Select the items you want Hold CTRL (PC) or Command (Mac) and click on the layer titles you want to be next to each other (clicking the layer thumbnail will only select the layer, and you don&#8217;t want that). 2. Shift the [...]]]></description>
			<content:encoded><![CDATA[<div class="LessonContent">
<div class="LessonSummary">
<p>Here I&#8217;m describing how to get your layers together <strong>quickly</strong> in Photoshop.</div>
<div class="LessonStep top">
<h3 class="StepTitle">1. Select the items you want</h3>
<div class="StepImage"><img src="http://josephhinson.com/wp-content/uploads/2009/06/media-1244491067425.png" alt="media-1244491067425.png" width="235" height="611" /></div>
<div class="StepInstructions">
<p>Hold <strong>CTRL</strong> (PC) or <strong>Command</strong> (Mac) and click on the layer titles you want to be next to each other (clicking the layer thumbnail will only select the layer, and you don&#8217;t want that).</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">2. Shift the layer(s) up or down</h3>
<div class="StepImage"><img src="http://josephhinson.com/wp-content/uploads/2009/06/media-1244491188567.png" alt="media-1244491188567.png" width="237" height="178" /></div>
<div class="StepInstructions">
<p>By using the little known keyboard shortcut <strong>Command + ]</strong> (or<strong> CTRL + ]</strong> on a PC) all layers selected will now be next to each other like so.</p>
<div class="LessonStep top">
<h3 class="StepTitle">That&#8217;s it!</h3>
<div class="StepInstructions">
<p>You&#8217;re done. Your layers are in line and easy to organize. You can group &#8216;em if you want, or just leave &#8216;em&#8230;but at least they&#8217;re in the same place.</p>
<p><em>If you liked this tip, and would like to see more, let me know in the comments.</em></div>
</div>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://josephhinson.com/2011/07/quickly-organize-layers-photoshop-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Ways NOT to get a Computer Virus</title>
		<link>http://josephhinson.com/2009/05/5-ways-not-to-get-a-computer-virus/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=5-ways-not-to-get-a-computer-virus</link>
		<comments>http://josephhinson.com/2009/05/5-ways-not-to-get-a-computer-virus/#comments</comments>
		<pubDate>Thu, 28 May 2009 13:40:26 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://josephhinson.com/?p=449</guid>
		<description><![CDATA[It&#8217;s not that hard. 1. Don&#8217;t go to sketchy sites. 2. Don&#8217;t download from sources you don&#8217;t know or trust. 3. Don&#8217;t open emails from people you don&#8217;t know, and ESPECIALLY not any attachments you get from them. 4. Don&#8217;t download Bittorrents. 5. Don&#8217;t be stupid.]]></description>
			<content:encoded><![CDATA[<p><strong>It&#8217;s not that hard.<br />
</strong></p>
<p>1. Don&#8217;t go to sketchy sites.</p>
<p>2. Don&#8217;t download from sources you don&#8217;t know or trust.</p>
<p>3. Don&#8217;t open emails from people you don&#8217;t know, and ESPECIALLY not any attachments you get from them.</p>
<p>4. Don&#8217;t download Bittorrents.</p>
<p>5. Don&#8217;t be stupid.</p>
]]></content:encoded>
			<wfw:commentRss>http://josephhinson.com/2009/05/5-ways-not-to-get-a-computer-virus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Holding Back</title>
		<link>http://josephhinson.com/2009/05/stop-holding-back/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=stop-holding-back</link>
		<comments>http://josephhinson.com/2009/05/stop-holding-back/#comments</comments>
		<pubDate>Sun, 17 May 2009 20:28:57 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[about me]]></category>

		<guid isPermaLink="false">http://outthinkgroup.com/?p=408</guid>
		<description><![CDATA[I am not, nor have I ever been, excellent at any one thing. This used to bother me. I had friends who were talented artists, or musicians, or terrific athletes, but not me. In being a singer, guitar player, and designer, I always knew I would never be the best, nor ever reach fame and [...]]]></description>
			<content:encoded><![CDATA[<p>I am not, nor have I ever been, excellent at any one thing. This used to bother me. I had friends who were talented artists, or musicians, or terrific athletes, but not me. In being a singer, guitar player, and designer, I always knew I would never be the best, nor ever reach fame and fortune for these tasks. The problem with this, was that it caused me to be distracted from the joy of such things, for the thought of failure at perfection.</p>
<p>After college I worked at a <a href="http://bedfordgrouphomes.org">residential group home school</a> where I started as a case aid, then became the GED Coordinator. In teaching GED math, I learned a profound lesson that would ripple through the rest of my life forever:</p>
<h3>Most things seem harder than they really are.</h3>
<p>The kids in my class would get so overwhelmed by fractions. When I was a teenager, I was TERRIBLE at math. I hated the subject. I hated math because I didn&#8217;t understand it, and it seemed so hard. The highest math I had ever achieved was Algebra 1 and Geometry. However, when I taught the kids in my program, it all made perfect sense. Fractions were easy, and algebra was . . . fun?</p>
<p>The next year, I was asked to give one-on-one instruction to a student in Algebra 2. As mentioned before, I had never taken Algebra 2, but I could read and understand the textbook better than he could, so I took on that task and found the same thing. Algebra 2 was easy &#8211; fun even. I enjoyed teaching, and wasn&#8217;t intimidated by the math because I now understood a further truth:</p>
<h3>Everything can be understood, and thus learned.</h3>
<p>After teaching for three years, I decided to see about designing (which was my college major) and got a job at a sign company. While I was there, we would develop custom solutions, and spend time thinking out of the box. I enjoyed this so much more than designing, that I became interested in Engineering. In the summer, I started on the Engineering track at the local community college, getting some prerequisites out of the way. I took Trigonometry 1 and 2. It was simple, something about understanding how it all works made sense. This new confidence spurred me on to realize this:</p>
<h3>With enough Time or Effort, you can do Anything</h3>
<p>And that&#8217;s the point I want to leave you with. Don&#8217;t hold yourself back because a task seems daunting. Every task has it&#8217;s own value of cognitive dissonance (the feeling of your brain shaking a big &#8220;NO&#8221;) that a person must push through in order to obtain control. The goal is not to obtain mastery, but competence in any area you like. Don&#8217;t hold yourself back because you&#8217;re not the best at any one thing; instead, build confidence by learning a new skill.</p>
]]></content:encoded>
			<wfw:commentRss>http://josephhinson.com/2009/05/stop-holding-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five Tools to Increase Your PC Productivity</title>
		<link>http://josephhinson.com/2008/12/five-tools-to-increase-your-pc-productivity/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=five-tools-to-increase-your-pc-productivity</link>
		<comments>http://josephhinson.com/2008/12/five-tools-to-increase-your-pc-productivity/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 10:54:57 +0000</pubDate>
		<dc:creator>Joseph</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://outthinkgroup.com/?p=169</guid>
		<description><![CDATA[If you&#8217;re like me, you&#8217;re always looking to multi-task faster. Being a designer trained on a Mac, when I work on a PC, I&#8217;m frustrated at how Microsoft has seemingly put it&#8217;s head in the sand when it comes to productivity. There&#8217;s a lot to be said for Apple&#8217;s integration of Dashboard Widgets, and Expose [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like me, you&#8217;re always looking to multi-task faster. Being a designer trained on a Mac, when I work on a PC, I&#8217;m frustrated at how Microsoft has seemingly put it&#8217;s head in the sand when it comes to productivity. There&#8217;s a lot to be said for Apple&#8217;s integration of Dashboard Widgets, and Expose into it&#8217;s operating system. It is so smooth and seamless, it has seduced a generation of computer users (including myself). However, I use a PC, because it&#8217;s cheap, and I can find whatever software I need quickly, and for free.</p>
<p>Today I&#8217;d like to share some tools (mostly Windows features) I use that save time on a PC. Some of these tips only save me seconds, but those seconds add up over a long time.</p>
<h3>1. Getting Organized</h3>
<p>I&#8217;m not the most organized person in the world by a long shot (just ask my wife). But I do try to make things easy to organize on my computer. So, I have one folder I save all my Out:think stuff in, one folder I save all my digital photographs in, and one folder I save all my personal projects in.</p>
<p>This allows me to quickly determine where a file would be located if I haven&#8217;t accessed it in awhile and need to get it again. In the old days, my computer was such a mess, I lost track of everything, using time that could have been used for a productive purpose.</p>
<p>Most of the tips below require that you use this type of &#8220;Main Folder -&gt; Sub-folder&#8221; architecture to be useful.</p>
<h3>2. Folder/Application Shortcuts</h3>
<p>This might seem like a no-brainer, but you can put shortcuts just about anywhere. This enables you to capitalize on those folders that, by default, windows encourages (pushes) you to use.</p>
<p>Any windows user knows what it&#8217;s like when you need to save a document in Word, or in my case, Photoshop. The folder it starts you in is miles away from the desired destination folder. Fortunately, the left sidebar always has options for My Computer, My Documents, Desktop, and some other mostly unused stuff. Use this to your advantage.</p>
<ol>
<li>Open two file explorer windows</li>
<li>Navigate the left window to your desired partition/drive (C:\ by default) that shows the folder you want to link.</li>
<li>Navigate the right window to &#8220;My Documents&#8221; (on Vista this is just the user&#8217;s name).</li>
<li>Now Right-Click and Drag the desired folder from the left window, to empty space in the right window (don&#8217;t drop it on a folder, or it will go into that folder).</li>
<li>When the option is given, choose &#8220;Create Shortcut Here&#8221;
<p><div id="attachment_170" class="wp-caption alignnone" style="width: 537px"><a href="http://outthinkgroup.com/wp-content/uploads/2008/12/screenhunter_05-dec-05-1127.gif"><img class="size-medium wp-image-170" title="Creating Shortcuts (the easy way)" src="http://outthinkgroup.com/wp-content/uploads/2008/12/screenhunter_05-dec-05-1127.gif" alt="This is what I'm talking about above" width="527" height="166" /></a><p class="wp-caption-text">Here&#39;s how it&#39;s done.</p></div></li>
<li>Now when you save a document, you can navigate quickly to My Documents -&gt; Your Favorite Shortcut, instead of clicking through.</li>
</ol>
<p>It might be worth noting, that Vista brought back a feature I loved about windows 98, which is Favorites.</p>
<p>It&#8217;s pretty easy to take advantage of this. See the screenshot below:</p>
<div id="attachment_173" class="wp-caption alignnone" style="width: 374px"><a href="http://outthinkgroup.com/wp-content/uploads/2008/12/screenhunter_03-dec-05-1123.gif"><img class="size-medium wp-image-173" title="Vista Favorites" src="http://outthinkgroup.com/wp-content/uploads/2008/12/screenhunter_03-dec-05-1123.gif" alt="Drag and Drop to add to favorites." width="364" height="270" /></a><p class="wp-caption-text">Drag and Drop to add to favorites.</p></div>
<h3>3. SendTo</h3>
<p>SendTo must be a little known secret about Windows, because I&#8217;ve not seen a lot of people use it. Believe it or not, you can customize this feature. You don&#8217;t just have to ZIP things or send items to your email (which I&#8217;m not sure if anyone does). I also use this feature to send files to specific folders, and install fonts.</p>
<p>For Vista: To add to your SendTo list, just type &#8220;Sendto&#8221; in your file explorer destination field.</p>
<p>For XP: Go to Start Menu -&gt; Run -&gt; Type &#8220;sendto&#8221; in the field click OK.</p>
<div id="attachment_175" class="wp-caption alignnone" style="width: 412px"><a href="http://outthinkgroup.com/wp-content/uploads/2008/12/screenhunter_06-dec-05-1237.gif"><img class="size-medium wp-image-175" title="SendTo" src="http://outthinkgroup.com/wp-content/uploads/2008/12/screenhunter_06-dec-05-1237.gif" alt="Installing Fonts has Never Been Easier!" width="402" height="350" /></a><p class="wp-caption-text">Installing Fonts has Never Been Easier!</p></div>
<p>Now you just Right click and Drag your desired folders over to add their shortcuts the SendTo list. You can easily transfer files from one location to another (although I believe it copies by default). This is especially useful for downloading and installing fonts. When you get your new font and unzip it, just SendTo C:\Windows\Fonts to install the new font. I labeled mine &#8220;Install Font&#8221;.</p>
<h3>4. Windows Keyboard Shortcuts</h3>
<p>Keyboard shortcuts can be really effective&#8230;but most people don&#8217;t use them, who has time to remember <a title="List of keyboard shorctus for windows" href="http://support.microsoft.com/kb/301583">the exhaustive list of them</a>? Well, there&#8217;s a few that I bother to remember, they use the Windows Logo Key.</p>
<p>The windows logo key; Yeah, it&#8217;s the one between Ctrl and Alt &#8212; it has a purpose.</p>
<ol>
<li><strong>Windows Logo + D: Shows Desktop</strong> &#8212; press it again to go back to the previous state.</li>
<li><strong>Windows Logo + E: Windows Explorer</strong> &#8212; allows you to look through your folders. It&#8217;s a quick access way to get to your files.</li>
<li><strong>Windows Logo + F: Search for files and folders.</strong> &#8212; Saves you a couple clicks to get to this application.</li>
</ol>
<h3>5. Third Party Help</h3>
<p>After using a Mac, I just can&#8217;t cope with Window&#8217;s abhorrant lack of concern for getting around quickly, so I call in some third party help. I have tried a number of programs that simulate the Expose feature, and have found some pretty good ones. Lifehacker had a pretty cool article on them <a title="Lifehacker article on Windows Expose clones" href="http://lifehacker.com/tag/expose/" target="_blank">that I would suggest reading</a>. Right now I&#8217;m using TopDesk.</p>
<p>TopDesk isn&#8217;t freeware, its 20 bucks, but from what I can tell so far, it&#8217;s worth it. I am currently using a duel monitor system, and it does a very good job of showing all windows on both monitors&#8230;not consolidating to two.</p>
<div id="attachment_176" class="wp-caption alignnone" style="width: 548px"><a href="http://outthinkgroup.com/wp-content/uploads/2008/12/bothscrens.jpg"><img class="size-medium wp-image-176" title="TopDesk on Duel Monitors" src="http://outthinkgroup.com/wp-content/uploads/2008/12/bothscrens-300x106.jpg" alt="Pretty cool right?" width="538" height="190" /></a><p class="wp-caption-text">Pretty cool right?</p></div>
<p>TopDesk will do more, so you can <a title="Otaku Software -- They make TopDesk" href="http://www.otakusoftware.com/topdesk/" target="_blank">visit their website</a> if you like, but I suggest trying out the free versions too, they might work just fine for your needs.</p>
<p>That about wraps it up. If you found this helpful, or would like to share a tip, Leave a Comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://josephhinson.com/2008/12/five-tools-to-increase-your-pc-productivity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

