Migrate to Firebase - Google I/O 2016

Поділитися
Вставка
  • Опубліковано 5 лис 2024

КОМЕНТАРІ • 29

  • @nwalter08
    @nwalter08 8 років тому +4

    Props to Parse for giving a year for people to migrate. So cool

  • @ruffsocks
    @ruffsocks 7 років тому +2

    does firebase allow easy migration in the event they also shut down?

  • @RahulSainani
    @RahulSainani 8 років тому +2

    Thomas Bouldin you legend!

  • @govardhank2777
    @govardhank2777 8 років тому +4

    Can you do a video on firebase storage.It will be a great help.

    • @ThomasBouldin
      @ThomasBouldin 8 років тому

      This sounds like a good candidate for our Firecast screencast series. Any more specific request, e.g. platform, task?

    • @tjsorensen1892
      @tjsorensen1892 8 років тому

      Id like to see how to use Firebase storage in swift to create a UItableview of images.

  • @dreftymac9916
    @dreftymac9916 8 років тому

    Structuring relational data this way is not actually a new and novel approach. It is new to JSON, but it existed for years in YAML. (See e.g., en.wikipedia.org/wiki/YAML#Advanced_components_of_YAML)

  • @suvankarbose
    @suvankarbose 8 років тому +9

    Great Presentation . But a epic mistake on 1:58 . LOL . Slip of tongue i guess :P

    • @waitletemcook
      @waitletemcook 8 років тому +1

      +suvankar bose LOL great catch. Hopefully Firebase doesn't go down anytime soon.

    • @ThomasBouldin
      @ThomasBouldin 8 років тому

      Good (embarrassing) catch! This was definitely a slip of the tongue. Firebase is definitely here to stay.

    • @suvankarbose
      @suvankarbose 8 років тому

      ***** Great talk. Currently we are migrating all our apps to firebase . Please help us all in stack overflow for all migration related queries and best practices 😃.

  • @dharmikvasundhara8302
    @dharmikvasundhara8302 7 років тому

    this good guideline about firebase migration, but i want need know about active user matrix in firebase. Is it same like google play store account active user counter ?

  • @DushyantSuthardushyant30suthar
    @DushyantSuthardushyant30suthar 8 років тому

    please please help me in migrating from sql to firebase. How to can i accomplish that. Trying to understand though. In just want comparative tutorial like how to do this in sql and how to do same in firebase

  • @MagicMurly
    @MagicMurly 8 років тому +2

    How to connect Google Cloud Functions with Firebase?

    • @peppetomico
      @peppetomico 8 років тому +1

      cloud.google.com/solutions/mobile/firebase-app-engine-android-studio

    • @ThomasBouldin
      @ThomasBouldin 8 років тому

      Google Cloud Functions are in closed alpha. We'll have a lot more to talk about publicly in the future. In the meantime, the production-ready recommendation is Giuseppe's link.

  • @PraneyBehl
    @PraneyBehl 8 років тому

    No Analytics for Web SDK? :(

  • @mawaismunir
    @mawaismunir 8 років тому

    Can you please point out the API method to use for Relational Data? Mentioned in "Inlined" example at 34:00

    • @ThomasBouldin
      @ThomasBouldin 8 років тому

      It's a convention over an API. In this example /presentations/{presentationID}/presenters/{localID} holds a profileID. You can look up the profile at /profiles/{profileID}. Another common way to structure this is to not use the localID and instead have /presentations/{presentationID}/presenters/{presenterID} = true
      Typically localID = value us how we represent arrays and value = true is how we represent sets.

  • @drjoaoventura
    @drjoaoventura 8 років тому

    Is now Firebase capable of authenticate a single account with multiple social accounts just like Parse?

    • @ThomasBouldin
      @ThomasBouldin 8 років тому +1

      Yup! You get email/pw, facebook, twitter, google, and github out of the box. You can also easily host your own service provider with a simple HTTPS endpoint that generates tokens for valid login requests; we'll even provide the token signing library.

  • @prudhvid4925
    @prudhvid4925 8 років тому

    Nice talk it's helpful :)

  • @WongiLee
    @WongiLee 8 років тому

    Where can I get the slides of this session? and slides of other Google IO 2016 sessions?

    • @ThomasBouldin
      @ThomasBouldin 8 років тому +1

      I don't know if there's a general collection of slides. I exported my Keynote as a static website and tossed it up on Firebase Hosting. migrateto.firebaseapp.com After I'm done with a few more pieces of github.com/inlined/mygration I can create a version with trimmed down animations and fuller speaker notes for SlideShare.

    • @WongiLee
      @WongiLee 8 років тому +1

      +Thomas Bouldin Thank you ^-^

  • @mlequocbinh
    @mlequocbinh 8 років тому +1

    That's great!

  • @thomasbouldin4931
    @thomasbouldin4931 8 років тому

    The first library to help you with your migrations has passed review! github.com/inlined/mygration now has tools to help you do initial + continuous sync of data from Parse to Firebase via Cloud Code.