Skip to content

Instantly share code, notes, and snippets.

View wbt's full-sized avatar

wbt

  • 3rd planet from Sol
View GitHub Profile
@wbt
wbt / Query.sql
Created May 21, 2012 13:41
Do more active coders leave longer or shorter comments than others?
SELECT actor,
LOG10(COUNT(actor)) LogCount,
LOG10(AVG(LENGTH(payload_commit_msg))) LogCommentSizeMean
FROM [githubarchive:github.timeline]
WHERE repository_private='false'
AND type ='PushEvent'
GROUP BY actor
LIMIT 16000;
@wbt
wbt / query.sql
Created May 21, 2012 02:28
What People Do on GitHub?
SELECT TYPE, COUNT(TYPE) FROM [githubarchive:github.timeline] GROUP BY TYPE;