TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask YC: Who's pushing their data to 'the cloud'

15 pointsby inovicaover 17 years ago
Just ordered a new laptop and I've decided to try to push as much of my data online as I can to make life more flexible. I'm just curious to see who here does this and what do you use if so? I am thinking my regular work files, my photos etc. I'd like to keep some files locally as well, but thinking that anything older than 30 days could be stored online - especially if its over a replicated system like Amazon S3.

6 comments

bootloadover 17 years ago
<i>"... Just ordered a new laptop and I've decided to try to push as much of my data online as I can to make life more flexible. I'm just curious to see who here does this and what do you use if so? ..."</i><p>WHY<p>I do. Any post I make I have squared away. This allows me to make my site the definitive collection of my data. It also allows google to index it. I have control over my own content and if for some reason a third party site wants to exert control I still have my stuff. Unlike slashdot who didn't allow any tools to save posts. Hence I lost from about 1996 to 2002's worth of comments. [0]<p>HOW<p>There are 2 ways of looking at this. You can either generate you <i>"stuff"</i> from a single point [0] at your machine, save it and pump it out OR use the web apps as clients and suck the data back via RSS, Atom, JSON etc.<p>I've been doing a bit of both. Pushing stuff from my blog engine after I've cached it and now I'm beginning to suck up the various websites I frequent. So for pushing out I have:<p>- OUT: flickr (blog, tags, images) , twitter (snippets), hackerid (hackernews data), links (various links I save including links to hackernews &#38; export to delicious)<p>- IN: hackernews (all posts every 15m, friends),<p>- IN TODO: wordy (words I use), spock (tags), colourlovers (colours), librarything (my library), amazon (new books), lastfm (what I'm currently listening to), delicious (new links I find), twitter (friends), flickr (friends, processed images, text, tags)<p>Now as you can see that's a lot of data. Some of the things I'm finding:<p>- It's easier to push than pull if you want an accurate copy because you save before you export<p>- pulling data means you don't have to write firstly the interface to capture the data and simply call RSS<p>- not every site has an API or good RSS feed<p>- Linking data together is not easy except by time though you could try to match by friend (ie: friend is on twitter, flickr, hackernews)<p>- displaying the data effectively is difficult simply because of the volume and complexity of it. A good example of how to do this is <a href="http://friendfeed.com" rel="nofollow">http://friendfeed.com</a> Clear, simple and pretty much allows for good reading.<p>I'm now at a stumbling block with a templating engine I'm using and so I'm pretty keen to just extract the data as Atom, RSS and JSON as individual feeds or a mashed feed by date and write a Javascript based website to avoid having to deal with heavy weight blog engines. Let the data go free and see how people use it.<p>The key thing to realise is when you are compiling your data timestamp it at DB level (if you are using one) ISO1606 format, maybe add a tag layer over the top so you can get the benefit of tagging across data layers.<p>It's turning out to be an interesting project.<p>[0] <a href="http://goonmail.customer.netspace.net.au/2005DEC131709.html" rel="nofollow">http://goonmail.customer.netspace.net.au/2005DEC131709.html</a>
评论 #107936 未加载
iseffover 17 years ago
As one of the developers/founders of Openomy (<a href="http://www.openomy.com" rel="nofollow">http://www.openomy.com</a>), I'm keenly interested in this.<p>Our goal is to provide a place where people can store and access all their online files. We want to be the Online File System. We're heading to the "cloud" already and it's becoming increasingly difficult for us to manage our own files. My photos are locked in Flickr, my docs in Zoho, etc.<p>We want to break down the "data silos" and provide a single interface to all your "cloud storage" as well as provide a single API for developers to code against to access user's data in meaningful and interesting ways.<p>We're taking a multi-pronged approach to this. One prong (currently launched) is to allow you to upload your files through our API or our web interface and we'll store it (using Amazon's S3 for reliability and scalability). You can access the files and their metadata through the UI or through the API. You can tag them, share them, make them public, etc.<p>Our next step is to provide many backing-stores. That is, import your files from Flickr/Zoho, etc. We'll keep things sync'd up, so that Openomy becomes your Online File System; storing the metadata of everything you do online. Then, the UI becomes the equivalent of Windows Explorer or Finder, and the API becomes the equivalent of the single file system API provided to you as a desktop developer.<p>We think it's going to be, at the very least, extremely fun to build. :)
secorpover 17 years ago
I keep copies of all of my files online using a distributed storage grid that we've created.<p>(bias alert: I'm deeply involved in the project I'm about to mention)<p>A few years ago I realized that I'd either lost data due to hard-drive crashes or mistakes and wanted some sort of safe place to put my data. We then started a project (<a href="http://allmydata.org" rel="nofollow">http://allmydata.org</a>) which provides for a decentralized, secure storage fabric. You can create your own grid if you'd like, create one with friends, or use our managed grid (for a service fee).<p>I think that Amazon S3, Nirvanix, and others are starting to provide nice basic services in this area as well, but I do think there is a lot of room for retaining and saving information that is gently locked into web services (Flickr, blogs, LinkedIn, etc.).
justteaseover 17 years ago
I've been thinking about the same thing. There's a Flickr tool for iphoto if you use a Mac and I currently use Furl for bookmarking.
ubudesignover 17 years ago
I use our own service at <a href="http://www.i2drive.com" rel="nofollow">http://www.i2drive.com</a> not only to store files but also to edit files on the remote server. it uses webdav for back-end which lets you map a drive from windows or mount from Mac and Linux.
DanielBMarkhamover 17 years ago
There are some products that do P2P+Server data sharing. I'm thinking Groove especially, but I'm sure there are more.<p>This allows me to put my data "out there" among all the computers/friends that I share my space with, without publishing the information for the whole world to see. So I have ease-of-access, backups, online/offline access, etc without having to go public. Plus it tightly integrates with my operating system and office software, as opposed to my having to write a bunch of hand-coded stuff.
评论 #107927 未加载