<?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; photos</title>
	<atom:link href="http://blog.ajlisy.com/tag/photos/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>Pretty cool &#8212; Time Warner &#8216;Enhanced TV&#8217;</title>
		<link>http://blog.ajlisy.com/2008/12/pretty-cool-time-warner-enhanced-tv/</link>
		<comments>http://blog.ajlisy.com/2008/12/pretty-cool-time-warner-enhanced-tv/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 03:36:54 +0000</pubDate>
		<dc:creator>Andrew Lisy</dc:creator>
				<category><![CDATA[internet media]]></category>
		<category><![CDATA[miscellaneous]]></category>
		<category><![CDATA[convergence]]></category>
		<category><![CDATA[digital media]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[set top box]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://blog.ajlisy.com/?p=53</guid>
		<description><![CDATA[As the saying goes, there is certainly no love lost between Time Warner and me. For starters, their internet service to my apartment in New York tends to be extremely slow, especially at peak times. The TV, while more reliable than the internet, also cuts out from time to time, and definitely isn&#8217;t as good [...]]]></description>
			<content:encoded><![CDATA[<p>As the saying goes, there is certainly no love lost between Time Warner and me. For starters, their internet service to my apartment in New York tends to be extremely slow, especially at peak times. The TV, while more reliable than the internet, also cuts out from time to time, and definitely isn&#8217;t as good as offerings from Verizon FIOS or even some of the stuff I&#8217;ve seen Comcast do.</p>
<p>However, I was watching today, and when I clicked on a channel to watch a movie already started (Click! with Adam Sandler&#8230;so/so), I was presented with this option:</p>
<p><img class="aligncenter" title="enhancedTV" src="http://www.zatznotfunny.com/wordpress/wp-content/uploads/2007/08/lookback.jpg" alt="" width="425" height="206" /></p>
<p>I clicked it, and sure enough, the movie started over! Pretty cool. It was a on FX, so I figured that it was just some gimmick that FX had going.</p>
<p>Later that night, I flipped on <em>House</em> on TNT. Same message! Seems like a bunch of channels are participating.</p>
<p>The &#8216;Enhanced TV&#8217; features allow you to start from the beginning, pause or rewind the shows (no fast-forward, however, presumably to prevent you from skipping commercials). I checked out the <a href="http://http://www.timewarnercable.com/Corporate/products/digitalcable/enhanced_tv_services.html">Time Warner Enhanced TV</a> site and it seems like there is a whole slew of features available in certain markets:</p>
<blockquote>
<table class="reskinTableSid" border="0" cellspacing="0" cellpadding="2" width="480">
<tbody>
<tr>
<td><img src="http://www.timewarnercable.com/MediaLibrary/1/1/Content%20Management/reskin_media/additional_pages/product/icon_enhanced_SO.jpg" alt="" width="78" height="57" /></td>
<td><strong>Start Over</strong> &#8211; Missed the start of your favorite show? With Start Over™, you’ve got the power to restart and watch it from the beginning. Over 60 popular TV channels currently offer Start Over™ and it&#8217;s free with digital cable service.</td>
</tr>
<tr>
<td><img src="http://www.timewarnercable.com/MediaLibrary/1/1/Content%20Management/reskin_media/additional_pages/product/icon_enhanced_quickClips.jpg" alt="" width="78" height="57" /></td>
<td><strong>Quick Clips</strong> &#8211; Watch video clips of your favorite shows and news programs whenever you like with Quick Clips. New content is added every day and it&#8217;s free with digital cable service.</td>
</tr>
<tr>
<td><img src="http://www.timewarnercable.com/MediaLibrary/1/1/Content%20Management/reskin_media/additional_pages/product/icon_enhanced_lookBack.jpg" alt="" width="78" height="57" /></td>
<td><strong>Look Back</strong> &#8211; Ever wish you could go back in time and catch a show you missed? Now you can. Look Back lets you watch shows you missed, as many as 48 hours after the program originally aired.</td>
</tr>
<tr>
<td><img src="http://www.timewarnercable.com/MediaLibrary/1/1/Content%20Management/reskin_media/additional_pages/product/icon_enhanced_photoShow.jpg" alt="" width="78" height="57" /></td>
<td><strong>PhotoshowTV</strong> &#8211; PhotoShowTV is a new, easy, and FREE way to share your digital pictures and videos with friends and family, right through your computer and TV! It&#8217;s free when you subscribe.</td>
</tr>
</tbody>
</table>
</blockquote>
<p>Not bad. Seems like <strong>Start Over </strong>is the only feature available for me right now, but I&#8217;m particularly intrigued by the <strong>PhotoshowTV</strong> option. If they do it right (a big <em>if</em> &#8212; pictures are hard, since everyone already has their favorite backup and picture services, and its a pain to switch), it would be pretty neat to be able to pull up your pictures on your TV to show. Those photos from Costa Rica probably look a lot better on a 52&#8243; plasma than on your smaller computer monitor in the den.</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=Pretty%20cool%20%26%238212%3B%20Time%20Warner%20%26%238216%3BEnhanced%20TV%26%238217%3B&amp;linkurl=http%3A%2F%2Fblog.ajlisy.com%2F2008%2F12%2Fpretty-cool-time-warner-enhanced-tv%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/2008/12/pretty-cool-time-warner-enhanced-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
