Skip to content

Instantly share code, notes, and snippets.

@elgreg
Last active December 14, 2015 14:58
Show Gist options
  • Save elgreg/5103937 to your computer and use it in GitHub Desktop.
Save elgreg/5103937 to your computer and use it in GitHub Desktop.
The answers to google's io game - Spoiler alert!
Go to https://developers.google.com/events/io/
In the console find the app.min.js, then find anything inside of the anonymous function that has this.patternMatcher.
Set a breakpoint.
Refresh.
var p = this.patternMatcher_.matchers_;
for(var _p in p){ if(p[_p].isPartial === false){ console.log(p[_p]); }};
Tada.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment