Skip to content

Commit

Permalink
Add a bigquery we could use to get a list of possible projects
Browse files Browse the repository at this point in the history
  • Loading branch information
holdenk committed Oct 19, 2012
1 parent 1a257fc commit 0f23b05
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions possible_projects_bigquery
@@ -0,0 +1,8 @@
/* top K repos for languages the unicorn can use 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" OR repository_language="Shell" OR repository_language="Perl" OR repository_language="C++" OR repository_language="PHP" OR repository_language="Scala")
GROUP BY repository_name, repository_description, repository_url
ORDER BY pushes DESC
LIMIT 100

0 comments on commit 0f23b05

Please sign in to comment.