<?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>Problems to Solve &#187; leopard</title>
	<atom:link href="http://problemstosolve.com/category/leopard/feed/" rel="self" type="application/rss+xml" />
	<link>http://problemstosolve.com</link>
	<description>A Blog dedicated to solving problems.</description>
	<lastBuildDate>Fri, 12 Mar 2010 05:49:52 +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>Get Growl Notifications on VNC connections, SSH attempts, and HTTP logs [solved]</title>
		<link>http://problemstosolve.com/2010/01/28/get-growl-notifications-on-vnc-connections-ssh-attempts-and-http-logs-solved/</link>
		<comments>http://problemstosolve.com/2010/01/28/get-growl-notifications-on-vnc-connections-ssh-attempts-and-http-logs-solved/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 05:40:35 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=192</guid>
		<description><![CDATA[Use this script to monitor VNC connections with Vine Server:
nice -n 100 tail -n 0 -f /Users/jordan/Library/Logs/VineServer.log &#124; php -r 'while ($m = fgets(STDIN)) shell_exec("growlnotify -p 0 Vine Server -m ". escapeshellarg($m));'
Change &#8220;jordan&#8221; to your username (home directory), or the whole path of the log if you&#8217;re monitoring something else. &#8220;Vine Server&#8221; is the alert [...]]]></description>
			<content:encoded><![CDATA[<p>Use this script to monitor VNC connections with Vine Server:<br />
<code>nice -n 100 tail -n 0 -f /Users/jordan/Library/Logs/VineServer.log | php -r 'while ($m = fgets(STDIN)) shell_exec("growlnotify -p 0 Vine Server -m ". escapeshellarg($m));'</code></p>
<p>Change &#8220;jordan&#8221; to your username (home directory), or the whole path of the log if you&#8217;re monitoring something else. &#8220;Vine Server&#8221; is the alert title, which could be anything (&#8220;Hello World&#8221;).</p>
<p>Save this as a file such as vncnotify.sh. Run<br />
<code>chmod 755 vncnotify.sh</code><br />
and then you can run the command by typing ./vinenotify.sh.</p>
<p>Duplicate this file and name it vinenotify.command.<br />
Finally, in System Preferences > Accounts > Start up items, add vinenotify.command, and make it hidden, and it will run when you log in.</p>
<p>Things I&#8217;m still working on: preventing a string of notifications when you launch VNC; hiding the terminal window when you log in; and grepping for only connect/disconnect/login failures.<br />
Thanks to <a href="http://drewish.com/content/2008/06/using_growl_to_tail_a_log_file">drewish.com</a> for the growl tail code.</p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2010/01/28/get-growl-notifications-on-vnc-connections-ssh-attempts-and-http-logs-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check for open logs running on OS X, unix or linux [solved]</title>
		<link>http://problemstosolve.com/2010/01/28/check-for-open-logs-running-on-os-x/</link>
		<comments>http://problemstosolve.com/2010/01/28/check-for-open-logs-running-on-os-x/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 05:31:07 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=190</guid>
		<description><![CDATA[Use this command to find the log you&#8217;re looking for:
lsof &#124; grep -i log
On OS X, typical directories I look in are /var/log/, $HOME/Library/Logs/, and /private/var/log/.
]]></description>
			<content:encoded><![CDATA[<p>Use this command to find the log you&#8217;re looking for:<br />
lsof | grep -i log</p>
<p>On OS X, typical directories I look in are /var/log/, $HOME/Library/Logs/, and /private/var/log/.</p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2010/01/28/check-for-open-logs-running-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move Some Common OS X Apps Out of the Dock [solved]</title>
		<link>http://problemstosolve.com/2009/04/07/move-some-common-os-x-apps-out-of-the-dock-solved/</link>
		<comments>http://problemstosolve.com/2009/04/07/move-some-common-os-x-apps-out-of-the-dock-solved/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 06:11:36 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Organization]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=173</guid>
		<description><![CDATA[There are some really nifty apps out there that I have set to run all the time, and they&#8217;ve been starting to crowd up my dock.
Jungledisk is better than Mozy and is my preferred online backup utility. It&#8217;s secure, it uses Amazon S3, it supports versioning, and allows online access. Anyway I noticed their latest [...]]]></description>
			<content:encoded><![CDATA[<p>There are some really nifty apps out there that I have set to run all the time, and they&#8217;ve been starting to crowd up my dock.</p>
<p><a href="http://www.jungledisk.com/" target="_blank">Jungledisk</a> is better than Mozy and is my preferred online backup utility. It&#8217;s secure, it uses Amazon S3, it supports versioning, and allows online access. Anyway I noticed their latest version of the app allows you to show the app in the status bar instead of the dock. Update Jungle Disk and then go to Configure > Application Settings > Show application in: Status Bar.</p>
<p><a href="http://www.blacktree.com/" target="_blank">QuickSilver</a> is another great keyboard launcher app I use all the time. It also supports hiding the app from the dock. Go to Preferences > Application and uncheck Show icon in dock. It automatically shows in the status bar when you do this.</p>
<p><a href="http://growl.info/" target="_blank">Growl</a> is one of my favorite apps, as is HardwareGrowler. However HardwareGrowler has no user interface but still hangs out in the dock. You can fix this by following the instructions on <a href="http://growl.info/documentation/hardwaregrowler.php" target="_blank">this page</a>. It took me a couple tries (I put the &lt;key&gt;LSUIElement&lt;/key&gt;&lt;true/&gt; in the wrong place the first time and had to start over&#8230;Also you touch the whole HardwareGrowler.app package in the finder), but now it&#8217;s hidden from the dock.</p>
<p>Now if only I could get <a href="http://sourceforge.net/projects/osxvnc/" target="_blank">VineServer</a> working with Growl. VineServer does allow you to install a system server, but unlike the app, it does not notify when someone connects, which I prefer to know about. So for now, VineServer sits in my dock as a hidden application.</p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2009/04/07/move-some-common-os-x-apps-out-of-the-dock-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back up iPhone SMS messages into an excel database without jailbreaking [solved]</title>
		<link>http://problemstosolve.com/2009/03/29/back-up-iphone-sms-messages-into-an-excel-database-without-jailbreaking/</link>
		<comments>http://problemstosolve.com/2009/03/29/back-up-iphone-sms-messages-into-an-excel-database-without-jailbreaking/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 07:46:25 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Organization]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[phones]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=166</guid>
		<description><![CDATA[So here&#8217;s a somewhat complicated but entirely graphical way of backing up your SMS messages from your iPhone into an excel spreadsheet. I couldn&#8217;t get Syphone to work so here is my solution.
The first thing you&#8217;ll need is iPhone Backup Extractor. It&#8217;s a mac program, but there are other cross platform backup decoders out there [...]]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s a somewhat complicated but entirely graphical way of backing up your SMS messages from your iPhone into an excel spreadsheet. I couldn&#8217;t get <a href="http://www.micromat.com/index.php?option=content&#038;task=view&#038;id=190" target="_blank">Syphone</a> to work so here is my solution.</p>
<p>The first thing you&#8217;ll need is <a href="http://supercrazyawesome.com/" target="_blank">iPhone Backup Extractor</a>. It&#8217;s a mac program, but there are other cross platform backup decoders out there such as <a href="http://code.google.com/p/mobilesync-inspect/" target="_blank">mobilesync-inspect</a>. You&#8217;re looking for the SQLite SMS database (iPhone Backup Extractor calls it SMS.db). iPhone Backup Extractor is not compatible with iPhone OS 3.0 yet but it does work with 2.2.1. Hopefully 3.0 will work soon.</p>
<p>Run iPhone Backup Extractor and select your most recent backup. Scroll down to the bottom of the applications and choose iPhone OS. Choose a folder to save it in.</p>
<p><img src="http://problemstosolve.com/wp-content/uploads/extractor.png" alt="iPhone Extractor" title="iPhone Extractor" width="463" height="462" class="alignnone size-full wp-image-168" /></p>
<p>Then, use an SQLite browser such as <A href="https://addons.mozilla.org/en-US/firefox/addon/5817" target="_blank">SQLite Manager</a> (don&#8217;t know why this is a firefox addon, but it rocks) to view the database.</p>
<p><img src="http://problemstosolve.com/wp-content/uploads/export.png" alt="export" title="export" width="226" height="279" class="alignnone size-full wp-image-169" /></p>
<p>All of the SMSes are stored in the messages table &#8211; you can right click on it and export it as a CSV. Alternatively you could export the whole database as an SQL or XML file. But open up the CSV in excel and you&#8217;re done! Sweet!</p>
<p><img src="http://problemstosolve.com/wp-content/uploads/excel.png" alt="SMSes in excel" title="SMSes in excel" width="434" height="156" class="alignnone size-full wp-image-167" /></p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2009/03/29/back-up-iphone-sms-messages-into-an-excel-database-without-jailbreaking/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Choose a random winner or randomize a list with terminal and PHP [solved]</title>
		<link>http://problemstosolve.com/2009/01/13/choose-a-random-winner-or-randomize-a-list-with-terminal-and-php-solved/</link>
		<comments>http://problemstosolve.com/2009/01/13/choose-a-random-winner-or-randomize-a-list-with-terminal-and-php-solved/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 02:52:29 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=159</guid>
		<description><![CDATA[I wrote this for my class, which needed to have a randomized order of presentations:
php -r '$order = array("person1","person2","person3","person4","person5","person6","person7","person8","person9","person10");shuffle($order);foreach($order as $number=&#62;$name){echo $number+1 . " $name\n";}'
To run it, open up terminal (in OS X) and paste it in.
I&#8217;ve also had to choose a random winner for gift certificates before:
php -r '$order = array("person1","person2","person3","person4","person5","person6","person7","person8","person9","person10");shuffle($order);echo "$order[0]\n";'
]]></description>
			<content:encoded><![CDATA[<p>I wrote this for my class, which needed to have a randomized order of presentations:</p>
<p><code>php -r '$order = array("person1","person2","person3","person4","person5","person6","person7","person8","person9","person10");shuffle($order);foreach($order as $number=&gt;$name){echo $number+1 . " $name\n";}'</code></p>
<p>To run it, open up terminal (in OS X) and paste it in.</p>
<p>I&#8217;ve also had to choose a random winner for gift certificates before:<br />
<code>php -r '$order = array("person1","person2","person3","person4","person5","person6","person7","person8","person9","person10");shuffle($order);echo "$order[0]\n";'</code></p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2009/01/13/choose-a-random-winner-or-randomize-a-list-with-terminal-and-php-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8216;No access&#8217; greyed out for user Everyone in Leopard File Sharing [unsolved]</title>
		<link>http://problemstosolve.com/2009/01/07/no-access-greyed-out-for-user-everyone-in-leopard-file-sharing-unsolved/</link>
		<comments>http://problemstosolve.com/2009/01/07/no-access-greyed-out-for-user-everyone-in-leopard-file-sharing-unsolved/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 08:40:46 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[unsolved]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=156</guid>
		<description><![CDATA[This is a follow up to my previous post about locking the system out of itself by trying to set &#8220;Everyone&#8221;&#8217;s priveledges to &#8220;no access&#8221; via get info and locking Leopard out of its own system.
I recently discovered that my file sharing is not behaving like it is supposed to. &#8220;Everyone&#8221; having &#8220;read only&#8221; access [...]]]></description>
			<content:encoded><![CDATA[<p>This is a follow up to my <a href="http://problemstosolve.com/os-x/permissions-error-snafu-causes-leopard-not-to-boot-solved/">previous post</a> about locking the system out of itself by trying to set &#8220;Everyone&#8221;&#8217;s priveledges to &#8220;no access&#8221; via get info and locking Leopard out of its own system.<br />
I recently discovered that my file sharing is not behaving like it is supposed to. &#8220;Everyone&#8221; having &#8220;read only&#8221; access indeed SHARES ALL OF MY FILES with read only access and no password required. If you try and set &#8220;Everyone&#8221; to &#8220;no access&#8221; via get info like I previously described, when you reboot Leopard fails to launch and the Leopard install disk cannot repair the permissions. (See my <a href="http://problemstosolve.com/os-x/permissions-error-snafu-causes-leopard-not-to-boot-solved/">previous post</a> for my fix).<br />
But when I try and change the read only access for Everyone, &#8220;no access&#8221; is greyed out:<br />
<a href='http://problemstosolve.com/wp-content/uploads/picture-6.png'><img src="http://problemstosolve.com/wp-content/uploads/picture-6.png" alt="Leopard does not let you choose no access for Everyone" title="no access greyed out" width="437" height="239" class="alignnone size-full wp-image-158" /></a><br />
This is a huge bug apple!! Leopard has downgraded the ability to share files with a password.</p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2009/01/07/no-access-greyed-out-for-user-everyone-in-leopard-file-sharing-unsolved/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iTunes for windows can&#8217;t see shared mac library [solved]</title>
		<link>http://problemstosolve.com/2009/01/02/itunes-for-windows-cant-see-shared-mac-library-solved/</link>
		<comments>http://problemstosolve.com/2009/01/02/itunes-for-windows-cant-see-shared-mac-library-solved/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 22:12:59 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=155</guid>
		<description><![CDATA[For several months I have been trying to stream my iTunes library from my iMac to my wireless laptop in the living room on the same network. I&#8217;ve streamed iTunes with various software to other devices (other PCs, Windows Mobile phone, iPhone) using SlimServer, Simplify Media and Mojo, but for some reason it would not [...]]]></description>
			<content:encoded><![CDATA[<p>For several months I have been trying to stream my iTunes library from my iMac to my wireless laptop in the living room on the same network. I&#8217;ve streamed iTunes with various software to other devices (other PCs, Windows Mobile phone, iPhone) using SlimServer, Simplify Media and Mojo, but for some reason it would not stream over the network.<br />
I tried updating iTunes on both machines but had no luck. I tried using Simplify Media to share instead but that didn&#8217;t work either. I double checked the preferences on both machines. I disabled the firewall and AVG antivirus. Still no luck.<br />
Finally, I solved it: I opened up Apple Software Update and installed the Bonjour update for Windows. So it was Apple&#8217;s fault but I couldn&#8217;t find any documentation anywhere. Oh well, it&#8217;s fixed now. Hurray!</p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2009/01/02/itunes-for-windows-cant-see-shared-mac-library-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 2.1 cannot be synced &#8211; unknown error with iTunes 8.0 [solved]</title>
		<link>http://problemstosolve.com/2008/09/19/iphone-21-cannot-be-synced-unknown-error-with-itunes-80-solved/</link>
		<comments>http://problemstosolve.com/2008/09/19/iphone-21-cannot-be-synced-unknown-error-with-itunes-80-solved/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 16:42:40 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[consumer electronics]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=146</guid>
		<description><![CDATA[For a while I was getting a maddening &#8220;The iPhone cannot be synced. An unknown error occurred (13213)&#8221; error every time I would try and sync my iPhone. No amount of iphone resetting or iTunes restarting would solve my problem. Finally this apple disccusion solved my problem &#8211; I had to turn off iTunes Genius [...]]]></description>
			<content:encoded><![CDATA[<p>For a while I was getting a maddening &#8220;The iPhone cannot be synced. An unknown error occurred (13213)&#8221; error every time I would try and sync my iPhone. No amount of iphone resetting or iTunes restarting would solve my problem. Finally <a href="http://discussions.apple.com/thread.jspa?threadID=1706466&#038;tstart=60" target="_blank">this apple disccusion</a> solved my problem &#8211; I had to turn off iTunes Genius and then it worked fine.<br />
But that sucks, I liked Genius, and iTunes stupidly got rid of the mini store so now I can&#8217;t see any reviews or album information of the tracks I&#8217;m listening to. (Genius isn&#8217;t much better actually, it shows you artists&#8217; top albums by default instead of information on the one you&#8217;re listening to. Bring back the mini store!)<br />
Anyway, the solution was to upgrade quicktime, which I had been avoiding because it requires a reboot. Actually my 10.5.5 update crashed and almost hosed my machine so I had to use the <a href="http://www.apple.com/support/downloads/macosx1055comboupdate.html" target="_blank">10.5.5 Combo Update</a> (which I highly recommend, as you still have Finder and activity monitor control as it works) to upgrade and then upgrade quicktime.<br />
Anyway, after I installed the quicktime update and reinstalled Genius, my iPhone sync worked fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2008/09/19/iphone-21-cannot-be-synced-unknown-error-with-itunes-80-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Parallels in Coherence Mode with Two Monitors [solved]</title>
		<link>http://problemstosolve.com/2008/09/14/run-parallels-in-coherence-ode-with-two-monitor-solved/</link>
		<comments>http://problemstosolve.com/2008/09/14/run-parallels-in-coherence-ode-with-two-monitor-solved/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 03:30:11 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[parallels]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=144</guid>
		<description><![CDATA[I&#8217;ve used parallels for years and never noticed the &#8220;Use Multiple Displays&#8221; option of Coherence mode. It&#8217;s accessible via the Edit > Virtual Machine settings when you shut down your VM, but it&#8217;s also hidden away in View > Customize&#8230; which you can access during runtime.
Now I can finally drag that word requirements doc or [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve used parallels for years and never noticed the &#8220;Use Multiple Displays&#8221; option of Coherence mode. It&#8217;s accessible via the Edit > Virtual Machine settings when you shut down your VM, but it&#8217;s also hidden away in View > Customize&#8230; which you can access during runtime.</p>
<p>Now I can finally drag that word requirements doc or release note onto my second monitor while I code in the first. Sweet! It&#8217;s something I&#8217;ve missed without realizing I was missing it.</p>
<p>There are some bugs though. My second monitor is taller than the first because I have it rotated 90 degrees; that means the task bar mounts to the bottom of the second monitor and doesn&#8217;t display on the first, so I can&#8217;t see the start menu. I can click on the parallels icon in the dock to see the start menu, but I still can&#8217;t see quick launch. I can turn on &#8220;Exclude Dock&#8221; for usable work area, but then the task bar floats across the middle of my second monitor and applications cannot be resized past it. My solution in the mean time is to relocate my task bar and start menu to the top of the screen, where it more or less runs along the top of both of my monitors. This is a strange new workflow but I think I like it!</p>
<p><a href='http://problemstosolve.com/wp-content/uploads/use_two_monitors.png'><img src="http://problemstosolve.com/wp-content/uploads/use_two_monitors.png" alt="" title="Use Two Monitors in Parallels Coherence Mode" width="499" height="410" class="alignnone size-full wp-image-145" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2008/09/14/run-parallels-in-coherence-ode-with-two-monitor-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop external hard drives from spinning down on OS X [Solved]</title>
		<link>http://problemstosolve.com/2008/09/14/stop-external-hard-drives-from-spinning-down-on-os-x-solved/</link>
		<comments>http://problemstosolve.com/2008/09/14/stop-external-hard-drives-from-spinning-down-on-os-x-solved/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 03:01:27 +0000</pubDate>
		<dc:creator>jordan314</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[equipment]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[solved]]></category>

		<guid isPermaLink="false">http://problemstosolve.com/?p=142</guid>
		<description><![CDATA[I have my iTunes music library, samples, video files, and more on an external drive, and the 5 second delay of my drive spinning up is annoying at best and prevents me from working at worst. I finally just found the menu that disables the external drive from spinning down. I don&#8217;t know how this [...]]]></description>
			<content:encoded><![CDATA[<p>I have my iTunes music library, samples, video files, and more on an external drive, and the 5 second delay of my drive spinning up is annoying at best and prevents me from working at worst. I finally just found the menu that disables the external drive from spinning down. I don&#8217;t know how this affects the drive life but it&#8217;s worth it for me.</p>
<p>System Preferences > Energy Saver > uncheck Put the hard disk(s) to sleep when possible</p>
<p><a href='http://problemstosolve.com/wp-content/uploads/energy_saver.png'><img src="http://problemstosolve.com/wp-content/uploads/energy_saver.png" alt="" title="Energy Saver Preference Pane" width="500" height="362" class="alignnone size-full wp-image-143" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://problemstosolve.com/2008/09/14/stop-external-hard-drives-from-spinning-down-on-os-x-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
