### How many issues do Ruby developers create each day? Track issue trends over time. ```sh for i in {1..7} do created_on=`date -v-"${i}"d '+%Y-%m-%d'` issue_count=$( \ curl -G https://api.github.com/search/issues \ --data-urlencode "q=language:ruby created:$created_on" \ -H "Authorization: token REDACTED" \ -H "Accept: application/vnd.github.preview" | jq ".total_count" \ ) echo "$created_on: $issue_count" done ``` ``` 2013-07-22: 1174 2013-07-21: 716 2013-07-20: 687 2013-07-19: 1336 2013-07-18: 1348 2013-07-17: 1471 2013-07-16: 1386 ``` Check out the [Issue Search API docs][1] for more details. [1]: http://developer.github.com/v3/search/#search-issues