<?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>Andrew Lisy's Blog &#187; osx</title>
	<atom:link href="http://blog.ajlisy.com/category/osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.ajlisy.com</link>
	<description>Linux, finance, rants, politics</description>
	<lastBuildDate>Mon, 17 May 2010 23:17:37 +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>The Holy Grail of Photo Management</title>
		<link>http://blog.ajlisy.com/2009/05/the-holy-grail-of-photo-management/</link>
		<comments>http://blog.ajlisy.com/2009/05/the-holy-grail-of-photo-management/#comments</comments>
		<pubDate>Mon, 04 May 2009 03:27:39 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[economics]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[gallery2]]></category>
		<category><![CDATA[iphoto]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[online backup]]></category>
		<category><![CDATA[online storage]]></category>
		<category><![CDATA[photo management]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[picasa]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.ajlisy.com/?p=304</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>I have a ton of photos that I&#8217;ve taken over the years, and managing them is a constant challenge. Part of the problem is simply the fact that there are so many great things you can do with digital photos &#8212; view them online, make cool <img src="http://blog.ajlisy.com/wp-content/uploads/2009/05/stock_collage-300x225.jpg" alt="stock_collage" width="300" height="225" align="right" />photobooks, create collages, order prints, send them to friends and family, etc. There are many different applications that are useful for photos, and while some of them come close to doing it all, there still isn&#8217;t one solution that works for everything.<br />
<span id="more-304"></span><br />
I have a few things that are essential to me in a &#8220;photo system&#8221;: secure backup, online permissioned viewing, and local viewing through a robust desktop app. I have several computers running Windows, Linux or OSX that I alternate between, so at any given point I might need to import or view photos from any one of them. Therefore, a photo solution needs to work across all three platforms and stay in sync and secure at all times. I found the ideal combination using rsync, Dropbox, Jungledisk, Picasa and Gallery2. It&#8217;s a lot of applications, but the result is perfect for what I&#8217;m looking for, and it takes very little time to maintain.</p>
<p>Here are my steps to getting pictures into the &#8220;system&#8221;. Basically, </p>
<ol>
<li>Save pictures to some folder on the desktop of whatever computer I happen to be using. Remove the obvious &#8220;bad&#8221; photos.</li>
<li>Add the library to my <a href="http://gallery.menalto.com/">Gallery2</a> library that&#8217;s hosted by <a href="http://www.dreamhost.com">Dreamhost</a>. Gallery2 is one of the best online photo-view apps I&#8217;ve found, and since it&#8217;s hosted on my Dreamhost account, I have unlimited space to put pictures (unlike Picasa Web Albums which caps you out 1GB)</li>
<li>However, Dreamhost is by no means a secure backup location (they don&#8217;t claim to be, and they recently lost a bunch of user data), so I don&#8217;t feel very safe having my photos <em>only</em> stored there. Therefore, after my photos are uploaded to Dreamhost, I rsync the photo directory onto <a href="http://www.getdropbox.com">Dropbox</a>. Dropbox is a great online storage and file-syncing utility, so it doesn&#8217;t matter which computer I&#8217;m using &#8212; the Dropbox folder is always the same on all of them. When I rsync to my Dropbox folder, the files are automatically backed up online and synced to the other computers that have Dropbox installed. If you&#8217;re curious, here is the rsync command I use:<br />
<code><br />
rsync --verbose  --progress --stats \<br />
--compress --rsh=/usr/bin/ssh \<br />
--recursive --times --perms --links \<br />
/source/directory ~/Dropbox/Photos/.<br />
</code><br />
<em>Note: That&#8217;s a space between /source/directory [space] ~/Dropbox/Photos</em></p>
<p>From here, all of my computers have Picasa installed (since it works on Linux, OSX and Windows), and the Dropbox photo directory is set as a &#8220;watched&#8221; directory. This means that as new pictures are synced to the Dropbox folders on other computers, Picasa on that computer picks it up and adds it automatically.
</li>
<li>The final, and probably unnecessary step is rsyncing the files to Amazon S3 via Jungledisk. This doesn&#8217;t really offer anything in the way of additional backup security, since Dropbox is S3 based on the backend anyways (so if anything happens to S3, both will go down). The reason I do this is because I look at S3 as my long-term &#8220;vault&#8221; and Dropbox as a shorter-term, more convenient storage place. The rsync itself is the same command as above, but replace the Dropbox destination directory with your Jungledisk directory.</li>
</ol>
<p>If you&#8217;re on Windows, you can replace the rsync steps with a straight copy &#8212; you&#8217;ll still get most of the functionality. Rsync works fine on OSX and Linux.</p>
<p>Clearly, it&#8217;s an involved process when I add pictures. However, it&#8217;s not too bad &#8212; a bulk upload onto Dreamhost and then running 2 commands from the command line to get the photos onto Dropbox and Amazon. You can even remove the Amazon step if you want. Last time I checked there was no way to add photos to Gallery2 using a script, but if and when that becomes available, this whole process can be turned into a quick script to run in the background.</p>
<p>Follow these steps, and you&#8217;ll have secure, accessible and useful photos on all of your computers.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Andrew%20Lisy%27s%20Blog&amp;siteurl=http%3A%2F%2Fblog.ajlisy.com%2F&amp;linkname=The%20Holy%20Grail%20of%20Photo%20Management&amp;linkurl=http%3A%2F%2Fblog.ajlisy.com%2F2009%2F05%2Fthe-holy-grail-of-photo-management%2F"><img src="http://blog.ajlisy.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.ajlisy.com/2009/05/the-holy-grail-of-photo-management/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SealedMedia Rights Management DRM is hijacking my computer</title>
		<link>http://blog.ajlisy.com/2009/01/sealedmedia-rights-management-drm-is-hijacking-my-computer/</link>
		<comments>http://blog.ajlisy.com/2009/01/sealedmedia-rights-management-drm-is-hijacking-my-computer/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 01:22:23 +0000</pubDate>
		<dc:creator>Andrew Lisy</dc:creator>
				<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[drm]]></category>

		<guid isPermaLink="false">http://blog.ajlisy.com/?p=68</guid>
		<description><![CDATA[For several months, I&#8217;d been having a problem with my Macbook where the fan ran around 6000 rpm constantly and the battery life was about a third of what it should be. I tried everything &#8212; physically cleaning out any visible dust or debris from the vents, zapping the PRAM, looking for stray user processes [...]]]></description>
			<content:encoded><![CDATA[<p>For several months, I&#8217;d been having a problem with my Macbook where the fan ran around 6000 rpm constantly and the battery life was about a third of what it should be. I tried everything &#8212; physically cleaning out any visible dust or debris from the vents, zapping the PRAM, looking for stray user processes that might be using the CPU constantly &#8212; but nothing seemed to consistently work. Rebooting helped for a short period, but after a few minutes, the fan came back on.</p>
<div id="attachment_112" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.ajlisy.com/wp-content/uploads/2009/02/picture-1.jpg"><img class="size-medium wp-image-112" title="picture-1" src="http://blog.ajlisy.com/wp-content/uploads/2009/02/picture-1-300x277.jpg" alt="SealedMedia using nearly 100% of my processor" width="300" height="277" /></a><p class="wp-caption-text">SealedMedia using nearly 100% of my processor</p></div>
<p>Finally, I gave up and chalked up the battery problems to an older (about 1.5 years) computer and the fan problems to poor heat management in my laptop. It wasn&#8217;t the perfect Apple experience that Steve Jobs maybe have liked, especially with a noisy fan running constantly, but it worked.</p>
<p>One day, I was poking through my process viewer, and changed the filter to show &#8216;All Processes&#8217;. Lo and behold, I noticed that one process was taking up 97% of my processor. Since at that time I was only browsing the web with Safari, this was entirely unexpected. After a bit of Googling, I found out that the process, titled &#8216;SealedMedia Righ&#8217; belonged to some sort of DRM installed on my computer. Whether it came with the system somehow or was installed with a program remains a mystery, but what I do know is the following:</p>
<ul>
<li>It was started by launchd, which is a system process kicked off by the kernel</li>
<li>Killing it immediately brings the processor usage back to normal, the fan almost immediately from 6000 rpm to under 2000 rpm, and the battery life moves to over 3 hours from about 1hr on a full charge</li>
<li>It doesn&#8217;t come back (that I&#8217;ve noticed) after I kill it</li>
<li>It does come back a short time after a reboot.  </li>
<li>Killing it doesn&#8217;t seem to have any undesired effects whatsoever</li>
<li>I&#8217;m running OSX 10.4, not sure if its unique to this version or not</li>
</ul>
<p>Given that 100% processor usage generates a <strong>lot of heat</strong>, which is particularly bad for the expensive battery and hardware inside, this malware DRM app is destroying my computer. Googling for a while didn&#8217;t turn up much to solve the problem, so I&#8217;m asking users &#8212; anyone else have any more information about this program, what it does, how it got there, or how to stop it?</p>
<div id="attachment_113" class="wp-caption alignleft" style="width: 310px"><a href="http://blog.ajlisy.com/wp-content/uploads/2009/02/picture-3.jpg"><img class="size-medium wp-image-113" title="picture-3" src="http://blog.ajlisy.com/wp-content/uploads/2009/02/picture-3-300x280.jpg" alt="SealedMedia killed, CPU usage back to normal." width="300" height="280" /></a><p class="wp-caption-text">SealedMedia killed, CPU usage back to normal.</p></div>
<p>Unfortunately, while I&#8217;ve come to expect <a href="http://arstechnica.com/apple/news/2008/11/apple-brings-hdcp-to-a-new-aluminum-macbook-near-you.ars">nasty DRM</a> from Apple, this takes the cake because ultimately it will greatly reduce the life of my laptop.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Andrew%20Lisy%27s%20Blog&amp;siteurl=http%3A%2F%2Fblog.ajlisy.com%2F&amp;linkname=SealedMedia%20Rights%20Management%20DRM%20is%20hijacking%20my%20computer&amp;linkurl=http%3A%2F%2Fblog.ajlisy.com%2F2009%2F01%2Fsealedmedia-rights-management-drm-is-hijacking-my-computer%2F"><img src="http://blog.ajlisy.com/wp-content/plugins/add-to-any/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://blog.ajlisy.com/2009/01/sealedmedia-rights-management-drm-is-hijacking-my-computer/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
