<?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>Throw the Mind [dot] Com &#187; OSX</title>
	<atom:link href="http://throwthemind.com/index.php/tag/osx/feed" rel="self" type="application/rss+xml" />
	<link>http://throwthemind.com</link>
	<description></description>
	<lastBuildDate>Tue, 07 Sep 2010 22:16:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Hack the iPhone with a PSP Exploit</title>
		<link>http://throwthemind.com/index.php/2007/10/04/hack-the-iphone-with-a-psp-exploit</link>
		<comments>http://throwthemind.com/index.php/2007/10/04/hack-the-iphone-with-a-psp-exploit#comments</comments>
		<pubDate>Thu, 04 Oct 2007 14:35:51 +0000</pubDate>
		<dc:creator>Nathan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[PSP]]></category>

		<guid isPermaLink="false">http://throwthemind.com/index.php/2007/10/04/hack-the-iphone-with-a-psp-exploit/</guid>
		<description><![CDATA[Looks like the same Tiff exploit that was used to downgrade the PSP from 2.0 to 1.5 firmware, is going to be used to run code on the iPhone. This news is kind of funny since Sony fixed the Tiff buffer overflow problem a year and a half ago. Guess Apple didn&#8217;t get that memo. [...]]]></description>
			<content:encoded><![CDATA[<p>Looks like the same Tiff exploit that was used to downgrade the PSP from 2.0 to 1.5 firmware, is going to be used to run code on the iPhone.  This news is kind of funny since Sony fixed the Tiff buffer overflow problem a year and a half ago.  Guess Apple didn&#8217;t get that memo.  Ups!!!</p>
<p><a href="http://www.hackint0sh.org/forum/showthread.php?t=9735">Read More</a></p>
<p class="tags">Tags: <a href="http://throwthemind.com/index.php/tag/apple" rel="tag">Apple</a>, <a href="http://throwthemind.com/index.php/tag/hacking" rel="tag">Hacking</a>, <a href="http://throwthemind.com/index.php/tag/iphone" rel="tag">iPhone</a>, <a href="http://throwthemind.com/index.php/tag/osx" rel="tag">OSX</a>, <a href="http://throwthemind.com/index.php/tag/psp" rel="tag">PSP</a>
]]></content:encoded>
			<wfw:commentRss>http://throwthemind.com/index.php/2007/10/04/hack-the-iphone-with-a-psp-exploit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GeekTool Rss Script</title>
		<link>http://throwthemind.com/index.php/2007/09/20/geektool-rss-script</link>
		<comments>http://throwthemind.com/index.php/2007/09/20/geektool-rss-script#comments</comments>
		<pubDate>Fri, 21 Sep 2007 04:44:52 +0000</pubDate>
		<dc:creator>Nathan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://throwthemind.com/index.php/2007/09/20/geektool-rss-script/</guid>
		<description><![CDATA[Here is a little script a friend help me put together. It it basically a caching RSS reader for GeekTool. I use it to display my Netflix query on my desktop, as well as My MeeVee listing. Just change the LOG, RSS lines and it will pull the title lines out of RSS feeds. If [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a little script a friend help me put together.  It it basically a caching RSS reader for GeekTool.  I use it to display my Netflix query on my desktop, as well as My MeeVee listing.  Just change the LOG, RSS lines and it will pull the title lines out of RSS feeds.  If you want more you can change the curl lines.  Have fun. </p>
<ul>
#!/bin/sh<br />
LOG=/Users/Nathan/scripts/netflix_queue.txt<br />
RSS=&#8221;http://rss.netflix.com/QueueRSS?id=P1414648916102002442351662043565655&#8243;<br />
size=$(ls -all $LOG | awk &#8216;{print $5}&#8217;)</p>
<p>if [ ! -f $LOG ]; then<br />
	curl -s $RSS | grep title |  sed -E &#8216;s/<\/?title>//g&#8217; > $LOG<br />
else<br />
	age=$(echo $(date &#8220;+%s&#8221;) &#8211; $(stat -t &#8220;%s&#8221; $LOG 2>/dev/null | awk -F\&#8221; &#8216;{print $4}&#8217;) | bc -l)<br />
	if [ "$age" -gt 3600 -o $size = 0 ]; then<br />
		curl -s $RSS | grep title |  sed -E &#8216;s/<\/?title>//g&#8217; > $LOG<br />
	fi<br />
fi<br />
cat $LOG
</ul>
<p class="tags">Tags: <a href="http://throwthemind.com/index.php/tag/computer" rel="tag">Computer</a>, <a href="http://throwthemind.com/index.php/tag/osx" rel="tag">OSX</a>, <a href="http://throwthemind.com/index.php/tag/programming" rel="tag">Programming</a>, <a href="http://throwthemind.com/index.php/tag/script" rel="tag">script</a>
]]></content:encoded>
			<wfw:commentRss>http://throwthemind.com/index.php/2007/09/20/geektool-rss-script/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bioshock and the Mac Adventure that Ensued</title>
		<link>http://throwthemind.com/index.php/2007/09/17/bioshock-and-the-mac-adventure-that-ensued</link>
		<comments>http://throwthemind.com/index.php/2007/09/17/bioshock-and-the-mac-adventure-that-ensued#comments</comments>
		<pubDate>Mon, 17 Sep 2007 21:32:59 +0000</pubDate>
		<dc:creator>Nathan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://throwthemind.com/index.php/2007/09/17/bioshock-and-the-mac-adventure-that-ensued/</guid>
		<description><![CDATA[This weekend I bought a copy of Bioshock.  A Microsoft only game.  This was fine as I thought all I would have to do is install Boot Camp.  When I got home I fired up the MacBook Pro and went to installing boot camp.  After burning the driver disc I was stuck waiting the the [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend I bought a copy of Bioshock.  A Microsoft only game.  This was fine as I thought all I would have to do is install Boot Camp.  When I got home I fired up the MacBook Pro and went to installing boot camp.  After burning the driver disc I was stuck waiting the the drive to be partitioned.  I went to grab a sandwich and came back to find that the partition had failed.  OSX said it couldn&#8217;t move some file and I would have to reformat the drive before I could partition it.  Looks like this isn&#8217;t going to be as easy as I thought I said, and went to get out my external hard drive and peruse a reformat.  After booting the OSX install disc I went to Disk Utility and made an image of my drive.  Then booted back into my system and mounted the image just to verify that all my data was there.  All the data was copied, so I reformatted the internal drive.  All well and good so far.  After the format I went to restore the drive from the image I had created, but to my surprise I was unable to do so.  After spending a few hours online trying to figure out how to restore the image <a href="http://apple.com/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">Apple.com</a> left me with two options.<br />
One: install OSX on another external drive and boot from that, then restore the internal drive.<br />
Two: boot my Mac into disk mode and connect it to another Mac and restore from the image.</p>
<p>Neither of these options where going to work for me, so I decided I would just mount the image and copy everything to the internal drive.  After that was finished I rebooted to find a black error screen.  This wasn&#8217;t what I had hoped for.  By this time my sandwich is long gone and its getting really late, so I say screw it I will just reinstall the OS and spend the next week getting things back to normal.  Off I go on another long operation when I find an option that will copy my old system to a folder and reuse my User folder.  About and hour later I was sitting at the Log In screen for my user account and everything was pretty much back to normal.   Unfortunately I was out of time and didn&#8217;t get a chance to try Boot Camp again.  But I would assume it will work.</p>
<p>What I Learned.<br />
1.  I am going to need to find a better way to back up.<br />
2. Through all the madness I somehow gained 5-10GB of extra data.<br />
3.  Games are not always worth it.</p>
<p class="tags">Tags: <a href="http://throwthemind.com/index.php/tag/apple" rel="tag">Apple</a>, <a href="http://throwthemind.com/index.php/tag/osx" rel="tag">OSX</a>, <a href="http://throwthemind.com/index.php/tag/windows" rel="tag">Windows</a>
]]></content:encoded>
			<wfw:commentRss>http://throwthemind.com/index.php/2007/09/17/bioshock-and-the-mac-adventure-that-ensued/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stylish &amp; Google Reader</title>
		<link>http://throwthemind.com/index.php/2007/05/08/stylish-google-reader</link>
		<comments>http://throwthemind.com/index.php/2007/05/08/stylish-google-reader#comments</comments>
		<pubDate>Tue, 08 May 2007 19:44:09 +0000</pubDate>
		<dc:creator>Nathan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://throwthemind.com/2007/05/08/stylish-google-reader/</guid>
		<description><![CDATA[I have been using Google Reader since it was updated to the new version about a year ago. Damn it is one nice Rss Reader. Not to long ago I found a theme for it that made the whole experience of reading rss feeds even more enjoyable. The theme is suppose to look like an [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using Google Reader since it was updated to the new version about a year ago.  Damn it is one nice Rss Reader.  Not to long ago I found a theme for it that made the whole experience of reading rss feeds even more enjoyable.  The theme is suppose to look like an OSX app but really I don&#8217;t know.  It&#8217;s nice, clean and give the reader more room to read articles.  You can head over to <a href="http://www.hicksdesign.co.uk/journal/" title="Reader Theme">http://www.hicksdesign.co.uk/journal/</a> to find out how to install the theme.  Works on many browsers.  Hope you enjoy it as much as I have.</p>
<p class="tags">Tags: <a href="http://throwthemind.com/index.php/tag/google" rel="tag">Google</a>, <a href="http://throwthemind.com/index.php/tag/osx" rel="tag">OSX</a>, <a href="http://throwthemind.com/index.php/tag/rss" rel="tag">RSS</a>
]]></content:encoded>
			<wfw:commentRss>http://throwthemind.com/index.php/2007/05/08/stylish-google-reader/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Fanboy</title>
		<link>http://throwthemind.com/index.php/2007/01/23/apple-fanboy</link>
		<comments>http://throwthemind.com/index.php/2007/01/23/apple-fanboy#comments</comments>
		<pubDate>Tue, 23 Jan 2007 18:55:25 +0000</pubDate>
		<dc:creator>Nathan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://throwthemind.com/blog/2007/01/23/apple-fanboy/</guid>
		<description><![CDATA[The other day I was called an Apple fan boy. If you would have told me a few years ago that I would be the owner of a Mac. I wouldn&#8217;t have believed you. See I didn&#8217;t know much about computers say 5 years ago. Nor did I care to. But it is a different [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I was called an Apple fan boy.  If you would have told me a few years ago that I would be the owner of a Mac.  I wouldn&#8217;t have believed you.  See I didn&#8217;t know much about computers say 5 years ago.  Nor did I care to.  But it is a different story now.  I will admit the reason I got a MacBook Pro was because I could still use Windows.  But really after only about 2 weeks I don&#8217;t miss Windows.  I never really had any problems with Windows, I just thought maybe I should broaden my scope of computers beyond Windows, and very little Linux.   To sum up the reason foe getting a MacBook Pro was not to be a Apple fan boy, but really to learn a different operation system, and since OSX is based on BSD Linux,  I can learn more commands and great Linux things also.  But I don&#8217;t guess its really what i think that makes me a fan boy it is what everyone else thinks.  So whatever I guess.</p>
<p class="tags">Tags: <a href="http://throwthemind.com/index.php/tag/apple" rel="tag">Apple</a>, <a href="http://throwthemind.com/index.php/tag/osx" rel="tag">OSX</a>, <a href="http://throwthemind.com/index.php/tag/windows" rel="tag">Windows</a>
]]></content:encoded>
			<wfw:commentRss>http://throwthemind.com/index.php/2007/01/23/apple-fanboy/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best of the Interweb 6-30-06</title>
		<link>http://throwthemind.com/index.php/2006/06/30/best-of-the-interweb-6-30-06</link>
		<comments>http://throwthemind.com/index.php/2006/06/30/best-of-the-interweb-6-30-06#comments</comments>
		<pubDate>Fri, 30 Jun 2006 14:32:25 +0000</pubDate>
		<dc:creator>Nathan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Best Interweb]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Jail]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Space]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://throwthemind.com/blog/2006/06/30/best-of-the-interweb-6-30-06/</guid>
		<description><![CDATA[Another weeks bites the dust, as well as another Month. Tomorrow we will be moving into July, the month I was born in 22 years ago. July is great, fireworks, birthdays, and great weather. So until then have a great weekend, and see you next month. Use paper to fix your MacBook. Shouldn&#8217;t Apple be [...]]]></description>
			<content:encoded><![CDATA[<p>Another weeks bites the dust, as well as another Month.  Tomorrow we will be moving into July, the month I was born in 22 years ago.  July is great, fireworks, birthdays, and great weather.  So until then have a great weekend, and see you next month.</p>
<ul>
<li>Use paper to fix your <a href="http://ibloggedthis.com/2006/06/29/an-origami-solution-to-the-apple-macbook-trackpad-squishy-button-problem/">MacBoo</a>k.  Shouldn&#8217;t Apple be fixing them?</li>
<li><a href="http://www.space.com/missionlaunches/060629_newtools.html">Remote control</a> space shuttle landing.  Thats all good, but without astronauts, seems like we would be leaving them all alone.</li>
<li><a href="http://ask.metafilter.com/mefi/41029">90 days</a> locked up, what shall you do.</li>
<li>Or maybe, you could watch <a href="http://video.google.com/videoplay?docid=8520847761350501823">this</a> and prevent that 90 days</li>
<li>Go <a href="http://find.stanford.edu:8000/">here</a>, this click &#8220;about us&#8221;, then click on the pic of the sand duns.</li>
<li>The <a href="http://diveintomark.org/archives/2006/06/26/essentials-2006">best</a> of OSX in Ubuntu</li>
</ul>
<p class="tags">Tags: <a href="http://throwthemind.com/index.php/tag/apple" rel="tag">Apple</a>, <a href="http://throwthemind.com/index.php/tag/best-interweb" rel="tag">Best Interweb</a>, <a href="http://throwthemind.com/index.php/tag/google" rel="tag">Google</a>, <a href="http://throwthemind.com/index.php/tag/jail" rel="tag">Jail</a>, <a href="http://throwthemind.com/index.php/tag/osx" rel="tag">OSX</a>, <a href="http://throwthemind.com/index.php/tag/space" rel="tag">Space</a>, <a href="http://throwthemind.com/index.php/tag/video" rel="tag">Video</a>
]]></content:encoded>
			<wfw:commentRss>http://throwthemind.com/index.php/2006/06/30/best-of-the-interweb-6-30-06/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best of the Interweb 6-7-06</title>
		<link>http://throwthemind.com/index.php/2006/06/07/best-of-the-interweb-6-7-06</link>
		<comments>http://throwthemind.com/index.php/2006/06/07/best-of-the-interweb-6-7-06#comments</comments>
		<pubDate>Wed, 07 Jun 2006 14:22:34 +0000</pubDate>
		<dc:creator>Nathan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Best Interweb]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[MySpace]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[Space]]></category>
		<category><![CDATA[Time]]></category>

		<guid isPermaLink="false">http://throwthemind.com/blog/archives/84</guid>
		<description><![CDATA[Here you go, a best of what on the interweb on this Wensday June 7th 2006 Fucking whinny gameers We could get some good pics out of this little collision. Google I don&#8217;t think bringing this to a mac and selling CSI is going to save you. Damn I wish I would remember this. See [...]]]></description>
			<content:encoded><![CDATA[<p>Here you go, a best of what on the interweb on this Wensday June 7th 2006</p>
<ul>
<li>Fucking whinny <a href="http://games.slashdot.org/article.pl?sid=06/06/06/1728224&#038;from=rss">gameers</a></li>
<li>We could get some good pics out of this little <a href="http://science.nasa.gov/headlines/y2006/05jun_redperil.htm?list95364">collision. </a></li>
<li>Google I don&#8217;t think bringing <a href="http://googleblog.blogspot.com/2006/06/hello-im-mac-and-im-mac-video-player.html">this</a> to a mac and selling CSI is going to save you.</li>
<li>Damn I wish I would remember <a href="http://hwebbjr.typepad.com/openloops/2006/06/how_to_remember.html">this</a>.</li>
<li><a href="http://www.kadavy.net/blog/archive/2006/06/onmycommand_put.php">See</a> even OSX users want to be like Windows users!</li>
<li>Looks like I will only be <a href="http://www.deathforecast.com/">around</a> till 2048, as <a href="http://www.deathforecast.com/result.php?record=66846">I</a> am scheduled to die at age 63</li>
<li>Now if <a href="http://www.engadget.com/2006/06/07/alienware-introduces-superman-themed-limited-edition-systems/">these</a> would only leap tall buildings in a single bound.</li>
<li>What the <a href="http://www.cbsnews.com/stories/2006/06/06/ap/strange/mainD8I2USRG0.shtml">hell</a>?</li>
<li>Lets <a href="http://www.downloadsquad.com/2006/06/05/singlestat-us-be-notified-when-your-myspace-crush-is-single/">start</a> the <a href="http://stalkerati.com/">stalking</a> of online social <a href="http://datinganyone.com/">sites</a>. </li>
</ul>
<p class="tags">Tags: <a href="http://throwthemind.com/index.php/tag/best-interweb" rel="tag">Best Interweb</a>, <a href="http://throwthemind.com/index.php/tag/games" rel="tag">Games</a>, <a href="http://throwthemind.com/index.php/tag/google" rel="tag">Google</a>, <a href="http://throwthemind.com/index.php/tag/myspace" rel="tag">MySpace</a>, <a href="http://throwthemind.com/index.php/tag/osx" rel="tag">OSX</a>, <a href="http://throwthemind.com/index.php/tag/space" rel="tag">Space</a>, <a href="http://throwthemind.com/index.php/tag/time" rel="tag">Time</a>
]]></content:encoded>
			<wfw:commentRss>http://throwthemind.com/index.php/2006/06/07/best-of-the-interweb-6-7-06/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
