Live data from Hacker News

Show HN: Firebase, a scalable real-time backend

firebase.com

31–40 of 148 posts

Re: Show HN: Firebase, a scalable real-time backend

#31

on a sidenote: I wouldn't do business with or trust my data to a company that hides their actual address behind whois protection

I don't think they are trying to hide anything per se, the company grew from envolve.com. Seems to be pretty open here http://www.firebase.com/about.html

They'll probably remove the whois protection once they fully launch.

Re: Show HN: Firebase, a scalable real-time backend

#32
post #4

I used Firebase to build thereelbox.com, and enjoyed it thoroughly. It took 2-3 hours from starting into the documentation to completed/nobugs/pushed to production. Credit for that speed goes entirely to Firebase. TheReelBox uses Firebase as a sort of API caching layer. This protects against rate limiting on the Rotten Tomatoes API, decreases request time by caching queries to the Fandango-via-YQL API, and eliminates…

Hey, I like your app! I would use it again if I could expand the map to make it larger. Would be the perfect tool for finding a movie.

Re: Show HN: Firebase, a scalable real-time backend

#33
I just asked them twice on their chat to describe their infrastructure and they won't do it, at least yet.

I realize this is in beta, and it's early, but am I the only one who would not trust my data to a service where I can't get at least some idea of how they're actually functioning behind the curtain?

Re: Show HN: Firebase, a scalable real-time backend

#34
post #17

Earlier quoted context omitted.

Sorry - I think "real-time web" is already in our lexicon. http://en.wikipedia.org/wiki/Real-time_web#Real-time_search Just make sure people say web after they say real-time and there should be no confusion.

I don't think that it's a lost cause. Mainly because calling these things "real-time" is technically incorrect. Real-time computing is already formally defined and well established. Given the definition of real-time, one could actually create a real-time web or a real-time search. So there is still cause for confusion--or, at least, technical incorrectness--if one uses that terminology.

Suggestions?

Re: Show HN: Firebase, a scalable real-time backend

#35
post #27
post #4

I used Firebase to build thereelbox.com, and enjoyed it thoroughly. It took 2-3 hours from starting into the documentation to completed/nobugs/pushed to production. Credit for that speed goes entirely to Firebase. TheReelBox uses Firebase as a sort of API caching layer. This protects against rate limiting on the Rotten Tomatoes API, decreases request time by caching queries to the Fandango-via-YQL API, and eliminates…

Any reason you don't host those static files on a public 'web enabled' ec2 bucket? We do that for http://www.incubatebang.com and it costs us like $1.40/year for hosting

That's a cool idea, Dropbox and S3 both seem like good ways to get started with Firebase really fast.

The AWS micro is free :) and it gives me a bit more flexibility to do things (in the future) like track outbound clicks to Fandango through a redirect that hits a real server.

Re: Show HN: Firebase, a scalable real-time backend

#37
Can someone explain what kind use-cases there are for a database where the client can read and write directly against the database? CouchDB could do this (via CouchApp), but I bet not many people do this because it's bad from security and scaling standpoint and I think there aren't that many types of apps that can be created without a proper back-end.

Re: Show HN: Firebase, a scalable real-time backend

#38
post #4

I used Firebase to build thereelbox.com, and enjoyed it thoroughly. It took 2-3 hours from starting into the documentation to completed/nobugs/pushed to production. Credit for that speed goes entirely to Firebase. TheReelBox uses Firebase as a sort of API caching layer. This protects against rate limiting on the Rotten Tomatoes API, decreases request time by caching queries to the Fandango-via-YQL API, and eliminates…

Nice. The Hunger Games is a rickroll? Is that something you did?

Re: Show HN: Firebase, a scalable real-time backend

#39
post #4

I used Firebase to build thereelbox.com, and enjoyed it thoroughly. It took 2-3 hours from starting into the documentation to completed/nobugs/pushed to production. Credit for that speed goes entirely to Firebase. TheReelBox uses Firebase as a sort of API caching layer. This protects against rate limiting on the Rotten Tomatoes API, decreases request time by caching queries to the Fandango-via-YQL API, and eliminates…

Nice. The Hunger Games is a rickroll? Is that something you did?

Re: Show HN: Firebase, a scalable real-time backend

#40
A real-time client-side library that ties in to their database hosting service, basically.

Also, if you want to have any non-realtime parts of your web app that do server-side processing of data then it looks like you have to use Node.js to talk to Firebase, as there's no REST API for it that I can see. I guess they don't mind because they're trying to get you to do all data processing in the client anyway.

Definitely need security and permissions. How do I make sure only registered users of my site can access chat? How do I make sure only admin users can create new chat threads? From my brief reading it looks like all clients can see everything in the database and modify it all. Am I wrong?

Post reply on HN