Skip to content

Instantly share code, notes, and snippets.

@igrigorik
Created April 28, 2012 19:07
Show Gist options
  • Save igrigorik/2521371 to your computer and use it in GitHub Desktop.
Save igrigorik/2521371 to your computer and use it in GitHub Desktop.
BigQuery example
/* top 100 repos for Ruby by number of pushes */
SELECT repository_name, count(repository_name) as pushes, repository_description, repository_url
FROM [githubarchive:github.timeline]
WHERE type="PushEvent"
AND repository_language="Ruby"
AND PARSE_UTC_USEC(created_at) >= PARSE_UTC_USEC('2012-04-01 00:00:00')
GROUP BY repository_name, repository_description, repository_url
ORDER BY pushes DESC
LIMIT 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment