<?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>Dot Boston &#187; Apple</title>
	<atom:link href="http://adamp.com/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://adamp.com</link>
	<description>Apple, Bicycles, Boston, Dot and Web Media</description>
	<lastBuildDate>Mon, 25 Oct 2010 02:57:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<cloud domain='adamp.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Lessons Learned from an Accidental rm -rf *</title>
		<link>http://adamp.com/apple/lessons-learned-from-an-accidental-rm-rf/</link>
		<comments>http://adamp.com/apple/lessons-learned-from-an-accidental-rm-rf/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 03:13:20 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[recovery]]></category>
		<category><![CDATA[rm -rf*]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/?p=2736</guid>
		<description><![CDATA[One of the main principles that&#8217;s been hammered into me from lectures and experience over my 15+ years of computing is backup, backup, backup. It becomes even more crucial when you start hosting sites, especially sites for other people. On all the servers we run, we backup site and database files nightly, with automated syncs [...]]]></description>
			<content:encoded><![CDATA[<p>One of the main principles that&#8217;s been hammered into me from lectures and experience over my 15+ years of computing is backup, backup, backup. It becomes even more crucial when you start hosting sites, especially sites for other people. On all the <a href="http://www.the42ndestate.com/">servers we run</a>, we backup site and database files nightly, with automated syncs offsite to other servers/the cloud <em>and</em> to my laptop.</p>
<p>Every few days, I hook up one of my external hard drives and transfer over the offsite backups so they&#8217;re not cluttering up my working space.</p>
<h2>The Bleepin&#8217; Leadin&#8217; Asterik</h2>
<p>Yesterday was one of those days. After syncing my laptop&#8217;s backup folder to my external backup folder (via rsync), I wanted to drop the files from my laptop. Already being on the command line and knowing I wanted to drop everything inside my local offsite backups folder, I naturally ran this command:</p>
<pre>
rm -rf * /Users/Adam/offsitebackups/*
</pre>
<p>Usually this cleanup runs in under ten seconds, since it only contains a few days worth of backups.</p>
<p>After fifteen seconds I started wondering what was going on. After twenty seconds, I noticed the leading asterik and started pounding on
<pre>control+c</pre>
<p> as fast as humanly possible.</p>
<p>After swearing very loudly, I ran:</p>
<pre>
pwd
</pre>
<p>to show me my working directory:</p>
<pre>
/Users/Adam
</pre>
<p>flashed on the screen and again I swore very loudly. To anyone not familiar with Unix, here&#8217;s a quick introduction. The <code>rm</code> command stands for remove. the <code>-rf</code> after <code>rm</code> stands for &#8220;recursive&#8221; and &#8220;force&#8221; and the <code>*</code> stands for &#8220;all&#8221;. In short, I issued a command from my home folder that would go through and delete any files, folders, and sub-directories inside that folder. Since I keep almost all of my files inside /Users/Adam, you can understand the frustration.</p>
<p>My next step was crucial and brings us to our first lesson.</p>
<h2>Don&#8217;t Panic!</h2>
<p>After realizing what I did, I walked away from my computer. If I had remained at the console, I probably would have furiously done some things that may or may not have made the situation worse. The damage had already been done so my next step was to calm down. After pouring myself a glass of water, I returned to the computer with a calm, clear mind ready to rationally recover as much as possible.</p>
<h2>Internet Syncing is Wonderfully Convenient&#8230;</h2>
<p>After sitting back down, I stared at the screen blankly for a few moments. Knowing that I periodically run Time Machine and that the damage had been contained to /Users/Adam gave me some relief, since at worst I would have to rebuild my home directory from a recent backup. But at least the core system would be intact.</p>
<p>Also knowing I sync some of my files with Dropbox and run version control on the important sites, left me with some peace of mind. With services like <a href="https://www.getdropbox.com/referrals/NTc5MTgwNzk">Dropbox</a> and Subversion getting easier and easier to install and run, there&#8217;s really no excuse for not having wonderfully convenient backups of your important stuff up on the internet or your local network.</p>
<h2>&#8230; and Deceptively Dangerous</h2>
<p>Then I noticed <a href="http://spanningsync.com/">Spanning Syn</a>c spinning up. Unsure if my local Address Book files were intact, I immediately shut off my wireless connection and yanked out my ethernet cord. No need to start updating my cloud files and deleting what shouldn&#8217;t be deleted. Of course Spanning Sync would ask me before syncing up the deleted entries, but without knowing off the top of my head what else might be planning a sync at any moment, I felt turning off access to the internet was the best way to ensure the damage stayed localized.</p>
<p>I also shut down Time Machine, since there was no need to run a massive backup to save my newly shrunken down system.</p>
<h2>Get a Base Reading</h2>
<p>After regaining my composure and severing my laptop&#8217;s connection to the network and other devices, it was time to start checking what was gone. </p>
<p>My first instinct was to:</p>
<pre>ls -la</pre>
<p>which would show me all the files in /Users/Adam and provide a timestamp of the last modification date.</p>
<p>A sigh of relief at this point, as I noticed most of the structure was still intact and untouched. The only folder with a recent modification date was my Desktop. I have a very particular organization for my Desktop, which means I only keep two folders on the desktop.</p>
<ul>
<li>Projects</li>
<p>My projects folder contains anything I&#8217;m currently working on. For instance any graphic files or copy for sites is stored inside Projects. Needless to say, it&#8217;s a crucial folder.</p>
<li>Stuff</li>
<p>A catch all folder for anything else. I like to keep my desktop nice and tidy so anytime I go on a downloading spree or have random files cluttering up my desktop that don&#8217;t relate to any of the projects I&#8217;m working on, they get dropped into Stuff. Not as crucial as Projects, but because the nature of this folder means I really have no clue what was or wasn&#8217;t in here, I was hoping it wasn&#8217;t too badly damaged.</p>
</ul>
<p>Well, a quick glance at my actual desktop showed me that Projects was completely gone. </p>
<p>At least I had double backups of the Projects folder to Time Machine and to Dropbox, but unfortunately both were a bit out of date.</p>
<h2>Keep Timely Updates</h2>
<p>For some reason, I&#8217;d shut down Dropbox at some point. Now, I let it start when my computer starts and leave it running at all times. This way, when I make changes to the Projects folder or any other folder synced to Dropbox, it gets updated automagically. All you have to do to get the same auto-magic is link the folder with dropbox.</p>
<pre>ln -s ~/Desktop/Projects ~/Dropbox/Projects</pre>
<p>That little trick will make sure there&#8217;s always a recent backup. Since Dropbox takes a little time to sync up, it might&#8217;ve started deleting some files but at least it&#8217;s another backup. The other key to keeping timely backups is to let Time Machine run off the network, rather than a hard drive I have to remember to plug in every few days.</p>
<h2>Script it!</h2>
<p>Finally, the biggest and most important lesson is to take human error out of the equation. Now, instead of manually moving files over to my external, I&#8217;ve set up a script to automatically sync them over and then clean up the laptop hard drive after its done. It&#8217;s one of those things I should&#8217;ve done a while ago but kept putting off. Foolish indeed as scripting it the first time would&#8217;ve saved me time and files.</p>
<p><span class="postfootnote">Photo credit: <a href="http://www.flickr.com/photos/drmillerlg/3294341985/"> Larry Miller</a> | <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/deed.en">CC-NC-ND 2.0</a></span></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/technology/clickclickclick-how-a-virtual-kubuntu-penguin-saved-my-50gb-music-collection/" rel="bookmark" class="crp_title">Click&#8230;Click&#8230;Click: How a Virtual (K)Ubuntu Penguin Saved My 50GB Music Collection</a></li><li><a href="http://adamp.com/technology/itunes-lastfm/" rel="bookmark" class="crp_title">Start iTunes &#038; Last.fm Simultaneously</a></li><li><a href="http://adamp.com/apple/45-free-applications-for-your-new-mac/" rel="bookmark" class="crp_title">45 Free Applications for Your New Mac</a></li><li><a href="http://adamp.com/technology/tweetdeck-on-the-iphone/" rel="bookmark" class="crp_title">Tweetdeck on the iPhone</a></li><li><a href="http://adamp.com/boston/is-it-boston/" rel="bookmark" class="crp_title">Is It Boston?</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/apple/lessons-learned-from-an-accidental-rm-rf/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iPhone Irony</title>
		<link>http://adamp.com/apple/iphone-irony/</link>
		<comments>http://adamp.com/apple/iphone-irony/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 22:25:33 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[AT&T]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/?p=2713</guid>
		<description><![CDATA[In the you can&#8217;t make this stuff up category, check out what happened right as I clicked to read about how AT&#038;T stated its network is fine in the mobile Google Reader site on my iPhone. Yeah, umm, AT&#038;T your network is not fine. Related Posts:This Blog Now iPhone Friendly!Tweetdeck on the iPhoneOne Reason the [...]]]></description>
			<content:encoded><![CDATA[<p>In the you can&#8217;t make this stuff up category, check out what happened right as I clicked to read about how <a href="http://technologizer.com/2009/10/28/att-our-network-is-fine-thank-you/">AT&#038;T stated its network is fine</a> in the mobile Google Reader site on my iPhone.</p>
<div id="attachment_2714" class="wp-caption aligncenter" style="width: 330px"><a href="http://adamp.wp42.com/files/2009/10/iphone-irony.PNG"><img src="http://adamp.wp42.com/files/2009/10/iphone-irony.PNG" alt="AT&amp;T: Our Network is Fine!" title="iphone-irony" width="320" height="480" class="size-full wp-image-2714" /></a><p class="wp-caption-text">AT&#038;T: Our Network is Fine!</p></div>
<p>Yeah, umm, <a href="http://adamp.wp42.com/apple/one-reason-iphone-disrupted/">AT&#038;T your network is not fine</a>. </p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/technology/this-blog-now-iphone-friendly/" rel="bookmark" class="crp_title">This Blog Now iPhone Friendly!</a></li><li><a href="http://adamp.com/technology/tweetdeck-on-the-iphone/" rel="bookmark" class="crp_title">Tweetdeck on the iPhone</a></li><li><a href="http://adamp.com/apple/one-reason-iphone-disrupted/" rel="bookmark" class="crp_title">One Reason the iPhone Will Be Disrupted</a></li><li><a href="http://adamp.com/boston/the-cash-train/" rel="bookmark" class="crp_title">The Cash Train</a></li><li><a href="http://adamp.com/boston/not-my-iphone/" rel="bookmark" class="crp_title">Not My iPhone</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/apple/iphone-irony/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>One Reason the iPhone Will Be Disrupted</title>
		<link>http://adamp.com/apple/one-reason-iphone-disrupted/</link>
		<comments>http://adamp.com/apple/one-reason-iphone-disrupted/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 11:46:27 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[AT&T]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/?p=2710</guid>
		<description><![CDATA[Robert Scoble published a post yesterday that raised 85,000 reasons why the iPhone will continue to dominate smart mobile sales. But, there&#8217;s one giant reason that Scoble skipped. The network. Yes, the topic was been raised and covered multiple times before, but the fact remains that AT&#038;T&#8217;s voice and data networks are struggling to keep [...]]]></description>
			<content:encoded><![CDATA[<p>Robert Scoble published a post yesterday that raised <a href="http://scobleizer.com/2009/10/25/85000-reasons-why-apples-iphone-isnt-going-to-be-disrupted/">85,000 reasons why the iPhone will continue to dominate smart mobile sales</a>. But, there&#8217;s one giant reason that Scoble skipped. </p>
<p><strong>The network.</strong></p>
<p>Yes, the topic was been raised and covered multiple times before, but the fact remains that <a href="http://edition.cnn.com/2009/TECH/biztech/09/22/cnet.iphone.att.coverage/index.html">AT&#038;T&#8217;s voice and data networks are struggling to keep up with iPhone users</a>. For a lot of people, especially those whose locations are well covered by AT&#038;T, the number of applications available in the iTunes store will keep them on the iPhone or persuade them onto the platform.</p>
<h3>It&#8217;s the Network, Stupid</h3>
<p>But, for a lot of other people who currently don&#8217;t have an iPhone or are becoming exceedingly frustrated with:</p>
<ul>
<li>Dropped calls</li>
<li>Delayed voicemails/text messages</li>
<li>Dropped internet</li>
<li>Slow internet</li>
<li>Useful app rejection</li>
</ul>
<p>the new open platform Android 2.0 phones that are being hyped right now seem quite tantalizing. There&#8217;s really a bare minimum of apps that I use on my iPhone (and a crucial one that isn&#8217;t available, unless you hack it, yes Terminal please). The network frustrations puts a damper on the excitement of having 85,000 applications in my pocket, especially since many of them rely on a solid network to work properly.</p>
<h3>There&#8217;s No App For That</h3>
<p>Out of the 85,000 apps on the iPhone, there&#8217;s not a single app that will improve AT&#038;T&#8217;s clogged network. Having Yelp in my pocket is great, but if it doesn&#8217;t load or takes 5 minutes to return results it becomes relatively useless. Give me something that is 80% as good as the iPhone on a <strong>network that is reliable and consistent</strong> and I&#8217;m there. </p>
<p>Yes, the Motorola Droid is looking <em>mighty tempting</em>. I&#8217;m holding off until I can get my grubby hands on it to decide if it&#8217;s close enough to jump ship, but <strong>the 75,000 fewer apps won&#8217;t have any real impact on my decision</strong>. On an open platform, new apps can be written and guaranteed to be allowed. The network, on the other hand, is completely out of our hands. Deliver a strong network with a great mobile phone and the users and apps will come.</p>
<p><span style="postfootnote">Photo credit: <a href="http://www.flickr.com/photos/st3f4n/3951143570/">Stéfan</a> | <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/deed.en">cc-nc-sa 2.0</a></span></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/apple/iphone-irony/" rel="bookmark" class="crp_title">iPhone Irony</a></li><li><a href="http://adamp.com/apple/my-iphone-died/" rel="bookmark" class="crp_title">My iPhone Died</a></li><li><a href="http://adamp.com/technology/apple-gave-me-a-new-iphone/" rel="bookmark" class="crp_title">Apple Gave Me a New iPhone!</a></li><li><a href="http://adamp.com/technology/this-blog-now-iphone-friendly/" rel="bookmark" class="crp_title">This Blog Now iPhone Friendly!</a></li><li><a href="http://adamp.com/boston/not-my-iphone/" rel="bookmark" class="crp_title">Not My iPhone</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/apple/one-reason-iphone-disrupted/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>ClickToFlash: A Must Have Safari Plugin</title>
		<link>http://adamp.com/apple/clicktoflash-a-must-have-safari-plugin/</link>
		<comments>http://adamp.com/apple/clicktoflash-a-must-have-safari-plugin/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 03:49:50 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[ClickToFlash]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/?p=2690</guid>
		<description><![CDATA[Do you ever have issues with Safari going crazy? As mentioned in my 45 Free Mac Apps list, I love Safari and spend most of my browsing time in its friendly confines. But every now and then, the safari turns ugly as fans blare, beachballs spin and cpu and memory use skyrockets. And the problem [...]]]></description>
			<content:encoded><![CDATA[<p>Do you ever have issues with Safari going crazy? As mentioned in my <a href="http://adamp.wp42.com/apple/45-free-applications-for-your-new-mac/">45 Free Mac Apps list</a>, I love Safari and spend most of my browsing time in its friendly confines. But every now and then, the safari turns ugly as fans blare, beachballs spin and cpu and memory use skyrockets.</p>
<p>And the problem is certainly not confined to my Mac, as OS X Daily recently got Safari to use up 7,909.9 % of its CPU. No, that&#8217;s not a typo, they caught <a href="http://osxdaily.com/2009/09/20/safari-maxing-out-7909-9-cpu-wtf/">Safari using up almost 8,000 % of CPU</a> in what they call an &#8220;epic freakout&#8221;. Check out the proof below:</p>
<p><a href="http://adamp.wp42.com/files/2009/09/safari-freakout.png"><img src="http://adamp.wp42.com/files/2009/09/safari-freakout.png" alt="safari-freakout" title="safari-freakout" width="610" height="160" class="aligncenter size-full wp-image-2692" /></a></p>
<p>More often than not, the culprit is not actually Apple&#8217;s Safari browser, but actually Adobe&#8217;s Flash plug-in. Oh Flash, can&#8217;t browse with you, can&#8217;t browse without you. Or can you?</p>
<h3>Frack Flash</h3>
<p>Sure, many would say just ditch Flash and be done with it, but then you&#8217;re also shutting off videos, siFR fonts, and web applications that rely on Flash.</p>
<p><strong>The solution?</strong></p>
<p><a href="http://rentzsch.github.com/clicktoflash/">ClickToFlash</a>.</p>
<p>Like many Apple applications and plug-ins, ClickToFlash is simple, elegant, and damn useful. Since installing it, Safari loads within 1-2 bounces and doesn&#8217;t crash and doesn&#8217;t throw up more beach-balls than a rock concert, baseball game and 4th of July party combined.</p>
<p>So, what is ClickToFlash?</p>
<p>Good question. CTF is a plug-in for Safari that prevents any and all Flash from loading. You&#8217;d be surprised how often Flash pops up on a site, until you download and install CTF and see that it literally litters the web.</p>
<p>But CTF doesn&#8217;t stop there. As it&#8217;s name shows, the beauty of CTF is that it enables Flash by clicking on the graphic it uses to mark Flash zones. One click, and your YouTube video, siFR fonts or what have you load up and play like normal. You can spot Flash areas with this nice, pleasant placeholder image:</p>
<p><a href="http://adamp.wp42.com/files/2009/09/Flash-Block.png"><img src="http://adamp.wp42.com/files/2009/09/Flash-Block.png" alt="Flash-Block" title="Flash-Block" width="640" height="171" class="aligncenter size-full wp-image-2693" /></a></p>
<h3>More than <em>just</em> a Flash blocker</h3>
<p>But, ClickToFlash doesn&#8217;t stop there. It goes a step further and allows you to load .h264 videos on YouTube instead of Flash, which leads to higher quality. Other features allows you to whitelist sites and load Flash for an entire page, all with one click.</p>
<p>If you don&#8217;t have ClickToFlash, do yourself and your web browser a favor and install it now. Seriously. It&#8217;s free and has zero downsides and plenty of up.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/technology/quick-apple-safari-tips/" rel="bookmark" class="crp_title">Quick Apple Safari Tips</a></li><li><a href="http://adamp.com/technology/this-blog-now-iphone-friendly/" rel="bookmark" class="crp_title">This Blog Now iPhone Friendly!</a></li><li><a href="http://adamp.com/misc/test-your-reaction-time/" rel="bookmark" class="crp_title">Test Your Reaction Time!</a></li><li><a href="http://adamp.com/technology/tweetdeck-on-the-iphone/" rel="bookmark" class="crp_title">Tweetdeck on the iPhone</a></li><li><a href="http://adamp.com/blog/new-design/" rel="bookmark" class="crp_title">New Design!</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/apple/clicktoflash-a-must-have-safari-plugin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>45 Free Applications for Your New Mac</title>
		<link>http://adamp.com/apple/45-free-applications-for-your-new-mac/</link>
		<comments>http://adamp.com/apple/45-free-applications-for-your-new-mac/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 18:25:49 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mac computers]]></category>
		<category><![CDATA[mac os x]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/?p=1298</guid>
		<description><![CDATA[Over the weekend I helped a buddy pick out a brand new Apple MacBook Pro laptop and realized that I&#8217;ve slowly but surely become an Apple Evangelist. To help my buddy and other new Apple users make the most of their new Macs here&#8217;s 45 free applications for Mac OS X. Productivity Check off Very [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend I helped a buddy pick out a brand new <a href="http://www.amazon.com/gp/product/B0013FJBX8?ie=UTF8&#038;tag=adampien-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B0013FJBX8" >Apple MacBook Pro laptop</a><img src="http://www.assoc-amazon.com/e/ir?t=adampien-20&#038;l=as2&#038;o=1&#038;a=B0013FJBX8" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> and realized that I&#8217;ve slowly but surely become an <strong>Apple Evangelist</strong>. To help my buddy and other new Apple users make the most of their new Macs here&#8217;s <strong>45 free applications for Mac OS X</strong>.</p>
<ol>
<div style="text-align:center;">
<h3>Productivity</h3>
</div>
<li><a href="http://www.secondgearsoftware.com/checkoff/" >Check off</a></li>
<p>Very simple to-do checklist that sits in your menu bar.</p>
<li><a href="http://www.openoffice.org/" >OpenOffice.org</a></li>
<p>In addition to telling everyone about the awesomeness of Apple computers and the <a href="http://www.amazon.com/gp/product/B000FK88JK?ie=UTF8&#038;tag=adampien-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000FK88JK" >Mac OS X Leopard</a><img src="http://www.assoc-amazon.com/e/ir?t=adampien-20&#038;l=as2&#038;o=1&#038;a=B000FK88JK" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> operating system I also evangelize the heck out of <a href="http://www.openoffice.org/" >OpenOffice.org</a>. In my eight years of using OpenOffice.org on Windows, Ubuntu, and Mac OS X I&#8217;ve found it to be super stable and packed with nearly all the functionality of the much more expensive (e.g. not free) <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&#038;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref%255F%3Dnb%255Fss%255Fgw%26y%3D0%26field-keywords%3Dmicrosoft%2520office%2520mac%26url%3Dsearch-alias%253Daps&#038;tag=adampien-20&#038;linkCode=ur2&#038;camp=1789&#038;creative=390957" >Microsoft Office</a><img src="https://www.assoc-amazon.com/e/ir?t=adampien-20&#038;l=ur2&#038;o=1" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />. So far I&#8217;ve had no need to use MS Office as OpenOffice.org provides enough applications to get the job done.</p>
<li><a href="http://www.barebones.com/products/TextWrangler/" >TextWrangler</a></li>
<p>When I got my Macbook Pro three years ago I installed and used Aquamacs Emacs but after installing a fresh Leopard system I took another look at my applications and fell in love with TextWrangler. I especially love that it integrates with my SFTP browser, CyberDuck, for easy editing right on my server.</p>
<li><a href="http://quicksilver.en.softonic.com/mac" >Quicksilver</a></li>
<p>The new spotlight in Leopard is awesome but still lacks the extensive features of Quicksilver. Launching a terminal window with my first command line already inputted in just two or three key taps is a beautiful thing. You can also control iTunes directly from Quicksilver and a whole host of other sweet commands.</p>
<li><a href="http://wakaba.c3.cx/s/apps/unarchiver.html" >The Unarchiver</a></li>
<p>For the few compressed file formats Leopard doesn&#8217;t recognize out of the box, The Unarchiver will uncompress them and even has options to automatically delete the zipped file after its opened up.</p>
<li><a href="http://www.apple.com/downloads/macosx/internet_utilities/eventsync.html" >EventSync</a></li>
<p>Sync your facebook events with iCal.</p>
<li><a href="http://www.anxietyapp.com/" >Anxiety</a></li>
<p>Another to do check list application. Anxiety is more versatile than Check-Off but for me Check-Off does the job fine but if you need something more robust check out Anxiety.</p>
<li><a href="http://aquamacs.org/" >Aquamacs Emacs</a></li>
<p>I used Aquamacs Emacs for the longest time when I first got my Mac but am now loving TextWrangler. Both are solid text editing programs with their own pros and cons.</p>
<li><a href="http://www.pixelatedsoftware.com/products/tinyalarm/" >Tiny Alarm</a></li>
<p>I prefer using my iPhone as my alarm, but for those who are inclined to use their laptop, Tiny Alarm is a great little app that sites in your menu bar.</p>
<li><a href="http://www.fadingred.com/cashbox/" >Cashbox</a></li>
<p>A great personal finance manager. A while back I picked up <a href="http://www.midnightapps.com/chaching/" >Cha-Ching</a> via a <a href="http://www.macheist.com/" >Macheist</a> giveaway, but if I didn&#8217;t I&#8217;d be using Cashbox. Both are great personal finance applications, one is free the other isn&#8217;t but both should treat you right.</p>
<div style="text-align:center;">
<h3>Communication</h3>
</div>
<li><a href="http://adiumx.com/" >Adium</a></li>
<p>iChat is cool but <a href="http://adiumx.com/" >Adium</a> is much, much better. This open source application allows to connect to nearly every messaging system on the planet. The list includes AIM, MSN, Google Talk, ICQ, Facebook Chat, Myspace IM, Bonjour, LiveJournal Chat, Gadu Gadu and more!</p>
<li><a href="http://www.tweetdeck.com/beta/" >TweetDeck</a></li>
<p>The best way to interact with Twitter. Runs off Adobe Air and is fast and easy to use. I didn&#8217;t really get Twitter until I downloaded and installed TweetDeck and now <a href="http://tweetadam.com" >I&#8217;m tweeting</a> all the time!</p>
<li><a href="http://www.skype.com/download/skype/macosx/" >Skype</a></li>
<p>Great for making cheap international calls. I also use Skype to set up a business line so my cell phone doesn&#8217;t get jammed with calls. You can also instant message, call and video chat with others over the internet for free.</p>
<li><a href="http://growl.info/" >Growl</a></li>
<p>Unobtrusive application/system notification. A great way to explain Growl is to provide an example. It integrates with Adium and will show a small temporary popup window whenever a contact signs on/off or sends you a message.</p>
<div style="text-align:center;">
<h3>Audio</h3>
</div>
<li><a href="http://code.google.com/p/ipoddisk/" >iPodDisk</a></li>
<p>Allows you to move music off your iPod without dealing with iTunes. In other words, it turns your iPod into a regular disk drive.</p>
<li><a href="http://audacity.sourceforge.net/download/mac" >Audacity</a></li>
<p>Great alternative to Garageband for recording audio.</p>
<li><a href="http://www.eternalstorms.at/gimmesometune/" >GimmeSomeTune</a></li>
<p>GimmeSomeTune is an iTunes extension that adds a lot of functionality to iTunes, but chief among them is the ability to import missing artwork and fetch song lyrics. It also integrates with Last.fm thus allowing you to have one less application running on your Mac.</p>
<div style="text-align:center;">
<h3>Video</h3>
</div>
<li><a href="http://burn-osx.sourceforge.net/Pages/English/home.html" >Burn</a></li>
<p>Expands on Mac OS X&#8217;s built in disc recording and adds a ton more file formats and options while still keeping the interface simple and speedy. </p>
<li><a href="http://handbrake.fr/" >Handbrake</a></li>
<p>This open-source, multi-threaded video converter accepts DVD, DVD-esque (images and some .VOB files), and multimedia files and converts them to MP4, MKV, AVI or OGM / MPEG-4, H.264, or Theora formats quickly and easily.</p>
<li><a href="http://www.macupdate.com/info.php/id/19769/isquint" >iSquint</a>
<p>A video converter to make your videos suitable for viewing on an iPod/iPhone.</p>
<li><a href="http://www.videolan.org/vlc/" >VLC</a></li>
<p>The best media player on the planet. VLC will play nearly every video and audio format out there.</p>
<li><a href="http://www.getmiro.com/" >Miro</a></li>
<p>Another media player but it&#8217;s hook is that Miro allows you to setup RSS feeds for torrents and other media files for automated downloading of videos. The list of legally free videos out there is extensive and will keep you entertained for a long, long time.</p>
<li><a href="http://lightheadsw.com/caffeine/" >Caffeine</a></li>
<p>Caffeine is a light weight application that sits in your menu bar. A simple click turns off the screen saver or delays it for a set amount of time. A great time saver for when you want to watch a video without getting interrupted by your screen saver. I reviewed <a href="http://otibr.com/featured/caffeine-keep-your-screen-awake/">Caffeine at Only The Internet&#8217;s Best Reviews</a> in September &#8217;08 and it still remains one of the highest rated items on OTIBR (scored it a 38/42).</p>
<li><a href="http://www.telestream.net/flip4mac-wmv/overview.htm" >Flip4Mac WMV</a></li>
<p>Plugin for Quicktime letting you play Windows Media Video files on your Mac. The best of both worlds!</p>
<div style="text-align:center;">
<h3>Images</h3>
</div>
<li><a href="http://www.gimp.org/" >GIMP</a></li>
<p>Not as good as <a href="http://www.amazon.com/gp/product/B001EUIVZG?ie=UTF8&#038;tag=adampien-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B001EUIVZG" >Adobe Photoshop CS4</a><img src="http://www.assoc-amazon.com/e/ir?t=adampien-20&#038;l=as2&#038;o=1&#038;a=B001EUIVZG" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> but it&#8217;s free (while Photoshop is $600). The GIMP should be just good enough for the majority of users out there and will at least tide you over until you save up for a copy of Photoshop.</p>
<li><a href="http://www.caffeinatedcocoa.com/photobook/index.html" >PhotoBook</a></li>
<p>A photo browser for facebook. Quick and very easy to use, PhotoBook will display all your friend&#8217;s facebook photos in a convenient album format for quick browsing.</p>
<li><a href="http://www.inkscape.org/" >Inkscape</a></li>
<p>A sweet vector graphics application. </p>
<li><a href="http://www.flickr.com/tools/" >Flickr Uploadr</a></li>
<p>Drag and drop interface for quickly and easily uploading your pics to <a href="http://www.flickr.com/photos/adampieniazek/" >Flickr</a>.</p>
<li><a href="http://desklickr.isnot.tv/" >DeskLickr</a></li>
<p>DeskLickr will go out to Flickr and import photos and automatically change your desktop background every so often. Nice for those of us who get bored of our backgrounds quite easily.</p>
<div style="text-align:center;">
<h3>Mac Maintenance</h3>
</div>
<li><a href="http://www.derlien.com/" >Disk Inventory X</a></li>
<p>A graphical outline of your hard drive showing what&#8217;s using up space and how much of it. Handy for when you&#8217;re running low and need to find files to delete. </p>
<li><a href="http://www.shirt-pocket.com/SuperDuper/SuperDuperDescription.html" >SuperDuper</a></li>
<p>Sure the new Leopard operating system comes with Time Machine, but Super Duper is great for making bootable clones of your drive. It&#8217;s super handy for when you need to bring your Mac in for repairs as it lets you keep working with your files and setup. I&#8217;ve used Super Duper extensively over the past two weeks while bringing my Macbook Pro in for repairs and had almost no loss in productivity thanks to Super Duper and a generous friend who loaned me his brand new Macbook!</p>
<li><a href="http://homepage.mac.com/holtmann/eidac/software/smcfancontrol2/index.html" >smcFanControl</a></li>
<p>Control your Mac&#8217;s fans from a simple graphical interface. Very handy for diagnosing if your Mac&#8217;s fans are busted, as one of mine recently was. Also useful for cranking up the RPMs when you think your Mac is getting a tad too hot for comfort.</p>
<li><a href="http://rixstep.com/4/0/clix/" >Clix</a></li>
<p>A Command Line Interface for OS X/Terminal! Clix stores literally hundreds and hundreds of commands, allowing you to click through and run them through Terminal. It&#8217;s handy even for command line experts who can&#8217;t remember all the commands or syntax.</p>
<li><a href="http://www.islayer.com/apps/istatpro/" >iStat Pro</a></li>
<p>Perhaps the most useful Dashboard widget out there. iStat Pro will display your CPU temperatures, hard drive space, network stats, fan speed, running processes (and how much CPU power they take up). All in real time from the convenience of your dashboard.</p>
<li><a href="http://metaquark.de/appfresh/" >AppFresh</a></li>
<p>Mac OS X&#8217;s built in Software Update is great but only works for Mac OS X and other Apple applications. AppFresh will notify you when all your other applications have updates available by periodically checking osx.iusethis.com.</p>
<li>OnyX</li>
<p>A Graphical User Interface for all your Mac&#8217;s maintenance needs. You can perform most of these processes from the command line, but if you just got a Mac you&#8217;re probably terrified of Terminal right now.</p>
<li><a href="http://www.apple.com/downloads/macosx/system_disk_utilities/appcleaner.html" >AppCleaner</a></li>
<p>Dragging your applications to the trash can is a very simple way to delete old or unwanted applications but usually leaves files scattered about your hard drive. Using AppCleaner will ensure all those pesky files are gone, freeing up hard drive space and lowering the chance for any conflicts.</p>
<div style="text-align:center;">
<h3>Web</h3>
</div>
<li><a href="http://cyberduck.ch/" >Cyberduck</a></li>
<p>The best FTP/SFTP/Amazon S3 browser/uploader/downloader on the planet. Drag n drop interface that is integrated with your Mac&#8217;s keychain for a no hassle upload/download experience.</p>
<li><a href="http://www.mamp.info/" >MAMP</a></li>
<p>Easy to setup and use local server for developing and testing your web-sites before they go live. Needless to say this gets a lot of use on my Macbook Pro.</p>
<li><a href="http://www.newsgator.com/INDIVIDUALS/NETNEWSWIRE/" >NetNewsWire</a></li>
<p>The best RSS reader on the planet. With a free account at NewsGator.com you can sync your feeds between different locations. I love this app as it allows me to read my feeds on my iPhone knowing that whatever I read or clip (bookmark) will sync back to my Macbook Pro at home.</p>
<li><a href="http://www.mozilla.com/en-US/firefox/firefox.html" >Firefox</a></li>
<p>I love the speedy Safari, and in fact spend most of my day within its friendly confines, but Firefox has an immense library of extensions and plugins that Safari has yet to match. Besides, it&#8217;s free, what&#8217;ve you got to lose? Besides a little bit of hard drive space of course. </p>
<li><a href="http://www.hexcat.com/deepvacuum/" >DeepVacuum</a></li>
<p>DeepVacuum is a graphical interface for the unix command wget, which allows you to download entire web-sites. Useful for developers who want to take a peak at a site&#8217;s code or people who wish to browse a site offline.</p>
<li><a href="http://www.transmissionbt.com/" >Transmission</a></li>
<p>Simple but powerful bittorrent client. </p>
<li><a href="https://www.getdropbox.com/referrals/NTc5MTgwNzk" >Dropbox</a></li>
<p>A great way to store files in a cloud for easy access from any internet connection.</p>
<li><a href="https://www.torproject.org/vidalia/" >Vidalia</a></li>
<p>A graphical interface for TOR, the safest and easiest way to browse the web anonymously. Very useful for users who live in a country with a strict firewall or for accessing sites you don&#8217;t want associated with you. Though, I must state that if a government agency wants to find you they will, so don&#8217;t go doing something stupid or dangerous just because you&#8217;re behind a TOR connection.
</ol>
<p>There you have it, 45 free applications I recommend every new Mac user try it. Did I miss a great application? Let me know in the comments below!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/technology/itunes-lastfm/" rel="bookmark" class="crp_title">Start iTunes &#038; Last.fm Simultaneously</a></li><li><a href="http://adamp.com/video/how-battlestar-galactica-will-end/" rel="bookmark" class="crp_title">How Battlestar Galactica Will End</a></li><li><a href="http://adamp.com/technology/my-top-five-most-played-artists-in-itunes/" rel="bookmark" class="crp_title">My Top Five Most Played Artists in iTunes</a></li><li><a href="http://adamp.com/video/music-for-your-friday-trilok-gurtu-living-legends/" rel="bookmark" class="crp_title">Music for your Friday: Trilok Gurtu &#038; Living Legends</a></li><li><a href="http://adamp.com/technology/20-mac-applications-i-just-deleted/" rel="bookmark" class="crp_title">20 Mac Applications I Just Deleted</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/apple/45-free-applications-for-your-new-mac/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Apple Gave Me a New iPhone!</title>
		<link>http://adamp.com/technology/apple-gave-me-a-new-iphone/</link>
		<comments>http://adamp.com/technology/apple-gave-me-a-new-iphone/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 17:18:37 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/technology/apple-gave-me-a-new-iphone/</guid>
		<description><![CDATA[Apple&#8217;s great customer service comes through! A few days ago my iPhone stopped responding to any and all inputs. Even iTunes would not see the device. Well, Darrin, the Apple genius guy, was able to get my old iPhone working but still exchanged it for a brand new iPhone just because of all the issues [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://adamp.wp42.com/college/it-just-work-how-apples-planning-strategy-create-intuitive-interactions-for-consumers/">Apple&#8217;s great customer service</a> comes through! A few days ago <a href="http://adamp.wp42.com/apple/my-iphone-died/">my iPhone stopped responding</a> to any and all inputs. Even iTunes would not see the device. Well, Darrin, the Apple genius guy, was able to get my old iPhone working but still exchanged it for a brand new iPhone just because of all the issues I had with my old model.</p>
<p>Turns out my old iPhone was still under warranty so everything was covered under the original warranty. Still, it makes me wonder what will happen if I have issues with this phone, especially since Apple does not extend the warranty out when the phone is exchanged. Already, it seems that it&#8217;s not super-responsive and isn&#8217;t pulling my e-mails as seamlessly as before (I have to keep pressing refresh before any mail shows up). Still, I&#8217;ll chalk it up to breaking this new iPhone in, but if it doesn&#8217;t work perfectly in a week or two I might be taking another trip to the Apple store.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/apple/my-iphone-died/" rel="bookmark" class="crp_title">My iPhone Died</a></li><li><a href="http://adamp.com/boston/not-my-iphone/" rel="bookmark" class="crp_title">Not My iPhone</a></li><li><a href="http://adamp.com/apple/iphone-irony/" rel="bookmark" class="crp_title">iPhone Irony</a></li><li><a href="http://adamp.com/technology/web-quotes-and-counterpoints-iii/" rel="bookmark" class="crp_title">Web Quotes and Counterpoints III</a></li><li><a href="http://adamp.com/technology/good-things-iphone-come-cheaper-to-those-who-wait/" rel="bookmark" class="crp_title">Good Things (iPhone) Come Cheaper to Those Who Wait</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/technology/apple-gave-me-a-new-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My iPhone Died</title>
		<link>http://adamp.com/apple/my-iphone-died/</link>
		<comments>http://adamp.com/apple/my-iphone-died/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 16:02:53 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[lame]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/apple/my-iphone-died/</guid>
		<description><![CDATA[Yesterday, my iPhone stopped responding to touches or button presses. Now, this particular iPhone (an 8 GB, non 3G) has been acting up almost since I got it but it was never really a big issue. It would become unresponsive for a few seconds and then kick back in. Now, however, it simply does not [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, my iPhone stopped responding to touches or button presses. Now, this particular iPhone (an 8 GB, non 3G) has been acting up almost since I got it but it was never really a big issue. It would become unresponsive for a few seconds and then kick back in. Now, however, it simply does not load, charge or sync with iTunes. In fact, iTunes doesn&#8217;t even recognize that it is plugged in.</p>
<p>So to any of my friends who&#8217;ve tried reaching me by phone, <a href="http://adamp.wp42.com/contact/">send me an e-mail</a> instead. Hopefully, Apple does me right and <a href="http://www.lifeofjustin.com/2008/07/15/apple-replaced-my-iphone.html">gives me a new iPhone</a>. Surely they can spare an old model with everyone lusting for the 3G iPhone now!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/technology/apple-gave-me-a-new-iphone/" rel="bookmark" class="crp_title">Apple Gave Me a New iPhone!</a></li><li><a href="http://adamp.com/boston/not-my-iphone/" rel="bookmark" class="crp_title">Not My iPhone</a></li><li><a href="http://adamp.com/apple/iphone-irony/" rel="bookmark" class="crp_title">iPhone Irony</a></li><li><a href="http://adamp.com/apple/one-reason-iphone-disrupted/" rel="bookmark" class="crp_title">One Reason the iPhone Will Be Disrupted</a></li><li><a href="http://adamp.com/technology/good-things-iphone-come-cheaper-to-those-who-wait/" rel="bookmark" class="crp_title">Good Things (iPhone) Come Cheaper to Those Who Wait</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/apple/my-iphone-died/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>IPhone 3G: Does It Blend?</title>
		<link>http://adamp.com/video/iphone-3g-does-it-blend/</link>
		<comments>http://adamp.com/video/iphone-3g-does-it-blend/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 17:39:45 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/video/iphone-3g-does-it-blend/</guid>
		<description><![CDATA[I&#8217;m off to the get some documents notarized and filed with the City of Boston so enjoy this video of a brand new iPhone 3G getting blended. Have an awesome weekend everyone! Related Posts:The Human MirrorA Few Videos for Your FridayMini Flash Flood Dorchester [with Video]Must Impeach! Cheney-Bush Have Too Much Time Left!Misia barking at [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m off to the get some documents notarized and filed with the City of Boston so enjoy this video of a brand new iPhone 3G getting blended.</p>
<p><object width="480" height="392" data="http://flash.revver.com/player/1.0/player.swf?mediaId=1033087&#038;affiliateId=183011" type="application/x-shockwave-flash" id="revvervideoa17743d6aebf486ece24053f35e1aa23"><param name="Movie" value="http://flash.revver.com/player/1.0/player.swf?mediaId=1033087&#038;affiliateId=183011"></param><param name="FlashVars" value="allowFullScreen=true&#038;backColor=#282DB8&#038;frontColor=#FFFFFF&#038;gradColor=#302C54&#038;shareUrl=revver"></param><param name="AllowFullScreen" value="true"></param><param name="AllowScriptAccess" value="always"></param><embed type="application/x-shockwave-flash" src="http://flash.revver.com/player/1.0/player.swf?mediaId=1033087&#038;affiliateId=183011" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="always" flashvars="allowFullScreen=true&#038;backColor=#282DB8&#038;frontColor=#FFFFFF&#038;gradColor=#302C54&#038;shareUrl=revver" allowfullscreen="true" width="480" height="392"></embed></object></p>
<p>Have an awesome weekend everyone!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/video/the-human-mirror/" rel="bookmark" class="crp_title">The Human Mirror</a></li><li><a href="http://adamp.com/video/a-few-videos-for-your-friday/" rel="bookmark" class="crp_title">A Few Videos for Your Friday</a></li><li><a href="http://adamp.com/video/mini-flash-flood-dorchester-with-video/" rel="bookmark" class="crp_title">Mini Flash Flood Dorchester [with Video]</a></li><li><a href="http://adamp.com/politics/must-impeach-cheney-bush-have-too-much-time-left/" rel="bookmark" class="crp_title">Must Impeach! Cheney-Bush Have Too Much Time Left!</a></li><li><a href="http://adamp.com/video/misia-barking-at-misia-barking-at-dogs-on-tv/" rel="bookmark" class="crp_title">Misia barking at Misia barking at dogs on TV</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/video/iphone-3g-does-it-blend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This Blog Now iPhone Friendly!</title>
		<link>http://adamp.com/technology/this-blog-now-iphone-friendly/</link>
		<comments>http://adamp.com/technology/this-blog-now-iphone-friendly/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 20:26:12 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/technology/this-blog-now-iphone-friendly/</guid>
		<description><![CDATA[Check it out iPhone visitors, this blog is now super iPhone friendly. This blog appeared 99% fine in Safari on the iPhone before [some videos wouldn't play due to lack of Flash] but now it&#8217;s optimized so the text fits perfectly on the screen. Sure, all the advertisements and other personal theme stuff goes away [...]]]></description>
			<content:encoded><![CDATA[<p>Check it out iPhone visitors, this blog is now super iPhone friendly. This blog appeared 99% fine in Safari on the iPhone before [some videos wouldn't play due to lack of Flash] but now it&#8217;s optimized so the text fits perfectly on the screen. Sure, all the advertisements and other personal theme stuff goes away but that&#8217;s OK because I know Edge can be wicked slow so anything to make the blog load faster on mobile devices is OK with me.</p>
<p>Credit for the iPhone optimization goes to the great team over at <a href="http://www.contentrobot.com/">contentrobot</a> and their <a href="http://iwphone.contentrobot.com/">iWPhone plugin and theme</a>.</p>
<p>Here&#8217;s a few screenshots of how the blog now looks on an iPhone:</p>
<div style="text-align:center;">
<strong>Top part of the blog:</strong></p>
<p><a href='http://adamp.wp42.com/files/2008/07/blog_on_iphone1.PNG' title='iwPhone 1'><img src='http://adamp.wp42.com/files/2008/07/blog_on_iphone1.PNG' alt='iwPhone 1' /></a></p>
<p><strong>Middle part of the blog:</strong></p>
<p><a href='http://adamp.wp42.com/files/2008/07/blog_on_iphone3.PNG' title='iwPhone 2'><img src='http://adamp.wp42.com/files/2008/07/blog_on_iphone3.PNG' alt='iwPhone 2' /></a></p>
<p><strong>Bottom part of the blog (haha, I said bottom):</strong></p>
<p><a href='http://adamp.wp42.com/files/2008/07/blog_on_iphone4.PNG' title='iwPhone 3'><img src='http://adamp.wp42.com/files/2008/07/blog_on_iphone4.PNG' alt='iwPhone 3' /></a>
</div>
<p>What do you think? If you&#8217;ve got an iPhone or iPod Touch, this plugin should make reading this site a lot easier and nicer of an experience. Let me know if you have any suggestions, issues, or any other thoughts!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/boston/not-my-iphone/" rel="bookmark" class="crp_title">Not My iPhone</a></li><li><a href="http://adamp.com/apple/iphone-irony/" rel="bookmark" class="crp_title">iPhone Irony</a></li><li><a href="http://adamp.com/personal-achievements/no-i-am-banksy/" rel="bookmark" class="crp_title">No, I Am Banksy!</a></li><li><a href="http://adamp.com/boston/red-sox-clinch-home-field-advantage/" rel="bookmark" class="crp_title">Red Sox Clinch Home-Field Advantage</a></li><li><a href="http://adamp.com/funny/super-bush-a-real-american-hero-made-in-china/" rel="bookmark" class="crp_title">Super Bush: A Real American Hero (Made in China)</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/technology/this-blog-now-iphone-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Mac Applications I Just Deleted</title>
		<link>http://adamp.com/technology/20-mac-applications-i-just-deleted/</link>
		<comments>http://adamp.com/technology/20-mac-applications-i-just-deleted/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 14:42:50 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://adamp.wp42.com/technology/20-mac-applications-i-just-deleted/</guid>
		<description><![CDATA[Lately I&#8217;ve felt the need to get rid of a lot of clutter in my life, both physical and digital and operate on a more minimalist spectrum. I&#8217;ve spent the past few days organizing e-mails, catching up on RSS feeds, and centralizing my files. Let&#8217;s take a look at twenty of the Mac applications that [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve felt the need to get rid of a lot of clutter in my life, both physical and digital and operate on a more minimalist spectrum. I&#8217;ve spent the past few days organizing e-mails, catching up on RSS feeds, and centralizing my files. Let&#8217;s take a look at twenty of the Mac applications that I just tossed out. Why? Well, you know what they say. Oh you don&#8217;t, well you better start paying attention, they rule the world you know.</p>
<blockquote><p>One man&#8217;s trash is another man&#8217;s treasure.</p></blockquote>
<p>So let&#8217;s see if there&#8217;s any hidden treasures among my trash!</p>
<p><a href='http://adamp.wp42.com/files/2008/07/20_deleted_mac_apps.png' title='20 Mac Applications I Deleted'><img src='http://adamp.wp42.com/files/2008/07/20_deleted_mac_apps.png' alt='20 Mac Applications I Deleted' /></a></p>
<ul>
<li>Emacs</li>
<p> I prefer <a href="http://aquamacs.org/index.shtml">Aquamacs</a>, though there is certainly nothing wrong with Emacs.</p>
<li> Meetro</li>
<p> Meh, <a href="aim:goim?screenname=adamzpieniazek">AIM</a>, <a href="http://www.facebook.com/profile.php?id=2707703">facebook</a>, <a href="http://twitter.com/AdamPieniazek">twitter</a>, and pownce are enough (in fact more than enough).</p>
<li> Tomato Torrents</li>
<p> I prefer <a href="http://www.transmissionbt.com/">Transmission</a> though Tomato Torrents works fine Transmission seems to be faster and better organized.</p>
<li> Launchbar</li>
<p> <a href="http://blacktree.com/">Quicksilver</a> rules. Launchbar just did not seem to be as extensive or as intuitive as Quicksilver and thusly in this household we obey the shortcuts of Quicksilver!</p>
<li> Joost</li>
<p> Joost is a great idea, but at the moment there is not enough good content to take up my hard drive space and time. </p>
<li>Vienna</li>
<p> Now that <a href="http://www.newsgator.com/Individuals/NetNewsWire/default.aspx">NetNewsWire</a> is free I much, much prefer it to Vienna. While NNW was not free Vienna performed admirably but there&#8217;s just no need for it now.</p>
<li>Aptana</li>
<p> Looks cool but a bit beyond my league at the moment. Might go back and download this later as I learn more but right now it&#8217;s just clutter.</p>
<li>Colloquy</li>
<p> See Meetro above. My geek status will lose points for not having an IRC client installed but I can live with it for now. Besides nearly everyone I know is on AIM or twitter so I won&#8217;t be losing touch with anyone.</p>
<li>Comic Life</li>
<p> Cool but frivolous. In essence this program allowed you to comic bookize your photos by adding speech bubbles and comic book style actions. </p>
<li>iProcrastinate </li>
<p> I didn&#8217;t use this once. I knew I wouldn&#8217;t when I downloaded it but I installed it nonetheless. No wonder I struggle to get things done sometimes. </p>
<li>Keynote</li>
<p> 30 day Trial I never deleted from when I got my Macbook Pro a year ago.</p>
<li>Pages</li>
<p> See Keynote.</p>
<li>NewsFire</li>
<p> See Vienna.</p>
<li>Vendetta</li>
<p> This game looked really cool but also time-consuming and I just don&#8217;t have oodles of free time (contrary to popular belief, <a href="/statestreet/resignation-from-the-state-street-corporation/">quitting your job</a> does not give you tons of free time) to devote to learning the intricacies of this game. </p>
<li>RSSOwl</li>
<p> See Newsfire and Vienna.</p>
<li>q [QEMU]</li>
<p> Yeah, I really just never needed this, see Aptana but much more so.</p>
<li>ircle</li>
<p> See Colloquy.</p>
<li>Tofu</li>
<p> Good idea but in the end it&#8217;s just another application that rarely gets used adding to my digital clutter.</p>
<li>Stickies</li>
<p>I use <a href="http://www.devon-technologies.com/products/devonnote/index.html">Devonnotes</a> for all my note taking needs. It&#8217;s an awesome program btw. Didn&#8217;t really use stickies enough to comment on them one way or the other but it seemed functional.</p>
<li>ecto</li>
<p> Cool program but don&#8217;t have the monetary flow to buy it right now. Anyone know any good free open-source alternatives?
</ul>
<p>Any programs up there that I should give another try?</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://adamp.com/apple/45-free-applications-for-your-new-mac/" rel="bookmark" class="crp_title">45 Free Applications for Your New Mac</a></li><li><a href="http://adamp.com/technology/itunes-lastfm/" rel="bookmark" class="crp_title">Start iTunes &#038; Last.fm Simultaneously</a></li><li><a href="http://adamp.com/personal-achievements/welcome-to-my-blog-20/" rel="bookmark" class="crp_title">Welcome To My Blog 2.0</a></li><li><a href="http://adamp.com/technology/edropper-the-automated-entrecard-dropper/" rel="bookmark" class="crp_title">eDropper: The Automated Entrecard Dropper</a></li><li><a href="http://adamp.com/blog/new-social-buttons/" rel="bookmark" class="crp_title">New Social Buttons</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://adamp.com/technology/20-mac-applications-i-just-deleted/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced)
Database Caching using disk
Object Caching 1901/2162 objects using disk
Content Delivery Network via cdn.adamp.com

Served from: adamp.com @ 2012-02-11 01:35:01 -->
