-
Notifications
You must be signed in to change notification settings - Fork 9
Home
mohamedmansour edited this page Dec 5, 2011
·
4 revisions
Welcome to the my-hangouts-extension wiki!
We are using the Google+ Search API to query for hangouts, so here is what is done:
- Uses a state machine of two nodes (currently), where the last node points back to the first node to make it a circular buffer. Each node gets executed within 30 seconds from each other.
- The first node in the state machine, resets the cache and hangout lists. Then does a search.
- The second node in the state machine, does a search again to refresh the data.
- When doing a single search, it prefetches results 4 times to get more results.
- After the last prefetch, it starts doing bursts, to get the new hangouts as diff 8 times.
Basically, does a search every 30 seconds where each search does 4 pre-fetches and 8 burst-fetches. A pre-fetch is a getting more pages per result where a burst-fetch gets diffs between every fetch.
One might ask why not continuously get bursts, the answer being, it doesn't give fresh results, the previous results do not update, that is why we reset and do pre-fetches.
- Discuss with the group what you are planning to do http://groups.google.com/group/community-driven-development
- Create a GitHub account http://github.com
- Set up Git http://help.github.com/win-set-up-git/
- Fork this repository http://help.github.com/fork-a-repo/
- Git add/commit/push to your repository http://book.git-scm.com/3_normal_workflow.html
- Send me pull requests http://help.github.com/send-pull-requests/
That is all, it is basically just Git. Help us improve this extension!
- Always create a branch for a feature your creating and then send that as a pull request
git checkout -b my-feature
- Make sure you run through JSLint so you can quickly do static code analysis
- Make sure you do lint checking, extra spaces, removals of tabs, etc.
- Please write comments (JSDoc) so other developers can easily read the code.
- This extension must be safe, no external servers
- This extension must be fast, should not get slower
- This extension must be simple, no cluttered UI and easy for anyone to use