As one of my side projects, I've written an S3 wrapper on GAE (google app engine). I had abandoned this based on lack of interest from the few people I contacted but thought I'd check with the community to see if anybody here would find this useful before sending it to the recycle bin.
The problem: You have super-critical data on s3 and want to have better uptime than s3 currently does because of the nature of the data (say medical records).
The solution: You now have another s3 implementation on another cloud (GAE) that you can seamlessly switch to (repoint dns). There will be periodic syncs between amazon's s3 and GAE's s3. You've essentially added a couple of 9s to the reliability of S3 and get to reuse the same code you have written against s3. The caveat is that it's not free since you've doubled your data storage costs (amzn + google).
There are some serious limitations with GAE (1 MB limit), reliability etc. But those should go away eventually.
I can set up a demo quickly if there is interest. I'll probably be working on another project fulltime soon. Let me know if you want to run with it too.