FOUR people working on this? Seriously?
Show HN: Filepicker.io - dead simple file uploads
81–90 of 107 posts
Re: Show HN: Filepicker.io - dead simple file uploads
#82This is a nice solution, given the limitations of the various service APIs it hooks into, but I feel like it's the wrong solution to a more general problem. If I'm understanding what's happening, a user has to hand over far too much access just to transfer files. In order for me to select one file from service A and have it transmitted to service B, I have to give service C access to all my files on service A. Does a…
Re: Show HN: Filepicker.io - dead simple file uploads
#83Why are 4 CS geniuses from MIT using their talents to build pretty file uploading UI? Pretty file upload UI is easy!
Re: Show HN: Filepicker.io - dead simple file uploads
#84This tool is supposed to make developers life easier when building a file upload tool? Getting it to work in IE is the most annoying part, but this plugin is not offering any help.
Re: Show HN: Filepicker.io - dead simple file uploads
#85Looks like a great service. But where do images get uploaded to? I currently run a site called Desktop.ly where users can upload a picture of their desktop. When uploaded Imagemagick is used to convert the image into different versions using the Carrierwave gem (Desktop.ly is built using the brilliant Ruby on Rails!).
How does Filepicker.io work like this, where are images stores, can this be a custom Amazon S3 or Rackspace Cloud Files storage? Can images be resized? Does/will it work with RoR to offer a seamless integration?
Plus, what happens with downtime? Of course this will be a big thing with many web services.
Hope you're able to answer my questions. Also, check out Desktop.ly ;)
Re: Show HN: Filepicker.io - dead simple file uploads
#86Internal Server Error when submitting my email :( Looks like a great service. But where do images get uploaded to? I currently run a site called Desktop.ly where users can upload a picture of their desktop. When uploaded Imagemagick is used to convert the image into different versions using the Carrierwave gem (Desktop.ly is built using the brilliant Ruby on Rails!). How does Filepicker.io work like this, where are i…
User file uploads currently get uploaded to S3 for a short amount of time until your application can retrieve it. We don't do any processing of the files.
We plan to release SDKs in the future for easy integration, including one for RoR. We also plan to have this up all the time since heroku is pretty reliable. For those rare cases when this fails, we could revert back to a normal file picker on your page.
Re: Show HN: Filepicker.io - dead simple file uploads
#87Internal Server Error when submitting my email :( Looks like a great service. But where do images get uploaded to? I currently run a site called Desktop.ly where users can upload a picture of their desktop. When uploaded Imagemagick is used to convert the image into different versions using the Carrierwave gem (Desktop.ly is built using the brilliant Ruby on Rails!). How does Filepicker.io work like this, where are i…
Re: Show HN: Filepicker.io - dead simple file uploads
#88I'm your target audience. I've built this exact function into client apps (upload from various sources and edit with Aviary). Its a PITA. I'd consider yours, but there's a couple big problems right now: 1) Doesn't support IE. 2) Doesn't work on mobile There's other issues, but those are the show-stoppers. FWIW, Chute ( http://getchute.com ) has a better implementation of this concept. That said, I still haven't seen…
Hi George, Thanks for mentioning us. We definitely offer a very similar set of features with Slidechute. I think the value add comes in many different ways, but we're just at the beginning of that process so it's not always all evident. As for the black box, there's not a lot of Voodoo with us. Since launching we allow you to store media in your own S3 bucket and also to customize your app credentials so the authenti…
Re: Show HN: Filepicker.io - dead simple file uploads
#89Internal Server Error when submitting my email :( Looks like a great service. But where do images get uploaded to? I currently run a site called Desktop.ly where users can upload a picture of their desktop. When uploaded Imagemagick is used to convert the image into different versions using the Carrierwave gem (Desktop.ly is built using the brilliant Ruby on Rails!). How does Filepicker.io work like this, where are i…
Re: Show HN: Filepicker.io - dead simple file uploads
#90 filepicker.getFile(mimetype, callback(url){alert(url);});
I feel dumb saying this, but I don't understand the example code. Why do I have to give Filepicker a mimetype? I would expect it to tell me what MIME type the user uploaded. Are you setting the type of file the user is allowed to upload? Can you whitelist several at once? Are you only expecting images, or does this work for PDFs, etc?Also, is this javascript? I think 'callback' should be 'function'.