https://github.com/karan/python-vs-java-forks
Visualising usage of Python and Java throughout the world using WebGL Globe
https://github.com/karan/python-vs-java-forks
Last synced: 9 months ago
JSON representation
Visualising usage of Python and Java throughout the world using WebGL Globe
- Host: GitHub
- URL: https://github.com/karan/python-vs-java-forks
- Owner: karan
- Created: 2013-07-06T11:40:47.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-07-06T11:51:04.000Z (over 12 years ago)
- Last Synced: 2025-04-04T23:29:51.089Z (9 months ago)
- Language: JavaScript
- Size: 1.02 MB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Python-vs-Java-forks
====================
Visualising usage of Python and Java throughout the world using [WebGL Globe](http://www.chromeexperiments.com/globe).
**I cannot vouch for the data as this was a primitive test that I did to get used to BigQuery and WebGL Globe.**
Data taken from [GitHub Archive](http://www.githubarchive.org/) dataset up on [Google BigQuery](https://developers.google.com/bigquery/).
Initially I wanted to compare Python, Ruby and Java, but the data was not at all good (yes, I made mistakes but that's the good thing about learning, you are free to make mistakes).
Query used to filter the data:
SELECT repository_name, actor_attributes_location, repository_forks
FROM [githubarchive:github.timeline]
WHERE type="PushEvent"
AND repository_language="Python"
AND NOT actor_attributes_location CONTAINS "http"
GROUP BY repository_name, actor_attributes_location, repository_forks
ORDER BY repository_forks DESC
Run Locally
============
`cd` to the directory `globe`. If you're using python (like me), run
python -m SimpleHTTPServer
Open `http://localhost:8000` in your browser.