io2015-codelabs
io2015-codelabs copied to clipboard
codelabs for Google I/O 2015
The `npm install` step installs the latest version of the gcloud API (currently v0.29.0), but the current text of the tutorial contains documentation links like http://googlecloudplatform.github.io/gcloud-node/#/docs/v0.14.0/datastore/dataset -- the have been...
The code for the solution for the Datastore query that is supposed to return only a specific user's books fails to return any books. The problem is that the comparison...
To implement the **Display a user's books** query, the `getUserBooks()` function is updated to include the following line: ``` var query = dataset.createQuery(['Book']).filter('userId =', userId); ``` The `filter()` method is...
I tried the mentioned CodeLab. At "3. Try out the sample" step, I was able to install depedencies fine but when I tried to start the app with "node app.js",...
I have fetched the latest BDK from googlesource master and was working through this codelab. I have the BDK in ~/brillo and have products in ~/products. Building after step 2...
Was going through this codelab: https://codelabs.developers.google.com/codelabs/cloud-firebase-chat/index.html#5 It stopped working once I added the security rules (".read": "auth != null"). The reason why seems to be that it tries to run...
The code section defines constants: ``` private static final int SIGNED_IN = 0; private static final int STATE_SIGNING_IN = 1; ``` but the text refers to **STATE_DEFAULT** and **STATE_SIGNED_IN** instead.
On this page, in step 3 of Create Entity using the Developers Console, there's a link in Query in Storage > Cloud Datastore > Query that goes to https://pantheon.corp.google.com/project/_/datastore/query which...
"In this step, you modify the application to display messages that are **send** to Firebase from any client." Should say: "In this step, you modify the application to display messages...
I am using Android Studio 2 and built a brand new empty activity. It already had the src/test/java directory and the dependencies where in the build.gradle file.