<?xml version="1.0" encoding="utf-8"?><!-- generator="wordpress/2.3.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Roll your own dropbox</title>
	<link>http://www.techfreak.net/wp/archives/2008/03/29/343/</link>
	<description>The sometimes updated blog of Brendon.</description>
	<pubDate>Sat, 11 Oct 2008 10:50:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.2</generator>
		<item>
		<title>By: Jim L</title>
		<link>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-3713</link>
		<dc:creator>Jim L</dc:creator>
		<pubDate>Wed, 30 Apr 2008 19:13:42 +0000</pubDate>
		<guid>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-3713</guid>
		<description>about a year ago I came up with a solution to do dropbox for users who are either too stupid or too lazy to actually upload the file themselves.  It is a milter (built off of mimedefang, an all-in-one milter solution in perl) that detects large messages, strips out attachments and turns them into dropbox entries on a web server, and replaces the removed attachment with a URL.  It worked, I thought it was pretty cool, but we never deployed it because other engineers here were afraid of the consequences of mangled our users mail (nevermind that spam filters mangle mail all the time).</description>
		<content:encoded><![CDATA[<p>about a year ago I came up with a solution to do dropbox for users who are either too stupid or too lazy to actually upload the file themselves.  It is a milter (built off of mimedefang, an all-in-one milter solution in perl) that detects large messages, strips out attachments and turns them into dropbox entries on a web server, and replaces the removed attachment with a URL.  It worked, I thought it was pretty cool, but we never deployed it because other engineers here were afraid of the consequences of mangled our users mail (nevermind that spam filters mangle mail all the time).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nico</title>
		<link>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-3396</link>
		<dc:creator>Nico</dc:creator>
		<pubDate>Fri, 18 Apr 2008 10:04:01 +0000</pubDate>
		<guid>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-3396</guid>
		<description>Hi Brendon,
I already used a script like this to upload files to AWS but I had a problem since boto Python API has changed :(
http://toxicsoftware.com/s3_uploader/
So, I would be happy to find a new automator script... I keep on eye on your blog in order to see your code :)</description>
		<content:encoded><![CDATA[<p>Hi Brendon,<br />
I already used a script like this to upload files to AWS but I had a problem since boto Python API has changed <img src='http://www.techfreak.net/wp/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
<a href="http://toxicsoftware.com/s3_uploader/" rel="nofollow">http://toxicsoftware.com/s3_uploader/</a><br />
So, I would be happy to find a new automator script&#8230; I keep on eye on your blog in order to see your code <img src='http://www.techfreak.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brendon</title>
		<link>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-2980</link>
		<dc:creator>Brendon</dc:creator>
		<pubDate>Sat, 29 Mar 2008 19:06:04 +0000</pubDate>
		<guid>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-2980</guid>
		<description>BTW, I discovered that the &lt;a href="http://www.apple.com/downloads/macosx/automator/uploadtoftp.html" rel="nofollow"&gt;Upload to FTP Automator action&lt;/a&gt; makes it easy to convert this to use your own website.</description>
		<content:encoded><![CDATA[<p>BTW, I discovered that the <a href="http://www.apple.com/downloads/macosx/automator/uploadtoftp.html" rel="nofollow">Upload to FTP Automator action</a> makes it easy to convert this to use your own website.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brendon</title>
		<link>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-2977</link>
		<dc:creator>Brendon</dc:creator>
		<pubDate>Sat, 29 Mar 2008 16:18:24 +0000</pubDate>
		<guid>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-2977</guid>
		<description>Yeah, I might just switch mine over to use ftp, or WebDAV, or some custom cgi uploader.  I feel weird paying Amazon for file storage, when I've already paid for it elsewhere.

That said, S3 is probably surprisingly cheap for personal use on stuff like this.  I bet I'd probably pay $1/year for my usage patterns on it.  I think my account is at $.06 right now, and it won't change for a long time because I'm still hundreds and sometimes thousands of units below the next incremental charge.  If I started dropping GB sized files, that would change much faster, but I've noticed I tend to stick below 100MB/file when I do work like this.

My favorite part on the whole project was rediscovering how Automator workflows saved as applications work.  That's just a simple way to make droplets.  It's something I was trying to remember how to do a couple weeks back, and was going down a more complicated route of pipes and mountpoints and loopbacks and gummy bears and...</description>
		<content:encoded><![CDATA[<p>Yeah, I might just switch mine over to use ftp, or WebDAV, or some custom cgi uploader.  I feel weird paying Amazon for file storage, when I&#8217;ve already paid for it elsewhere.</p>
<p>That said, S3 is probably surprisingly cheap for personal use on stuff like this.  I bet I&#8217;d probably pay $1/year for my usage patterns on it.  I think my account is at $.06 right now, and it won&#8217;t change for a long time because I&#8217;m still hundreds and sometimes thousands of units below the next incremental charge.  If I started dropping GB sized files, that would change much faster, but I&#8217;ve noticed I tend to stick below 100MB/file when I do work like this.</p>
<p>My favorite part on the whole project was rediscovering how Automator workflows saved as applications work.  That&#8217;s just a simple way to make droplets.  It&#8217;s something I was trying to remember how to do a couple weeks back, and was going down a more complicated route of pipes and mountpoints and loopbacks and gummy bears and&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danny</title>
		<link>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-2975</link>
		<dc:creator>Danny</dc:creator>
		<pubDate>Sat, 29 Mar 2008 15:09:45 +0000</pubDate>
		<guid>http://www.techfreak.net/wp/archives/2008/03/29/343/#comment-2975</guid>
		<description>Cool idea.  I may have to roll one that uses my own web server (yes, I'm cheap).</description>
		<content:encoded><![CDATA[<p>Cool idea.  I may have to roll one that uses my own web server (yes, I&#8217;m cheap).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
