### Find recently-indexed Clojure projects using an MIT license Rebels! I bet these dudes don't like [hammocks][1] either. ```sh $ curl -G https://api.github.com/search/code \ --data-urlencode 'q=MIT License path:project.clj' \ --data-urlencode 'sort=indexed' \ --data-urlencode 'order=desc' \ -H 'Accept: application/vnd.github.preview' \ | jq '.items[0,1,2] | {description: (.repository.description), name: (.repository.full_name), html_url}' ``` ```json { "html_url": "https://github.com/royvandewater/optparse/blob/e4bb8558405ffd7ba6a14718b89e7cd418b5565e/project.clj", "name": "royvandewater/optparse", "description": "Option parser for clojure" } { "html_url": "https://github.com/SnootyMonkey/coming-soon/blob/108decfd74338ba5428580c8cd156f684484d3b2/project.clj", "name": "SnootyMonkey/coming-soon", "description": "coming-soon is a simple Clojure/ClojureScript/Redis 'landing page' application that takes just a few minute to setup" } { "html_url": "https://github.com/rreas/ring-test/blob/5fd78404eec4f81033ae073c5a42ea8a55ccc75a/project.clj", "name": "rreas/ring-test", "description": "An integration test framework for ring web applications." } ``` Check out the [Code Search API docs][2] for more details. [1]: http://data-sorcery.org/2010/12/29/hammock-driven-dev/ [2]: http://developer.github.com/v3/search/#search-code