<?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>Astro-Geek:3000 &#187; Applications</title>
	<atom:link href="http://www.astro-geek.com/category/applications/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.astro-geek.com</link>
	<description>Technology For Us</description>
	<lastBuildDate>Sat, 03 Apr 2010 03:19:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MS Excel: Link to Data in Different Sheet, Workbook</title>
		<link>http://www.astro-geek.com/2009/10/ms-excel-link-to-data-in-different-sheet-workbook/</link>
		<comments>http://www.astro-geek.com/2009/10/ms-excel-link-to-data-in-different-sheet-workbook/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 14:39:50 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[MS Office]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.astro-geek.com/?p=418</guid>
		<description><![CDATA[Microsoft Excel allows you to use data from different cells in your spreadsheet in formulas. It also lets you pull data from different spreadsheets and even separate workbooks.]]></description>
			<content:encoded><![CDATA[<p></p><p>First, let’s define the difference between a Workbook and a Sheet (or sometimes called a Worksheet.) A workbook is the overall Excel file, whereas the Sheets are the individual spreadsheets. A Workbook can contain multiple worksheets, which are the tabs along the bottom of the Excel window.</p>
<h3>Link Data in the Same Sheet</h3>
<p>In any given sheet, you can use data from any other cell. This is most commonly used for formulas. You can also use a very basic formula to duplicate a cell’s content. </p>
<p class="note">=E14</p>
<p>Entering this simple formula will display whatever’s in cell E14, whether it’s text, numbers, currency, or a date. If you change the contents of cell E14, all the other cells that reference E14 will change as well.</p>
<h3>Link Data Between Worksheets</h3>
<p>Where this linking ability of Excel really shines is when linking data between different worksheets. For example, if you have one spreadsheet (IT Expenses) that details expenses broken down by day or week, and another (Expenses by Dept) that compares total expenses between departments, you can pull the totals from the IT Expenses spreadsheet for use in the Expenses by Dept spreadsheet.</p>
<p>In the Expenses by Dept spreadsheet, you would enter this formula to pull the data from the IT Expenses sheet:</p>
<p class="note">=(IT Expenses!C21)</p>
<p>Now, this looks a little complicated, but it uses the same basic structure as the =E14 formula we used before. We’re just adding the name of the spreadsheet from which we want to pull the data.</p>
<h3>Link Data Between Workbooks</h3>
<p>Similar to how we can link data from separate worksheets, we can use data from entirely separate Excel files (workbooks). Again, the structure of the formula is simple; we just need to give Excel a little more information about where it should look for the data.</p>
<p class="note">=(‘[IT Expense Report.xls]IT Expenses’!C21)</p>
<p>In this case, we’re adding the other workbook’s file name (IT Expense Report.xls) in square brackets. Then we enclose the file name and sheet name in single quotes.</p>
<p>Please note that for security and convenience, try to keep the two Excel workbooks in the same folder.</p>
<p>These data linking techniques can also be incorporated into more complex formulas the same way you would use local cells.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2009/10/ms-excel-link-to-data-in-different-sheet-workbook/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iTunes: Manually Adjust Play Count in iTunes 9</title>
		<link>http://www.astro-geek.com/2009/09/itunes-manually-adjust-play-count-in-itunes-9/</link>
		<comments>http://www.astro-geek.com/2009/09/itunes-manually-adjust-play-count-in-itunes-9/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 13:11:26 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.astro-geek.com/?p=395</guid>
		<description><![CDATA[The script we've been using to manually adjust the play counts of song in iTunes no longer works with the latest version 9. This new script will allow you to change the play count easily.]]></description>
			<content:encoded><![CDATA[<p></p><div style="margin: 5px 20px 20px 20px; padding: 10px; background-color: #fdd; border: 1px solid #faa;">If you&#8217;re using iTunes 8 or earlier, I have an earlier post that will allow you to <a href="http://www.astro-geek.com/2009/01/itunes-manually-adjust-play-count/">manually adjust your play count</a>.</div>
<p>User <a href="http://forums.ilounge.com/showthread.php?t=40327" rel="nofollow">Tiketti has posted a script</a> on the iLounge forums that will allow you to adjust your play counts in iTunes 9.</p>
<blockquote><p><code>Dim iTunesApp, currTrack, newPlayCount<br />
</code><code>Dim prompt, title, defaultValue</p>
<p></code><code>Set iTunesApp = WScript.CreateObject("iTunes.Application")<br />
</code><code>Set currTrack = iTunesApp.CurrentTrack</p>
<p></code><code>prompt = "New playcount:"<br />
</code><code>title = currTrack.Artist &#038; " - " &#038; currTrack.Name<br />
</code><code>defaultValue = currTrack.PlayedCount</p>
<p></code><code>newPlayCount = InputBox (prompt, title, defaultValue)</p>
<p></code><code>If IsNumeric(newPlayCount) Then<br />
</code><code>	If newPlayCount >= 0 Then<br />
</code><code>		If Len(newPlayCount) > 0 Then<br />
</code><code>			currTrack.PlayedCount = newPlayCount<br />
</code><code>		End If<br />
</code><code>	End If<br />
</code><code>End If<br />
</code></p></blockquote>
<ol>
<li>Copy this code into Notepad.</li>
<li>Save the file as <strong>SetPlayCount.vbs</strong> (the file name doesn&#8217;t matter; just make sure it&#8217;s a .vbs file)</li>
<li>In iTunes, play the song whose play count you want to adjust; double click the script you just saved.</li>
<li>Enter the desired play count in the input box.</li>
<p>A few things to note&#8230; Unlike <a href="http://www.astro-geek.com/2009/01/itunes-manually-adjust-play-count/">the script for versions 8 and earlier</a>, you <em>must</em> have the song playing. If you only highlight the song as before, you&#8217;ll receive a script error.</p>
<p>Since this script works only on the song that is playing, it won&#8217;t work on multiple tracks.</p>
<p>Thanks, <a href="http://www.astro-geek.com/2009/01/itunes-manually-adjust-play-count/#comment-3227">Emma</a>, for the tip!</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2009/09/itunes-manually-adjust-play-count-in-itunes-9/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Taskbar Shuffle: Take Control of Your Taskbar</title>
		<link>http://www.astro-geek.com/2009/04/taskbar-shuffle-take-control-of-your-taskbar/</link>
		<comments>http://www.astro-geek.com/2009/04/taskbar-shuffle-take-control-of-your-taskbar/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 20:49:40 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[free download]]></category>

		<guid isPermaLink="false">http://www.astro-geek.com/?p=361</guid>
		<description><![CDATA[Taskbar Shuffle is a simple, small, free utility that lets you drag and drop your Windows taskbar buttons to rearrange them.]]></description>
			<content:encoded><![CDATA[<p></p><p><img title="Taskbar Shuffle" style="border-right: 0px; border-top: 0px; display: inline; margin: 0px 0px 10px 10px; border-left: 0px; border-bottom: 0px" height="84" alt="Taskbar Shuffle" src="http://www.astro-geek.com/wp-content/uploads/taskbarshuffle.gif" width="154" align="right" border="0" /> Some time ago, I came across a neat little program called <a title="Taskbar Shuffle" href="http://www.freewebs.com/nerdcave/taskbarshuffle.htm" target="_blank" rel="nofollow">Taskbar Shuffle</a>. It does exactly what it sounds like it does: Taskbar Shuffle gives you the power to rearrange the buttons on your taskbar. According to the website:</p>
<blockquote><p><strong>Taskbar Shuffle</strong> is a simple, small, free utility that lets you drag and drop your Windows taskbar buttons to rearrange them.&#160; Here’s a full feature list:</p>
<ul>
<li>
<p>Reorder your taskbar buttons by dragging and dropping them</p>
</li>
<li>
<p>Reorder your tray icons in the same way</p>
</li>
<li>
<p>Reorder tasks in a grouped button&#8217;s popup menu in the same way</p>
</li>
<li>
<p>Middle-click to close programs on your taskbar</p>
</li>
<li>
<p>Works with <a href="http://realtimesoft.com/ultramon">UltraMon</a> taskbars</p>
</li>
<li>
<p>Tweak taskbar button grouping</p>
</li>
</ul>
</blockquote>
<p>During a normal day, I’m on the computer for more than eight hours. So as you can imagine, I’ve gotten used to having things certain ways; my taskbar not excluded.</p>
<p><img title="Taskbar" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="14" alt="Taskbar" src="http://www.astro-geek.com/wp-content/uploads/taskbar-thumb.png" width="550" border="0" /> I like to have my browsers first, Outlook next, then my productivity applications, and finally all of the random windows. This makes switching between applications much easier.</p>
<p>Before Taskbar Shuffle, if a program were to crash, or otherwise get closed, it would throw everything off when I relaunched it. But thanks to this little gem of an application, I don’t need to worry about that any more. If I have to restart Firefox, for example, I can just grab it and put it back next to my Quick Launch menu. One thing you should keep in mind, though, is that it keeps related buttons grouped together. For example, if you have multiple messenger windows open, if you try to drag one, it will bring the others with it. I’m not saying this is a fault with the program; on the contrary, I think this feature is smart.</p>
<p>Taskbar Shuffle is very good at what it does. I have it auto-start with Windows, and never have to think about it. Taskbar Shuffle is “just there” and leaves a small footprint in terms of resources. It’s free and works with Windows 95, 98, 2000, NT, XP, and Vista (32-bit versions only.)</p>
<p><a href="http://www.freewebs.com/nerdcave/taskbarshuffle.htm" rel="nofollow">Click here to download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2009/04/taskbar-shuffle-take-control-of-your-taskbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Dropbox to Share Your iTunes Library</title>
		<link>http://www.astro-geek.com/2009/01/use-dropbox-to-share-your-itunes-library/</link>
		<comments>http://www.astro-geek.com/2009/01/use-dropbox-to-share-your-itunes-library/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 18:18:42 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.astro-geek.com/?p=263</guid>
		<description><![CDATA[Dropbox can eliminate the need for a flash drive for normal back-and-forth use.  But it can also be used to share your iTunes library between your computers.  See if this setup is right for you.]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://www.astro-geek.com/wp-content/uploads/itunes-150x150.png" alt="iTunes Media Player" title="iTunes Media Player" width="110" class="alignleft size-thumbnail wp-image-267" />In an older post, I showed you how to <a href="http://www.astro-geek.com/2008/12/share-your-itunes-library-between-multiple-computers/">share your iTunes library between computers</a>.  In another post, I talked about the virtues of the syncing web service, <a href="http://www.astro-geek.com/2009/01/dropbox-store-share-sync-files-online/">Dropbox</a>.</p>
<p><img src="http://www.astro-geek.com/wp-content/uploads/dropbox-small1.gif" alt="Dropbox" title="Dropbox" width="100" class="alignright size-full wp-image-268" />Now, iTunes &#038; Dropbox join the ranks of Great Combinations, rubbing elbows with the likes of Dungeons &#038; Dragons, Beavis &#038; Butthead, and Nuts &#038; Gum (Together At Last!)</p>
<p>Well, at least it has the <i>potential</i> to be a great combination.  By using Dropbox instead of an external hard drive, it&#8217;s feasible that you could eliminate the need to carry your music collection with you.  I&#8217;ll tell you how you&#8217;d set up sharing your iTunes library using Dropbox, but since <a href="http://www.astro-geek.com/2009/01/switching-to-mac-prologue/">I no longer use</a> <a href="http://www.astro-geek.com/2009/01/switching-to-mac-chapter-1/">a PC at home</a>, I can&#8217;t test this first-hand.</p>
<p>The idea behind this modified method is the same as before.  The difference is that you&#8217;ll be saving your iTunes library to your Dropbox folder.  DO NOT save your music folder to your Dropbox.  I&#8217;ll say it again: <i>do not</i> save your music folder to your Dropbox.  For one, it would take a really long time to sync.  For another, you only get 2GB of online storage.  You only want to copy your <tt>iTunes Library.itl</tt> file to your Dropbox folder.</p>
<p><a href="http://www.astro-geek.com/wp-content/uploads/chooseituneslib.png"><img src="http://www.astro-geek.com/wp-content/uploads/chooseituneslib-200x62.png" alt="&quot;Choose iTunes Library&quot; (Click to Embiggen)" title="&quot;Choose iTunes Library&quot; (Click to Embiggen)" width="200" height="62" class="alignright size-medium wp-image-264" /></a>Once you do this, you&#8217;ll have to redirect iTunes to look for your library in this new location.  Hold down the Shift key (Option on a Mac) while you launch iTunes.  Keep holding it down until you see the <i>Choose iTunes Library&#8230;</i> option box.  Select <i>Choose Library&#8230;</i> and find where you saved it in your Dropbox.  iTunes should launch normally, with all your ratings and play counts intact.</p>
<p>As soon as you do this, go into the Preferences (Edit » Preferences) and click the Advanced tab.  Make sure the iTunes Music folder location is pointing to wherever you have your collection.  It should <b>not</b> be pointing to your Dropbox; my iTunes changed this automatically when I chose to use the library in my Dropbox.  Be wary of this, otherwise any music you add will be put into your Dropbox.</p>
<p>Now this is where the potential of this setup could soar, and where I can&#8217;t test it (yet.)  Theoretically now, you should be able to save your music collection directly to your local hard drive on each machine, instead of your portable external hard drive.</p>
<p>This could be a fantastic setup if it works the way it does in my head.  The biggest advantage would be that you could share an iTunes library between two computers without having to lug around an external hard drive.  You would have synchronized play counts and ratings, and it would be (almost) completely transparent.</p>
<p>The disadvantage, however, becomes apparent when you add new music to your library.  While the iTunes library will recognize it without problems, you&#8217;ll have to physically copy the music file to each computer that&#8217;s sharing the library.  For example, if you buy a song from iTunes at home, it gets added to the library and all is well.  But when you go into work the next day and want to listen to your new song, iTunes won&#8217;t be able to find it.  You&#8217;ll have to carry the song on a flash drive and copy it to the collection on your work computer.  If it&#8217;s just a song or two, you could save it in your Dropbox to sync, then move it when you get in to work.  So, depending on how frequently you add new music to your library, this could be a big hassle.  If you find yourself constantly copying music back and forth, you might be better off going back to saving your library on the external hard drive.</p>
<p>Another thing you&#8217;ll want to keep in mind is that because iTunes is constantly updating the library file while the program runs, so too will Dropbox be syncing that file.  My iTunes library is about 4.5MB with about 2700 songs, and the corresponding XML file is about 10% bigger.  So be aware of this if your network usage is monitored or if you have a slow connection.</p>
<p>As far as I know, this will <i>not</i> work between Windows and Mac, since the two operating systems use different folder structures.  If you can try this between Windows machines, or between Macs, I&#8217;d love to hear how well this works; leave a comment so the rest of us can benefit from your great wisdom!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2009/01/use-dropbox-to-share-your-itunes-library/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>iTunes: Manually Adjust Play Count</title>
		<link>http://www.astro-geek.com/2009/01/itunes-manually-adjust-play-count/</link>
		<comments>http://www.astro-geek.com/2009/01/itunes-manually-adjust-play-count/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 16:02:54 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.astro-geek.com/?p=225</guid>
		<description><![CDATA[If, for whatever reason, you find yourself needing to adjust the play count of a song or songs in iTunes, here's a really simple way to do it without having to muck through XML files.]]></description>
			<content:encoded><![CDATA[<p></p><div style="margin: 5px 20px 20px 20px; padding: 10px; background-color: #fdd; border: 1px solid #faa;"><center><strong>This script does not work with the newest iTunes version 9.</strong> <br />Check out <a href="http://www.astro-geek.com/2009/09/itunes-manually-adjust-play-count-in-itunes-9/"><strong>this post</strong></a> for a new script.</center><center></center></div>
<p><center><a href="http://www.astro-geek.com/wp-content/uploads/jsError.png"><img src="http://www.astro-geek.com/wp-content/uploads/jsError-200x75.png" alt="JavaScript Error" title="JavaScript Error" width="200" height="75" class="aligncenter size-medium wp-image-393" /></a></center></p>
<div style="position:relative; border:0px; padding:10px; margin:10px;"><em>Please note: This only works for Windows</em></div>
<p>If, for whatever reason, you find yourself needing to adjust the play count of a song or songs in iTunes, here&#8217;s a really simple way to do it without having to muck through XML files.  I don&#8217;t remember where I found this script, but it works like a charm, so I&#8217;ll pass along.  Thanks to the original author, whoever you are.</p>
<ol>
<li>Download this file: <a href="http://www.astro-geek.com/AdjustiTunesPlayCount.txt"><tt>AdjustiTunesPlayCount.txt</tt></a> (Right-click, &#8220;Save Link As&#8230;&#8221;)</li>
<li>Change the file extension from <tt>.txt</tt> to <tt>.js</tt></li>
<li>Right-click the file and choose <b>Edit</b>. (If you choose Open, it will run the script; choose Edit)</li>
<li>Find the line <tt>currTrack.PlayedCount = 64</tt> and change &#8220;64&#8243; to your desired play count.  Save and Close</li>
<li>In iTunes, highlight/select the songs whose playcounts you want to change.</li>
<li>Double-Click the <tt>AdjustiTunesPlayCount.js</tt> file to run the script.  Voila.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2009/01/itunes-manually-adjust-play-count/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>Dropbox: Store, Share, &amp; Sync Files Online</title>
		<link>http://www.astro-geek.com/2009/01/dropbox-store-share-sync-files-online/</link>
		<comments>http://www.astro-geek.com/2009/01/dropbox-store-share-sync-files-online/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 14:22:56 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.astro-geek.com/?p=125</guid>
		<description><![CDATA[Dropbox, a service allowing you to store, sync, and share files online, has instantly become an integral part of my web-life.  Transparent in its every day use, it's hard to imagine using the Web without it.]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;ve been using <a rel="nofollow" href="http://www.getdropbox.com/tour" target="_blank">Dropbox</a> for several months now, and I wanted to offer it my congratulations.</p>
<p>As I mentioned in my <a href="http://www.astro-geek.com/2008/12/otherinbox-update/">post about OtherInbox,</a> I&#8217;m a bit lazy when it comes to my technology; it has to capture my attention and hold it with little to no effort on my part.  I&#8217;ve tried a lot of different web services over the years and most of them don&#8217;t last more than a week. I give these services every chance to better my life, or to make it more interesting, but for different reasons, they fall by the wayside, forgotten. Either they&#8217;re too difficult to use, too cumbersome to use, or they just don&#8217;t fit into my online lifestyle.</p>
<p><a rel="nofollow" href="http://www.getdropbox.com/tour" target="_blank">Dropbox</a> has cleared these hurdles that so many sites and services have run smack into and collapsed, twitching in a pile of twisted, useless data.</p>
<p>So, what exactly <i>is</i> Dropbox? Basically it&#8217;s a virtual file folder in which you can save pictures, music, documents, and whatever else you want to access on more than one computer.  If you&#8217;re using Windows, you&#8217;ll find a folder in your My Documents called <i>My Dropbox</i> &#8211; this isn&#8217;t movable.  On a Mac, however, you have a choice of where to put the folder.  Then, whatever you put in this folder will be synced to the Dropbox servers.  To access these files on another computer, you&#8217;ll have to set up the service just like you did on the first one.  Log in, and the folder will be automatically synced.  Depending on your connection and how much data you&#8217;re syncing, this could take several minutes.</p>
<p>The beauty and real strength of the Dropbox service is that it&#8217;s 99.9% transparent.  Unless you&#8217;re saving large files to the folder (say, more than 5 or 10 MB depending on your connection speed) you won&#8217;t notice the syncing at all.  It happens in real time, the instant you put the file in the folder.  There&#8217;s no waiting, and no need to force it to sync if you&#8217;re in a rush to get out the door.  <img src="http://www.astro-geek.com/wp-content/uploads/dbfiles.png" alt="Your Files Have Been Successfully Synced" title="Dropbox Files Synced" width="181" height="135" class="alignright size-full wp-image-154" />There&#8217;s no annoying popups or alerts telling you that your files have been uploaded, either.  Instead, each file icon is tagged with a small, unobtrusive green check mark.  While the files are in your Dropbox folder, you can do whatever you&#8217;d normally do with them &#8211; drag and drop them into different folders, rename them, or open them for editing.  When you&#8217;re done, save the file as you normally would, and Dropbox will sync the affected files immediately.</p>
<p>What makes the service even more useful and accessible is that you don&#8217;t need to have the software installed on your computer.  While it does make it much more usable, you might not always be at your own computer. Wherever you are, you can get access to your files by logging on to their website.</p>
<p>Upon installation, there are two folders created inside your My Dropbox folder.  Files in the <i>Public</i> folder can be shared to friends that aren&#8217;t Dropbox users.  You can create more public folders, and invite people to share by listing their email.  All the members of the folder can edit, add, and delete the contents. It works great for team projects and online collaboration.  The other folder, <i>Photos</i>, will have its contents displayed in the gallery on the web interface.  Here, you can get a permalink for each photo to email to friends and family.</p>
<p>You&#8217;re given 2GB of storage space, which I&#8217;ve found to be plenty. Remember, larger files take longer to sync, so the service works best with small files anyway.  When deciding on what you should use your Dropbox to store and sync, you might want to read through the Terms of Service, Privacy Policy, etc.</p>
<blockquote><p>THE SITE, CONTENT, FILES AND SERVICES ARE PROVIDED “AS IS”, WITHOUT WARRANTY OR CONDITION OF ANY KIND, EITHER EXPRESS OR IMPLIED.</p></blockquote>
<p>So in other words, use at your own risk.  Don&#8217;t store electronic copies of your bank statements, text files with all your passwords in them, or anything else you couldn&#8217;t stand to lose.</p>
<p>Bottom line: Dropbox is a wonderful convenience; much more convenient than a flash drive or emailing files to yourself.  Go sign up for it now!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2009/01/dropbox-store-share-sync-files-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making an iPhone Friendly Website</title>
		<link>http://www.astro-geek.com/2008/12/making-an-iphone-friendly-website/</link>
		<comments>http://www.astro-geek.com/2008/12/making-an-iphone-friendly-website/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 20:34:14 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.astro-geek.com/?p=110</guid>
		<description><![CDATA[As iPhones and iPod Touches continue to fly off the shelves, it's becoming more apparent that spending the time to make your website or blog iPhone-friendly is worth the effort.]]></description>
			<content:encoded><![CDATA[<p></p><p>As iPhones and iPod Touches continue to fly off the shelves, it&#8217;s becoming more apparent that spending the time to make your website or blog iPhone-friendly is worth the effort.</p>
<p>Even with (arguably) the best mobile browser in the world, the iPhone&#8217;s small screen can make it difficult to read information on some websites.  Its zooming and panning abilities make it easier, but it still limits your peripheral browsing vision.  Many mainstream sites like Google, Twitter, and Facebook have mobile versions of their content that allow easier browsing, but what are us little guys supposed to do?</p>
<p>While Astro-Geek:3000 displays fairly well on my iPhone &#8211; well enough to read, anyway &#8211; there are some elements that are a little off.  So, I looked around a little bit to see what kind of options were available to me for making an iPhone-friendly version of the blog.</p>
<p><a rel="nofollow" href="http://www.intersquash.com/">InterSquash</a> is a web-based service that creates an iPhonization using your RSS feed.  It&#8217;s a good idea, but it didn&#8217;t work for AG:3k; I keep getting <i>String could not be parsed as XML</i> errors.  Maybe you might have better luck.</p>
<p>The only other real option I found is a Wordpress plugin called <a rel="nofollow" href="http://www.bravenewcode.com/wptouch/">WPTouch</a>.  It allows different customization features including colors and icons; there are some icons included in the plugin, but it also explains how you can include your own custom icons.  Another nice little touch is the section at the bottom that shows you any incompatibilities between plugins.</p>
<p>The plugin creates a nice iPhone theme that&#8217;s easy to read and navigate, but doesn&#8217;t stifle your blog.  For instance, because InterSquash uses your RSS feed, visitors would still have to visit the main site to leave comments.  With WPTouch, visitors have full commenting abilities right at their fingertips.  WPTouch also supports pages by displaying their links under the Menu dropdown.</p>
<p>WPTouch is a solid plugin that does its job well.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2008/12/making-an-iphone-friendly-website/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>OtherInbox &#8211; Update</title>
		<link>http://www.astro-geek.com/2008/12/otherinbox-update/</link>
		<comments>http://www.astro-geek.com/2008/12/otherinbox-update/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 22:15:53 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[otherinbox]]></category>

		<guid isPermaLink="false">http://www.astro-geek.com/?p=105</guid>
		<description><![CDATA[Well, I&#8217;ve had my OtherInbox for a couple months now, but I haven&#8217;t really used it a whole lot.  I talked about what it does in an older post, so I won&#8217;t rehash that.
I&#8217;m going to be perfectly honest right now and confide in you a little secret: I&#8217;m lazy.  When it comes [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Well, I&#8217;ve had my <a rel="nofollow" href="http://www.otherinbox.com/">OtherInbox</a> for a couple months now, but I haven&#8217;t really used it a whole lot.  I talked about what it does in <a href="http://www.astro-geek.com/2008/09/otherinbox">an older post</a>, so I won&#8217;t rehash that.</p>
<p>I&#8217;m going to be perfectly honest right now and confide in you a little secret: I&#8217;m lazy.  When it comes to my technology, I&#8217;m lazy.  What I mean is that I don&#8217;t want to have to work too hard in order to take advantage of my technology.  Not only does it need to be easy to use, but it also needs to be readily available.  It needs to keep itself in the brackets of my attention span, otherwise I&#8217;ll forget about it.  OtherInbox is succumbing to this malady, albeit more slowly than other apps and services.</p>
<p>In order to make use of my OtherInbox, I have to click the button on my bookmark tab, which requires me to actively think about doing it.  I&#8217;m the one putting forth the effort.</p>
<p>It&#8217;s a great service, don&#8217;t get me wrong; the concept is nearly brilliant, and the execution has been done well.  But until they come out with a Firefox addon perhaps, or maybe an iPhone app, I&#8217;m still going to have trouble remembering to check my OtherInbox.  Granted, there is a notification service built into it that will send an email to my main address, but doesn&#8217;t that just defeat the purpose?</p>
<p>I recommend this site, especially for those less tech-lazy than I am.  If you want to give it a try, I think you still need an invitation to the beta.  I have some I can hand out so if you&#8217;d like one, leave a comment here &#8211; but mask it [i.e. <i>me(at)mailhost(dot)com</i>] &#8211; or send a message through my <a href="http://www.astro-geek.com/contact-me/">Contact Form.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2008/12/otherinbox-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox: Customize Search with Keywords</title>
		<link>http://www.astro-geek.com/2008/12/firefox-customize-search-with-keywords/</link>
		<comments>http://www.astro-geek.com/2008/12/firefox-customize-search-with-keywords/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 16:42:12 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.astro-geek.com/?p=55</guid>
		<description><![CDATA[Mozilla&#8217;s Firefox browser continues to gain more and more share of the browser market, especially after it&#8217;s third official release earlier this year.  It&#8217;s faster and more secure than Internet Explorer, but where it really shines is its expandability.  With a library of thousands upon thousands of addons, the functionality of Firefox can [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Mozilla&#8217;s <a rel="nofollow" href="http://www.mozilla.com/en-US/firefox/">Firefox browser</a> continues to gain more and more share of the browser market, especially after it&#8217;s third official release earlier this year.  It&#8217;s faster and more secure than Internet Explorer, but where it really shines is its expandability.  With a <a rel="nofollow" href="https://addons.mozilla.org/en-US/firefox/">library of thousands upon thousands of addons</a>, the functionality of Firefox can be extended almost infinitely.</p>
<p>One feature that I use constantly, often several times a day, doesn&#8217;t require the installation of an addon; it&#8217;s built right into the browser.  Using keywords with bookmarks, you can search virtually any site right from the Firefox address bar without first visiting the page.  It&#8217;s easy to setup and can even get a little addicting.</p>
<ul>
<li><a href="http://www.astro-geek.com/wp-content/uploads/2008/12/rightclick2.png"><img src="http://www.astro-geek.com/wp-content/uploads/2008/12/rightclick2-200x138.png" alt="Add a Keyword to this Search" title="Add a Keyword to this Search" width="200" height="138" class="alignright size-medium wp-image-72" /></a>For the first step we will have to visit the page first.  Simply go to the website you want to create a custom search for and locate their search box.  In this example I&#8217;ll be using NewEgg.com (not out of any sense of loyalty or preference over other online technology vendors, but because their search bar was close to their logo.) Then, right click in the search field and choose &#8220;Add a Keyword for this Search&#8230;&#8221;</li>
<li><a href="http://www.astro-geek.com/wp-content/uploads/2008/12/addbkmk1.png"><img src="http://www.astro-geek.com/wp-content/uploads/2008/12/addbkmk1-200x100.png" alt="Add Bookmark" title="Add Bookmark" width="200" height="100" class="alignleft size-medium wp-image-64" /></a>Next, a window similar to this one will pop up.  The &#8220;Name:&#8221; field will be what it&#8217;s listed as in your bookmarks; in this example, I gave it the name of the site.  The &#8220;Keyword:&#8221; field is what you&#8217;ll use to invoke the search &#8211; <i>egg</i> in this example.  And finally, choose a place to save the bookmark.  If you want, you can create a special folder just for these customized searches.  Just click the small button with the down-arrow to the right of the &#8220;Create In:&#8221; pulldown.  This will give you the option to create a new folder.  When you&#8217;re done, click the &#8220;Add&#8221; button.</li>
<li><a href="http://www.astro-geek.com/wp-content/uploads/2008/12/search2.png"><img src="http://www.astro-geek.com/wp-content/uploads/2008/12/search2-200x91.png" alt="Customized Firefox Keyword Search" title="Customized Firefox Keyword Search" width="200" height="91" class="alignright size-medium wp-image-70" /></a>Now you can use Firefox to search your favorite sites from anywhere on the web.  All you have to do is type your keyword in the address bar, followed by the search terms.  Using the New Egg example, it would look like the picture to the right.  Once you hit Enter, it will take you to the results of your search.  One thing you may want to keep in mind; this will navigate you away from whatever page you have open.  Here&#8217;s a tip: hit Ctrl-T to open a new tab, then type in your keyword search.</li>
</ul>
<p>As I mentioned, this keyword search feature can be used for virtually any site with a search function.  Some of the sites I use the keyword search function for on a regular basis include Wikipedia, Google Image Search, and Google Maps.  You could create keyword searches for video sites like Youtube, shopping sites like eBay or Amazon, or even the blogs you like to read.  The only real limit to the number of keyword searches you can create is your own ability to remember them all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2008/12/firefox-customize-search-with-keywords/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Share Your iTunes Library Between Computers</title>
		<link>http://www.astro-geek.com/2008/12/share-your-itunes-library-between-multiple-computers/</link>
		<comments>http://www.astro-geek.com/2008/12/share-your-itunes-library-between-multiple-computers/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 19:50:09 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://astro-geek.com/?p=3</guid>
		<description><![CDATA[For quite a long time, I was trying to manage two iTunes music libraries; one at work and one at home.  I listen to music probably 7 out of 8 hours a day at work, but fairly rarely at home.  But when I did listen at home, I didn’t have the same playlists [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>For quite a long time, I was trying to manage two iTunes music libraries; one at work and one at home.  I listen to music probably 7 out of 8 hours a day at work, but fairly rarely at home.  But when I did listen at home, I didn’t have the same playlists I had at work, since many of them are dynamic, based on play counts and ratings.  </p>
<p>I found a remedy a month or so ago, and now I can listen to the same library at work and at home.  It works wonderfully.</p>
<p>To make this work for yourself, you’ll need an external hard drive or some other form of portable storage.  A USB thumb/pen/flash drive would work, if you have a small collection.  I’m using a 160GB hard drive I’d purchased for my laptop.  It’s not an external drive, but I purchased an enclosure for it.  The great thing about this setup is that it doesn’t need a separate power supply; it receives enough power through the USB connection so there’s no need to carry around a bulky AC adapter.  This makes it <i>much</i> more portable.  The enclosure came with a carry pouch, so I can easily carry the hard drive and USB cable with me between home and work.</p>
<p>I digress.</p>
<p>Start off on the computer that has the library you want to use.  If one library is more developed than the other, you’ll obviously want to use the more developed one.  </p>
<ol>
<li>First of all, move your music files onto your portable storage device.  The read/write speed on an external hard drive is plenty fast enough, so if you’re worried about choppy playback, you needn’t fret.  It doesn’t matter what drive letter your external drive comes up as, but it does need to remain constant every time you connect it.  You may want to change it to something further down the alphabet so there’s no chance that other portable media will steal that letter.  The drive letter does not need to be the same between computers, however; they can be different.  For instance, it could be the K: drive on your work computer and the P: drive at home; as long as it&#8217;s always K: at work and always P: at home, you&#8217;ll be fine.</li>
<li> Once you get your music copied over, you’ll want to copy your iTunes library onto your external hard drive.  It can be found in the iTunes folder in My Music (C:Documents and Settings(your username)My DocumentsMy MusiciTunes).  Copy <font size="2"><tt>iTunes Library.itl</tt></font> and <font size="2"><tt>iTunes Music Library.xml</tt></font> over to your external hard drive, preferrably in their own separate folder.</li>
<li><a href="http://www.astro-geek.com/wp-content/uploads/2008/12/chooseituneslib1.png"><img src="http://www.astro-geek.com/wp-content/uploads/2008/12/chooseituneslib1-200x62.png" alt="Choose iTunes Library" title="Choose iTunes Library" width="200" height="62" class="alignright size-medium wp-image-47" /></a>Now that your music and library files are copied over, you can configure iTunes to use these files instead of the defaults.  To do this in Windows, hold the [Shift] key while double-clicking the iTunes icon to launch it; In OS-X, hold down the Option key while launching iTunes.  A window will come up asking you to specify a library.  Click the “Choose Library&#8230;” button.  Browse to where you saved your library onto your external hard drive and select it.  iTunes will now use this library file instead of the one saved in your My Music folder.</li>
<li>The final thing you’ll want to do is change the iTunes Music folder location.  To do this, go into the Settings within iTunes and click on the “Advanced” tab.  Change the folder location to wherever it is on your external hard drive.</li>
</ol>
<p>The first computer is set up.</p>
<p>On the second computer, all you have to do is follow steps 3 &#038; 4 above.  That’s it!  You now have two computers sharing the same library, same play counts, same ratings, and same playlists!  And the beauty of this setup is that you can import music on either computer and instantly have access to it on the other!</p>
<p>I haven’t tried it on more than two machines, but I don’t see any reason why you couldn’t do this on three, four, or as many computers as you want.  Keep in mind, however, that this is <strong>not</strong> a media server.  As far as I know, you can’t share out the library files to use on multiple computers simultaneously.  This is a one-at-a-time setup.  It’s designed for going back and forth from home/work, or perhaps if you’re going to be using an unfamiliar computer for a period of time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.astro-geek.com/2008/12/share-your-itunes-library-between-multiple-computers/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
