Skip to content

Instantly share code, notes, and snippets.

@timgluz
Created December 31, 2013 15:55
Show Gist options
  • Select an option

  • Save timgluz/8198736 to your computer and use it in GitHub Desktop.

Select an option

Save timgluz/8198736 to your computer and use it in GitHub Desktop.
Top10 pushed Clojure projects on Github
pos project pushes description url
1 zhihu-read-rss 5986 create rss from zhihu.com/read https://github.com/llj098/zhihu-read-rss
2 katello.auto 591 Automated tests for katello https://github.com/RedHatQE/katello.auto
3 modern-cljs 563 A short series of tutorials on ClojureScript https://github.com/magomimmo/modern-cljs
4 italianquiz 541 Interactive quiz application written in Clojure and using mongodb https://github.com/ekoontz/italianquiz
5 clojure-cookbook 535 This is the home of O'Reilly's Clojure Cookbook - http://clojure-cookbook.com https://github.com/clojure-cookbook/clojure-cookbook
6 jest 509 Multi touch game https://github.com/fmsbeekmans/jest
7 core.typed 474 An optional type system for Clojure https://github.com/clojure/core.typed
8 leiningen 473 Automate Clojure projects without setting your hair on fire. https://github.com/technomancy/leiningen
9 Donkey 471 Framework for hosting Discovery Environment metadata services. https://github.com/iPlantCollaborativeOpenSource/Donkey
10 CinC 461 Clojure compiler in Clojure
@timgluz
Copy link
Author

timgluz commented Dec 31, 2013

Source githubarchive

Query:

SELECT repository_name, count(repository_name) as pushes, repository_description, repository_url
FROM [githubarchive:github.timeline]
WHERE type="PushEvent"
    AND repository_language="Clojure"
    AND PARSE_UTC_USEC(created_at) >= PARSE_UTC_USEC('2013-01-01 00:00:00')
GROUP BY repository_name, repository_description, repository_url
ORDER BY pushes DESC

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment