<?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; dropbox</title>
	<atom:link href="http://blog.ajlisy.com/tag/dropbox/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>The Power of Platforms</title>
		<link>http://blog.ajlisy.com/2009/04/the-power-of-platforms/</link>
		<comments>http://blog.ajlisy.com/2009/04/the-power-of-platforms/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 07:52:53 +0000</pubDate>
		<dc:creator>aj</dc:creator>
				<category><![CDATA[entrepreneurial]]></category>
		<category><![CDATA[internet media]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[investing]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.ajlisy.com/?p=291</guid>
		<description><![CDATA[Of all the recent trends in online computing, the one most game-changing is the trend toward developing platforms and allowing users to build applications on top of them. The greatest example of a platform on the web is Facebook, which started as a simple social network, but by opening up to third party apps, has [...]]]></description>
			<content:encoded><![CDATA[<p>Of all the recent trends in online computing, the one most game-changing is the trend toward developing platforms and allowing users to build applications on top of them. The greatest example of a platform on the web is <a href="http://www.facebook.com">Facebook</a>, which started as a simple social network, but by opening up to third party apps, has become the most important web development since Google. Platforms allow downstream developers to wield the entire power of the &#8220;parent&#8221; to create interesting and valuable applications without requiring massive resources to lay the groundwork for the basic functionality.</p>
<p>The reason platforms are so important is that they allow developers to use massive technological <em>leverage</em>. To illustrate this point, lets use the example of <a href="http://www.getdropbox.com">Dropbox</a>, an outstanding online backup application. <span id="more-291"></span> Dropbox creates a folder on a user&#8217;s computer where they can drag files, and then stores those files on <a href="http://aws.amazon.com/s3/">Amazon&#8217;s S3</a>. S3 is a network that programmers can easily use to store files on Amazon&#8217;s servers. By simply paying a low fee per-gigabyte of disk space used, developers have access to an unlimited amount of secure, redundant disk space online on top of which they can build their own program. Dropbox is a derivative application built on top of the S3 platform, and utilizes the S3 backend to intelligently sync and back up files on individual PCs. Without S3, Dropbox and others would have to invest enormous resources into creating and maintaining a huge storage datacenter, which would almost certainly be prohibitive for the rapidly-growing startup. However, since they are able to leverage the S3 platform to handle the storage issue, the developers are able to focus on the product instead of the nitty gritty needed to get that product running.</p>
<p>The ability to abstract away the &#8220;nitty gritty&#8221; by using a platform is immensely powerful, because it allows entrepreneurs to build on top of existing technologies instead of reinventing the wheel for each venture. Facebook applications have been incredibly successful because they allow a developer to leverage the <strong>existing</strong> networks people have already built, rather than fighting to get people to sign up for a new website and build a new network. Before Facebook Photos, several sites attempted the tagging functionality that Facebook mastered with virtually no success because there was no way of enrolling every user that might be in someone&#8217;s photo. Since Facebook already has a huge portion of internet users, Photos (and other apps) can simply abstract away the &#8220;building a network&#8221; aspect &#8212; a huge obstacle to building a networking application &#8212; and focus on creating new and interesting functionality.</p>
<p>The other cool aspect that platform creators get &#8220;for free&#8221; is marketing. If a developer creates an application on Facebook, they are likely to spend time and money marketing that application. However, since that app is nothing without Facebook, any marketing that the app developer does is by default marketing for Facebook as well. While its not always this obvious, it&#8217;s always the case that the platform benefits as the child application grows &#8212; as Dropbox gains users, for example, Amazon naturally gets more business without really needing to do any extra marketing. It&#8217;s all done for them, and all owed to their killer platform.</p>
<p>Platforms are an amazing innovation, and we&#8217;ve seen (and will continue to see) some incredible applications arise from them. They lower the barrier to entry for entrepreneurs, so programs that used to require a team of engineers to handle &#8220;support&#8221; aspects of an application now only need one or two core developers. As a result, more products can come into the market quickly, and great ideas can rise to the top even more freely.</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%20Power%20of%20Platforms&amp;linkurl=http%3A%2F%2Fblog.ajlisy.com%2F2009%2F04%2Fthe-power-of-platforms%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/04/the-power-of-platforms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
