Skip to main content

Countdown to I/O

This is going to be the second year I've witnessed I/O live(streamed), from school, nonetheless. While I'm hoping Google announces some bombshell that is going to give them some massive monopoly, I, containing bouts of cynicism inside, expect a bit less.

Firebase, Firebase

When Google announced Firebase last year, I shook and shivered with excitement. I thought, "An integrated mobile and web development backend I could use to make anything? Sign me up." Of course, Firebase got better with new features like Cloud Functions, but I don't think Google is done with it - they're not even close. While I know just as much as anyone not at Google about the announcements to take place in less than five to six hours, I'm sure Google is going to announce more integration with their Cloud Platform. Cloud Functions was the beginning of Firebase adding functionality to a "consumerized" cloud, if you will. The rest of Google Cloud Platform will be for anyone, mainly with massive enterprises, but Firebase will be to Google Cloud Platform as Allo sort of is to Hangouts Chat. They use the same backend, but they will serve overlapping but noticeably different target markets.

Android O

We know they're definitely not going to announce that Android O is Android Oreo or any other name at I/O, but we do know another developer preview is going to be released. I'm curious to see what features the Android team managed to stuff in this time, but O looks like it's going to be the M of Android updates unless something major is announced. Notification channels are a great feature, but it's nothing that will make people demand OEMs release updates quicker. Speaking of updates, Project Treble does look like it will increase the speed of the Android update process.

Artificial Intelligence

Google loves their AI, and I expect it to be the obvious focus of I/O. TensorFlow is going to be showcased in some talks, but I think Google might have a major announcement which makes AI more accessible to developers. Sure, that's vague, but Google has been on a trend of sharing AI with more people to hopefully create another breakthrough. 

While I gave some pretty vague predictions, we all know the gist of what's happening this year. I'll be happily watching the livestream at 12:00 PM Central Time for the unfortunate 20 minutes I can and check in every passing period to see the updates from the talks I care about. Afterwards, there's sure to be a stream of I/O talks on YouTube for me to cast to my TV to binge watch. Good morning to all the media people attending I/O, and I hope you all enjoy your time there. (I prefer to get my news primary source, thank you.)

Comments

Popular posts from this blog

Summer Break 2017, Day 1 of 83

What is this? Imagine you could harness the full productive capacity of summer vacation without having to succumb to sleeping in while mindlessly looking over documentation or forgetting to finish a summer assignment until a week before school begins. Imagine how many hours you lose by simply not having a plan? (It's in the range of 581–787.) I'm imagining summer break as school/work on my terms. Of course, that means I'm "off" on holidays, but I'm keeping weekends open for work. Weekends are fair game because I wanted to increase the "number of days in summer break" for marketing, and I realize if I properly schedule events on weekends, I can finally have projects I can start and finish in a week.  Of course, I didn't begin summer break on the first day I wasn't required to attend school because I really wanted to begin on day one.  Beginning on day one makes me punctual (if you don't count the fact a day zero would truly impress ...

What's a TSI Test?

I took the TSI test on Wednesday, but I wasn't the first one in the lab to finish. I blame my proctor's slowness at informing me on some prerequisites that Administration didn't inform me about and my own apathy to a test that didn't seem to put up much of a fight. Three other people beat me to the punch, but I still managed to finish before the end of third period. Since this test doesn't involve a non-disclosure agreement that people really don't care about anyway , I'll talk about the contents of the test. There's nothing too interesting about the test. I likely could have gotten a perfect score if I tried, and that's not just me being cocky. There was no advanced math on the test (nothing higher than algebra), but the reading sections are slightly more comprehensive than the STAAR test's. I literally mean slightly more comprehensive; the STAAR test is more fiction-oriented while the TSI's reading (I think) only consists of nonfiction pas...

Summer Break 2017, Day 5: How Hard is it to Upload a Photo to Firebase?

God help you if you ever decide to implement camera functionality in Android. I didn't have much planned today, but thank goodness I didn't. The Setup Here's the dilemma: I wanted to make a very simple app that will let me take a photo of text and have it read out to me. Using the Google Cloud Vision API ,  I can essentially scan documents and listen to their contents instead of having to use my eyes and scan the thing. It will be great for accessibility and so on, but the thing is I can't have the Cloud Vision API scan documents that I haven't taken. I want to do processing in the cloud to model common app architecture and to reduce strain on the client app. Here's the service flow: Client app takes photo Client app uploads photo to Cloud Storage for Firebase Cloud Functions scans the document for text Cloud Functions updates Firebase Database with scanned text Client app intercepts database update Client app speaks text from database The Co...